Mr Real said:
Yeah, I get it now. So, would this work for all elementary row/column operations and for any matrix?
Thanks
Mr R
In this context matrices are just a convenient way of representing a set of equations. As row operations involve at most two rows, you can explain it all using just two equations. These can have any number of variables, but let's have three in this example:
##a_1x + b_1y + c_1z = d_1##
##a_2x + b_2y + c_2z = d_2##
Now, let's suppose we have found ##(x, y, z)## that solve these equations. It's clear that if:
##a_1x + b_1y + c_1z = d_1##
Then:
##k(a_1x + b_1y + c_1z) = k(d_1)##
Where ##k## is some non-zero constant. And, likewise, if this second equation holds (with ##k## in it) then so does the first without the ##k##.
That's why you can multiply a row by a constant.
It's even clearer that if:
##a_1x + b_1y + c_1z = d_1##
##a_2x + b_2y + c_2z = d_2##
Then:
##a_2x + b_2y + c_2z = d_2##
##a_1x + b_1y + c_1z = d_1##
That's just the same equations written in a different order, so must have the same solutions.
Finally, if
##a_1x + b_1y + c_1z = d_1##
##a_2x + b_2y + c_2z = d_2##
Then adding these together gives:
##(a_1+a_2)x + (b_1+b_2)y + (c_1+c_2)z = d_1+d_2##
And, if we put this together with either of the original equations we have:
##a_1x + b_1y + c_1z = d_1##
##(a_1+a_2)x + (b_1+b_2)y + (c_1+c_2)z = d_1+d_2##
This has exactly the same solutions as the original equations. That's why you can add one row to another. Adding a mutiple of one row to another isn't really a new operation, just a combination of these ones.