Vectors: Tricky Questions Solved (3)

hard 3 min read

Question

Let a=i^+2j^+3k^\vec{a} = \hat{i} + 2\hat{j} + 3\hat{k}, b=2i^j^+k^\vec{b} = 2\hat{i} - \hat{j} + \hat{k}, and c=i^2j^+4k^\vec{c} = \hat{i} - 2\hat{j} + 4\hat{k}. Find a vector r\vec{r} that is perpendicular to both a\vec{a} and b\vec{b}, has magnitude 535\sqrt{3}, and makes an obtuse angle with c\vec{c}. This kind of problem appeared in JEE Main 2023 with slightly different numbers.

Solution — Step by Step

A vector perpendicular to a\vec{a} and b\vec{b} is parallel to a×b\vec{a} \times \vec{b}:

a×b=i^j^k^123211=i^(213(1))j^(1132)+k^(1(1)22)\vec{a} \times \vec{b} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ 1 & 2 & 3 \\ 2 & -1 & 1 \end{vmatrix} = \hat{i}(2 \cdot 1 - 3 \cdot (-1)) - \hat{j}(1 \cdot 1 - 3 \cdot 2) + \hat{k}(1 \cdot (-1) - 2 \cdot 2)

=i^(2+3)j^(16)+k^(14)=5i^+5j^5k^= \hat{i}(2 + 3) - \hat{j}(1 - 6) + \hat{k}(-1 - 4) = 5\hat{i} + 5\hat{j} - 5\hat{k}

Magnitude: a×b=25+25+25=53|\vec{a} \times \vec{b}| = \sqrt{25 + 25 + 25} = 5\sqrt{3}.

Unit vector: n^=13(i^+j^k^)\hat{n} = \dfrac{1}{\sqrt{3}}(\hat{i} + \hat{j} - \hat{k}).

We need magnitude 535\sqrt{3}, so two candidates:

r1=53n^=5(i^+j^k^),r2=5(i^+j^k^)\vec{r}_1 = 5\sqrt{3} \hat{n} = 5(\hat{i} + \hat{j} - \hat{k}), \quad \vec{r}_2 = -5(\hat{i} + \hat{j} - \hat{k})

Obtuse angle ⟺ rc<0\vec{r} \cdot \vec{c} < 0.

r1c=5(1)+5(2)+(5)(4)=51020=25<0\vec{r}_1 \cdot \vec{c} = 5(1) + 5(-2) + (-5)(4) = 5 - 10 - 20 = -25 < 0 \checkmark

So r1\vec{r}_1 works:

r=5i^+5j^5k^\vec{r} = 5\hat{i} + 5\hat{j} - 5\hat{k}

Why This Works

The cross product a×b\vec{a} \times \vec{b} gives a vector perpendicular to both — that’s its defining property. There are two such directions (positive and negative), and the additional constraint (here, the obtuse angle) pins down which sign to take.

The magnitude a×b|\vec{a} \times \vec{b}| also has geometric meaning: it’s the area of the parallelogram spanned by a\vec{a} and b\vec{b}. In this problem, a×b=53|\vec{a}\times\vec{b}| = 5\sqrt{3}, which happens to be the magnitude we want — coincidence-friendly setup.

Alternative Method

You can solve via simultaneous equations: write r=xi^+yj^+zk^\vec{r} = x\hat{i} + y\hat{j} + z\hat{k} and impose ra=0\vec{r}\cdot\vec{a}=0, rb=0\vec{r}\cdot\vec{b}=0, and r=53|\vec{r}| = 5\sqrt{3}. Three equations, three unknowns. The cross product is just a quicker way to encode the first two perpendicularity conditions in one shot.

Whenever a problem says “perpendicular to two vectors”, reach for the cross product immediately. It’s faster than solving two scalar equations and gives you direction directly. Just remember to check the sign with any further constraint (obtuse/acute angle, specific component positive, etc.).

Common Mistake

The most common error is computing the cross product with a sign mistake in the determinant expansion. The cofactor expansion has alternating signs (+,,+)(+, -, +), and forgetting the minus sign on the j^\hat{j} term flips one component. Always double-check by computing ra\vec{r}\cdot\vec{a} and rb\vec{r}\cdot\vec{b} — both should be exactly zero.

The other slip: assuming the cross product vector has the same magnitude as the answer wanted. Almost never true. Compute the magnitude, then scale.

Final answer: r=5i^+5j^5k^\vec{r} = 5\hat{i} + 5\hat{j} - 5\hat{k}.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next