Vectors: Speed-Solving Techniques (8)

medium 2 min read

Question

If a=2i^+j^3k^\vec{a} = 2\hat{i} + \hat{j} - 3\hat{k} and b=i^2j^+k^\vec{b} = \hat{i} - 2\hat{j} + \hat{k}, find the angle between a\vec{a} and b\vec{b}, and the projection of a\vec{a} on b\vec{b}.

Solution — Step by Step

ab=(2)(1)+(1)(2)+(3)(1)=223=3\vec{a} \cdot \vec{b} = (2)(1) + (1)(-2) + (-3)(1) = 2 - 2 - 3 = -3 a=4+1+9=14,b=1+4+1=6|\vec{a}| = \sqrt{4 + 1 + 9} = \sqrt{14}, \quad |\vec{b}| = \sqrt{1 + 4 + 1} = \sqrt{6} cosθ=abab=3146=384=3221\cos\theta = \frac{\vec{a} \cdot \vec{b}}{|\vec{a}||\vec{b}|} = \frac{-3}{\sqrt{14}\sqrt{6}} = \frac{-3}{\sqrt{84}} = \frac{-3}{2\sqrt{21}}

So θ=cos1(3221)109.1°\theta = \cos^{-1}\left(\dfrac{-3}{2\sqrt{21}}\right) \approx 109.1°. The negative cosine tells us the angle is obtuse.

projba=abb=36=62\text{proj}_{\vec{b}} \vec{a} = \frac{\vec{a} \cdot \vec{b}}{|\vec{b}|} = \frac{-3}{\sqrt{6}} = -\frac{\sqrt{6}}{2}

The negative sign means a\vec{a}‘s component along b\vec{b} points opposite to b\vec{b} — consistent with the obtuse angle we just found.

Final Answer: θ=cos1(3221)\theta = \cos^{-1}\left(\dfrac{-3}{2\sqrt{21}}\right), projection =62= -\dfrac{\sqrt{6}}{2}.

Why This Works

The dot product packs both magnitude and angle information into one scalar. Once we have ab\vec{a} \cdot \vec{b} and the two magnitudes, the angle drops out instantly. Projection is just dot product divided by the magnitude of whichever vector we’re projecting onto.

For speed: compute the dot product first. If you only need the angle, two magnitudes finish the job. If you need scalar projection, you only need one magnitude (the target vector). Choose the formula that uses the least extra arithmetic.

Alternative Method

Component-wise: project each component of a\vec{a} onto the unit vector b^=b/b\hat{b} = \vec{b}/|\vec{b}| and sum. Algebraically identical, but more steps. The dot-product shortcut wins.

Confusing scalar projection with vector projection: projba\text{proj}_{\vec{b}} \vec{a} as a vector is abb2b\dfrac{\vec{a} \cdot \vec{b}}{|\vec{b}|^2} \vec{b} (note the squared magnitude). As a scalar, it is abb\dfrac{\vec{a} \cdot \vec{b}}{|\vec{b}|}. Read the question carefully — JEE often asks for the vector form.

Sign of ab\vec{a} \cdot \vec{b} tells you the angle category instantly: positive means acute, zero means perpendicular, negative means obtuse. Use this for one-mark MCQs where you don’t need the exact angle.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next