Echelon Form
Definition (Row Echelon Form)
A matrix is in row echelon form (REF) if:
- Each leading entry (first nonzero in row, called a pivot) is to the right of the pivot in the row above.
- All zero rows are at the bottom.
Example
- $ = pivot (nonzero)
- = any entry
Reduced Row Echelon Form (RREF)
Definition (Reduced Row Echelon Form)
A matrix is in RREF if:
- It is in echelon form.
- All pivots are (scaling).
- Each pivot is the only nonzero in its column.
Example
Example: REF but not RREF
- Is in echelon form.
- Not in reduced echelon form.
Algorithms
Getting to Echelon Form
- From the left, pick first nonzero column → pivot column.
- Swap rows so top entry is nonzero → pivot.
- Use pivot to kill entries below (replacement).
- Move to submatrix southeast of pivot.
- Repeat until in echelon form.
Getting to RREF
-
Scale rows so each pivot =
-
Use replacements to kill entries above pivots.
Theorem
Every matrix reduces to a unique matrix in RREF.
Echelon and Solutions
- If last column of augmented matrix is pivot → no solution.
- If every column but last is pivot → unique solution.
- If last col is not pivot and another col is free → infinitely many solutions.
Example