๐งฎ 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
| Term | Includes RHS? | Purpose |
|---|---|---|
| Matrix | โ No | Represents transformation |
| Augmented Matrix | โ Yes | Represents 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.
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
| Concept | Description |
|---|---|
| Matrix | Coefficients only ($A$) |
| Augmented Matrix | Coefficients + RHS constants ($[A \vert b]$) |
| Purpose | Solve $Ax = b$ using row operations |
Last updated on