Matrix Inverse — Definition, Formula & Examples
The matrix inverse of a square matrix is another matrix, written , that produces the identity matrix when multiplied by . In other words, , much like how multiplying a number by its reciprocal gives 1.
Let be an square matrix. If there exists an matrix such that , where is the identity matrix, then is said to be invertible (or nonsingular) and is the unique inverse of , denoted . A matrix is invertible if and only if its determinant is nonzero.
Key Formula
Where:
- = The four entries of the 2×2 matrix A
- = The determinant of A; must be nonzero for the inverse to exist
How It Works
Finding a matrix inverse lets you solve systems of linear equations in one step. If you have , then . For a matrix, a direct formula exists using the determinant. For larger matrices, you can use row reduction on the augmented matrix , reducing the left side to so the right side becomes . Alternatively, you can compute the inverse using the adjugate (classical adjoint) and determinant: .
Worked Example
Problem: Find the inverse of .
Step 1: Compute the determinant.
Step 2: Swap the diagonal entries and negate the off-diagonal entries to form the adjugate matrix.
Step 3: Divide every entry by the determinant.
Step 4: Verify by checking that .
Answer:
Another Example
Problem: Use the inverse to solve .
Step 1: From the previous example, the inverse is already known.
Step 2: Multiply both sides on the left by .
Step 3: Carry out the multiplication.
Answer: and .
Why It Matters
Matrix inverses appear throughout a linear algebra or precalculus course whenever you need to solve systems of equations, reverse transformations, or decrypt encoded messages (as in Hill cipher problems). Engineers and data scientists use matrix inverses to fit models to data through least-squares regression. Understanding when an inverse does and does not exist also builds intuition for concepts like rank and linear independence that matter in more advanced work.
Common Mistakes
Mistake: Forgetting to check whether the determinant is zero before applying the formula.
Correction: Always compute the determinant first. If , the matrix is singular and no inverse exists.
Mistake: Swapping the wrong entries: negating the diagonal and swapping the off-diagonal for a 2×2 matrix.
Correction: For , you swap and (the main-diagonal entries) and negate and (the off-diagonal entries), not the other way around.
