To find the inverse of a matrix, first compute the determinant . If that number is not zero, swap the diagonal entries, change the signs of the off-diagonal entries, and divide by the determinant. That gives the inverse.
An inverse matrix is the matrix that undoes another matrix. If has an inverse, written , then
where is the identity matrix. In plain language, multiplying by does something, and multiplying by reverses it.
For a matrix, the key existence test is simple: the inverse exists exactly when the determinant is not zero.
What An Inverse Matrix Means
Think of a matrix as a machine that transforms vectors. An inverse matrix is the machine that takes the output and recovers the original input.
That is why inverse matrices matter when solving systems. If
and is invertible, then
This only works when exists.
How To Find The Inverse Of A Matrix
For
the determinant is
If , stop. The matrix is singular, which means it has no inverse.
If , then
This formula applies only to matrices. For larger matrices, a common method is row reduction on the augmented matrix .
Worked Example: Find The Inverse And Check It
Let
First compute the determinant:
Because , the inverse exists.
Now apply the formula. Swap the diagonal entries and , change the signs of and , and divide by :
So
Check it by multiplying back:
This check matters because a matrix only counts as an inverse if the product is the identity matrix.
Common Mistakes When Finding An Inverse Matrix
- Trying to invert a non-square matrix with the usual inverse formula.
- Forgetting to check whether before continuing.
- Dividing by the determinant without swapping the diagonal entries and negating the off-diagonal entries.
- Making a sign error in the off-diagonal terms.
- Thinking the inverse comes from taking reciprocals of the entries.
When Inverse Matrices Are Used
Inverse matrices show up when you need to reverse a linear transformation or solve a system of linear equations with a unique solution. They also appear in change-of-coordinates problems and in many parts of applied math, physics, engineering, and computer graphics.
In practice, people often solve systems by row reduction or matrix factorization instead of computing a full inverse every time. But understanding the inverse still helps linear algebra make sense, because it tells you when a transformation can be undone.
Try A Similar Problem
Find the inverse of
Start by checking the determinant. Then use the formula and multiply back to see whether you get .
Need help with a problem?
Upload your question and get a verified, step-by-step solution in seconds.
Open GPAI Solver →