Skip to main content
Daily Math Minute

Unit 4: Functions Involving Parameters, Vectors & Matrices

Matrices as Transformations

Using matrices, their inverses, and determinants to represent linear transformations.

Advanced25 min lesson3 min readUpdated August 12, 2026Author not yet attributed

Prerequisites

  • Vector-Valued Functions

A Matrix as a Function That Moves the Whole Plane

A vector-valued function assigns a vector to each value of a parameter. Before reading on: could a matrix, multiplied against any point's coordinate vector, act as its own kind of function — one that transforms every point in the plane according to one fixed rule?

Definition — Matrix as a Linear Transformation

A 2×2 matrix M defines a function on the plane: it sends a point (x, y), written as a column vector, to M times that vector. The determinant of M gives the factor by which the transformation scales area — a determinant of 0 means the transformation collapses the plane onto a lower-dimensional line and has no inverse.

Worked Example — Rotating a Point with a Rotation Matrix

The matrix for a 90° counterclockwise rotation is [[cos 90°, −sin 90°], [sin 90°, cos 90°]] = [[0, −1], [1, 0]]. Apply it to the point (2, 1): the new x-coordinate is 0(2) + (−1)(1) = −1, and the new y-coordinate is 1(2) + 0(1) = 2, giving (−1, 2). This matches the standard 90° rotation rule (x, y) → (−y, x): (−1, 2) — confirmed.
(cosθsinθsinθcosθ)\begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix}

Worked Example — Determinant, Inverse, and Undoing a Transformation

Let M = [[2, 1], [0, 3]]. Its determinant is 2(3) − 1(0) = 6, so M scales area by a factor of 6. Its inverse is M⁻¹ = (1/6)[[3, −1], [0, 2]] = [[1/2, −1/6], [0, 1/3]] — check M·M⁻¹: row 1 gives 2(1/2) + 1(0) = 1 and 2(−1/6) + 1(1/3) = −1/3 + 1/3 = 0; row 2 gives 0(1/2) + 3(0) = 0 and 0(−1/6) + 3(1/3) = 1, producing the identity matrix, confirmed. Apply M to (1, 2): (2(1) + 1(2), 0(1) + 3(2)) = (4, 6). Apply M⁻¹ back to (4, 6): (1/2(4) + (−1/6)(6), 0(4) + 1/3(6)) = (2 − 1, 0 + 2) = (1, 2) — the inverse transformation exactly undid the original, the same inverse relationship an inverse function carries for ordinary functions of x.

Matrix Calculator

Matrix A

Matrix B

Operation
Result

A + B

[681012]\begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}

Tip

Before trusting an inverse matrix, multiply it back against the original — M·M⁻¹ must produce the identity matrix, the same verification habit worth using for any inverse, function or matrix alike.

Common Mistakes

  • Computing a determinant as ad + bc instead of ad − bc for a matrix [[a,b],[c,d]].

    The 2×2 determinant formula is ad − bc, subtraction, not addition — for M = [[2,1],[0,3]] that's 2(3) − 1(0) = 6, not 2(3) + 1(0) = 6, which happens to coincide here only because 1(0) = 0.

  • Assuming every matrix has an inverse.

    A matrix has an inverse only when its determinant is nonzero — a zero determinant means the transformation collapses area to zero and can't be undone, the matrix equivalent of a function that isn't one-to-one.

Key Takeaways

  • A matrix acts as a function on the plane, sending each point's coordinate vector to a new vector via matrix multiplication.
  • A matrix's determinant gives its area-scaling factor; a zero determinant means the transformation has no inverse.
  • An inverse matrix undoes a transformation exactly the way an inverse function undoes a function — verified the same way, by composing and checking for the identity.

Summary

This closes AP Precalculus: functions studied through rates of change, equivalent representations, exponential and logarithmic growth, periodic and polar behavior, and now parametric, vector, and matrix functions — every representation describing structure the others could leave hidden. Calculus builds directly on this foundation, turning the average rates of change studied throughout this course into instantaneous ones.