A rectangular matrix is in echelon form if
The matrix is in reduced echelon form if it satisfies the above requirements and also
Examples (x represents any nonzero entry, while * represents any entry):
| x | * | * | * | * |
| 0 | 0 | 0 | x | * |
| 0 | 0 | 0 | 0 | 0 |
is in echelon form, while
| 1 | * | * | 0 | * |
| 0 | 0 | 0 | 1 | * |
| 0 | 0 | 0 | 0 | 0 |
is in reduced echelon form.