…
-R1 + R3
row3 becomes row3 minus five times row1
5 + 4 + 2 | 0
5 - 5 - 10 | 5
---------------
0 + 9 + 12 | -1
Typos highlighted in red above.
… add -9 times row2 to row3
1 - 1 - 2 | -1
0 + 1 + 1 | 0
0 + 0 + 3 | 1
That 1 is not correct because (-9)(0)+9 is 9, so the matrix ought to be:
Code:
1 -1 -2 -1
0 1 1 0
0 0 3 9
The next row operation is R3 -> 1/3*R3
Code:
1 -1 -2 -1
0 1 1 0
0 0 1 3
The matrix is now in row echelon form (REF) because there is a pivot in each column (along the diagonal in the coefficient matrix), and all elements below the pivots are zero.
The REF form shows the given system as consistent because (as noted in your other thread) the bottom row does not have all zeros in the coefficient matrix with a non-zero number in the augmented column.
If the bottom row had looked something like 0 0 0 3
instead, then we could stop. The system would be inconsistent.
Since we know there
is a solution, we continue to reduced row echelon form (RREF). That is, we get zeros
above the pivots, too. RREF form gives us the solution values for x, y and z. The last three row operations are listed below, for you. See if you can finish and post the solution without any more typos or arithmetic mistakes. In other words, please use scratch paper, proofread numbers you have copied and double-check your arithmetic. You should also verify your final solution, by substituting your values for x, y and z into the three given equations, to ensure they work.
R1 -> R2 + R1 (this will change R
1C
2 from -1 to 0)
R1 -> R3 + R1 (this will change R
1C
3 from -1 to 0)
R2 -> -R3 + R2 (this will change R
2C
3 from 1 to 0)
?