3D DistanceJEE Main

Point-to-plane perpendicular distance — interactive Mathematics simulation for IIT-JEE.

Concept

The distance from a point to a plane is measured along the plane's normal. Substituting the point into the plane expression and normalising by n|\vec n| gives a signed value whose magnitude is the distance and whose sign tells you which side of the plane the point is on.

Key formula

d=Ax0+By0+Cz0DA2+B2+C2d = \frac{|A x_0 + B y_0 + C z_0 - D|}{\sqrt{A^2 + B^2 + C^2}}

Derivation

Take the unit normal n^=(A,B,C)/n\hat n = (A,B,C)/|\vec n|. For any point QQ on the plane, nQ=D\vec n\cdot\vec Q = D.

The distance is the projection of QP=PQ\vec{QP} = \vec P - \vec Q onto n^\hat n: (nPD)/n(\vec n\cdot\vec P - D)/|\vec n|.

Dropping a perpendicular from PP a signed distance along n^\hat n lands on the foot F=P(nPDn)n^F = P - \big(\tfrac{\vec n\cdot P - D}{|\vec n|}\big)\hat n.

Scenarios to explore

  • 3D Distance — Point-to-plane and point-to-line distances.

Real-world applications

  • Collision and clearance checks in 3D engines.
  • Fitting planes to point clouds (residual distances).
  • Computing layer thickness in CAD and manufacturing.

JEE exam tips

  • Two parallel planes nr=D1\vec n\cdot\vec r = D_1 and D2D_2 are D1D2/n|D_1 - D_2|/|\vec n| apart.
  • A point lies on the plane exactly when the numerator is zero.

Common mistakes

  • Forgetting to divide by n|\vec n| — that gives the scaled value, not the distance.
  • Dropping the constant DD when substituting the point.
  • Reporting the signed value when the question wants the unsigned distance.

Exam traps to avoid

  • The sign of the distance flips depending on the orientation chosen for n\vec n.
  • Use the same form of the equation (=D=D vs D=0-D=0) consistently.