Vectors
Year 11 students often struggle when vectors appear in their GCSE Foundation papers, particularly the jump from scalar quantities to understanding both magnitude and direction. Teaching 2D vectors requires building confidence with column notation and component-wise operations before tackling more complex applications.
Try it right now
Click “Generate a problem” to see a fresh example of this technique.
Why it matters
Vectors form the mathematical foundation for physics concepts that students encounter in mechanics, from analysing forces on a 3kg object to calculating velocity changes in projectile motion. In computer graphics and game development, 2D vectors control character movement and collision detection - a sprite moving 5 pixels right and 3 pixels up follows vector (5, 3). Engineering applications include GPS navigation systems calculating displacement between coordinates, whilst architects use vector addition when determining resultant forces on structural beams. Even football analysis uses vectors to track player movement across the pitch, with average speeds of 7 m/s represented as velocity vectors. Understanding vector magnitude helps students calculate distances in coordinate geometry problems, essential for GCSE exam questions worth 4-6 marks.
How to solve vectors
Introduction to Vectors
- A vector has both magnitude (length) and direction.
- Write a 2D vector as (x, y) or as a column.
- Add vectors component by component: (a, b) + (c, d) = (a+c, b+d).
- Scalar multiplication scales both components: k(a, b) = (ka, kb).
Example: (3, 2) + (1, 4) = (4, 6). And 2·(3, 2) = (6, 4).
Worked examples
Write the vector from A(0, -3) to B(-4, 6) as a column vector.
Answer: AB⃗ = (-4, 9)
- Subtract coordinates: B − A → (-4 − 0, 6 − -3) — Each component of the vector is the difference of the corresponding coordinates.
- Compute → AB⃗ = (-4, 9) — x-component: -4 − 0 = -4, y-component: 6 − -3 = 9.
Given a⃗ = (1, -2) and b⃗ = (-4, 0), find a⃗ − b⃗.
Answer: a⃗ − b⃗ = (5, -2)
- Add/subtract component-wise → (1 − -4, -2 − 0) — The difference is found by applying the operation to each pair of components.
- Compute → (5, -2) — x: 1 − -4 = 5, y: -2 − 0 = -2.
Find the length of the vector v⃗ = (1, -5).
Answer: |v⃗| = √26 ≈ 5.10
- Use the magnitude formula: |v⃗| = √(x² + y²) → |v⃗| = √(1² + -5²) — The magnitude is found using the Pythagorean theorem.
- Compute the squares → |v⃗| = √(1 + 25) = √26 — 1² = 1, -5² = 25.
- Evaluate the square root → |v⃗| = √26 ≈ 5.10 — √26 = √26 ≈ 5.10.
Common mistakes
- Students confuse vector direction when calculating from point A to point B, writing AB⃗ = (2, -1) instead of BA⃗ = (-2, 1) when A(3, 4) and B(1, 5).
- Adding vectors incorrectly by treating them as single numbers rather than components, calculating (3, 2) + (1, 4) = (4, 2) instead of (4, 6).
- Forgetting to square both components in magnitude calculations, finding |(-3, 4)| = 3 + 4 = 7 instead of √(9 + 16) = 5.
- Mixing up scalar multiplication rules, computing 3(2, -1) = (6, 3) instead of (6, -3) by failing to multiply both components.