Question
Find the angle between the line and the plane .
(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 (the denominators in symmetric form).
The plane has normal vector .
The angle between a line and a plane is given by:
Why and not ? Because is measured between the line and the plane (not the normal). The angle between the line and the normal is , so what would be with the normal becomes with the plane.
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 is the angle between and , then , and , so .
Alternative Method — Using the Normal Angle
Find the angle between the line and the normal first:
Then .
This is algebraically identical but some students find it more intuitive to work with the normal first and then subtract from .
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 instead of for the line-plane angle. Students confuse the line-plane formula with the plane-plane formula. Remember: line-plane uses , plane-plane uses , line-line uses .
Another trap: forgetting the absolute value. The angle between a line and a plane is always between and , so we take the modulus of the dot product. Without it, you might report a negative angle, which is meaningless.