Distance from a Point to a Plane — Definition, Formula & Examples
Distance from a point to a plane is the shortest (perpendicular) length between a given point in 3D space and a flat plane. You compute it by plugging the point's coordinates into the plane's equation and dividing by the length of the normal vector.
Given a plane and a point , the distance from to the plane is the absolute value of the signed distance . This quantity equals the magnitude of the projection of any vector from the plane to onto the unit normal of the plane.
Key Formula
Where:
- = Coefficients of the plane equation, forming the normal vector $\langle a, b, c \rangle$
- = Constant term when the plane is written as $ax + by + cz + d = 0$
- = Coordinates of the given point
- = Perpendicular distance from the point to the plane
How It Works
Start by writing the plane equation in standard form . Then substitute the coordinates of the point into to get the numerator. Compute from the normal vector coefficients for the denominator. Take the absolute value of the ratio to obtain the distance. The result is always non-negative, and it equals zero exactly when the point lies on the plane.
Worked Example
Problem: Find the distance from the point (1, 2, 3) to the plane 2x − 2y + z − 6 = 0.
Substitute the point: Plug the coordinates into the numerator expression.
Compute the normal vector's magnitude: Use the coefficients a = 2, b = −2, c = 1.
Calculate the distance: Take the absolute value of the numerator and divide by the denominator.
Answer: The distance is units.
Why It Matters
This formula appears in multivariable calculus, linear algebra, and computer graphics whenever you need to measure how far an object is from a surface. In physics and engineering, it is used to compute clearances, reflection distances, and error margins in 3D modeling.
Common Mistakes
Mistake: Forgetting the absolute value and reporting a negative distance.
Correction: The signed quantity can be negative depending on which side of the plane the point lies. Always take the absolute value to get the geometric distance.
