Gaussian elimination (or row reduction) is a systematic way to solve systems of linear equations by transforming the augmented matrix into row echelon form.
Goal: turn the system into an easier form where we can read off the solution (back-substitution).
Example system:
\[ \begin{cases} 2x + 3y = 8 \\ 4x - y = 2 \end{cases} \quad \rightarrow \quad \begin{pmatrix} 2 & 3 & | & 8 \\ 4 & -1 & | & 2 \end{pmatrix} \]We can perform these operations without changing the solution:
We use these to create zeros below pivots (leading 1s or non-zeros).
Reduced row echelon form goes further (1s only on pivots, zeros above too).