- Interchange two rows
- Add a constant multiple of one row to another row
- Multiply a row by a nonzero constant
Definition: Two matrices A
and B
are row-equivalent if B
can be created by only performing elementary row operations on A
.
Row-equivalency follows the transitive property, just like equality does.
Theorem: If two systems of linear equations have row-equivalent augmented matrices, then they have the same solution set.
Requirements:
- Rows with all zeroes are below rows with nonzero entries.
- Leading entry of each row is in a column to the right of the leading entry of the row above it.
- (Leading entry = first nonzero entry of a row)
- All entries in a column below a leading entry are zeroes.
Example:
- ⎝⎛010110001⎠⎞ IS NOT in echelon form.
- ⎝⎛100110001⎠⎞ IS in echelon form. (Only differs by one row operation from previous matrix)
Requirements:
- Must be in echelon form.
- All leading entries must be 1.
- Each leading entry must be the only nonzero entry in its row/column.
Example:
- (1012) IS NOT in REF.
- (1011) IS NOT in REF.
- (1001) IS in REF. (Created from original matrix using only row operations, so they are row equivalent)
Theorem: Every matrix A
is row-equivalent to exactly ONE reduced echelon matrix.
This also means that the order that the row operations are performed in to create the REF matrix doesn't matter in the end.
Definition: A pivot position in a matrix A
is a location that corresponds to a leading entry in the reduced echelon form of A
. A pivot column of A
is a column that contains a pivot position.
Step I: Begin with the leftmost nonzero column. This will be a pivot column.
⎝⎛0333−7−9−68126−5−9486⎠⎞
Step II: Interchange rows so that zeroes are at the bottom, if necessary.
⎝⎛330−9−73128−6−9−56684⎠⎞
Step III: Use row operations to create zeroes in all positions below the pivot.
⎝⎛300−92312−4−6−946624⎠⎞
Step IV: Ignore the row containing the pivot in the current column (and any rows above it). Repeat steps I-IV to get an echelon matrix.
⎝⎛300−92012−40−940621⎠⎞
Step V: Multiply each row by the reciprocal of its leading entry.
⎝⎛100−3104−20−320211⎠⎞
Step VI: Now start at the rightmost pivot and use its row to make the entries above it zeroes.
⎝⎛100−3104−20−320001⎠⎞
Step VII: Repeat step VI for each pivot.
⎝⎛100010−2−20320001⎠⎞