
Jon S. answered 06/04/20
Patient and Knowledgeable Math and English Tutor
The augmented matrix is:
1 1 1 | 9
0 2 3 | 12
1 0 2 | 8
We will want to convert the base 3x3 matrix to the identity matrix (1 along the diagonals and zeros everywhere else) using row operations (add or subtract rows, multiply elements of one row by any number and add to another row, multiply entire row by a number).
For example, we want to first change 1 to 0 in row 3 column 1. To do that we would subtract row 1 from row 3 and place the result in row 3:
1 1 1 | 9
0 2 3 | 12
0 -1 1 | -1
we then can change 2 to 1 in row 2 by adding row 3 to row 2 and place the result in row 2.
1 1 1 | 9
0 1 4 | 11
0 -1 1 | -1
we then can change -1 to 0 in row 3 by adding row 2 to row 3 and place the result in row 3.
1 1 1 | 9
0 1 4 | 11
0 0 5 | 10
we can then divide the last row by 2 to get one in the 3rd row and 3rd column
1 1 1 | 9
0 1 4 | 11
0 0 1 | 2
We can continue this process until we have the 3x3 identity matrix and the solution in the 4th column.