19. Point–Plane Distance

For a plane in 3 defined by 𝐴𝑥+𝐵𝑦+𝐶𝑧=𝐷 and a point (𝑥0,𝑦0,𝑧0), the perpendicular distance from the point to the plane is:

𝑑=|𝐴𝑥0+𝐵𝑦0+𝐶𝑧0𝐷|𝐴2+𝐵2+𝐶2

The denominator is the norm of the plane’s normal vector 𝑛=(𝐴,𝐵,𝐶).

The signed distance (drop the absolute value) tells you which side of the plane the point is on:

𝑑signed=𝐴𝑥0+𝐵𝑦0+𝐶𝑧0𝐷𝐴2+𝐵2+𝐶2
Example

Plane: 𝑥2𝑦+3𝑧=5. Point: (2,3,1).

𝑑=1223+31512+(2)2+32=26+351+4+9=6141.60

The negative sign means the point lies on the opposite side of the plane from the normal direction.

19.1. Generalization

The same formula generalizes to a hyperplane in 𝑛 defined by 𝑎𝑥=𝑏:

𝑑=|𝑎𝑝𝑏|𝑎

19.2. Connections