Vectors: PYQ Walkthrough (14)

medium 2 min read

Question

If a=2i^+j^k^\vec{a} = 2\hat{i} + \hat{j} - \hat{k} and b=i^j^+2k^\vec{b} = \hat{i} - \hat{j} + 2\hat{k}, find (a) the angle between a\vec{a} and b\vec{b}, (b) the projection of a\vec{a} on b\vec{b}, and (c) a unit vector perpendicular to both.

This is the standard JEE Main vectors three-in-one. The same setup is asked yearly with different numbers.

Solution — Step by Step

ab=2(1)+1(1)+(1)(2)=212=1\vec{a}\cdot\vec{b} = 2(1) + 1(-1) + (-1)(2) = 2 - 1 - 2 = -1.

a=4+1+1=6|\vec{a}| = \sqrt{4+1+1} = \sqrt{6}, b=1+1+4=6|\vec{b}| = \sqrt{1+1+4} = \sqrt{6}.

cosθ=ab/(ab)=1/6\cos\theta = \vec{a}\cdot\vec{b}/(|\vec{a}||\vec{b}|) = -1/6.

θ=cos1(1/6)99.6\theta = \cos^{-1}(-1/6) \approx 99.6^\circ.

Projection of a\vec{a} on b\vec{b} is ab/b=1/6\vec{a}\cdot\vec{b}/|\vec{b}| = -1/\sqrt{6}.

a×b=(12(1)(1),(1)(1)22,2(1)11)=(1,5,3)\vec{a}\times\vec{b} = (1\cdot 2 - (-1)(-1), (-1)(1) - 2\cdot 2, 2(-1) - 1\cdot 1) = (1, -5, -3).

a×b=1+25+9=35|\vec{a}\times\vec{b}| = \sqrt{1+25+9} = \sqrt{35}.

Unit vector: (1,5,3)/35(1, -5, -3)/\sqrt{35}.

Final answers: (a) cos1(1/6)\cos^{-1}(-1/6), (b) 1/6-1/\sqrt{6}, (c) (i^5j^3k^)/35(\hat{i} - 5\hat{j} - 3\hat{k})/\sqrt{35}.

Why This Works

The dot product extracts how much one vector “points along” another, scaled by magnitudes. Negative dot product means obtuse angle. The projection is the component of a\vec{a} along the direction of b\vec{b} — a scalar that can be negative.

The cross product gives a vector perpendicular to both, with magnitude equal to the area of the parallelogram spanned by them. Dividing by its magnitude gives the unit perpendicular.

Alternative Method

For the angle, you can use sinθ=a×b/(ab)=35/6\sin\theta = |\vec{a}\times\vec{b}|/(|\vec{a}||\vec{b}|) = \sqrt{35}/6. Combined with the negative cosine, this places θ\theta in the second quadrant. Same answer, useful as a cross-check.

The “projection” in CBSE means the scalar ab^\vec{a}\cdot\hat{b}, not the vector (ab^)b^(\vec{a}\cdot\hat{b})\hat{b}. Read the question carefully — JEE sometimes wants the vector projection.

Common Mistake

Mixing up the projection of a\vec{a} on b\vec{b} versus b\vec{b} on a\vec{a}. They are different in general:

projba=ab/b\text{proj}_{\vec{b}}\vec{a} = \vec{a}\cdot\vec{b}/|\vec{b}|, projab=ab/a\text{proj}_{\vec{a}}\vec{b} = \vec{a}\cdot\vec{b}/|\vec{a}|.

Same dot product, different denominators.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next