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.

The 2x2 Inverse Formula and Its Symbols

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

When it does, the inverse is

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

Here a,b,c,da, b, c, d are the entries, and adbcad - bc is the determinant. The diagonal entries aa and dd swap places, the off-diagonal entries bb and cc change sign, and everything is divided by the determinant. This formula is only for 2×22 \times 2 matrices; larger ones need a different method, such as row reduction.

Why the Formula Has This Shape

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 leaves vectors unchanged, so getting II means the two matrices exactly undo each other.

The determinant in the denominator is the reason an inverse can fail to exist. For a 2×22 \times 2 matrix the determinant is adbcad - bc, and dividing by it is only possible when it is nonzero. So two conditions must hold: the matrix must be square, and its determinant must not be zero. If adbc=0ad - bc = 0, the matrix has no inverse.

Worked 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 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}

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

Practice and the Fast Check

Find the inverse of

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

Start by computing the determinant, then apply the formula, then multiply back to confirm you get II. The fastest verification is always the same: multiply the matrix by your answer, and if you do not get the identity, the inverse is wrong. Comparing the product against II catches errors that comparing the final entries alone would miss.

Calculation Traps

  1. Inverting each entry separately. The inverse is not found by taking reciprocals of the entries.
  2. Skipping the existence check. If det(A)=0\det(A) = 0, there is no inverse.
  3. Mishandling the sign change. 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 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 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 remains a useful concept because it explains when a system has a unique solution and what it means to undo a transformation.

Frequently Asked Questions

What is the inverse of a matrix?
The inverse of a square matrix A is the matrix that reverses it: multiplying A by its inverse in either order gives the identity matrix. In plain language, if A stretches, rotates, or mixes coordinates, the inverse undoes that transformation and brings vectors back to where they started.
When does a matrix have an inverse?
Two conditions must hold: the matrix must be square, and its determinant must not be zero. For a 2 by 2 matrix with entries a, b, c, d, the determinant is ad minus bc. If ad minus bc equals zero, the matrix has no inverse.
How do you find the inverse of a 2 by 2 matrix?
First compute the determinant ad minus bc and confirm it is nonzero. Then swap the two diagonal entries, change the signs of the two off-diagonal entries, and divide every entry by the determinant. This formula works only for 2 by 2 matrices; larger matrices need a different method, such as row reduction.
How do you check that a matrix inverse is correct?
Multiply the original matrix by your computed inverse. If the product is the identity matrix, with ones on the diagonal and zeros elsewhere, the inverse is correct. Getting the identity confirms the two matrices exactly undo each other, which is the defining property of an inverse.

Need help with a problem?

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

Open GPAI Solver →