3D geometry — line equations, plane equations, angle between them

medium CBSE JEE-MAIN 3 min read

Question

Find the angle between the line x12=y+13=z26\dfrac{x - 1}{2} = \dfrac{y + 1}{3} = \dfrac{z - 2}{6} and the plane 3x+4y+12z=73x + 4y + 12z = 7.

(CBSE 12 Board / JEE Main standard problem)


Problem Type Decision Tree

flowchart TD
    A["3D Geometry Problem"] --> B{What is given?}
    B -->|Two lines| C{Find what?}
    B -->|Two planes| D{Find what?}
    B -->|Line + Plane| E{Find what?}
    C -->|Angle| C1["cos theta = |b1.b2| / |b1||b2|"]
    C -->|Shortest distance| C2["Use cross product formula"]
    D -->|Angle| D1["cos theta = |n1.n2| / |n1||n2|"]
    D -->|Distance| D2["Point-to-plane formula"]
    E -->|Angle| E1["sin theta = |b.n| / |b||n|"]
    E -->|Point of intersection| E2["Parametric form, substitute"]

Solution — Step by Step

The line has direction ratios b=(2,3,6)\vec{b} = (2, 3, 6) (the denominators in symmetric form).

The plane 3x+4y+12z=73x + 4y + 12z = 7 has normal vector n=(3,4,12)\vec{n} = (3, 4, 12).

The angle θ\theta between a line and a plane is given by:

sinθ=bnbn\sin\theta = \frac{|\vec{b} \cdot \vec{n}|}{|\vec{b}||\vec{n}|}

Why sin\sin and not cos\cos? Because θ\theta is measured between the line and the plane (not the normal). The angle between the line and the normal is 90°θ90° - \theta, so what would be cos\cos with the normal becomes sin\sin with the plane.

bn=2(3)+3(4)+6(12)=6+12+72=90\vec{b} \cdot \vec{n} = 2(3) + 3(4) + 6(12) = 6 + 12 + 72 = 90 b=4+9+36=49=7|\vec{b}| = \sqrt{4 + 9 + 36} = \sqrt{49} = 7 n=9+16+144=169=13|\vec{n}| = \sqrt{9 + 16 + 144} = \sqrt{169} = 13 sinθ=907×13=9091\sin\theta = \frac{90}{7 \times 13} = \frac{90}{91} θ=sin1(9091)\boxed{\theta = \sin^{-1}\left(\frac{90}{91}\right)}

Why This Works

A plane is defined by its normal direction. The angle between a line and a plane is complementary to the angle between the line and the normal. Since the dot product naturally gives the cosine of the angle between two vectors, and we need the complement, we use sine.

If ϕ\phi is the angle between b\vec{b} and n\vec{n}, then cosϕ=bn/(bn)\cos\phi = \vec{b}\cdot\vec{n}/(|\vec{b}||\vec{n}|), and θ=90°ϕ\theta = 90° - \phi, so sinθ=cosϕ\sin\theta = \cos\phi.


Alternative Method — Using the Normal Angle

Find the angle between the line and the normal first:

cosϕ=9091\cos\phi = \frac{90}{91}

Then θ=90°ϕ=90°cos1(90/91)\theta = 90° - \phi = 90° - \cos^{-1}(90/91).

This is algebraically identical but some students find it more intuitive to work with the normal first and then subtract from 90°90°.

In JEE Main, 3D geometry questions almost always test one of three things: (1) angle between line and plane, (2) shortest distance between skew lines, (3) image of a point in a plane. Memorise the formula for each — they appear as direct 2-mark questions.


Common Mistake

The classic error: using cosθ\cos\theta instead of sinθ\sin\theta for the line-plane angle. Students confuse the line-plane formula with the plane-plane formula. Remember: line-plane uses sin\sin, plane-plane uses cos\cos, line-line uses cos\cos.

Another trap: forgetting the absolute value. The angle between a line and a plane is always between 0° and 90°90°, so we take the modulus of the dot product. Without it, you might report a negative angle, which is meaningless.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next