Given $A = \begin{bmatrix} 2 & 2 & -4 \\ -4 & 2 & -4 \\ 2 & -1 & 5 \end{bmatrix}, B = \begin{bmatrix} 1 & -1 & 0 \\ 2 & 3 & 4 \\ 0 & 1 & 2 \end{bmatrix}$, find $BA$ and use this to solve the system of equations $y + 2z = 7, x - y = 3, 2x + 3y + 4z = 17$. |
$x = 2, y = 1, z = 4$ $x = 2, y = -1, z = 4$ $x = -2, y = 1, z = -4$ $x = 0, y = -3, z = 5$ |
$x = 2, y = -1, z = 4$ |
The correct answer is Option (2) → $x = 2, y = -1, z = 4$ ## We have, $A = \begin{bmatrix} 2 & 2 & -4 \\ -4 & 2 & -4 \\ 2 & -1 & 5 \end{bmatrix} \text{ and } B = \begin{bmatrix} 1 & -1 & 0 \\ 2 & 3 & 4 \\ 0 & 1 & 2 \end{bmatrix}$ $∴BA = \begin{bmatrix} 1 & -1 & 0 \\ 2 & 3 & 4 \\ 0 & 1 & 2 \end{bmatrix} \begin{bmatrix} 2 & 2 & -4 \\ -4 & 2 & -4 \\ 2 & -1 & 5 \end{bmatrix} = \begin{bmatrix} 6 & 0 & 0 \\ 0 & 6 & 0 \\ 0 & 0 & 6 \end{bmatrix} = 6I$ $∴B^{-1} = \frac{A}{6} = \frac{1}{6} A = \frac{1}{6} \begin{bmatrix} 2 & 2 & -4 \\ -4 & 2 & -4 \\ 2 & -1 & 5 \end{bmatrix} \quad \dots(i)$ Also, the system of equations is $x - y = 3, 2x + 3y + 4z = 17$ and $y + 2z = 7$ $\Rightarrow \begin{bmatrix} 1 & -1 & 0 \\ 2 & 3 & 4 \\ 0 & 1 & 2 \end{bmatrix} \begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} 3 \\ 17 \\ 7 \end{bmatrix}$ $∴\begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} 1 & -1 & 0 \\ 2 & 3 & 4 \\ 0 & 1 & 2 \end{bmatrix}^{-1} \begin{bmatrix} 3 \\ 17 \\ 7 \end{bmatrix}$ $= \frac{1}{6} \begin{bmatrix} 2 & 2 & -4 \\ -4 & 2 & -4 \\ 2 & -1 & 5 \end{bmatrix} \begin{bmatrix} 3 \\ 17 \\ 7 \end{bmatrix} \quad \text{[using Eq. (i)]}$ $= \frac{1}{6} \begin{bmatrix} 6 + 34 - 28 \\ -12 + 34 - 28 \\ 6 - 17 + 35 \end{bmatrix} = \frac{1}{6} \begin{bmatrix} 12 \\ -6 \\ 24 \end{bmatrix} = \begin{bmatrix} 2 \\ -1 \\ 4 \end{bmatrix}$ $∴x = 2, y = -1 \text{ and } z = 4$ |