47. Augmented Matrix

When solving the linear system 𝐴𝑥=𝑏, the augmented matrix [𝐴|𝑏] stacks the coefficient matrix and the right-hand side into one 𝑚×(𝑛+1) matrix:

[𝐴|𝑏]=[𝑎11𝑎12𝑎1𝑛𝑏1𝑎21𝑎22𝑎2𝑛𝑏2𝑎𝑚1𝑎𝑚2𝑎𝑚𝑛𝑏𝑚]

The vertical bar separates the coefficients from the constants — purely visual; row operations treat it as one matrix.

Example

System:

2𝑥1+3𝑥2=7𝑥1𝑥2=1

Augmented form:

[𝐴|𝑏]=[237111]

47.1. Why use it

Row-reducing [𝐴|𝑏] to REF (via Gaussian elimination) or RREF (via Gauss–Jordan) reads off the solution directly — no need to substitute back manually if you go all the way to RREF.

47.2. Reading solutions

After row reduction:

This is the Rouché–Capelli theorem expressed in terms of augmented-matrix ranks.

47.3. Connections