An invertible matrix is a square matrix that has a matrix inverse. The inverse reverses the action of the original matrix. If sends to , then sends back to . Formally, an matrix is invertible if there exists an matrix such that . In that case, is unique and is written .
11.1 Definition
Let be an matrix over a field . The matrix is invertible if there exists an matrix such that
and
The matrix is called the inverse of . It is denoted by
Thus
and
The identity matrix plays the role of in matrix multiplication. An invertible matrix is therefore a matrix that has a multiplicative inverse.
11.2 Why the Matrix Must Be Square
The usual inverse is defined for square matrices.
If is , then a product can equal only if is . A product can equal only if the same is . For both identities
and
to hold as a two-sided inverse in the ordinary finite-dimensional setting, the dimensions must match in the square case. Non-square matrices may have one-sided inverses in special cases, but they do not have ordinary two-sided inverses of the same kind used for square matrices.
11.3 The Meaning of an Inverse
If is invertible, then the transformation
can be undone.
Starting with a vector , apply :
Then apply :
By associativity,
Thus recovers the original vector.
Likewise,
for every vector .
11.4 Uniqueness of the Inverse
If a matrix has an inverse, that inverse is unique.
Suppose and are both inverses of . Then
and
We show that :
Since ,
By associativity,
Since ,
Therefore the inverse is unique.
This justifies the notation .
11.5 Invertibility and Linear Systems
Invertibility gives the simplest solution rule for square systems.
If
and is invertible, then multiply both sides by :
Since
we get
Thus an invertible coefficient matrix gives a unique solution for every right-hand side . Conversely, if every system has a unique solution, then is invertible. This equivalence is one form of the invertible matrix theorem.
11.6 Singular Matrices
A square matrix that is not invertible is called singular.
A singular matrix cannot be undone. The transformation loses information. In geometric terms, it collapses at least one nonzero direction. In algebraic terms, the homogeneous equation
has a nonzero solution.
For example,
is singular. Its second row is twice its first row, so the two rows do not give two independent constraints.
Indeed,
A nonzero vector has been sent to zero, so cannot be invertible.
11.7 The Invertible Matrix Theorem
For an matrix over a field, the following statements are equivalent:
| Statement | Meaning |
|---|---|
| is invertible | There exists |
| is row equivalent to | Row reduction gives the identity |
| has a pivot in every column | No free variables occur |
| has rank | Full rank |
| has only the trivial solution | No nonzero vector is collapsed |
| has a unique solution for every | Every right-hand side is reachable exactly once |
| The columns of are linearly independent | No column is redundant |
| The columns of span | Every vector can be produced |
| The linear map is bijective | One-to-one and onto |
| Nonzero determinant |
These conditions are either all true or all false for a given square matrix.
11.8 Invertibility and Row Reduction
A square matrix is invertible exactly when its reduced row echelon form is the identity matrix.
For example,
Row reduce:
using
Then
using
Then
using
Since row reduces to , it is invertible.
11.9 Computing the Inverse by Row Reduction
To compute , form the augmented matrix
Then row reduce. If the left side becomes , the right side becomes :
If the left side cannot be reduced to , then is singular.
This method works because each row operation is equivalent to multiplying on the left by an elementary matrix. Reducing to records the inverse operation on the identity side.
11.10 Example: Computing an Inverse
Let
Form
Use
Then
Use
Then
Use
Then
Therefore
Check:
11.11 Formula for a Inverse
Let
Then is invertible exactly when
In that case,
The scalar is the determinant of .
For example,
has determinant
Therefore
11.12 Invertibility and Determinants
For a square matrix over a field,
if and only if
If
then is singular.
The determinant criterion is often useful theoretically. In computation, however, solving systems by row reduction or decomposition is usually preferred to explicitly computing an inverse. Matrix inversion is often unnecessary when the goal is only to solve .
11.13 Products of Invertible Matrices
If and are invertible matrices, then is invertible, and
The order reverses.
To verify this, compute:
Also,
Thus is the inverse of .
11.14 Powers of an Invertible Matrix
If is invertible, then every positive power
is invertible, and
We also define negative powers by
Thus
This notation is meaningful only when is invertible.
11.15 Transposes of Invertible Matrices
If is invertible, then is invertible, and
To see this, transpose the identity
Using the rule
we get
Similarly, transposing
gives
Therefore is the inverse of .
11.16 Elementary Matrices and Inverses
Every elementary row operation corresponds to multiplication by an elementary matrix.
Each elementary matrix is invertible because each elementary row operation is reversible.
For example, the row operation
on a matrix is represented by
The inverse operation is
represented by
Indeed,
11.17 Invertible Matrices as a Group
The set of all invertible matrices over a field is denoted
It is called the general linear group.
This set is closed under matrix multiplication. It contains the identity matrix. Every element has an inverse. Matrix multiplication is associative. Thus forms a group under multiplication.
This group is important because it represents all invertible linear changes of coordinates in .
11.18 Geometric Meaning
An invertible matrix represents a transformation that preserves dimension.
It may rotate, reflect, shear, scale, or combine these actions. But it cannot collapse a line to a point, a plane to a line, or a three-dimensional region to a plane.
For example,
is invertible. It stretches the -direction by and the -direction by . Its inverse is
The inverse reverses the stretching.
By contrast,
is singular. It sends
to
It collapses the plane onto the -axis, losing the -coordinate. No inverse can recover information that has been lost.
11.19 Solving Without Explicit Inversion
Although the formula
is mathematically correct, it is often not the best computational method.
In numerical computation, one usually solves
by elimination or factorization, such as LU decomposition, rather than computing explicitly. Computing an inverse can cost extra work and may introduce additional numerical error.
Thus the inverse is conceptually important, but direct inversion is not always computationally preferred.
11.20 Common Mistakes
| Mistake | Correction |
|---|---|
| Assuming every square matrix is invertible | A square matrix may be singular |
| Trying to invert a non-square matrix | Ordinary two-sided inverses require square matrices |
| Writing | The correct order is |
| Using when does not exist | First check invertibility |
| Treating as entrywise reciprocal | Matrix inversion is not entrywise inversion |
| Computing an inverse just to solve one system | Use elimination or factorization when appropriate |
11.21 Summary
An invertible matrix is a square matrix whose action can be reversed. Its inverse satisfies
Invertibility has many equivalent forms:
| Viewpoint | Equivalent condition |
|---|---|
| Algebraic | exists |
| Row-reduction | row reduces to |
| Systems | has a unique solution for every |
| Homogeneous systems | has only the zero solution |
| Rank | |
| Columns | Columns are linearly independent and span |
| Geometry | The transformation does not collapse dimension |
| Determinants |
Invertible matrices are the algebraic model of reversible linear transformations. They are central to solving systems, changing coordinates, understanding dimension, and studying linear maps.