Skip to content
MathAnvil
§ Vectors

Vectors

R1VG23 min read

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.

§ 01

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.

§ 02

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).

§ 03

Worked examples

Beginner§ 01

Write the vector from A(0, -3) to B(-4, 6) as a column vector.

Answer: AB⃗ = (-4, 9)

  1. Subtract coordinates: B − A (-4 − 0, 6 − -3) Each component of the vector is the difference of the corresponding coordinates.
  2. Compute AB⃗ = (-4, 9) x-component: -4 − 0 = -4, y-component: 6 − -3 = 9.
Easy§ 02

Given a⃗ = (1, -2) and b⃗ = (-4, 0), find a⃗ − b⃗.

Answer: a⃗ − b⃗ = (5, -2)

  1. Add/subtract component-wise (1 − -4, -2 − 0) The difference is found by applying the operation to each pair of components.
  2. Compute (5, -2) x: 1 − -4 = 5, y: -2 − 0 = -2.
Medium§ 03

Find the length of the vector v⃗ = (1, -5).

Answer: |v⃗| = √26 ≈ 5.10

  1. Use the magnitude formula: |v⃗| = √(x² + y²) |v⃗| = √(1² + -5²) The magnitude is found using the Pythagorean theorem.
  2. Compute the squares |v⃗| = √(1 + 25) = √26 1² = 1, -5² = 25.
  3. Evaluate the square root |v⃗| = √26 ≈ 5.10 √26 = √26 ≈ 5.10.
§ 04

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.
Practice on your own
Generate unlimited 2D vector worksheets with varying difficulty levels using MathAnvil's free worksheet generator.
Generate free worksheets
§ 05

Frequently asked questions

What's the difference between a vector and a scalar?
A scalar has only magnitude (size) like temperature 15°C or speed 30 mph. A vector has both magnitude and direction, such as velocity 30 mph northeast or force 50N downward. Distance is scalar (15 metres), displacement is vector (15 metres east).
Why do we use column notation for vectors?
Column notation makes matrix operations clearer in advanced topics and matches standard mathematical convention. Writing vectors as columns like [3, -2] instead of (3, -2) prepares students for A-level transformations and ensures consistency across mathematical software.
How do I know which direction a vector points?
The first component (x) shows horizontal movement: positive means right, negative means left. The second component (y) shows vertical movement: positive means up, negative means down. Vector (3, -2) points 3 units right and 2 units down.
When do I use vector subtraction instead of addition?
Use subtraction to find the vector from one point to another (B - A gives vector from A to B) or to find the difference between two vectors. Addition combines vectors moving in sequence, like walking 3 blocks north then 2 blocks east.
Why does the magnitude formula use square root?
Vector magnitude uses Pythagoras' theorem because vectors form right-angled triangles. For vector (3, 4), imagine walking 3 units east then 4 units north - the direct distance is √(3² + 4²) = 5 units, the hypotenuse length.
§ 06

Related topics

Share this article