Definition of an Augmented Matrix
An augmented matrix is created by appending the columns of one matrix onto another matrix. The vertical divider bar represents the equal sign in systems of equations or separates different matrix zones during calculations. The bar is purely visual and does not affect row operations.
The two most common applications of augmented matrices are:
- Representing systems of linear equations: [A | B], where A is the coefficient matrix and B is the constant vector.
- Finding matrix inverses: [A | I], where A is the square matrix to invert and I is the Identity matrix.
Representing Systems of Equations
Consider a system of three linear equations with three variables:
1x1 + 2x2 + 3x3 = 9
2x1 - 1x2 + 1x3 = 8
3x1 + 0x2 - 1x3 = 3
We extract the coefficients of the variables to form matrix A, and the constants to form vector B. The augmented matrix [A | B] is written as:
| 1 | 2 | 3 | 9 | |
| 2 | -1 | 1 | 8 | |
| 3 | 0 | -1 | 3 |
Why We Perform Row Operations on the Augmented Matrix
Elementary row operations represent algebraic manipulations of the original system of equations: swapping two equations, multiplying an equation by a scalar, or adding a multiple of one equation to another. To maintain algebraic equivalence, any operation performed on the left-hand coefficients (matrix A) must also be performed on the right-hand constants (vector B). The augmented matrix ensures that we do not forget to update the constants during row reduction.
Interpreting the Reduced Augmented Column
After reducing the augmented matrix to RREF, we can immediately read the status of the system:
- Unique Solution: If the coefficients side reduces to the Identity matrix, the augmented column contains the unique solution values: [1 0 | x], [0 1 | y], meaning x = 5, y = -2.
- Infinite Solutions: If a column does not have a pivot, its variable is a free variable. This indicates the system has infinitely many solutions, which can be parameterized.
- No Solution (Inconsistent): If row reduction yields a row like [0, 0, 0 | 1] (where coefficients are all zero, but the constant is non-zero), the system represents the equation 0 = 1, which is mathematically impossible. Therefore, the system is inconsistent and has no solution.