AP Course

AP Precalculus

Study nine focused AP Precalculus units through topic lessons, original graph examples, quizzes, and practice sets.

Follow the College Board topic sequence across polynomial, rational, exponential, logarithmic, trigonometric, polar, parametric, vector, and matrix functions.

Lessons
Change in TandemRates of ChangeRates of Change in Linear and Quadratic FunctionsPolynomial Functions and Rates of ChangePolynomial Functions and Complex ZerosPolynomial Functions and End BehaviorRational Functions and End BehaviorRational Functions and ZerosRational Functions and Vertical AsymptotesRational Functions and HolesEquivalent Representations of Polynomial and Rational ExpressionsTransformations of FunctionsFunction Model Selection and Assumption ArticulationFunction Model Construction and ApplicationChange in Arithmetic and Geometric SequencesChange in Linear and Exponential FunctionsExponential FunctionsExponential Function ManipulationExponential Function Context and Data ModelingCompeting Function Model ValidationComposition of FunctionsInverse FunctionsLogarithmic ExpressionsInverses of Exponential FunctionsLogarithmic FunctionsLogarithmic Function ManipulationExponential and Logarithmic Equations and InequalitiesLogarithmic Function Context and Data ModelingSemi-log PlotsPeriodic PhenomenaSine, Cosine, and TangentSine and Cosine Function ValuesSine and Cosine Function GraphsSinusoidal FunctionsSinusoidal Function TransformationsSinusoidal Function Context and Data ModelingThe Tangent FunctionInverse Trigonometric FunctionsTrigonometric Equations and InequalitiesThe Secant, Cosecant, and Cotangent FunctionsEquivalent Representations of Trigonometric FunctionsTrigonometry and Polar CoordinatesPolar Function GraphsRates of Change in Polar FunctionsParametric FunctionsParametric Functions Modeling Planar MotionParametric Functions and Rates of ChangeParametrically Defined Circles and LinesImplicitly Defined FunctionsConic SectionsParametrization of Implicitly Defined FunctionsVectorsVector-Valued FunctionsMatricesThe Inverse and Determinant of a MatrixLinear Transformations and MatricesMatrices as FunctionsMatrices Modeling Contexts
Quizzes
Practice Problems Open a unit to choose from 58 topic-aligned practice sets.

Unit 9 · Topic 4.11 · Optional

The Inverse and Determinant of a Matrix

Use the determinant to decide whether a \(2\times2\) matrix is invertible, calculate its inverse, and interpret the determinant geometrically through vectors and area.

Learning Goals

  • Recognize identity matrices and the defining property of an inverse.
  • Calculate the determinant and inverse of a \(2\times2\) matrix.
  • Verify an inverse through matrix multiplication.
  • Connect a nonzero determinant with invertibility.
  • Interpret the determinant's absolute value as parallelogram area.
  • Use a determinant to identify parallel vectors and solve a matrix equation.

1. The Identity Matrix

The identity matrix plays the role of 1 in matrix multiplication:

\[I_2=\begin{bmatrix}1&0\\0&1\end{bmatrix}, \qquad AI_2=I_2A=A\]

for every \(2\times2\) matrix A. More generally, \(I_n\) has 1s on its main diagonal and 0s everywhere else.

2. What an Inverse Does

An inverse matrix reverses the effect of A. When it exists,

\[AA^{-1}=A^{-1}A=I.\]

Only square matrices can have a two-sided multiplicative inverse of the same dimensions. The notation \(A^{-1}\) does not mean taking the reciprocal of each entry.

3. The \(2\times2\) Determinant

For

\[A=\begin{bmatrix}a&b\\c&d\end{bmatrix},\]

the determinant is the scalar

\[\det(A)=|A|=ad-bc.\]

Multiply down the main diagonal, multiply down the other diagonal, and subtract in that order.

4. A Matrix and Its Internal Structure

The Inverse and Determinant of a Matrix example graphA nonzero determinant means the transformation does not collapse the plane to lower dimension.
A nonzero determinant means the transformation does not collapse the plane to lower dimension.

The four entries can also be read as two row vectors or two column vectors. This viewpoint gives the determinant a geometric meaning and explains why parallel rows or columns prevent inversion.

5. Determinant and Invertibility

DeterminantGeometryInverse
\(\det(A)\ne0\)Rows and columns span a nonzero-area parallelogram\(A^{-1}\) exists
\(\det(A)=0\)Rows or columns are parallel or otherwise linearly dependentNo inverse exists
\[A\text{ is invertible}\quad\Longleftrightarrow\quad\det(A)\ne0.\]

6. Formula for a \(2\times2\) Inverse

If \(ad-bc\ne0\), then

\[A^{-1}=\frac{1}{ad-bc} \begin{bmatrix}d&-b\\-c&a\end{bmatrix}.\]
  1. Compute \(ad-bc\).
  2. Swap the main-diagonal entries a and d.
  3. Negate the off-diagonal entries b and c.
  4. Multiply every entry by \(1/(ad-bc)\).

7. Worked Inverse Example

Let

\[A=\begin{bmatrix}3&1\\2&1\end{bmatrix}.\]

Since \(\det(A)=3(1)-1(2)=1\), A is invertible:

\[A^{-1} =\frac11\begin{bmatrix}1&-1\\-2&3\end{bmatrix} =\begin{bmatrix}1&-1\\-2&3\end{bmatrix}.\]

8. Verify by Multiplication

\[\begin{bmatrix}3&1\\2&1\end{bmatrix} \begin{bmatrix}1&-1\\-2&3\end{bmatrix} = \begin{bmatrix} 3-2&-3+3\\ 2-2&-2+3 \end{bmatrix} = \begin{bmatrix}1&0\\0&1\end{bmatrix}.\]

Because matrix multiplication is not generally commutative, a complete verification may also check \(A^{-1}A=I\). A true inverse satisfies both orders.

9. A Singular Matrix Has No Inverse

For

\[B=\begin{bmatrix}2&4\\1&2\end{bmatrix},\qquad \det(B)=2(2)-4(1)=0.\]

The first row is twice the second. The inverse formula would require division by zero, so B is singular, or noninvertible.

10. Inverse versus Entrywise Reciprocal

ExpressionMeaning
\(A^{-1}\)Matrix satisfying \(AA^{-1}=A^{-1}A=I\)
\(\begin{bmatrix}1/a&1/b\\1/c&1/d\end{bmatrix}\)Entrywise reciprocals; generally not the inverse
\(1/\det(A)\)Scalar factor used in the \(2\times2\) inverse formula

11. Solve a Matrix Equation

If \(AX=\mathbf b\) and A is invertible, multiply both sides on the left by \(A^{-1}\):

\[X=A^{-1}\mathbf b.\]

Using \(A=\begin{bmatrix}3&1\\2&1\end{bmatrix}\) and \(\mathbf b=\begin{bmatrix}7\\5\end{bmatrix}\),

\[X= \begin{bmatrix}1&-1\\-2&3\end{bmatrix} \begin{bmatrix}7\\5\end{bmatrix} = \begin{bmatrix}2\\1\end{bmatrix}.\]

Checking gives \(3(2)+1=7\) and \(2(2)+1=5\).

12. Determinant as Parallelogram Area

Parallelogram spanned by two vectorsTwo vectors from the origin form adjacent sides of a parallelogram whose area is the absolute value of their determinant.uvarea = |det A|
The absolute determinant is area; its sign records orientation rather than negative geometric area.

If the columns of \(A=\begin{bmatrix}a&b\\c&d\end{bmatrix}\) are \(\mathbf u=\langle a,c\rangle\) and \(\mathbf v=\langle b,d\rangle\), then

\[\text{parallelogram area}=|\det(A)|=|ad-bc|.\]

13. Area and Orientation Example

Let \(\mathbf u=\langle3,1\rangle\) and \(\mathbf v=\langle1,4\rangle\). Placing them as columns gives

\[A=\begin{bmatrix}3&1\\1&4\end{bmatrix}, \qquad\det(A)=3(4)-1(1)=11.\]

The parallelogram area is 11 square units. Swapping the columns changes the determinant to \(-11\), but the geometric area remains \(|-11|=11\). The sign records the ordered orientation of the two vectors.

14. Determinant Test for Parallel Vectors

For \(\mathbf u=\langle2,3\rangle\) and \(\mathbf v=\langle4,6\rangle\),

\[\det\begin{bmatrix}2&4\\3&6\end{bmatrix} =2(6)-4(3)=0.\]

The second vector is twice the first, so the parallelogram collapses to a line segment with area 0. The matrix cannot be inverted because two independent directions have been reduced to one.

15. AP Workflow and Common Errors

  1. Confirm that the matrix is square and \(2\times2\).
  2. Compute \(ad-bc\) with the subtraction in the correct order.
  3. If the determinant is 0, stop: no inverse exists.
  4. Swap a and d, negate b and c, and divide by the determinant.
  5. Verify the inverse by multiplying to obtain I.
  6. Use the absolute determinant for geometric area.
  7. Interpret a zero determinant as collapsed area and dependent vectors.
  • Do not interpret \(A^{-1}\) as entrywise reciprocals.
  • Do not divide by a zero determinant.
  • Do not forget to negate both off-diagonal entries.
  • Do not reverse \(ad-bc\) without changing every resulting sign.
  • Do not report a negative geometric area.
  • Do not conclude that \(\det(A)=0\) means every entry is zero.

Key Takeaways

  • Use determinants to decide invertibility and solve systems with inverse matrices.
  • Core relationship: \(\det\begin{pmatrix}a&b\\c&d\end{pmatrix}=ad-bc\)
  • Error check: Do not reverse the determinant subtraction to \(bc-ad\).
Checkpoint · Topic 4.11
  1. Find \(\det\begin{bmatrix}5&2\\3&1\end{bmatrix}\) and decide whether the matrix is invertible.
  2. Calculate and verify the inverse of \(\begin{bmatrix}4&1\\2&1\end{bmatrix}\).
  3. Explain why \(\begin{bmatrix}3&-6\\-1&2\end{bmatrix}\) has no inverse.
  4. Use an inverse matrix to solve \(2x+y=8\) and \(x-y=1\).
  5. Find the area of the parallelogram spanned by \(\langle4,1\rangle\) and \(\langle-2,3\rangle\), then explain what would make that area zero.