Hello- I'm stuck on a linear algebra problem.
The problem is to find the solutions using a matrix.
x + 4y -2z = 0
3x +10y -z = 0
-2x -6y - z = 0
Using elementary matrix operations I get to
x +4y - 2z = 0
0 +2y -5z = 0
0 -2y + 5z = 0
The last two rows cancel each other out. Does this mean I need to parametrize the remaining x +4y -2z = 0 ?
Thanks!
As Daon2 said, it is not the two rows "cancel each other out", leaving only the first equation. It is, rather, that one of the rows cancels the the other leaving you with two equations instead of three. That second equation tells you that 2y= 5z or z= (5/2)y. If we replace z in the first equation by (5/2)y, we have x+ 4y- 5y= x- y= 0 so that x= y. Now you could use y itself as parameter: x= y. z= (5/2)y. Or, if you prefer, just "rename" y to t: x= t, y= t, z= (5/2)t gives the solution. If you don't like fractions, replace t with 2s to get x= 2s, y= 2s, z= 5s. Note that s= 0 gives the "obvious" solution x= y= z= 0.
(The coefficient matrix of your last set of equations is \(\displaystyle \begin{bmatrix}1 & 4 & -2 \\ 0 & 2 & -5 \\ 0 & -2 & 5\end{bmatrix}\). You can get the "reduced row echelon" form that Daon2 refers to by
1) Add the second row to the third
2) Subtract twice the second row from the first
3) Divide the second row by 2
Doing those gives \(\displaystyle \begin{bmatrix}1 & 2 & 3 \\ 0 & 1 & -\frac{5}{2} \\ 0 & 0 & 0 \end{bmatrix}\) which gives the two equations x+ 2y+ 3z= 0, y- (5/2)z= 0 leading to the solution above.