What is an Augmented Matrix?

Learn how to construct augmented matrices to represent systems of linear equations and invert matrices.

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:

  1. Representing systems of linear equations: [A | B], where A is the coefficient matrix and B is the constant vector.
  2. 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:

1239
2-118
30-13

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:

Go to RREF Calculator