Vectors
Some quantities in nature are fully described by a single number (temperature: 22°C). Others need both a size AND a direction (velocity: 80 km/h North). Vectors capture both in one object.
| Scalar (magnitude only) | Vector (magnitude + direction) |
|---|---|
| Mass (kg) | Force (N, with direction) |
| Speed (km/h) | Velocity (km/h, with direction) |
| Distance (km) | Displacement (km, with direction) |
| Time (s) | Acceleration (m/s², with direction) |
| Temperature (°C) | Weight (N, downward) |
Key vocabulary
- Magnitude — the length/size of the vector, written ‖v‖ or |v|, always ≥ 0
- Direction — the angle the vector makes (usually measured from East, counter-clockwise)
- Equivalent vectors — same magnitude AND direction; position doesn't matter
- Opposite vector — same magnitude, reversed direction; written −v
- Zero vector — magnitude 0, no defined direction; written 0
- Unit vector — magnitude exactly 1; often used to indicate direction only
scalarvectorscalarvector (displacement)same ‖·‖ and same angle210°Checkpoint 1 — Vector Basics
- Give two examples of scalar quantities and two of vector quantities
- Vector w has magnitude 15 and direction 120°. What is the magnitude and direction of −w?
- True or false: Two vectors with the same magnitude are always equal
- Scalars: mass, temperature, time, distance, speed. Vectors: force, velocity, displacement, acceleration, weight
- Magnitude: 15 (unchanged); direction: 120° + 180° = 300°
- False — equal vectors also require the same direction
A vector from point A to point B is written AB⃗, or as a single letter in bold: v. In handwriting, draw an arrow above: v⃗. The magnitude (length) is written ‖v‖ or |v|.
Standard Angle Convention
- Angles are measured from East = 0°, going counter-clockwise (same as unit circle)
- North = 90°, West = 180°, South = 270°
- Compass bearing "N 40° E" = start at North, rotate 40° toward East → standard angle = 90° − 40° = 50°
- Compass bearing "W 50° S" = start at West (180°), rotate 50° toward South → standard angle = 180° + 50° = 230°
- Always sketch the direction before computing!
| Direction | Standard Angle | Notes |
|---|---|---|
| East | 0° | Reference direction |
| North | 90° | Quarter turn CCW |
| West | 180° | Half turn |
| South | 270° | Three-quarter turn CCW |
| N 40° E | 50° | 90° − 40° = 50° |
| S 30° W | 240° | 180° + 60° = 240° — start at South (270°), go 30° toward West: 270°−30°=240° |
| N 70° W | 160° | Start at North (90°), go 70° toward West: 90°+70°=160° |
65°210°140°N 45° WN 30° W ... let's check: 360°−300°=60° short of North, from West side. Best: between North and West: 360°−300°=60° from North toward West → N 60° WCheckpoint 2 — Compass Bearings
- Convert to standard angle: S 45° E
- Convert to standard angle: W 20° N
- Express 225° as a compass bearing
- South = 270°, go 45° toward East: 270°+45°= 315° → actually S 45° E: start from South toward East means decreasing from 270°... South-East quadrant: 270°+45°=315°. Wait, let me think: going from South toward East: East is at 0° (or 360°). From 270° toward 360°: 270°+45°=315°. So standard angle = 315°
- West = 180°, go 20° toward North: 180°−20° = 160°
- 225° is 45° past West (180°), heading toward South → S 45° W
Every vector in 2D can be written as [x, y] — the horizontal (x) and vertical (y) components. This decomposition is the key tool for all vector calculations.
Component Formulas
x = ‖v‖ · cos β— horizontal component (β = standard angle)y = ‖v‖ · sin β— vertical component‖v‖ = √(x² + y²)— Pythagorean theorem on componentsβ = arctan(y/x)— but check the quadrant! arctan only gives Q1 or Q4- CAST rule: Q1 (all +), Q2 (sin +), Q3 (tan +), Q4 (cos +)
x = 50 · cos(127°)
y = 50 · sin(127°)
cos(127°) = −cos(53°) ≈ −0.602 → x ≈
−30.1sin(127°) = sin(53°) ≈ 0.799 → y ≈
39.9In Q2: x is negative, y is positive — consistent with CAST ✓
13112.6°55°x = 40 · cos(55°) ≈ 40 · 0.574 ≈
22.9 Ny = 40 · sin(55°) ≈ 40 · 0.819 ≈
32.8 N
Checkpoint 3 — Components & Magnitude
- Find components of a vector with magnitude 20 and direction 210°
- Find magnitude and direction of v = [7, −7]
- A 60 N force acts in direction S 50° W. Find its components.
- x = 20·cos(210°) = 20·(−√3/2) ≈ −17.3; y = 20·sin(210°) = 20·(−1/2) = −10
- ‖v‖ = √(49+49) = 7√2 ≈ 9.9; arctan(−7/7) = −45°; x > 0, y < 0 → Q4: 360°−45° = 315°
- S 50° W → standard angle: 270°−50°=220° (or: from South toward West). x = 60·cos(220°) ≈ −46.0 N; y = 60·sin(220°) ≈ −38.6 N
Vectors are added component by component. Geometrically this is the head-to-tail rule: place the tail of the second vector at the head of the first, then draw the resultant from start to end.
Operations Summary
u + v = [x₁+x₂, y₁+y₂]— add component by componentu − v = [x₁−x₂, y₁−y₂]— subtract component by componentk·v = [kx, ky]— scalar multiplication scales both components−v = [−x, −y]— opposite vector- Two vectors are collinear (parallel) if v = k·u for some scalar k
- A vector is a unit vector if ‖v‖ = 1; unit vector in direction of v:
v̂ = v / ‖v‖
[8, 2]8.25[6, −9][−6, −5]7.21Note: ‖2u‖ = 2·‖u‖ = 2·√13 ≈ 7.21 — scalar multiplication scales the magnitude too ✓
[3/5, 4/5] = [0.6, 0.8]Checkpoint 4 — Vector Operations
- Given u = [1, 5] and v = [−3, 2], find 2u + v and its magnitude
- Are p = [6, −4] and q = [−9, 6] collinear?
- Find the unit vector in the direction of w = [−8, 6]
- 2u+v = [2+(-3), 10+2] = [−1, 12]; magnitude = √(1+144) = √145 ≈ 12.04
- p = [6,−4]; q = [−9,6]. Check: k = −9/6 = −3/2 and −4·(−3/2)=6 ✓ → Yes, collinear (q = −(3/2)p)
- ‖w‖ = √(64+36) = 10; ŵ = [−0.8, 0.6]
The dot product takes two vectors and returns a scalar (a plain number). It measures how much one vector points in the direction of the other — essential for finding angles between vectors.
Two Ways to Compute u · v
- Component form:
u · v = x₁x₂ + y₁y₂ - Geometric form:
u · v = ‖u‖ · ‖v‖ · cos(θ) - These two always give the same answer — use whichever is convenient
- To find angle:
cos(θ) = (u · v) / (‖u‖ · ‖v‖), then θ = arccos(...) - Perpendicular test: u ⊥ v if and only if
u · v = 0
| Dot product value | Meaning | Angle θ |
|---|---|---|
| = 0 | Perpendicular (orthogonal) | 90° |
| > 0 | Acute angle between vectors | 0° < θ < 90° |
| < 0 | Obtuse angle between vectors | 90° < θ < 180° |
| = ‖u‖·‖v‖ | Parallel, same direction | 0° |
| = −‖u‖·‖v‖ | Parallel, opposite directions | 180° |
3143.1°06107.5°Checkpoint 5 — Dot Product
- Compute u · v where u = [−2, 5] and v = [3, 4]
- Find the angle between u = [1, 0] and v = [0, 1] (should be obvious!)
- Find k so that [k, 3] ⊥ [5, −k]
- ‖u‖ = 4, ‖v‖ = 7, angle between them = 60°. Find u · v.
- (−2)(3) + (5)(4) = −6 + 20 = 14
- u·v = 0 → 90° (East and North are perpendicular)
- 5k + 3·(−k) = 0 → 5k − 3k = 0 → 2k = 0 → k = 0. Check: [0,3]·[5,0]=0 ✓
- u·v = 4·7·cos(60°) = 28·0.5 = 14
Most application problems involve multiple vectors being combined. The strategy is always the same: decompose, add components, then reassemble the result.
Four-Step Strategy
- Step 1: Draw a clear diagram labelling all known quantities
- Step 2: Break each vector into components:
x = ‖v‖cos β,y = ‖v‖sin β - Step 3: Add all x-components; add all y-components
- Step 4: Find magnitude and direction of the resultant:
‖r‖ = √(Σx² + Σy²),β = arctan(Σy/Σx)(check quadrant!)
v₁ = [80, 0] (East = 0°)
v₂: β = 40° → x₂ = 60·cos(40°) ≈ 45.96; y₂ = 60·sin(40°) ≈ 38.57
[125.96, 38.57]131.7 km17° North of EastF₁ = [30, 0]; F₂ = [0, 40]
[30, 40]50 N53.1° (from East, toward North)a = −2b = −10Boat: v_boat = [0, 12] (North = 90°)
Current: v_current = [5, 0] (East = 0°)
[5, 12]13 km/hN 22.6° ECheckpoint 6 — Applications
- Two forces: F₁ = 50 N at 30°, F₂ = 30 N at 120°. Find the resultant magnitude and direction.
- A plane flies N 60° E at 400 km/h. Wind blows due West at 80 km/h. Find actual velocity.
- F₁=[50cos30°, 50sin30°]=[43.3, 25]; F₂=[30cos120°, 30sin120°]=[−15, 26.0]; Sum=[28.3, 51.0]; ‖R‖=√(800+2601)=√3401≈58.3 N; β=arctan(51/28.3)≈61°
- N 60° E = standard 30°: plane=[400cos30°, 400sin30°]=[346.4, 200]; wind=[−80,0]; actual=[266.4, 200]; ‖v‖=√(70969+40000)≈333 km/h; β=arctan(200/266.4)≈36.9° (≈N 53° E in compass notation)
Checkpoint 7 — Mixed Review
- Vector v = [a, 6] has magnitude 10. Find a (there may be two answers).
- u = [2, 5] and v = [−1, 3]. Find the angle between them.
- A hiker walks 5 km N 30° E, then 8 km due East. Find total displacement.
- √(a²+36) = 10 → a²+36 = 100 → a² = 64 → a = ±8
- u·v = (2)(−1)+(5)(3) = −2+15 = 13; ‖u‖=√29≈5.385; ‖v‖=√10≈3.162; cosθ=13/17.03≈0.763; θ≈40.2°
- N 30° E = 60° standard: v₁=[5cos60°, 5sin60°]=[2.5, 4.33]; v₂=[8,0]; total=[10.5, 4.33]; ‖r‖=√(110.25+18.75)=√129≈11.36 km; β=arctan(4.33/10.5)≈22.4° → N 67.6° E