Why do you want to do that? From where do you want to eliminate '2'?2x - y - 3z = 0
-x + 2y - 3z = 0
x + y + 4z = 0
augmented matrix
2 1 -3 0
-1 2 -3 0
1 1 4 0
How can I eliminate the 2 and the -1?
First divide R1 by 2 - so that [1,1] becomes 1 [pivot].I normally solve the system by reducing to rref
Yes you can do that too. Do the operation with which you are comfortable!I can swap row1 with row3 since I want a zero in the first column.
Good ... where are you stuck?correction
augmented matrix
2 -1 -3 0
-1 2 -3 0
1 1 4 0
swap R1 and R3
1 1 4 0
-1 2 -3 0
2 1 -3 0
You have been doing similar problems with matrices! What did you learn from those!?correction
augmented matrix
2 -1 -3 0
-1 2 -3 0
1 1 4 0
swap R1 and R3
1 1 4 0
-1 2 -3 0
2 1 -3 0
Are you talking about next step?To eliminate the 3 in row2
Why would you want to do that?by multiplying row2 by 1/3 ?