Skip to content

9709 · 3.7

Vectors — FAQ

Frequently asked questions for 9709 Vectors. Direct answers first, then deeper explanation — then practise with marking.

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.