Vectors
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.
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.
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(-1, 1) to B(-3, 2) as a column vector.
Answer: AB⃗ = (-2, 1)
- Subtract coordinates: B − A → (-3 − -1, 2 − 1) — Each component of the vector is the difference of the corresponding coordinates.
- Compute → AB⃗ = (-2, 1) — x-component: -3 − -1 = -2, y-component: 2 − 1 = 1.
Given a⃗ = (6, 3) and b⃗ = (5, 5), find a⃗ + b⃗.
Answer: a⃗ + b⃗ = (11, 8)
- Add/subtract component-wise → (6 + 5, 3 + 5) — The sum is found by applying the operation to each pair of components.
- Compute → (11, 8) — x: 6 + 5 = 11, y: 3 + 5 = 8.
Find the length of the vector v⃗ = (2, -3).
Answer: |v⃗| = √13 ≈ 3.61
- Use the magnitude formula: |v⃗| = √(x² + y²) → |v⃗| = √(2² + -3²) — The magnitude is found using the Pythagorean theorem.
- Compute the squares → |v⃗| = √(4 + 9) = √13 — 2² = 4, -3² = 9.
- Evaluate the square root → |v⃗| = √13 ≈ 3.61 — √13 = √13 ≈ 3.61.
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).