Skip to content
MathAnvil

Vectors

R1VG23 min read

Vector introduction forms the foundation for physics, engineering, and computer graphics in VG2 mathematics. Students often struggle with the concept that vectors represent both magnitude and direction, unlike scalar quantities they've worked with previously.

Try it right now

Why it matters

Vectors appear everywhere in real-world applications that students will encounter. In video game development, position vectors track character locations while velocity vectors control movement speed and direction. GPS navigation systems use vectors to calculate the shortest route between two points, processing thousands of coordinate calculations per second. Aircraft pilots rely on wind vectors (typically 10-50 km/h) combined with airspeed vectors (200-900 km/h) to determine ground speed and flight paths. Engineering projects use force vectors to analyze structural loads—a bridge might experience wind forces of 2000N horizontally and gravity loads of 50000N vertically. Even smartphone screens use vector graphics that scale infinitely without pixelation, making crisp displays possible on devices from 4-inch phones to 75-inch tablets.

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

Beginner

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

Answer: AB⃗ = (-3, 5)

  1. Subtract coordinates: B − A(-3 − 0, 4 − -1)Each component of the vector is the difference of the corresponding coordinates.
  2. ComputeAB⃗ = (-3, 5)x-component: -3 − 0 = -3, y-component: 4 − -1 = 5.
Easy

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

Answer: a⃗ − b⃗ = (2, 7)

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

Find the length of the vector v⃗ = (-2, 4).

Answer: |v⃗| = √20 ≈ 4.47

  1. Use the magnitude formula: |v⃗| = √(x² + y²)|v⃗| = √(-2² + 4²)The magnitude is found using the Pythagorean theorem.
  2. Compute the squares|v⃗| = √(4 + 16) = √20-2² = 4, 4² = 16.
  3. Evaluate the square root|v⃗| = √20 ≈ 4.47√20 = √20 ≈ 4.47.

Common mistakes

  • Students often confuse vector direction when finding AB⃗, writing (-2, 3) instead of (2, -3) when going from A(1, 5) to B(3, 2) because they subtract A from B rather than B from A.
  • During vector addition, students frequently add only one component, writing (3, 2) + (1, 4) = (4, 2) instead of (4, 6) because they forget to add both x and y components.
  • When calculating magnitude, students often forget to take the square root, writing |(-3, 4)| = 25 instead of |(-3, 4)| = 5 from (-3)² + 4² = 9 + 16 = 25.
  • Students mix up scalar multiplication rules, writing 3(2, -1) = (6, -1) instead of (6, -3) because they only multiply the first component by the scalar.

Practice on your own

Generate unlimited vector practice problems with coordinates ranging from -6 to 6 using MathAnvil's free worksheet creator.

Generate free worksheets →

Frequently asked questions

How do I teach the difference between vectors and coordinates?
Emphasize that coordinates like (3, 2) represent a fixed location, while vectors represent movement or displacement. Use arrows on graph paper starting from different points but with the same direction and length to show vector equality.
Why do we subtract coordinates in reverse order for vectors?
Vector AB⃗ means 'from A to B', so we calculate B - A to find the displacement needed. Think of it as 'where you end up minus where you started' to reach the destination.
What's the best way to introduce vector notation?
Start with arrow notation over letters (v⃗), then show column notation and coordinate pairs. R1 curriculum expects students to recognize all three forms: v⃗, (x,y), and vertical column matrices.
How can students check their vector addition answers?
Use the triangle rule: draw the first vector, then the second vector starting from the first's endpoint. The result should match their calculated sum vector when drawn from origin to final endpoint.
When should I introduce the magnitude formula?
After students master basic operations. Connect it to Pythagorean theorem they already know. Use integer examples like (3,4) giving magnitude 5 before moving to cases requiring decimal approximations.

Related topics

Share this article