Originally posted by: exdeath
Originally posted by: tfinch2
Originally posted by: exdeath
I'm assuming you want to learn this and not just get the direct route to the answer =D
Look up "row echelon form" and "row reduction operations" of matrices.
Do you even know what an elementary matrix is? It's a matrix that is one step away from the identity matrix.
If you look at E1 and E2, you see that they are one elementary row operation away from the identity matrix I for a 3x3 matrix:
[1 0 0]
[0 1 0]
[0 0 1]
If you multiply E2 by E1 you get:
[1 0 0]
[0 1 0]
[7 0 -1]
Then multiply that by A to get B like the original question states.
But how did they calculate E1 and E2?
It's a matrix that performs a row operation on another matrix.
What you are doing is coming up with row operations that transform A into B one row at a time in only two operations. Think of it like factoring, but with matrices. You are factoring out two elementary matrices (which represent single row operations) from B until you have B = A*factor1*factor2.
If you look up the things I mentioned, you'll see what row operations are all about.
Then you can see its a simple case of dividing factors out of A[3] until it looks likes B, since row 3 is the only row that is changed.