Overview
Row echelon form (REF) and reduced row echelon form (RREF) are standardized matrix forms that make it easy to identify the solutions of a linear system.
Row Echelon Form (REF)
A matrix is in row echelon form if:
- All zero rows are at the bottom
- The leading entry (pivot) of each non-zero row is to the right of the pivot above it
- All entries below a pivot are zero
Example of REF
Reduced Row Echelon Form (RREF)
A matrix is in RREF if it is in REF and additionally:
- Each pivot is 1
- Each pivot is the only non-zero entry in its column
Example of RREF
Pivot and Free Variables
Pivot Columns
Columns containing a leading 1 (pivot position).
Variables corresponding to pivot columns are called basic variables.
Free Columns
Columns without a pivot.
Variables corresponding to free columns are called free variables.
Identifying Pivots
Pivots are in columns 1 and 3.
- Basic variables: ,
- Free variables: ,
Reading Solutions from RREF
Unique Solution
Solution: , ,
Infinitely Many Solutions
is free. Let .
,
Solution: for any
No Solution
Last row: (contradiction)
No solution exists.
Gauss-Jordan Elimination
Algorithm to reach RREF from any matrix:
- Perform Gaussian elimination to reach REF
- Starting from the rightmost pivot:
- Scale row to make pivot = 1
- Eliminate all entries above the pivot
- Move left and repeat
Example: Complete Reduction
Steps:
- : first row
- : create zero below pivot
- : create zero above pivot
Properties of RREF
| Property | Description |
|---|---|
| Uniqueness | Every matrix has a unique RREF |
| Rank | Number of pivots = rank |
| Nullity | Number of free columns = nullity |
| Invertibility | Square matrix with as RREF is invertible |
Applications
- Solving systems of equations
- Finding matrix rank
- Computing null space basis
- Determining linear independence
- Finding matrix inverse