To find the inverse of a 2×22 \times 2 matrix, first compute the determinant adbcad - bc. 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 AA has an inverse, written A1A^{-1}, then

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

where II is the identity matrix. In plain language, multiplying by AA does something, and multiplying by A1A^{-1} reverses it.

For a 2×22 \times 2 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

Ax=bAx = b

and AA is invertible, then

x=A1bx = A^{-1}b

This only works when A1A^{-1} exists.

How To Find The Inverse Of A 2×22 \times 2 Matrix

For

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

the determinant is

det(A)=adbc\det(A) = ad - bc

If adbc=0ad - bc = 0, stop. The matrix is singular, which means it has no inverse.

If adbc0ad - bc \ne 0, then

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

This formula applies only to 2×22 \times 2 matrices. For larger matrices, a common method is row reduction on the augmented matrix [AI][A \mid I].

Worked Example: Find The Inverse And Check It

Let

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

First compute the determinant:

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

Because 10010 \ne 0, the inverse exists.

Now apply the formula. Swap the diagonal entries 44 and 66, change the signs of 77 and 22, and divide by 1010:

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

So

A1=[3/57/101/52/5]A^{-1} = \begin{bmatrix} 3/5 & -7/10 \\ -1/5 & 2/5 \end{bmatrix}

Check it by multiplying back:

[4726][3/57/101/52/5]=[1001]\begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix} \begin{bmatrix} 3/5 & -7/10 \\ -1/5 & 2/5 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}

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 adbc=0ad - bc = 0 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

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

Start by checking the determinant. Then use the 2×22 \times 2 formula and multiply back to see whether you get II.

Need help with a problem?

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

Open GPAI Solver →