I am trying to solve the following equation using gauss jordan method but unable to solve due to the type of equations.At the end i am getting unwanted zeros in 2nd and 3rd row.Here is my work...
1 2 2 |-1...... r1
2 -1 -1 | 3.......r2
3 1 1 | 3........r3
1 2 2 |-1...... r1
0 -5 -5| 5........r2'=r2-r1*2
0 -5 -5| 9........r3'=r3-r1*3
1 2 2|-1........r1
0 1 1|-1.........r2''=r2'/(-5)
0 -5 -5| 9.........r3'
1 2 2|-1.....r1
1 0 0| 1.....r2'''=r1-r2''*2
0 0 0|-4......r3''=r3'+r2''*5
how to solve this so that i can get the following form?
1 0 0|value1
0 1 0|value2
0 0 1|value3
Because the last row is all zeros except for value 3, you know there is no solution since there is no x,y,z such that 0*x + 0*y + 0*z = -4.