Study Guide

The inverse and determinant of a matrix

AP Precalculus· AP Precalculus CED — Unit 4: Functions Involving Parameters, Vectors, and Matrices· 14 min read

1. Core Concepts Overview★★☆☆☆⏱ 3 min

This topic makes up approximately 2–4% of the total AP Precalculus exam score, and appears in both multiple-choice (MCQ) and free-response (FRQ) sections. Per the AP Precalculus Course and Exam Description, only 2×2 matrix determinants and inverses are assessed.

📘 Definition

Determinant

or

A scalar value derived exclusively from square matrices that encodes two key pieces of information: the signed area of the parallelogram formed by the matrix's column vectors, and whether the matrix is invertible.

📘 Definition

Inverse of a square matrix

The unique matrix such that the product , where is the 2×2 identity matrix. The inverse undoes the linear transformation represented by .

📘 Definition

2×2 Identity Matrix

The multiplicative identity for 2×2 matrices, where any matrix multiplied by equals itself.

Example:

2. Determinant of a 2×2 Matrix★★☆☆☆⏱ 4 min

For any general 2×2 matrix , the determinant is calculated with a simple formula. Geometrically, the determinant equals the signed area of the parallelogram formed by the two column vectors of as adjacent sides.

det(A)=adbcdet(A) = ad - bc

The most important use of the determinant for AP Precalculus is classifying matrices by invertibility:

  • If : The area is zero, so column vectors are linearly dependent. The matrix is singular and has no inverse.

  • If : The matrix is non-singular and has exactly one inverse.

📐 Worked Example

Calculate the determinant of , and state whether is invertible.

  1. 1

    Identify entries matching the general 2×2 form:

  2. 2
    a=3, b=2, c=4, d=1a=3,\ b=-2,\ c=4,\ d=1
  3. 3

    Write the determinant formula:

  4. 4
    det(A)=adbcdet(A) = ad - bc
  5. 5

    Substitute values and simplify, expanding the double negative explicitly:

  6. 6
    det(A)=(3)(1)(2)(4)=3+8=11det(A) = (3)(1) - (-2)(4) = 3 + 8 = 11
  7. 7

    Check if determinant is non-zero to confirm invertibility: Since , is invertible.

Exam tip:

When calculating determinants with negative entries, always explicitly expand the double negative from the term—this is the most common careless error on MCQ inverse classification questions.

3. Inverse of a 2×2 Matrix★★★☆☆⏱ 4 min

If a 2×2 matrix is non-singular (), we can calculate its inverse using a formula derived from the determinant. The formula uses the adjugate matrix, constructed by swapping main diagonal entries and flipping the sign of off-diagonal entries.

A1=1det(A)[dbca]A^{-1} = \frac{1}{\det(A)} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}
📐 Worked Example

Find the inverse of , and verify your result.

  1. 1

    First calculate the determinant to confirm an inverse exists:

  2. 2
    det(B)=(2)(4)(3)(1)=83=50,soinverseexistsdet(B) = (2)(4) - (3)(1) = 8 - 3 = 5 \neq 0, so inverse exists
  3. 3

    Construct the adjugate matrix by swapping main diagonal entries and flipping off-diagonal signs:

  4. 4
    textadj(B)=[4312]text{adj}(B) = \begin{bmatrix} 4 & -3 \\ -1 & 2 \end{bmatrix}
  5. 5

    Scale the adjugate by the reciprocal of the determinant to get the inverse:

  6. 6
    B1=[45351525]B^{-1} = \begin{bmatrix} \frac{4}{5} & -\frac{3}{5} \\ -\frac{1}{5} & \frac{2}{5} \end{bmatrix}
  7. 7

    Verification: Multiplying gives the identity matrix , confirming the result is correct.

Exam tip:

If you are asked to find an inverse on FRQ, you can earn a point for correctly checking the determinant first, even if you make an arithmetic mistake later—don't skip this step.

4. Solving Linear Systems with Inverse Matrices★★★☆☆⏱ 3 min

Any system of two linear equations in two variables can be written in compact matrix form , where:

  • = 2×2 coefficient matrix of variable coefficients

  • = column vector of unknown variables

  • = column vector of constant right-hand side terms

If is invertible, we can solve for by multiplying both sides on the left by :

A1Ax=A1b    Ix=A1b    x=A1bA^{-1}A\vec{x} = A^{-1}\vec{b} \implies I\vec{x} = A^{-1}\vec{b} \implies \vec{x} = A^{-1}\vec{b}

If is singular, the system has either no solution or infinitely many solutions, which can be checked with substitution or elimination.

📐 Worked Example

Solve the system below using the inverse matrix method:

  1. 1

    Write the system in matrix form :

  2. 2
    A=[2531],x=[xy],b=[115]A = \begin{bmatrix} 2 & 5 \\ 3 & -1 \end{bmatrix}, \quad \vec{x} = \begin{bmatrix} x \\ y \end{bmatrix}, \quad \vec{b} = \begin{bmatrix} 11 \\ -5 \end{bmatrix}
  3. 3

    Calculate the determinant to confirm invertibility:

  4. 4
    det(A)=(2)(1)(5)(3)=215=170det(A) = (2)(-1) - (5)(3) = -2 - 15 = -17 \neq 0
  5. 5

    Calculate the inverse of :

  6. 6
    A1=117[1532]=117[1532]A^{-1} = \frac{1}{-17} \begin{bmatrix} -1 & -5 \\ -3 & 2 \end{bmatrix} = \frac{1}{17} \begin{bmatrix} 1 & 5 \\ 3 & -2 \end{bmatrix}
  7. 7

    Multiply by to get the solution:

  8. 8
    x=117[1532][115]=[14174317]\vec{x} = \frac{1}{17} \begin{bmatrix} 1 & 5 \\ 3 & -2 \end{bmatrix} \begin{bmatrix} 11 \\ -5 \end{bmatrix} = \begin{bmatrix} -\frac{14}{17} \\ \frac{43}{17} \end{bmatrix}
  9. 9

    Final solution: ,

Exam tip:

Always confirm that the order of variables in the coefficient matrix matches across both equations—if you swap and entries, you will get the wrong solution.

5. Additional AP-Style Worked Examples★★★★☆⏱ 4 min

📐 Worked Example

What is the determinant of , and is invertible? A: , is not invertible B: , is invertible C: , is invertible D: , is not invertible

  1. 1

    Use the 2×2 determinant formula , with , , , :

  2. 2
    det(C)=(2)(1)(4)(3)=2+12=14det(C) = (-2)(-1) - (4)(-3) = 2 + 12 = 14
  3. 3

    Since , is invertible. The correct answer is B.

📐 Worked Example

Given matrix , where is a real parameter: (a) Find in terms of (b) Find all for which is singular (c) For , find

  1. 1

    (a) Apply the determinant formula:

  2. 2
    det(D)=k(k3)(2)(4)=k23k8det(D) = k(k-3) - (2)(4) = k^2 - 3k - 8
  3. 3

    (b) is singular when . Solve with quadratic formula:

  4. 4
    k=3±9+322=3±412k = \frac{3 \pm \sqrt{9 + 32}}{2} = \frac{3 \pm \sqrt{41}}{2}
  5. 5

    (c) Substitute and calculate inverse:

  6. 6
    D=[1242],det(D)=10D1=110[2241]=[151525110]D = \begin{bmatrix} 1 & 2 \\ 4 & -2 \end{bmatrix}, \quad \det(D) = -10 \\ D^{-1} = \frac{1}{-10} \begin{bmatrix} -2 & -2 \\ -4 & 1 \end{bmatrix} = \begin{bmatrix} \frac{1}{5} & \frac{1}{5} \\ \frac{2}{5} & -\frac{1}{10} \end{bmatrix}
📐 Worked Example

A bakery produces croissants () and muffins (). Each croissant needs 2 cups flour + 1 egg, each muffin needs 1 cup flour + 2 eggs. A shift uses 22 cups flour and 20 eggs. Set up a matrix equation and use inverse matrix to find and .

  1. 1

    Translate to matrix form :

  2. 2
    A=[2112],x=[cm],b=[2220]A = \begin{bmatrix} 2 & 1 \\ 1 & 2 \end{bmatrix}, \quad \vec{x} = \begin{bmatrix} c \\ m \end{bmatrix}, \quad \vec{b} = \begin{bmatrix} 22 \\ 20 \end{bmatrix}
  3. 3

    Calculate determinant and inverse:

  4. 4
    det(A)=41=3,A1=13[2112]det(A) = 4 - 1 = 3, \quad A^{-1} = \frac{1}{3}\begin{bmatrix} 2 & -1 \\ -1 & 2 \end{bmatrix}
  5. 5

    Solve for :

  6. 6
    x=13[2112][2220]=[86]\vec{x} = \frac{1}{3}\begin{bmatrix} 2 & -1 \\ -1 & 2 \end{bmatrix} \begin{bmatrix} 22 \\ 20 \end{bmatrix} = \begin{bmatrix} 8 \\ 6 \end{bmatrix}
  7. 7

    Result: 8 croissants and 6 muffins were baked.

6. Common Pitfalls

Wrong move:

Calculating as instead of .

Why:

Students mix up the order of terms after swapping entries for the inverse.

Correct move:

Always state the rule 'main diagonal product minus off-diagonal product' before substituting values.

Wrong move:

Flipping the sign of the main diagonal entries instead of the off-diagonal entries when finding the inverse.

Why:

Students misremember the inverse formula.

Correct move:

Recite 'swap main diagonal, flip off-diagonal signs' to yourself before starting calculation.

Wrong move:

Forgetting to scale all entries of the adjugate matrix by , only scaling one or two entries.

Why:

Students rush after constructing the adjugate and drop the scalar multiple.

Correct move:

Write the scalar multiple outside the adjugate matrix before calculating any entries.

Wrong move:

Trying to compute an inverse for a matrix with .

Why:

Students forget that determinant zero means no inverse exists, and blindly apply the inverse formula.

Correct move:

Check first; if it equals zero, state 'matrix is singular, no inverse exists' and stop.

Wrong move:

Multiplying as (right multiplication) instead of left multiplication.

Why:

Students forget matrix multiplication is not commutative, and order matters.

Correct move:

Always multiply the n×n inverse on the left of the n×1 constant vector to get a valid solution.

Wrong move:

Putting constant terms from the right-hand side of the system into the coefficient matrix .

Why:

Students confuse coefficients and constants when transcribing the system.

Correct move:

Separate variable terms (left of equals) and constant terms (right of equals) before building matrices.

7. Quick Reference Cheatsheet

Category

Formula

Notes

Determinant of 2×2 Matrix

Only for square matrices; = singular

Inverse of 2×2 Matrix

Only exists if ;

2×2 Identity Matrix

Multiplicative identity:

Linear System Matrix Form

= coefficients, = variables, = constants

Solve with Inverse

Only for invertible , gives unique solution

Singular Matrix

No inverse; system has 0 or infinitely many solutions

Non-Singular Matrix

Unique inverse; system has one unique solution

What's Next

This topic is the foundation for all further work with linear systems and matrix transformations in AP Precalculus Unit 4. Immediately after mastering determinants and inverses, you will learn to solve larger systems of linear equations using row operations, and interpret solutions to parameter-dependent systems in context. Without understanding how determinants indicate invertibility, you will struggle to determine when a system has a unique solution, and will not be able to apply inverse methods efficiently on exam questions. This topic also connects to linear transformations, a core Unit 4 topic: the determinant describes how a transformation scales area, and the inverse lets you reverse a transformation to map outputs back to inputs.