Practice Maths

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

For A =
ab
cd


Determinant: det(A) = |A| = adbc

Inverse (when det(A) ≠ 0):
A−1 = 1det(A) ×
d−b
−ca


Swap the diagonal elements, negate the off-diagonal elements, divide by det(A).

Key Properties

PropertyStatementNote
Singular matrixdet(A) = 0No inverse exists
Non-singular matrixdet(A) ≠ 0Inverse exists
Inverse propertyAA−1 = A−1A = IAlways true when inverse exists
det(AB)det(A) × det(B)Determinant is multiplicative
det(kA)k2 × det(A) for 2×2kn × det(A) for n×n

Worked Example 1 — Finding the Determinant

Find det(A) for A =

53
24

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 =

32
11

Step 1: Find det(A) = (3)(1) − (2)(1) = 3 − 2 = 1

Step 2: Swap diagonal, negate off-diagonal:

Adjusted matrix:

1−2
−13

Step 3: Divide by det(A) = 1:

A−1 =

1−2
−13

Verify: AA−1 = (3)(1)+(2)(−1) | (3)(−2)+(2)(3) | ... = [[1,0],[0,1]] = I ✓

Hot Tip: The memory trick for the inverse formula — swap the main diagonal (a and d swap places), negate the off-diagonal (b and c get minus signs), then divide everything by the determinant. Check: if det = 0, division by zero is undefined, so no inverse exists.

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 =

ab
cd
, the determinant is det(A) = ad − bc.

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 =

ab
cd
with det(A) ≠ 0:

  1. Compute det(A) = ad − bc
  2. Form the adjugate matrix by swapping a and d, and negating b and c
  3. Divide every entry by det(A)
Area Application: A transformation matrix T has det(T) = 6. Any region mapped by T will have its area multiplied by |6| = 6. A region of area 5 cm² becomes a region of area 30 cm² after the transformation.

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).
Lesson Tip: Always compute the determinant first before attempting to find the inverse. If det = 0, stop immediately — the inverse does not exist. When the determinant is a fraction, be careful with the division; it often helps to write A−1 as a scalar multiplied by a matrix of integers.

Mastery Practice

  1. Fluency

    Find det(A) for A =

    32
    14
    . Show your working using the formula det(A) = ad − bc.

  2. Fluency

    Find det(B) for B =

    −53
    2−1
    . Be careful with the signs when applying the formula.

  3. Fluency

    Find A−1 for A =

    41
    31
    . Show all steps: find det(A), then apply the inverse formula.

  4. Fluency

    Find B−1 for B =

    2−3
    1−1
    .

  5. Understanding

    Show that the matrix

    62
    31
    is singular. Explain what “singular” means both algebraically and geometrically.

  6. 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.

  7. Understanding

    Find the value of k such that

    k2
    34
    is singular.

  8. Understanding

    Let A =

    21
    53
    . Find A−1, then calculate AA−1 and verify that the result is the identity matrix I.

  9. Problem Solving

    A transformation matrix T =

    12
    01
    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.

  10. Problem Solving

    A 2×2 matrix has det = 0 but is not the zero matrix.

    1. Give a specific example of such a matrix.
    2. Verify that your example has det = 0.
    3. Explain why having det = 0 causes problems when trying to solve a system of equations AX = B using the matrix inverse method.