A matrix inverse is the matrix that reverses another matrix. For a square matrix AA, the inverse is written A1A^{-1} and satisfies

AA1=A1A=IAA^{-1} = A^{-1}A = I

where II is the identity matrix. In plain language, multiplying by A1A^{-1} cancels the effect of multiplying by AA.

Not every matrix has an inverse. A matrix must be square, and for square matrices the key test is det(A)0\det(A) \ne 0.

What An Inverse Of A Matrix Does

Think of matrix multiplication as a transformation. If AA stretches, rotates, or mixes coordinates, then A1A^{-1} reverses that transformation and brings you back to where you started.

That is why the identity matrix appears in the definition. The identity matrix leaves vectors unchanged, so getting II means the two matrices exactly undo each other.

When A Matrix Inverse Exists

Two conditions matter:

  1. The matrix must be square.
  2. Its determinant must not be zero.

For a 2×22 \times 2 matrix, that determinant is adbcad-bc. If adbc=0ad-bc=0, the matrix does not have an inverse.

2x2 Matrix Inverse Formula

For a 2×22 \times 2 matrix

A=[abcd],A = \begin{bmatrix} a & b \\ c & d \end{bmatrix},

the inverse exists only if

adbc0ad - bc \ne 0

If that condition holds, then the inverse is

A1=1adbc[dbca]A^{-1} = \frac{1}{ad-bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}

This formula is only for 2×22 \times 2 matrices. Larger matrices need a different method, such as row reduction.

Worked 2x2 Matrix Inverse Example

Find the inverse of

A=[4726]A = \begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix}

Step 1: Check that the inverse exists

Compute the determinant:

det(A)=4672=2414=10\det(A) = 4 \cdot 6 - 7 \cdot 2 = 24 - 14 = 10

Because 10010 \ne 0, the matrix is invertible.

Step 2: Apply the 2x2 formula

Swap the diagonal entries, change the signs of the off-diagonal entries, and divide by the determinant:

A1=110[6724]A^{-1} = \frac{1}{10} \begin{bmatrix} 6 & -7 \\ -2 & 4 \end{bmatrix}

Step 3: Check by multiplying back

[4726]110[6724]=110[241428+28121214+24]=[1001]\begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix} \frac{1}{10} \begin{bmatrix} 6 & -7 \\ -2 & 4 \end{bmatrix} = \frac{1}{10} \begin{bmatrix} 24 - 14 & -28 + 28 \\ 12 - 12 & -14 + 24 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}

That check matters. A proposed inverse is only correct if the product gives the identity matrix.

Common Mistakes When Finding A Matrix Inverse

  1. Trying to invert each entry separately. In general, the inverse of a matrix is not found by taking reciprocals of the entries.
  2. Forgetting the existence check. If det(A)=0\det(A) = 0, the matrix has no inverse.
  3. Mixing up the sign change in the 2×22 \times 2 formula. The off-diagonal entries change sign; the diagonal entries swap places.
  4. Skipping the multiplication check. If the product is not II, the inverse is wrong.

Where Matrix Inverses Are Used

Matrix inverses are used when you want to reverse a linear process. In early linear algebra, that usually means solving systems such as Ax=bAx=b by writing

x=A1bx = A^{-1}b

when AA is invertible. The same idea also appears in coordinate changes, linear transformations, and some data and engineering models.

In practice, people often solve systems with row reduction or numerical methods instead of computing a full inverse by hand. The inverse is still a useful concept because it explains when a system has a unique solution and what it means to undo a transformation.

How To Check Your Answer Fast

An inverse should undo the original matrix, not just look plausible. The fastest check is to multiply the matrix and your answer. If you do not get the identity matrix, the inverse is not correct.

Try Your Own Version

Try finding the inverse of

[3152]\begin{bmatrix} 3 & 1 \\ 5 & 2 \end{bmatrix}

Start by checking the determinant. Then compute the inverse and multiply back to see whether you get II. If you want a quick next step after doing it by hand, try your own version in a solver and compare the product, not just the final entries.

Need help with a problem?

Upload your question and get a verified, step-by-step solution in seconds.

Open GPAI Solver →