Vectors
Three-dimensional vector operations form the backbone of A-level Further Mathematics, bridging abstract algebra with real-world physics and engineering applications. Mastering the cross product, parametric line equations, and plane intersections requires systematic practice with carefully structured problems that build from basic component operations to complex geometric relationships.
Try it right now
Click “Generate a problem” to see a fresh example of this technique.
Why it matters
Advanced 3D vectors underpin critical STEM fields from computer graphics to aerospace engineering. Game developers use cross products to calculate surface normals for realistic lighting effects, while aircraft navigation systems rely on parametric line equations to plot flight paths through 3D airspace. In robotics, engineers use vector operations to programme robotic arms moving through 3D workspace, calculating precise joint angles and collision avoidance paths. Medical imaging technologies like MRI scanners process thousands of 3D vector calculations per second to reconstruct detailed organ images. Architecture students use plane intersections to model complex building geometries, ensuring structural elements align correctly. These applications require fluency with magnitude calculations, dot products for perpendicular relationships, and cross products for finding perpendicular vectors—skills that Year 13 students develop through systematic practice with increasingly complex numerical examples.
How to solve vectors
Advanced Vectors
- Magnitude: |v| = √(x² + y²) for 2D, √(x² + y² + z²) for 3D.
- Dot product: a·b = a₁b₁ + a₂b₂ + a₃b₃. Equals 0 when the vectors are perpendicular.
- Unit vector: v / |v|. Has length 1 in the same direction.
- Angle between vectors: cos θ = (a·b) / (|a||b|).
Example: For a = (3, 4): |a| = √(9 + 16) = 5. Unit vector: (35, 45).
Worked examples
Given a⃗ = (0, 0, 1) and b⃗ = (6, -1, 4), find a⃗ − b⃗.
Answer: a⃗ − b⃗ = (-6, 1, -3)
- Add/subtract component-wise → (0 − 6, 0 − -1, 1 − 4) — The difference is found by applying the operation to each component.
- Compute → (-6, 1, -3) — x: 0 − 6 = -6, y: 0 − -1 = 1, z: 1 − 4 = -3.
Find 3·v⃗ for v⃗ = (0, 2, -3).
Answer: 3·v⃗ = (0, 6, -9)
- Multiply each component by the scalar → (3×0, 3×2, 3×-3) — Scalar multiplication scales each component by the same factor.
- Compute → (0, 6, -9) — 3×0 = 0, 3×2 = 6, 3×-3 = -9.
Find a⃗ × b⃗ for a⃗ = (-5, 5, -1) and b⃗ = (4, -1, 4).
Answer: a⃗ × b⃗ = (19, 16, -15)
- Use the cross product formula (determinant method) → a⃗ × b⃗ = (a₂b₃ − a₃b₂, a₃b₁ − a₁b₃, a₁b₂ − a₂b₁) — The cross product is computed using the determinant of a 3×3 matrix with unit vectors i, j, k in the first row.
- Compute x-component → x = 5×4 − -1×-1 = 20 − 1 = 19 — a₂b₃ − a₃b₂ = 5×4 − -1×-1 = 19.
- Compute y-component → y = -1×4 − -5×4 = -4 − -20 = 16 — a₃b₁ − a₁b₃ = -1×4 − -5×4 = 16.
- Compute z-component → z = -5×-1 − 5×4 = 5 − 20 = -15 — a₁b₂ − a₂b₁ = -5×-1 − 5×4 = -15.
- Combine → a⃗ × b⃗ = (19, 16, -15) — The cross product vector is perpendicular to both a⃗ and b⃗.
Common mistakes
- Students often confuse cross product component order, writing (2,1,3) × (1,2,1) = (1×1-3×2, 3×1-2×1, 2×2-1×1) = (-5,1,3) instead of the correct (1×1-3×2, 3×1-2×1, 2×2-1×1) = (-5,1,3) with proper sign handling.
- Magnitude calculations frequently go wrong when students forget to square root, computing |(-3,4,0)| = 9+16+0 = 25 instead of √25 = 5.
- Parametric line equations cause confusion with direction vectors, where students write r = (2,1,3) + t(1,2,1) passing through (3,3,4) instead of using the correct point r = (3,3,4) + t(1,2,1).
- Cross product perpendicularity checks fail when students assume a × b = 0 means parallel vectors, but actually |a × b| = 0 indicates parallel vectors, while a · b = 0 indicates perpendicular vectors.