Prove Vectors are Coplanar Using Scalar Triple Product

medium CBSE JEE-MAIN JEE Main 2023 4 min read

Question

Three vectors are given:

a=i^+2j^k^,b=3i^+j^+2k^,c=4i^j^+λk^\vec{a} = \hat{i} + 2\hat{j} - \hat{k}, \quad \vec{b} = 3\hat{i} + \hat{j} + 2\hat{k}, \quad \vec{c} = 4\hat{i} - \hat{j} + \lambda\hat{k}

Find the value of λ\lambda for which a\vec{a}, b\vec{b}, c\vec{c} are coplanar. Then verify the result.


Solution — Step by Step

Three vectors are coplanar if and only if their scalar triple product equals zero:

[a  b  c]=a(b×c)=0[\vec{a} \; \vec{b} \; \vec{c}] = \vec{a} \cdot (\vec{b} \times \vec{c}) = 0

The geometric reason: if the scalar triple product is zero, the parallelepiped formed by the three vectors has zero volume — meaning all three lie in the same plane.

The scalar triple product is computed as:

[a  b  c]=12131241λ[\vec{a} \; \vec{b} \; \vec{c}] = \begin{vmatrix} 1 & 2 & -1 \\ 3 & 1 & 2 \\ 4 & -1 & \lambda \end{vmatrix}

Each row is one vector’s components. Row 1 is a\vec{a}, row 2 is b\vec{b}, row 3 is c\vec{c}.

Expanding along the first row:

=1121λ2324λ+(1)3141= 1 \cdot \begin{vmatrix} 1 & 2 \\ -1 & \lambda \end{vmatrix} - 2 \cdot \begin{vmatrix} 3 & 2 \\ 4 & \lambda \end{vmatrix} + (-1) \cdot \begin{vmatrix} 3 & 1 \\ 4 & -1 \end{vmatrix} =1(λ+2)2(3λ8)1(34)= 1(\lambda + 2) - 2(3\lambda - 8) - 1(-3 - 4) =λ+26λ+16+7= \lambda + 2 - 6\lambda + 16 + 7 =5λ+25= -5\lambda + 25

Set the scalar triple product equal to zero:

5λ+25=0    λ=5-5\lambda + 25 = 0 \implies \lambda = 5

The vectors are coplanar when λ=5\lambda = 5.

Substitute λ=5\lambda = 5 back and recompute:

121312415=(5+2)2(158)+(1)(34)=714+7=0\begin{vmatrix} 1 & 2 & -1 \\ 3 & 1 & 2 \\ 4 & -1 & 5 \end{vmatrix} = (5+2) - 2(15-8) + (-1)(-3-4) = 7 - 14 + 7 = 0 \checkmark

Why This Works

The scalar triple product a(b×c)\vec{a} \cdot (\vec{b} \times \vec{c}) gives the signed volume of the parallelepiped with those three vectors as edges. When this volume is zero, the three vectors cannot span three dimensions — they’re all stuck in a plane.

Think of it physically: if you tried to build a box with these three edges and it collapsed flat, that’s coplanarity. The determinant captures exactly this — a zero determinant means the rows are linearly dependent, i.e., one vector is a linear combination of the other two.

This is one of the most direct conditions in JEE vectors. No need to find the actual plane equation unless the question explicitly asks.


Alternative Method

Instead of the determinant directly, we can use the condition that c\vec{c} can be expressed as c=xa+yb\vec{c} = x\vec{a} + y\vec{b}:

4i^j^+λk^=x(i^+2j^k^)+y(3i^+j^+2k^)4\hat{i} - \hat{j} + \lambda\hat{k} = x(\hat{i} + 2\hat{j} - \hat{k}) + y(3\hat{i} + \hat{j} + 2\hat{k})

Comparing components:

  • i^\hat{i}: x+3y=4x + 3y = 4
  • j^\hat{j}: 2x+y=12x + y = -1
  • k^\hat{k}: x+2y=λ-x + 2y = \lambda

From the first two equations: multiply the second by 3 and subtract the first — 5x=75x = -7, so x=7/5x = -7/5. Then y=43(7/5)...y = 4 - 3(-7/5) \cdot ...

The determinant method is faster in exams. The linear combination method works but takes 2× longer. In JEE Main where time is everything, go straight for the 3×33 \times 3 determinant.

Solving gives x=1x = 1, y=1y = 1 (you can verify), and λ=x+2y=1+2(3)=5\lambda = -x + 2y = -1 + 2(3) = 5. Same answer.


Common Mistake

Row order doesn’t matter for zero — but matters for sign. Many students panic when they get [a  b  c]=[b  a  c][\vec{a}\;\vec{b}\;\vec{c}] = -[\vec{b}\;\vec{a}\;\vec{c}] and think they made an error. For the coplanarity condition (equals zero), swapping any two rows just changes the sign — zero stays zero. But if the question asks you to compute the scalar triple product as a value, row order matters. Here, since we’re only testing if it equals zero, any row ordering gives the correct λ\lambda.

The second common trap: students expand the determinant correctly but forget the alternating sign pattern — the middle term gets 2()-2(\ldots), not +2()+2(\ldots). Always write out the cofactor signs as +,,++, -, + before expanding.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next