Matrices and Row Reduction
Summary
Matrices represent linear maps and store coefficients of linear systems. Elementary row operations implement Gaussian elimination, producing row echelon forms that reveal rank, invertibility, and solution structure.
Prerequisites
Systems of Linear Equations. Hub: Linear Algebra.
Definition / Statement
An
Elementary row operations on a matrix:
- Swap two rows.
- Multiply a row by a nonzero scalar.
- Add a scalar multiple of one row to another row.
These operations do not change the solution set of
Objects and Dimensions
| Object | Meaning | Dimensions |
|---|---|---|
|
|
matrix |
|
|
|
linear map applied to
|
|
|
|
product (columns of
|
|
|
|
identity |
|
|
|
number of pivots / dimension of column space | integer |
Notation
| Symbol | Meaning |
|---|---|
|
|
row echelon form |
|
|
reduced row echelon form |
| pivot | first nonzero entry in a row of REF/RREF |
|
|
inverse matrix (square, when it exists) |
Conditions / Assumptions
- Matrix product
requires the number of columns of to equal the number of rows of . -
is invertible if and only if is square and (full pivots), equivalently has a unique solution for every . - Row reduction assumes exact arithmetic in theory; numerical practice needs pivoting strategies (see numerical methods notes).
Matrix / Vector Form
Identity and inverse (for invertible
Solving via inverse (when
Rank:
Procedure
Gaussian elimination to REF:
- Find the leftmost nonzero column; swap a nonzero entry into the pivot row if needed.
- Scale (optional) and eliminate entries below the pivot.
- Repeat on the submatrix below and to the right of the pivot.
- For RREF, eliminate above pivots and scale pivots to
.
To invert
Worked Example
Common Mistakes
- Multiplying matrices entrywise instead of using row–column products.
- Assuming
. - Scaling a row by zero (destroys information; not an elementary operation).
- Calling
linear when .
Connections
- Related: Systems of Linear Equations, Determinants, Vector Spaces and Bases
- Next: Determinants or Vector Spaces and Bases
- Numerical: LU factorization and elimination methods under Numerical Methods
References
Matrix algebra and elimination follow MIT 18.06 (Strang).[1]
MIT OpenCourseWare, 18.06 Linear Algebra, https://ocw.mit.edu/courses/18-06-linear-algebra-spring-2010/ ↩︎