All 4 Precalculus units
📈
AP Precalculus · Unit 4 of 4

Functions Involving Parameters, Vectors & Matrices

Not assessed on the exam9 lessons · 123 min52 terms

What this unit covers

The topics below follow the published Precalculus course framework for Unit 4. Precalculus publishes no per-unit weighting, so there is no percentage to chase here.

ParametricVectorsMatricesLinear transformations

Lessons in this unit

Formulas in Unit 4

Parametric form
x = f(t) · y = g(t)
Evaluate a point by plugging in a value of t. Eliminate t by solving one equation for it and substituting into the other.
Vector operations
⟨a, b⟩ + ⟨c, d⟩ = ⟨a + c, b + d⟩ · |⟨a, b⟩| = √(a² + b²)
Addition is component-wise; magnitude is the Pythagorean length of the components. Scalar multiplication k⟨a, b⟩ = ⟨ka, kb⟩ scales the length by |k|.
Determinant and product size
det[[a, b], [c, d]] = ad − bc · (m×n)(n×p) = m×p
The determinant is the main diagonal product minus the anti-diagonal product. Matrix multiplication requires the first matrix’s column count to equal the second’s row count.
Common 2×2 transformations
reflect x-axis [[1, 0], [0, −1]] · reflect y-axis [[−1, 0], [0, 1]] · identity [[1, 0], [0, 1]]
Each column shows where a basis vector goes. The identity leaves every vector fixed; a reflection flips the sign of one coordinate.
The four conic sections in standard form
circle: (x − h)² + (y − k)² = r² · ellipse: (x − h)²/a² + (y − k)²/b² = 1 · parabola: (y − k) = a(x − h)² · hyperbola: (x − h)²/a² − (y − k)²/b² = 1
The distinguishing feature is how the squared terms combine: both positive and equal coefficients gives a circle, both positive and unequal gives an ellipse, opposite signs gives a hyperbola, and only one squared term gives a parabola.
Parametrizing a circle and an ellipse
circle radius r: x = r cos t, y = r sin t · ellipse: x = a cos t, y = b sin t
Both are traced counterclockwise starting at (r, 0) or (a, 0). Swapping sine and cosine, or negating one, reverses or rotates the starting point.
Two formulas for the dot product
u · v = u₁v₁ + u₂v₂ · u · v = |u||v|cos θ
Setting the two equal and solving for cos θ is how the angle between vectors is found. Note that the dot product is commutative: u · v = v · u.
Angle between vectors, and the perpendicularity test
cos θ = (u · v)/(|u||v|) · u ⟂ v ⟺ u · v = 0
Compute the two magnitudes and the dot product, divide, then take arccos. The result always lies in [0°, 180°], since arccos does.
Determinant and inverse of a 2 × 2 matrix
for A = [[a, b], [c, d]]: det A = ad − bc · A⁻¹ = (1/det A)·[[d, −b], [−c, a]]
Swap the diagonal entries, negate the off-diagonal ones, divide by the determinant. The inverse exists exactly when det A ≠ 0.
Determinant and solution count
det A ≠ 0 → exactly one solution · det A = 0 → either no solution or infinitely many
The determinant also measures area scaling: |det A| is the factor by which A scales areas, and det A = 0 means it collapses the plane onto a line.
Transition matrix and projection
T = [[stay_city, from_suburb], [to_suburb, stay_suburb]] · next = T · current · after n steps: Tⁿ · initial
Each **column** must sum to 1 in this convention: everyone currently in a state has to go somewhere. Checking the column sums catches setup errors immediately.

Every term in Unit 4

All 52 terms we publish for Functions Involving Parameters, Vectors & Matrices, with definitions. Reading them through is the fastest way to find the ones you cannot define — then drill those in cram mode until you can produce them without the prompt.

Matrix as a transformation
The columns of the matrix are the images of the unit vectors (1, 0) and (0, 1); |det| gives the area scaling factor.
Parametric equations
x and y each given as functions of a parameter t. They add direction and timing that a single y = f(x) relation cannot express.
Eliminating the parameter
Solve one equation for t and substitute, or use an identity such as cos²t + sin²t = 1. The resulting curve may include points the parameterization does not reach.
Parametrically defined circles and ellipses
x = h + a cos t, y = k + b sin t traces an ellipse centered at (h, k); equal a and b give a circle.
Vector components and magnitude
A vector ⟨a, b⟩ has magnitude √(a² + b²) and direction arctan(b/a), adjusted for quadrant.
Vector addition and scalar multiplication
Add componentwise; multiplying by a scalar scales the magnitude and reverses direction if the scalar is negative.
Unit vector
A vector of magnitude 1 in a given direction, found by dividing a vector by its own magnitude.
Position, velocity and displacement vectors
A position vector locates a point; velocity gives rate and direction of change; displacement is the difference between two positions.
Matrix multiplication
Row by column: the (i, j) entry is the dot product of row i and column j. It is not commutative, so order matters.
Identity and inverse matrices
The identity leaves vectors unchanged. A matrix has an inverse exactly when its determinant is non-zero.
Determinant of a 2×2 matrix
ad − bc. Its absolute value is the area scale factor of the transformation, and a determinant of zero means the transformation collapses the plane onto a line.
Solving systems with matrices
Write AX = B and compute X = A⁻¹B. Works only when A is invertible; a zero determinant means no unique solution.
Linear transformation composition
Applying transformation A then B corresponds to the product BA — the matrices multiply in the reverse of the order applied.
Orientation of a parametric curve
The direction of travel as t increases, shown with arrows. Two parameterizations can trace the same curve in opposite directions.
Domain restrictions from a parameter
Restricting t restricts the portion of the curve traced. Eliminating the parameter loses this information, so it must be stated separately.
Parameterizing a line
x = x₀ + at, y = y₀ + bt travels through (x₀, y₀) in the direction of the vector ⟨a, b⟩.
Dot product
a·b = a₁b₁ + a₂b₂ = |a||b| cos θ. Zero means the vectors are perpendicular.
Vector projection qualitatively
The component of one vector along another. It answers how much of a force acts in a given direction.
Resultant vector
The single vector equivalent to several applied together, found by adding components. Its magnitude is not the sum of the magnitudes unless the vectors are parallel.
Matrix representing a rotation
A rotation by θ about the origin is [[cos θ, −sin θ], [sin θ, cos θ]], with determinant 1 since rotation preserves area.
Singular matrix
A matrix with determinant zero. It has no inverse, and the corresponding system has either no solution or infinitely many.
Transition matrix
Encodes probabilities of moving between states; repeated multiplication predicts the long-run distribution.
Implicitly defined relation
An equation in x and y that constrains the pair without expressing one as a formula in the other. x² + y² = 25 is a relation but not a function — x = 3 gives y = ±4.
Splitting an implicit curve into functions
Solve for y and take each branch separately. The ellipse x²/4 + y²/9 = 1 splits into upper and lower semi-ellipses, each a function on [−2, 2].
Identifying a conic from its equation
Both squares positive with equal coefficients gives a circle; positive with unequal coefficients gives an ellipse; opposite signs gives a hyperbola; only one squared variable gives a parabola.
Completing the square on a conic
Group the x terms and y terms, complete each square, and add the same constants to the right side. x² + y² − 6x + 4y − 12 = 0 becomes (x − 3)² + (y + 2)² = 25.
Empty conic
If completing the square leaves a sum of squares equal to a negative number, no real points satisfy the equation. Exactly zero on the right gives a single point.
Conic sections as slices of a cone
One family distinguished only by the cutting angle: perpendicular to the axis gives a circle, tilted gives an ellipse, parallel to a side gives a parabola, steeper still gives a hyperbola.
Parametrization is not the path
The path is a set of points; the parametrization is one way of moving along it. (3cos t, 3sin t) and (3sin t, 3cos t) trace the same circle in opposite directions.
Eliminating the parameter can enlarge the curve
x = t², y = t traces only the right half of x = y², since t² is never negative. The rectangular equation describes the whole parabola, so the parameter domain must be reported too.
Parametrizing a circle clockwise
x = r cos t, y = −r sin t starts at (r, 0) and moves down — clockwise. Negating the sine reverses the orientation without changing the starting point.
Projectile in parametric form
x = v₀cos(θ)t and y = v₀sin(θ)t − ½gt². The parametric form answers timing questions directly; the rectangular path hides the time entirely.
Dot product from components
u · v = u₁v₁ + u₂v₂. Multiply matching components and add — the result is a single number, which is why it is also called the scalar product.
Dot product from magnitudes
u · v = |u||v|cos θ. Setting this equal to the component form and solving for cos θ is how the angle between two vectors is found.
Sign of a dot product
Positive means the angle is under 90°, negative means over 90°, zero means exactly 90°. Magnitudes are always positive, so the sign is the sign of cos θ.
Perpendicularity test
u ⟂ v exactly when u · v = 0. One arithmetic check, no angle computation — the most-used fact about the dot product.
Magnitude from a self dot product
u · u = u₁² + u₂² = |u|², so |u| = √(u · u). The dot product contains the distance formula as a special case, and u · u is never negative.
Perpendicular vector in two dimensions
Swap the components and negate one: ⟨a, b⟩ ⟂ ⟨−b, a⟩. Check with the dot product: a(−b) + b(a) = 0.
Work as a dot product
W = F · d, which captures the idea that only the component of force along the motion contributes. Force ⟨6, 8⟩ N over displacement ⟨4, 3⟩ m does 48 J.
Dot product is a scalar
The result is a number, not a vector, so writing u · v = ⟨5, 0⟩ is a category error. It also has no inverse: u · v = u · w does not give v = w.
Matrix equation for a system
Write the system as AX = B with A the coefficient matrix. If A is invertible, X = A⁻¹B solves the whole system at once.
Inverse of a 2×2 matrix
For [[a, b], [c, d]], the inverse is (1/det)·[[d, −b], [−c, a]]: swap the diagonal, negate the off-diagonal, divide by the determinant.
Zero determinant and solution count
No unique solution — either none or infinitely many. The determinant alone cannot distinguish them; the constants decide whether the lines are identical or merely parallel.
Determinant as an area factor
|det A| is the factor by which A scales areas. det A = 0 means A collapses the plane onto a line, which is exactly why it cannot be undone.
Matrix multiplication is not commutative
AB and BA are generally different and may not both be defined. So "multiply both sides by A⁻¹" must specify which side.
Which side to multiply by an inverse
AX = B needs LEFT multiplication: A⁻¹AX = A⁻¹B, so X = A⁻¹B. Multiplying on the right would give XA⁻¹, which is not what the equation permits.
Column sums of a transition matrix
Each column must sum to exactly 1 — everyone currently in a state has to go somewhere. Checking the column sums catches a transposed or mis-entered matrix immediately.
Projecting with a transition matrix
Multiply T by the current distribution for the next step, or use Tⁿ for n steps. The total should be conserved at every step, which is the invariant to verify.
Steady state condition
T·X = X, meaning the flows balance rather than stop. Solve it together with the requirement that the components sum to the total, which pins down the scale.
Steady state is independent of the start
It depends only on T and the total. Begin with everyone in one state or the other and you converge to the same split — the most useful property of these models.
Steady state does not mean no movement
Individuals keep transitioning at the same rates; only the aggregate counts are stable. It is a dynamic equilibrium, not a frozen one.
What a transition matrix assumes
That the probabilities are constant over time and that the next state depends only on the current one, not on history. Both are strong assumptions and both fail for real migration data.

What examiners penalize here

Practice Precalculus

Our practice bank is drawn from across the whole course rather than filtered to one unit, which is closer to how the exam asks anyway — it will not tell you which unit a question is testing.

Questions about this unit

How much of the AP Precalculus exam is Unit 4?

The Precalculus course framework does not publish a per-unit weighting, so there is no percentage to quote for Unit 4 and anyone who gives you one is guessing. Spread your time by where your own errors are instead.

What topics are covered in Precalculus Unit 4?

Functions Involving Parameters, Vectors & Matrices covers Parametric, Vectors, Matrices and Linear transformations. We publish 52 terms with definitions for this unit, all of them on this page.

How should I study Precalculus Unit 4?

Read the 9 lessons below first — about 125 minutes — then drill the 52 terms in cram mode until you can produce each definition from memory rather than just recognize it. Recognition is what makes a unit feel finished when it is not. Finish with practice questions and read the explanation for every one you get right by elimination as well as the ones you miss.

All 4 units of AP Precalculus

  1. Unit 1 · Polynomial & Rational Functions
  2. Unit 2 · Exponential & Logarithmic Functions
  3. Unit 3 · Trigonometric & Polar Functions
  4. Unit 4 · Functions Involving Parameters, Vectors & Matrices

Unit names, topics and exam weights follow the published College Board course framework for AP Precalculus. AP® is a trademark registered by the College Board, which does not endorse this site.