Skip to content
๐Ÿงฎ Augmented Matrix

๐Ÿงฎ Augmented Matrix

In linear algebra, when solving systems of equations, we often represent the system using a matrix. But when we include the constants from the right-hand side of the equations, we form an augmented matrix.


๐Ÿ” What Is an Augmented Matrix?

An augmented matrix is a regular coefficient matrix that has been extended (augmented) with an extra column containing the constants from the equations.

โœ๏ธ Example System

$$ \begin{align} 2x + 3y &= 5 \\ x - y &= 1 \end{align} $$

๐Ÿงฑ Coefficient Matrix

$$ \begin{bmatrix} 2 & 3 \\ 1 & -1 \end{bmatrix} $$

โž• Augmented Matrix

$$ \begin{bmatrix} 2 & 3 & \vert & 5 \\ 1 & -1 & \vert & 1 \end{bmatrix} $$

The last column (after the vertical bar) contains the constants from the right-hand side of the equations.


๐Ÿง  Semantic Motivation

TermIncludes RHS?Purpose
MatrixโŒ NoRepresents transformation
Augmented Matrixโœ… YesRepresents full equation system
  • “Matrixโ€ refers to the linear transformation part ($Ax$).
  • โ€œAugmented matrixโ€ includes the entire system ($Ax = b$).

The augmentation is what allows us to solve the system, not just analyze the transformation.

๐Ÿง  Why Not Just Call It โ€œFull Matrixโ€?

Because linear algebra is about precision:

  • โ€œMatrixโ€ = structure of coefficients
  • โ€œAugmented matrixโ€ = structure + constraints

This distinction becomes critical when:

  • Performing row reduction (Gaussian elimination)
  • Checking consistency (e.g., rank comparison)
  • Interpreting solution sets (e.g., null space vs full solution)

๐Ÿงต Summary

ConceptDescription
MatrixCoefficients only ($A$)
Augmented MatrixCoefficients + RHS constants ($[A \vert b]$)
PurposeSolve $Ax = b$ using row operations
Last updated on