Unit 4 Vectors and Matrices: Directed Quantities, Parametric Motion, and Linear Maps

0.0(0)
Studied by 0 people
0%Unit 4 Mastery
0%Exam Mastery
Build your Mastery score
multiple choiceAP Practice
Supplemental Materials
call kaiCall Kai
Card Sorting

1/24

Last updated 3:08 PM on 3/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

Vector

A quantity with both magnitude (size) and direction; unlike a scalar, which has only magnitude.

2
New cards

Scalar

A quantity with magnitude only (no direction), such as temperature.

3
New cards

Component form (2D vector)

A way to represent a 2D vector as ⟨a, b⟩, where a is the horizontal change and b is the vertical change.

4
New cards

Geometric representation of a vector

A vector drawn as an arrow whose length represents magnitude and whose orientation represents direction; it can be slid without changing the vector.

5
New cards

Column vector notation

Writing a 2D vector as a 2×1 column (e.g., [a; b]); equivalent to ⟨a, b⟩ and common in matrix contexts.

6
New cards

Negative vector

The vector with opposite direction, found by negating each component: if v=⟨a,b⟩ then −v=⟨−a,−b⟩.

7
New cards

Vector addition (component-wise)

If u=⟨ux,uy⟩ and v=⟨vx,vy⟩, then u+v=⟨ux+vx, uy+vy⟩.

8
New cards

Vector subtraction (component-wise)

If u=u_x,u_y18 and v=v_x,v_y18, then u-v=u_x-v_x, u_y-v_y18 (i.e., add the opposite).

9
New cards

Scalar multiplication (of a vector)

Scaling a vector by kk: if v=v_x,v_y18 then kv=kv_x, kv_y18; negative kk also reverses direction.

10
New cards

Magnitude (length) of a 2D vector

For a,b18, the magnitude is |a,b18| = \text{ }\newline \n\rightsqrt{a^2+b^2}.

11
New cards

Unit vector

A vector with magnitude 1 that represents direction only.

12
New cards

Unit vector in the direction of a,b18

For nonzero ⟨a,b⟩, the unit vector is (1/a2+b2\sqrt{a^2+b^2})⟨a,b⟩ (divide both components by the magnitude).

13
New cards

Direction angle (from +x-axis)

For a vector a,b18 with a0a \neq 0, the direction angle θ\theta satisfies tan(θ)=ba\tan(\theta) = \frac{b}{a} (and you must choose the correct quadrant).

14
New cards

Vector-valued function

A function that outputs a vector rather than a single number; in 2D it is typically r(t)=⟨x(t), y(t)⟩.

15
New cards

Position vector (in a vector-valued function)

The output r(t) = x(t),y(t)18 interpreted as the position of a moving point at parameter value tt (often time).

16
New cards

Parametric curve

The set of points (x(t), y(t)) traced as t varies over a domain; t controls where you are on the curve, not an axis on the graph.

17
New cards

Displacement from t=a to t=b

If r(t) is position, displacement over [a,b] is r(b)−r(a).

18
New cards

Average velocity (vector)

Displacement divided by elapsed time: r(b)r(a)ba\frac{r(b)-r(a)}{b-a}.

19
New cards

Eliminating the parameter

Rewriting a parametric curve as a single equation by solving for tt and substituting, when possible (e.g., x=tx=t into y=t24y=t^2-4 gives y=x24y=x^2-4).

20
New cards

Matrix

A rectangular array of numbers used to organize information and represent linear transformations (functions that take vectors to vectors).

21
New cards

Matrix dimension (size)

An m×n matrix has m rows and n columns.

22
New cards

Matrix multiplication (dimension rule)

If A is m×n and B is n×p, then AB is defined and has size m×p; multiplication is row-by-column (not entry-by-entry) and order matters.

23
New cards

Identity matrix (2×2)

I=[[1,0],[0,1]]; acts like “do nothing” for multiplication: I x = x and AI=IA=A (when dimensions match).

24
New cards

Matrix-vector multiplication (2D)

If A=[[a,b],[c,d]] and v=[x;y], then Av=[ax+by; cx+dy], giving the transformed vector.

25
New cards

Composition of linear transformations (matrices)

Applying B first then A corresponds to the product AB (order reverses relative to the wording).