What is R² and what does a point in it look like?
R² is a 2D plane. A point is written as P(a, b).
What is R³ and what does a point in it look like?
R³ is 3D space. A point is written as P(a, b, c).
What are the unit vectors i, j, and k in 2D and 3D?
In 2D: i = (1, 0), j = (0, 1)
In 3D: i = (1, 0, 0), j = (0, 1, 0), k = (0, 0, 1)
Each has a magnitude of 1 and points along its respective axis
What does the vector u = (|F|cosθ, |F|sinθ) represent?
It’s a vector expressed using its magnitude |F| and angle θ — the x-component is |F|cosθ (horizontal) and the y-component is |F|sinθ (vertical).
What is the algebraic (unit vector) form of vector OP in 2D?
OP = ai + bj, where a and b are the components along the x and y axes.
What is the component form of vector OP in 2D and 3D?
2D: OP = (a, b). 3
D: OP = (a, b, c), which can also be written as a column vector (a over b over c).
How do you convert from unit vector form to component form? e.g. v = 3i − 2j + 4k
The coefficients of i, j, k become the components — so v = (3, −2, 4).
How do you plot a point given a vector in component form? e.g. u = (2, 3, 4)
The components are the coordinates — plot the point (2, 3, 4) by going 2 along x, 3 along y, and 4 along z.
How do you plot a point given a vector in unit vector form? e.g. v = 3i − 2j + 4k
Convert to component form first: v = (3, −2, 4), then plot the point (3, −2, 4).
How do you add two vectors in component form? e.g. u = (a, b, c) and v = (d, e, f)
Add corresponding components: u + v = (a+d, b+e, c+f).
How do you subtract two vectors in component form? e.g. u = (a, b, c) and v = (d, e, f)
ubtract corresponding components: u − v = (a−d, b−e, c−f)
How do you multiply a vector by a scalar in component form? e.g. ku = k(a, b, c)
Multiply every component by the scalar: ku = (ka, kb, kc).
How do you find the magnitude of a vector in component form? e.g. u = (a, b, c)
In 3D: |u| = √(a² + b² + c²).
In 2D: |u| = √(a² + b²).
What does it mean for two vectors to be collinear?
Two vectors are collinear if one is a scalar multiple of the other — they point in the same (or opposite) direction.
How do you find a and b if vectors u and v are collinear?
Set u = kv for some scalar k. Match corresponding components to form equations, then solve for a, b, and k.
Example: If u = (2, a) and v = (b, 6) are collinear → 2/b = a/6 = k, solve the system.
When drawing a 3D coordinate system, which direction should each axis point?
X → toward you (out of the page), Y → horizontal (right is positive), Z → vertical (up is positive).
What is the positive direction for each axis in a standard 3D diagram?
X: toward you. Y: to the right. Z: upward.
How do you find the vector between two points P1(x1, y1) and P2(x2, y2) in 2D?
Subtract the coordinates of P1 from P2: P1P2 = (x2−x1, y2−y1). Always go “end minus start.”
How do you find the vector between two points P1(x1, y1, z1) and P2(x2, y2, z2) in 3D?
P1P2 = (x2−x1, y2−y1, z2−z1).
Same rule — end minus start for each component.
How do you find a unit vector in the same direction as vector u?
Find magnitude of u. Divide u by its magnitude: û = u / |u|. This scales the vector to length 1 while keeping its direction.
How do you find a unit vector in the opposite direction to vector v?
Find magnitude of v. Negate v first, then divide by its magnitude: û = −v / |v|. Negating flips the direction, dividing by |v| scales it to length 1.
How do you verify that a unit vector is correct
Calculate its magnitude — it must equal 1. e.g. if û = (a, b, c), check that √(a²+b²+c²) = 1.
Worked example — find the unit vector in the opposite direction to v = (−2, 2, 5)
|v| = √(4+4+25) = √33.
−v = (2,−2,−5).
û = (2/√33, −2/√33, −5/√33)
= (2√33/33, −2√33/33, −5√33/33)
What is the formula to express a vector in component form given its magnitude |u| and angle θ in standard position?
u = (|u|cosθ, |u|sinθ). The x-component uses cosine, the y-component uses sine.