Use matrix to solve the following system of equations
$x+ y +z = 3$
$2x+3y +4z= 7$
- $x = 2 + k, \:y = -1 - 2k, \:z = -k $ where $k \in R$
- $x = 2 + k, \:y = 1 - 2k, \:z = k $ where $k \in R$
- $x = -2 - k, \:y = 1 - 2k, \:z = -k $ where $k \in R$
- $x = -2 + k, \:y = -1 + 2k, \:z = -k $ where $k \in R$
Given system of equations can be written as
$AX=B$
where $A=\begin{bmatrix} { 1 } & { 1 } & { 1 } \ { 1 } & { 2 } & 3\ { 2 } & 3 & 4 \end{bmatrix}$
$X=\begin{bmatrix} x \ y \ z \end{bmatrix}$ ;$B=\begin{bmatrix} 3 \ 4 \ 7 \end{bmatrix}$
Here, $|A|=0$
Now, we will find $(adj A)B$
$adj A=C^{T}={\begin{bmatrix} { -1 } & { 2 } & { -1 } \ { -1 } & { 2 } & -1 \ { 1 } & -2 & 1 \end{bmatrix}}^T$
$\Rightarrow adj A=\begin{bmatrix} { -1 } & { -1 } & { 1 } \ { 2 } & { 2 } & -2 \ { -1 } & -1 & 1 \end{bmatrix}$
Now, $(adj A)B=\begin{bmatrix} { -1 } & { -1 } & { 1 } \ { 2 } & { 2 } & -2 \ { -1 } & -1 & 1 \end{bmatrix}\begin{bmatrix} 3 \ 4 \ 7 \end{bmatrix}$
$\Rightarrow (adj A)B=\begin{bmatrix} 0 \ 0 \ 0 \end{bmatrix}$
$\Rightarrow (adj A)B=O$
Hence,the system of equations has infinitely many solutions.
Let $z=k$ where $k\in R$
Then
$x+y=3-k$
$x+2y=4-3k$
Solving these eqns, we get
$y=1-2k ; x=2+k$