A matrix is said to be in row-eschelon form if it satisfies the following conditions:
- All zero rows (consisting only of zeros) are at the bottom.
- Each leading entry is to the right of all leading entries in the row above it.
- All entries below a leading entry are zero.
Broken examples
Invalid b/c it violates rule 2 above in row 2.
Violates rule 3 above in row 3.
Violates rule 1 in row 2.