The Inverse of a 2x2 Matrix

The three-step method for inverting a 2x2 matrix: find the determinant, swap the main diagonal and flip the other signs, then divide - plus why a zero determinant means no inverse.

--

Every non-zero number has a reciprocal: multiply 5 by  \tfrac{1}{5} and you get 1. Matrices have the same idea. The inverse of a matrix is the one that multiplies with it to give the identity matrix — and for a 2×2 there is a short formula.

Concept What an inverse is

The inverse of  A , written  A^{-1} , satisfies:

 A \times A^{-1} = I

Two cautions. The symbol  A^{-1} is notation, not an exponent — it does not mean one divided by A. And the inverse only exists when the determinant is not zero.

Theorem The formula
 A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}
 A^{-1} = \frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

Three steps are hiding in that formula: find the determinant, rearrange the entries, then divide.

Concept Swap and change signs
3 2 1 4 4 −2 −1 3 3 and 4 swap; 2 and 1 change sign
The two entries on the main diagonal trade places. The two on the other diagonal keep their places but flip sign. Nothing else moves.
Example Inverting a matrix

Find the inverse of  A = \begin{pmatrix} 3 & 2 \\ 1 & 4 \end{pmatrix} .

Step 1 — the determinant:
 \det(A) = (3)(4) - (2)(1) = 12 - 2 = 10
Step 2 — swap the main diagonal, flip the signs of the other:
 \begin{pmatrix} 4 & -2 \\ -1 & 3 \end{pmatrix}
Step 3 — divide every entry by 10:
 A^{-1} = \begin{pmatrix} 0.4 & -0.2 \\ -0.1 & 0.3 \end{pmatrix}
⟹ the inverse is found
Example Checking the answer

Multiply  A by  A^{-1} and confirm the identity matrix appears.

Entry (1,1):  (3)(0.4) + (2)(-0.1) = 1.2 - 0.2 = 1
Entry (1,2):  (3)(-0.2) + (2)(0.3) = -0.6 + 0.6 = 0
Entry (2,1):  (1)(0.4) + (4)(-0.1) = 0.4 - 0.4 = 0
Entry (2,2):  (1)(-0.2) + (4)(0.3) = -0.2 + 1.2 = 1
⟹ the product is I, so the inverse is correct

This check is worth doing every time — a single sign error is easy to make and instantly visible here.

Note When there is no inverse

If  ad - bc = 0 , the formula would divide by zero. Such a matrix has no inverse and is called singular — the exact parallel of zero having no reciprocal among the numbers.

Check the determinant first; if it is 0, stop there.
Remember  A^{-1} is a symbol, not a power.
Only the second diagonal changes sign, never the first.
Summary
  1. The inverse satisfies A × A⁻¹ = I, mirroring reciprocals of numbers.
  2. Step 1: compute the determinant ad − bc.
  3. Step 2: swap the main diagonal and flip the signs of the other.
  4. Step 3: divide every entry by the determinant.
  5. No inverse exists when the determinant is 0; always verify by multiplying back.