Skip to content
MathAnvil
§ Vectors

Vectors

R2VG33 min read

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.

§ 01

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.

§ 02

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

§ 03

Worked examples

Beginner§ 01

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

Answer: a⃗ − b⃗ = (-6, 1, -3)

  1. Add/subtract component-wise (0 − 6, 0 − -1, 1 − 4) The difference is found by applying the operation to each component.
  2. Compute (-6, 1, -3) x: 0 − 6 = -6, y: 0 − -1 = 1, z: 1 − 4 = -3.
Easy§ 02

Find 3·v⃗ for v⃗ = (0, 2, -3).

Answer: 3·v⃗ = (0, 6, -9)

  1. Multiply each component by the scalar (3×0, 3×2, 3×-3) Scalar multiplication scales each component by the same factor.
  2. Compute (0, 6, -9) 3×0 = 0, 3×2 = 6, 3×-3 = -9.
Medium§ 03

Find a⃗ × b⃗ for a⃗ = (-5, 5, -1) and b⃗ = (4, -1, 4).

Answer: a⃗ × b⃗ = (19, 16, -15)

  1. 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.
  2. Compute x-component x = 5×4 − -1×-1 = 20 − 1 = 19 a₂b₃ − a₃b₂ = 5×4 − -1×-1 = 19.
  3. Compute y-component y = -1×4 − -5×4 = -4 − -20 = 16 a₃b₁ − a₁b₃ = -1×4 − -5×4 = 16.
  4. Compute z-component z = -5×-1 − 5×4 = 5 − 20 = -15 a₁b₂ − a₂b₁ = -5×-1 − 5×4 = -15.
  5. Combine a⃗ × b⃗ = (19, 16, -15) The cross product vector is perpendicular to both a⃗ and b⃗.
§ 04

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.
Practice on your own
Generate unlimited 3D vector worksheets with step-by-step solutions using MathAnvil's free worksheet generator.
Generate free worksheets
§ 05

Frequently asked questions

Why do we need the cross product when the dot product exists?
The cross product creates a new vector perpendicular to both input vectors, essential for finding surface normals in computer graphics and calculating torque in physics. The dot product only gives a scalar measuring alignment, whilst the cross product magnitude gives the parallelogram area formed by the two vectors.
How do parametric line equations differ from Cartesian equations?
Parametric equations r = a + tb express every point on the line using a parameter t, making calculations simpler for 3D problems. Cartesian equations like 2x + 3y = 6 work well in 2D but become cumbersome in three dimensions, especially for finding intersections.
What's the geometric meaning of the cross product magnitude?
The magnitude |a × b| equals the area of the parallelogram formed by vectors a and b. If a = (3,0,0) and b = (0,4,0), then |a × b| = 12, which matches the rectangle area 3 × 4 = 12 square units.
When do two planes intersect in a line versus not at all?
Two planes intersect in a line when their normal vectors are not parallel. If plane 1 has normal (1,2,3) and plane 2 has normal (2,4,6), they're parallel since (2,4,6) = 2(1,2,3), so they either don't intersect or are identical planes.
How can I check if my cross product calculation is correct?
Verify that your result is perpendicular to both original vectors using dot products. For a × b = c, check that a · c = 0 and b · c = 0. Also verify the magnitude using |a × b| = |a||b|sin(θ) where θ is the angle between vectors.
§ 06

Related topics

Share this article