Inverse of a 2x2 Matrix- Complete Guide
What Is the Inverse of a 2x2 Matrix?
Every square matrix can have an inverse — another matrix that, when multiplied with the original, produces the identity matrix. For a 2x2 matrix, finding this inverse is straightforward if you know the right steps.
The inverse exists only when the determinant is non-zero. That's the hard rule. If your determinant is zero, stop right there. No inverse. No exceptions.
The Formula You Need to Memorize
Given a 2x2 matrix:
A = [a b]
[c d]
The inverse is:
A⁻¹ = (1/det) × [d -b]
[-c a]
Where the determinant is: det = ad - bc
Notice what happened — the diagonal elements swapped positions, and the off-diagonal elements got negative signs. That's your key.
Step-by-Step: How to Find A⁻¹
Step 1: Check the Determinant
Calculate ad - bc. If this equals zero, you're done. No inverse exists. Move on with your life.
If it's non-zero, proceed.
Step 2: Swap the Diagonal Elements
Take the top-left a and bottom-right d. Swap their positions. What was top-left goes to bottom-right, and vice versa.
Step 3: Negate the Off-Diagonal Elements
Change b to -b and c to -c. Simple sign flip.
Step 4: Divide by the Determinant
Multiply every element by 1/(ad - bc). That's your final answer.
Worked Example
Let's find the inverse of:
A = [4 7]
[2 6]
Step 1: det = (4 × 6) - (7 × 2) = 24 - 14 = 10
Determinant is 10. Non-zero. We can continue.
Step 2: Swap diagonals → [6 7]
[2 4]
Step 3: Negate off-diagonals → [6 -7]
[-2 4]
Step 4: Divide by 10 → A⁻¹ = [6/10 -7/10]
[-2/10 4/10]
Simplified: A⁻¹ = [0.6 -0.7]
[-0.2 0.4]
Quick Reference Table
| Matrix A | Determinant | Inverse A⁻¹ |
|---|---|---|
| [2 1] [1 1] | 2(1) - 1(1) = 1 | [1 -1] [-1 2] |
| [3 2] [1 0] | 3(0) - 2(1) = -2 | [0 -1] [-0.5 1.5] |
| [1 2] [3 4] | 1(4) - 2(3) = -2 | [-2 1] [1.5 -0.5] |
Common Mistakes That Ruin Your Answer
- Forgetting to divide by the determinant. The swapped matrix is called the adjugate. Without dividing by det, you don't have the inverse.
- Screwing up the sign changes. Only the off-diagonal elements get negated. Not the diagonal ones.
- Calculating the determinant wrong. It's ad - bc, not ac - bd. Memorize the order.
- Assuming every matrix has an inverse. Singular matrices (det = 0) don't. That's a fact, not a setback.
Practical Applications
You won't find inverse matrices on grocery receipts, but they show up in:
- Solving systems of linear equations — the formula x = A⁻¹b gives you solutions directly
- Computer graphics — 2D transformations like rotations and scaling use inverse matrices
- Cryptography — encoding and decoding messages in certain cipher systems
- Physics — coordinate transformations and quantum mechanics calculations
Verification: How to Check Your Answer
Multiply A × A⁻¹. You should get the identity matrix:
I = [1 0]
[0 1]
If you don't, your inverse is wrong. Simple as that.
The Bottom Line
Finding the inverse of a 2x2 matrix takes about 60 seconds once you know the process. Calculate the determinant, swap diagonals, negate the off-diagonals, divide by det. That's it.
If the determinant is zero, save yourself the trouble — that matrix simply doesn't have an inverse.