Gaussian Elimination
Row Echelon Form
Reduce a 3x3 augmented matrix to row echelon form using forward elimination only. Each row operation zeros out entries below the pivot, creating an upper-triangular staircase pattern. Back- substitution is not performed — the goal is REF recognition.
Example
row-echelon-form
A matrix is in row echelon form when each pivot is strictly to the right of the pivot in the row above, and all entries below each pivot are zero.
forward-elimination
Use row operations to zero all entries below each pivot column by column from left to right. Stop when the matrix is upper triangular.