Posted by Lynn on Wednesday, April 23, 2008 at 8:18pm.
1 2 3 1
1 1 1 12
-1 1 2 2
I want the first column to be 1 0 0 so subtract second from first and add third to first
1 2 3 1
0 1 2 -11
0 3 5 3
I want the second column to be 0 1 0 so
subtract twice the second from the first and subtract 3 times the second from the third
1 0 -1 23
0 1 2 -11
0 0 -1 36
I want the third column to be 0 0 1 so multiply the third row by -1 first
1 0 -1 23
0 1 2 -11
0 0 1 -36
now add the third to the first and subtract twice the third from the second
1 0 0 -13
0 1 0 61
0 0 1 -36
so I get x = -13 , y = 61, z = -36
when I am adding and subtracting I mean rows by the way.
The idea is that I can add anything times and row to any other row, just as I can add anything times any equation to any other equation. In fact that is exactly what I am doing.
I select what I want to multiply each by to get an identity matrix on the left, column by column, thereby separating the variables. I am really solving the equations by elimination, just in a particular fashion.
Oh, to write as a system of equations, multiply the coefficient matrix by the variable column
1 2 3 x 1
1 1 1 y = 12
-1 1 2 z 2
means
1 x + 2 y + 3 z = 1
1 x + 1 y + 1 z = 12
-1 x + 1 y + 2 z = 2
Oh, the particular fashion is often called Gauss-Jordan reduction
Related Questions
math - Solve following system of equations? x+3z=-2 2x+2y+z=4 3x+y-2z=5 i need ...
Algebra help! - 1.) Solve the system by triangularizing the augmented matrix and...
Algebra 2(check pt 4) - 1)Cramer's Rule is used to solve the system of ...
biology - I need a general principle found to be consistent through the ...
Algebra help! - Please help and I would appreciate an explanation as to how you ...
Discrete Math - I am really stuck on these problems. I've worked a lot of ...
8th Grade Algebra Answer Check - Josh and Racquel sold corn dogs and burritos at...
Algebra 2 - Is it me or does this problem not make sense? (you can't solve ...
Algebra II - 1. solve this system using matrices: 3.7x-2.3+4.2z=8 2.6+4.6y-3.9z=...
Algebra - Show equation AX=B represents a linear system of two equations in two ...
For Further Reading