Gauss Jordan Solution
Gauss Jordan Solution
[ 4 -3 1 1 2 -1 | 8 ]
[ 1 -2 1 -3 1 -4 | 4 ]
[ 2 1 -3 1 2 5 | 2 ]
[ -2 3 1 2 1 -1 | -7 ]
[ 1 -3 0 2 1 0 | 9 ]
[ 5 -4 -1 4 5 3 | 9 ]
Through a series of row operations, we transform the augmented matrix into row-reduced echelon
form (RREF), where the left side becomes the identity matrix.
[ 1 0 0 0 0 0 | 1]
[ 0 1 0 0 0 0 | -2 ]
[ 0 0 1 0 0 0 | 6]
[ 0 0 0 1 0 0 | -3 ]
[ 0 0 0 0 1 0 | -4 ]
[ 0 0 0 0 0 1 | 3]
Final Answer: