Invertible Matrix
BasisPrerequisites
The linear map encoded by a matrix transforms every vector into . Can you always get back? An invertible matrix is exactly one where the answer is yes — the transformation can be perfectly undone.
Definition
Let be an square matrix over a field . is invertible (also called non-singular) if there exists an matrix such that
where is the identity matrix. The matrix is called the inverse of and is written .
A matrix that is not invertible is called singular.
Only square matrices can be invertible: a non-square matrix with represents a map between spaces of different dimensions and cannot have a two-sided inverse of the same type.
The inverse is unique
Suppose both and satisfy (1). Then:
So — every invertible matrix has exactly one inverse. The notation is unambiguous.
Invertibility and linear maps
From Linear Map & Matrix Multiplication, you know that an matrix represents a linear map . The conditions say that is both a left and right inverse of as a function. Therefore:
is invertible if and only if is a bijection.
When is bijective, its inverse function is also linear, and its matrix is .
Characterizing invertibility via Gauss-Jordan
From Gauss-Jordan Elimination, you know that row-reducing a matrix either produces pivot columns (one per column) or leaves at least one free column. For a square matrix, these two outcomes are mutually exclusive and exhaustive — there is no middle ground. This gives a complete characterization:
The following statements are all equivalent for an matrix over :
- is invertible.
- The RREF of is .
- has pivot columns.
- The only solution to is .
- For every , the system has exactly one solution.
- The columns of are linearly independent.
Singular example. For : applying gives . The second column has no pivot, so is singular. The map collapses the entire plane onto a line — you cannot get back.
Computing the inverse via Gauss-Jordan elimination
If is invertible, you can compute by augmenting with the identity matrix and row-reducing the entire block:
Why this works. Every elementary row operation is left-multiplication by an invertible elementary matrix. If the sequence of operations that reduces to corresponds to left-multiplication by , then , so . Applying those same operations to gives .
If the row reduction reaches a zero row on the left side, is singular and has no inverse.
Example. Compute for :
So . Verify: .
The 2×2 shortcut
For over , the formula simplifies to:
provided . The quantity is the determinant ; it is nonzero exactly when is invertible. For and larger matrices, Gauss-Jordan is the systematic approach (see Determinant for the general story).
Properties of the inverse
The following identities all follow directly from the definition :
| Identity | Explanation |
|---|---|
| inverts | |
| Undoing composition reverses order | |
| Transpose and inverse commute | |
| for | Scaling inverts by the reciprocal |
The product rule mirrors everyday reversibility: if you put on socks then shoes, undoing requires removing shoes first, then socks.
Summary
- An matrix is invertible if there exists with ; this is unique and written .
- Invertibility is equivalent to: the RREF of is ; has pivot columns; has only the trivial solution; has a unique solution for every .
- Compute using Gauss-Jordan: row-reduce to .
- Key identities: , , .
- For matrices: when .