14
14
Where:
• A = \begin{bmatrix} 3 & 2 \\ -6 & 4 \end{bmatrix}
• X = \begin{bmatrix} x \\ y \end{bmatrix}
• B = \begin{bmatrix} 10 \\ 4 \end{bmatrix}
Step 3: Find matrices A_x and A_y by replacing columns of A with the column matrix
B
• For A_x, replace the first column of A with B:
A_x = \begin{bmatrix} 10 & 2 \\ 4 & 4 \end{bmatrix}
\text{det}(A_x) = (10)(4) - (4)(2) = 40 - 8 = 32
• For A_y, replace the second column of A with B:
A_y = \begin{bmatrix} 3 & 10 \\ -6 & 4 \end{bmatrix}
\text{det}(A_y) = (3)(4) - (-6)(10) = 12 + 60 = 72
Final Solution:
x = \frac{4}{3}, \quad y = 3