Skip to content
MathAnvil
§ Vectors

Vectors

§ Vectors

Vectors

R1VG23 min read

Teaching vectors in 2D requires students to grasp that these mathematical objects have both magnitude and direction, unlike simple numbers. Students often struggle with the transition from scalar arithmetic to component-wise operations, making this foundational topic crucial for success in physics and advanced mathematics.

§ 01

Why it matters

Vectors form the mathematical backbone of physics, engineering, and computer graphics. In video game development, a character moving from position (100, 200) to (150, 300) follows vector (50, 100). GPS navigation systems use vectors to calculate the shortest path between two coordinates. In physics, velocity vectors like (15, -8) m/s represent both speed and direction simultaneously. Engineers use force vectors to analyze structural loads—a beam experiencing forces of (500, -300) N and (-200, 400) N results in a net force of (300, 100) N. Architecture relies on vectors for calculating wind loads and structural stability. Even simple applications like determining the displacement between two points on a coordinate plane require vector understanding, making this topic essential for STEM readiness.

§ 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(-1, 1) to B(-3, 2) as a column vector.

Answer: AB⃗ = (-2, 1)

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

Given a⃗ = (6, 3) and b⃗ = (5, 5), find a⃗ + b⃗.

Answer: a⃗ + b⃗ = (11, 8)

  1. Add/subtract component-wise (6 + 5, 3 + 5) The sum is found by applying the operation to each pair of components.
  2. Compute (11, 8) x: 6 + 5 = 11, y: 3 + 5 = 8.
Medium§ 03

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

Answer: |v⃗| = √13 ≈ 3.61

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

Common mistakes

  • Students often add vectors incorrectly by adding magnitudes instead of components, writing |(3, 4)| + |(1, 2)| = 5 + 2.24 = 7.24 instead of (3, 4) + (1, 2) = (4, 6) with magnitude √52 ≈ 7.21.
  • When finding vector AB from A(2, 5) to B(7, 3), students frequently write A - B = (2-7, 5-3) = (-5, 2) instead of the correct B - A = (7-2, 3-5) = (5, -2).
  • Students confuse scalar multiplication with component-wise multiplication, writing 3(2, 4) = (3×2, 3×4) = (6, 12) as (2+3, 4+3) = (5, 7) or mistakenly computing (2×4, 3) = (8, 3).
  • In magnitude calculations, students often forget to take the square root, writing |(-3, 4)| = (-3)² + 4² = 9 + 16 = 25 instead of √(9 + 16) = √25 = 5.
  • Students incorrectly subtract vector components by treating them as separate equations, computing (8, 3) - (2, 7) as 8 - 2 = 6 and 3 - 7 = -4 separately, then writing the final answer as |6| + |-4| = 10 instead of (6, -4).
§ 05

Frequently asked questions

What's the difference between a vector and a point?
A point represents a location like (3, 5), while a vector represents displacement, velocity, or force with both magnitude and direction. The vector (3, 5) means 3 units right and 5 units up from any starting position.
How do I know when to use component form versus magnitude-direction form?
Use component form (x, y) for calculations like addition and scalar multiplication. Use magnitude-direction form for physics problems involving angles. Component form is easier for algebraic operations and coordinate geometry applications.
Why do we subtract coordinates in reverse order for displacement vectors?
Vector AB goes FROM point A TO point B, so we calculate B - A. Think of it as 'destination minus starting point.' If A(1, 2) and B(4, 6), then AB = (4-1, 6-2) = (3, 4).
Can vector components be negative?
Yes, negative components indicate direction. In vector (-2, 3), the x-component -2 means 2 units left, while y-component 3 means 3 units up. Negative values are essential for representing vectors pointing in opposite directions.
How do I check if my vector addition is correct?
Draw the vectors graphically using the tip-to-tail method, or verify that each component adds correctly. For (2, 3) + (1, -2) = (3, 1), check: x-components 2+1=3, y-components 3+(-2)=1. Both methods should give the same result.
§ 06

Related topics

Share this article