The linear system which is in the form is called the augmented matrix for the system, is this true or false ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
It is f a l s e .
A x = b represents a linear system where the vector x is being operated on by matrix A and then is equal to vector b .
When you have a system of equations you can represent it in this form where A contains the coefficients, x contains your variables and b contains the values on the other side of the equal sign.
When we solve a system of equations via Gauss-Jordan elimination we are doing row operations to both sides of the linear system. If I add 3 times row 2 to row 4 for example it is happening to both the A x and the b .
Let E i be elementary row operation matrices
A x = b ⇒ E 1 A x = E 1 b ⇒ E 2 E 1 A x = E 2 E 1 b ⇒ . . .
We just continue doing these operations until we have a reduced row echelon form, or some other easy to work with form.
An augmented matrix is what we get when we attach the vector b to the righthand side of A , typically with a dividing vertical line. The x being implicit in our problem. This way we are free to do row operations on only one object instead of 2 .