Inverting a 2×22 \times 2 matrix is a short checklist: confirm it is square, compute the determinant adbcad - bc, and — if that number is nonzero — swap the diagonal entries, negate the off-diagonal entries, and divide by the determinant. An inverse matrix undoes another matrix, so if A1A^{-1} exists,

AA1=A1A=I,AA^{-1} = A^{-1}A = I,

where II is the identity. Multiplying by AA does something; multiplying by A1A^{-1} reverses it.

When this method applies

Reach for an inverse matrix when you need to reverse a linear transformation or solve a system with a unique solution. If

Ax=bAx = b

and AA is invertible, then x=A1bx = A^{-1}b — but only when A1A^{-1} exists. Inverses also show up in change-of-coordinates problems and across physics, engineering, and computer graphics. In practice people often solve systems by row reduction or factorization rather than forming a full inverse, yet the inverse still tells you when a transformation can be undone. The existence test is simple: for a 2×22 \times 2 matrix, the inverse exists exactly when the determinant is nonzero.

The procedure, step by step

  1. Check the matrix type. It must be square. Non-square matrices have no inverse in the usual sense.
  2. Test invertibility. For
A=[abcd],A = \begin{bmatrix} a & b \\ c & d \end{bmatrix},

compute det(A)=adbc\det(A) = ad - bc. If it is zero, stop — the matrix is singular and has no inverse.

  1. Apply the formula. If adbc0ad - bc \ne 0,
A1=1adbc[dbca].A^{-1} = \frac{1}{ad - bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}.

This form is for 2×22 \times 2 matrices only; larger matrices use row reduction on [AI][A \mid I].

  1. Verify. Multiply AA by the candidate. If you get II, the inverse is correct.

A full run-through

Let

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

Step 2, the determinant:

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

Since 10010 \ne 0, continue. Step 3, swap 44 and 66, negate 77 and 22, divide by 1010:

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

Step 4, multiply 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}.

A matrix only counts as an inverse if the product is the identity, so this check is not a formality.

Where each step trips people up

  • At "test invertibility," continuing past adbc=0ad - bc = 0. A singular matrix has no inverse; pushing ahead produces nonsense.
  • At "apply the formula," forgetting the swap or the negation. Dividing by the determinant without swapping the diagonal and negating the off-diagonal entries is the most common error, closely followed by a sign slip in b-b or c-c.
  • Earlier, trying to invert a non-square matrix with the 2×22 \times 2 rule, or thinking the inverse comes from taking reciprocals of the entries. Self-check: square first, then determinant, then formula.

FAQ

Run the steps on

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

check the determinant, apply the 2×22 \times 2 formula, then multiply back to confirm you land on II.

Frequently Asked Questions

When does a matrix have an inverse?
A matrix can have an inverse only if it is square and its determinant is not zero. For a 2 x 2 matrix, that condition is $ad - bc \ne 0$.
Is dividing every entry by the determinant the inverse?
No. For a 2 x 2 matrix, you must also swap the diagonal entries and change the signs of the off-diagonal entries before multiplying by $1/(ad-bc)$.

Need help with a problem?

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

Open GPAI Solver →