AP PRECALCULUS — UNIT 4B · FUNCTIONS INVOLVING PARAMETERS, VECTORS, AND MATRICES
Unit 4B — Review
Notes — Concept Synthesis Across Topics 4.8 – 4.14
💡 Review Goals
By the end of this review you will be able to:
- Connect every skill in Unit 4B — vectors, matrices, transformations, modeling — into a unified framework
- Identify which topic a question is testing from its surface features
- Avoid the most common errors that AP graders flag in this unit
- Set up and execute a clean solution to a multi-step matrix or vector problem
1. The Unit at a Glance
Topic | Big Idea |
|---|---|
4.8A | Vectors: magnitude, direction, components ⟨a, b⟩, unit vectors. |
4.8B | Vector operations: addition, subtraction, scalar multiplication. |
4.9 | Vector-valued function r(t) = ⟨x(t), y(t)⟩; AROC is a vector. |
4.10 | Matrices: dimensions, addition, scalar multiplication, multiplication (NOT commutative). |
4.11 | Determinant ad − bc; inverse exists iff det ≠ 0; A⁻¹ formula. |
4.12 | Matrices as transformations: rotations, reflections, scalings, shears. |
4.13A | Matrices as functions; composition = matrix product. |
4.13B | Powers A^n; iterated application; long-term behavior. |
4.14 | Modeling: transition matrices, steady states, network/Markov contexts. |
2. Key Formulas
Vectors:
- |⟨a, b⟩| = √(a² + b²)
- Direction angle: tan θ = b/a (mind the quadrant)
- Components from angle: ⟨|v| cos θ, |v| sin θ⟩
- Unit vector: v / |v|
Matrices:
- det([[a, b], [c, d]]) = ad − bc
- Inverse: A⁻¹ = (1/det) · [[d, −b], [−c, a]]
- AB ≠ BA in general
- (AB)⁻¹ = B⁻¹A⁻¹
Transformations:
- Rotation by θ: [[cos θ, −sin θ], [sin θ, cos θ]]
- Reflection over x-axis: [[1, 0], [0, −1]]; over y-axis: [[−1, 0], [0, 1]]; over y = x: [[0, 1], [1, 0]]
- Scaling by k: kI
- |det(A)| is the area-scaling factor
3. Decision Tree
- VECTOR PROBLEM: identify whether you need magnitude, direction, components, or operation results
- MATRIX PROBLEM: identify dimensions before any operation; for multiplication, count m × n × p carefully
- INVERSE NEEDED: compute determinant FIRST; if zero, no inverse
- TRANSFORMATION QUESTION: identify the standard transformation type; multiply matrices in REVERSE order to compose
- MODELING WITH TRANSITION MATRIX: columns must sum to 1; check by direct computation
4. Top AP-Style Pitfalls
⚠️ Common mistakes
- Computing direction angle as just arctan(b/a) without checking the quadrant.
- Confusing position vector (from origin) with displacement vector (between two points).
- Treating matrix multiplication as commutative — it's not.
- Forgetting that AB has dimensions (rows of A) × (cols of B).
- Computing determinant as ab − cd or as a/d (wrong formulas).
- Trying to invert a matrix with det = 0.
- In a composition, multiplying matrices in the WRONG order — ‘B then A’ is the matrix AB, not BA.
- In transition matrices, mixing up rows and columns when interpreting the model.
5. Worked Mini-Example — Combined Skills
📘 Example — Multi-step problem
A vector v has magnitude 5 and direction angle 60°. Apply a 90° CCW rotation. Find the resulting vector.
- Components of v: ⟨5 cos 60°, 5 sin 60°⟩ = ⟨5/2, 5√3/2⟩
- Rotation matrix R: [[0, −1], [1, 0]]
- R · v = [[0·5/2 − 1·5√3/2], [1·5/2 + 0·5√3/2]] = [[−5√3/2], [5/2]]
- Check magnitude: √(75/4 + 25/4) = √25 = 5 ✓
- New direction: vector points to upper-left, angle 60° + 90° = 150° ✓
6. Key Modeling Workflow
- Read the problem and identify the states (cities, weather conditions, customer types, etc.)
- Build the transition matrix A: column j = ‘where does state j go?’
- Verify column sums (should be 1.0 for probability transitions)
- Set up the initial state vector x_0
- Apply A to step forward: x_1 = A x_0, x_2 = A x_1 = A² x_0, etc.
- For long-term: solve Ax* = x* (with sum constraint) to find steady state
7. Final Reminders
- Keep dimensions straight when multiplying matrices: count rows and columns
- State whether you're computing magnitude, direction, or components — they're different
- Apply the formula A⁻¹ = (1/det) · [[d, −b], [−c, a]] carefully — the swap-and-negate pattern is what trips students up
- In modeling problems, interpret in plain language with units
- Watch matrix multiplication order: composition reverses the order