Vectors: Numerical Problems Set (11)

medium 2 min read

Question

If a=2i+3jk\vec{a} = 2\vec{i} + 3\vec{j} - \vec{k} and b=i2j+3k\vec{b} = \vec{i} - 2\vec{j} + 3\vec{k}, find (a) ab\vec{a} \cdot \vec{b}, (b) a×b\vec{a} \times \vec{b}, and (c) the angle between a\vec{a} and b\vec{b}.

Solution — Step by Step

ab=(2)(1)+(3)(2)+(1)(3)=263=7\vec{a} \cdot \vec{b} = (2)(1) + (3)(-2) + (-1)(3) = 2 - 6 - 3 = -7

a×b=ijk231123\vec{a} \times \vec{b} = \begin{vmatrix} \vec{i} & \vec{j} & \vec{k} \\ 2 & 3 & -1 \\ 1 & -2 & 3 \end{vmatrix}

=i(92)j(6+1)+k(43)=7i7j7k= \vec{i}(9 - 2) - \vec{j}(6 + 1) + \vec{k}(-4 - 3) = 7\vec{i} - 7\vec{j} - 7\vec{k}

a=4+9+1=14,b=1+4+9=14|\vec{a}| = \sqrt{4 + 9 + 1} = \sqrt{14}, \quad |\vec{b}| = \sqrt{1 + 4 + 9} = \sqrt{14}

cosθ=abab=714=12\cos\theta = \frac{\vec{a} \cdot \vec{b}}{|\vec{a}| |\vec{b}|} = \frac{-7}{14} = -\frac{1}{2}

θ=120°\theta = 120°

Final answers: ab=7\vec{a} \cdot \vec{b} = -7, a×b=7i7j7k\vec{a} \times \vec{b} = 7\vec{i} - 7\vec{j} - 7\vec{k}, θ=120°\theta = 120°.

Why This Works

The dot product encodes both magnitudes and the cosine of the angle between vectors: ab=abcosθ\vec{a} \cdot \vec{b} = |\vec{a}| |\vec{b}| \cos\theta. The cross product gives a vector perpendicular to both, with magnitude absinθ|\vec{a}| |\vec{b}| \sin\theta.

A negative dot product immediately tells us the angle is obtuse (between 90°90° and 180°180°). The magnitudes happened to be equal here (14\sqrt{14} each), making the cosine value clean.

Alternative Method

For the angle, you can also use the cross product magnitude: a×b=absinθ|\vec{a} \times \vec{b}| = |\vec{a}||\vec{b}|\sin\theta. Here a×b=49+49+49=73|\vec{a} \times \vec{b}| = \sqrt{49 + 49 + 49} = 7\sqrt{3}. So sinθ=73/14=3/2\sin\theta = 7\sqrt{3}/14 = \sqrt{3}/2, giving θ=60°\theta = 60° or 120°120°. Combine with the negative cosine to confirm θ=120°\theta = 120°.

Always sanity-check the angle: if ab<0\vec{a} \cdot \vec{b} < 0, then θ>90°\theta > 90°. If ab=0\vec{a} \cdot \vec{b} = 0, vectors are perpendicular. JEE often gives MCQs where this quick sign check eliminates options.

Common Mistake

Students sometimes drop minus signs in cross product cofactor expansion (the middle term has a minus sign by definition). Write the determinant out fully each time — it’s safer than memorising the formula.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next