Concept:
Matrix addition and scalar multiplication follow distributive and commutative laws similar to basic algebra. In the equation \( 4A + 5B - C = 0 \), we can isolate \( C \) by rearranging the terms: \( C = 4A + 5B \). Calculations must be performed element-wise.
Step 1: Calculate the scaled matrices \( 4A \) and \( 5B \).
First, multiply every element in matrix \( A \) by 4:
\[
4A = 4 \times \begin{bmatrix} 5 & 0 1 & 0 \end{bmatrix} = \begin{bmatrix} 20 & 0 \\ 4 & 0 \end{bmatrix}
\]
Next, multiply every element in matrix \( B \) by 5:
\[
5B = 5 \times \begin{bmatrix} 0 & 1 \\ -1 & 0 \end{bmatrix} = \begin{bmatrix} 0 & 5 \\ -5 & 0 \end{bmatrix}
\]
Step 2: Add the resulting matrices to determine matrix \( C \).
Matrix addition requires adding elements at the same position:
\[
C = \begin{bmatrix} 20 + 0 & 0 + 5 \\ 4 + (-5) & 0 + 0 \end{bmatrix}
\]
Simplifying each element:
\[
C = \begin{bmatrix} 20 & 5 \\ -1 & 0 \end{bmatrix}
\]