graph TD A["3D Geometry Problem Type"] --> B["Angle between two lines"] A --> C["Angle between line and plane"] A --> D["Angle between two planes"] A --> E["Distance from point to plane"] B --> F["cos θ = |b₁·b₂| / |b₁||b₂|"] C --> G["sin φ = |b·n| / |b||n|"] D --> H["cos θ = |n₁·n₂| / |n₁||n₂|"] E --> I["d = |ax₁+by₁+cz₁-d| / √a²+b²+c²"]
The key insight: a line makes angle ϕ with a plane if and only if it makes angle (90°−ϕ) with the normal to the plane. So sinϕ=cosθ, which equals the dot product formula.
Lines in 3D can be written in three forms:
Cartesian:ax−x1=by−y1=cz−z1
Vector:r=a+λb
Parametric:x=x1+at, y=y1+bt, z=z1+ct
Planes can be written as: ax+by+cz=d or r⋅n=d.
Alternative Method
For JEE problems asking whether a line is parallel to a plane: check if b⋅n=0. If the dot product is zero, the line is parallel to the plane (perpendicular to the normal).
For a line to LIE IN a plane, two conditions: b⋅n=0 AND the given point on the line must satisfy the plane equation. Many JEE problems test exactly this distinction.
Common Mistake
Using cosϕ instead of sinϕ for line-plane angle. The angle between a line and a plane uses sinϕ, not cosϕ. The angle between two planes or two lines uses cosθ. This is because the line-plane angle is measured from the plane surface, not from the normal. Mixing up sin and cos here gives the complementary angle — and costs you the mark.
Angle between lines: cosθ=a12+b12+c12a22+b22+c22∣a1a2+b1b2+c1c2∣
Angle between line and plane: sinϕ=a2+b2+c2l2+m2+n2∣al+bm+cn∣
Distance from point to plane: d=a2+b2+c2∣ax1+by1+cz1−d∣
Shortest distance between skew lines: d=∣b1×b2∣∣(a2−a1)⋅(b1×b2)∣
Want to master this topic?
Read the complete guide with more examples and exam tips.