Inverse Matrices and Determinants
Key Terms
- Determinant (2×2)
- det([[a,b],[c,d]]) = ad − bc.
- Singular matrix
- A matrix with det = 0; has NO inverse; the system of equations it represents has no unique solution.
- Inverse A−1
- For a 2×2 matrix: A−1 = (1/det A) [[d, −b], [−c, a]] (swap diagonal, negate off-diagonal, divide by det).
- Verification
- AA−1 = A−1A = I (the identity matrix).
- Non-singular
- A matrix with det ≠ 0; has a unique inverse.
- Product determinant
- det(AB) = det(A) × det(B).
Inverse Matrices and Determinants
| a | b |
| c | d |
Determinant: det(A) = |A| = ad − bc
Inverse (when det(A) ≠ 0):
A−1 = 1⁄det(A) ×
| d | −b |
| −c | a |
Swap the diagonal elements, negate the off-diagonal elements, divide by det(A).
Key Properties
| Property | Statement | Note |
|---|---|---|
| Singular matrix | det(A) = 0 | No inverse exists |
| Non-singular matrix | det(A) ≠ 0 | Inverse exists |
| Inverse property | AA−1 = A−1A = I | Always true when inverse exists |
| det(AB) | det(A) × det(B) | Determinant is multiplicative |
| det(kA) | k2 × det(A) for 2×2 | kn × det(A) for n×n |
Worked Example 1 — Finding the Determinant
Find det(A) for A =
| 5 | 3 |
| 2 | 4 |
Identify: a = 5, b = 3, c = 2, d = 4
det(A) = ad − bc = (5)(4) − (3)(2) = 20 − 6 = 14
Since det(A) = 14 ≠ 0, the matrix is non-singular and an inverse exists.
Worked Example 2 — Finding the Inverse
Find A−1 for A =
| 3 | 2 |
| 1 | 1 |
Step 1: Find det(A) = (3)(1) − (2)(1) = 3 − 2 = 1
Step 2: Swap diagonal, negate off-diagonal:
Adjusted matrix:
| 1 | −2 |
| −1 | 3 |
Step 3: Divide by det(A) = 1:
A−1 =
| 1 | −2 |
| −1 | 3 |
Verify: AA−1 = (3)(1)+(2)(−1) | (3)(−2)+(2)(3) | ... = [[1,0],[0,1]] = I ✓
Full Lesson: Inverse Matrices and Determinants
Why Do We Need the Determinant?
For ordinary numbers, every non-zero number has a multiplicative inverse: the inverse of 5 is 1/5 because 5 × (1/5) = 1. For matrices, we want to find A−1 such that AA−1 = I, where I is the identity matrix. The determinant tells us whether such an inverse exists.
The determinant of a 2×2 matrix A is a single number that encodes important information about A. For A =
| a | b |
| c | d |
Geometric Meaning
Geometrically, |det(A)| gives the area scaling factor of the linear transformation represented by A. If you apply A to a unit square (area = 1), the resulting shape has area |det(A)|. If det(A) = 3, the transformation triples areas. If det(A) = 0, the transformation collapses everything onto a line (or point) — all area is destroyed, and the transformation cannot be reversed.
Singular Matrices
A matrix is singular when det(A) = 0. This means:
- The matrix has no inverse
- The rows of the matrix are linearly dependent (one row is a multiple of the other)
- Any system of equations Ax = b will either have no solution or infinitely many solutions — never a unique solution
- Geometrically, the transformation collapses 2D space onto a 1D line
Computing the Inverse
For a 2×2 matrix A =
| a | b |
| c | d |
- Compute det(A) = ad − bc
- Form the adjugate matrix by swapping a and d, and negating b and c
- Divide every entry by det(A)
Properties of Determinants
Two important properties you will use:
- det(AB) = det(A) × det(B): the determinant of a product equals the product of the determinants.
- det(kA) = kn × det(A) for an n×n matrix: scaling a matrix by k scales the determinant by kn. For a 2×2 matrix, det(2A) = 4×det(A).
Mastery Practice
-
Fluency
Find det(A) for A =
. Show your working using the formula det(A) = ad − bc.3 2 1 4 -
Fluency
Find det(B) for B =
. Be careful with the signs when applying the formula.−5 3 2 −1 -
Fluency
Find A−1 for A =
. Show all steps: find det(A), then apply the inverse formula.4 1 3 1 -
Fluency
Find B−1 for B =
.2 −3 1 −1 -
Understanding
Show that the matrix
is singular. Explain what “singular” means both algebraically and geometrically.6 2 3 1 -
Understanding
If det(A) = 5, find det(3A) for a 2×2 matrix A. Show your reasoning using the property det(kA) = kn × det(A) where n is the size of the matrix.
-
Understanding
Find the value of k such that
is singular.k 2 3 4 -
Understanding
Let A =
. Find A−1, then calculate AA−1 and verify that the result is the identity matrix I.2 1 5 3 -
Problem Solving
A transformation matrix T =
maps a region R to a region R′. The area of R is 8 cm². Find the area of R′. Explain your answer using the determinant as an area scaling factor.1 2 0 1 -
Problem Solving
A 2×2 matrix has det = 0 but is not the zero matrix.
- Give a specific example of such a matrix.
- Verify that your example has det = 0.
- Explain why having det = 0 causes problems when trying to solve a system of equations AX = B using the matrix inverse method.