Skip to content

9709 · 3.7

Vectors — common mistakes

Common exam mistakes on 9709 Vectors. Learn what loses marks, then practise the topic with Examiner’s Ink.

Exam tip 1

When finding the intersection of two lines, r1=a+λd1\mathbf{r}_1 = \mathbf{a} + \lambda\mathbf{d}_1 and r2=b+μd2\mathbf{r}_2 = \mathbf{b} + \mu\mathbf{d}_2, you will set up three simultaneous equations (for i\mathbf{i}, j\mathbf{j}, and k\mathbf{k}). Solve for λ\lambda and μ\mu using two of the equations. You MUST substitute these values back into the third equation. If it holds true, the lines intersect. If not, they are skew (assuming they are not parallel).

What's the difference between a position vector and a direction vector?

A position vector gives the coordinates of a point relative to the origin, like an address. A direction vector isn't fixed to the origin; it just describes a direction and magnitude, like '3 steps east'. In the line equation r=a+λd\mathbf{r} = \mathbf{a} + \lambda\mathbf{d}, a\mathbf{a} is a position vector locating the line in space, while d\mathbf{d} is a direction vector defining its orientation.

How do I know if lines are skew?

First, check if their direction vectors are parallel (scalar multiples of each other). If they are not, try to find a point of intersection by setting their vector equations equal. This gives you three simultaneous equations for two variables (λ\lambda and μ\mu). If you can't find a consistent solution for λ\lambda and μ\mu that works for all three equations, the lines do not intersect. Since they are not parallel and do not intersect, they must be skew.

Can I use the dot product for 2D vectors?

Yes, absolutely. The formulas are just simpler. For 2D vectors a=a1i+a2j\mathbf{a} = a_1\mathbf{i} + a_2\mathbf{j} and b=b1i+b2j\mathbf{b} = b_1\mathbf{i} + b_2\mathbf{j}, the scalar product is ab=a1b1+a2b2\mathbf{a} \cdot \mathbf{b} = a_1b_1 + a_2b_2. The geometric definition ab=abcosθ\mathbf{a} \cdot \mathbf{b} = |\mathbf{a}||\mathbf{b}|\cos\theta and all its applications still hold.