Inverse of a Matrix
Matrix Inverse
Multiplicative Inverse of a Matrix
For a square matrix A, the inverse
is written A-1. When
A is multiplied by A-1 the
result is the identity matrix I. Non-square matrices do not have inverses.
Note: Not all square matrices have inverses. A square matrix which has an inverse is called invertible or nonsingular, and a square matrix without an inverse is called noninvertible or singular.
AA-1 = A-1A
= I
Example:
For matrix , its inverse is since
AA-1 =
and A-1A = .
Here are three ways to find the inverse of a matrix:
1. Shortcut for 2x2 matrices
For , the inverse can be found using this formula:
How do you know if a matrix has no inverse when using the augmented matrix method?
If at any point during row reduction you get an entire row of zeros on the left side of the augmented matrix, the matrix is singular (non-invertible). This means the determinant is zero and no inverse exists.
Why does the augmented matrix method work for finding the inverse?
Every row operation you perform is equivalent to multiplying on the left by an elementary matrix. When you transform A into I, the combined effect of all those operations equals A⁻¹. Applying those same operations to the identity matrix on the right accumulates A⁻¹ step by step. In effect, you are solving the equation AX = I for the unknown matrix X.
Augmented matrix method (Method 2) vs. 2×2 shortcut formula (Method 1)
The 2×2 shortcut uses the formula A⁻¹ = (1/det A) · [[d, −b], [−c, a]] and works only for 2×2 matrices. The augmented matrix method uses Gauss-Jordan elimination on [A | I] and works for any size square matrix. For 2×2 matrices, the shortcut is faster. For 3×3 or larger matrices, the augmented matrix method is generally the most practical hand-calculation approach.
Why It Matters
The augmented matrix method is the most versatile technique for finding a matrix inverse by hand. It scales to any size square matrix, unlike the 2×2 shortcut formula. In applications such as solving systems of linear equations, computer graphics transformations, and engineering models, computing the inverse via row reduction is a foundational skill.
Common Mistakes
Mistake: Performing a row operation on only one side of the augmented matrix.
Correction: Every row operation must be applied to the entire augmented row — both the left (A) side and the right (I) side simultaneously. Otherwise the relationship between the two sides is destroyed.
Mistake: Stopping at row echelon form instead of continuing to reduced row echelon form.
Correction: You need the left side to become the full identity matrix (all pivots equal to 1 and all other entries zero). If you only get an upper triangular form, you must continue eliminating entries above each pivot until you reach reduced row echelon form.