20. Plane–Plane Distance

Two planes in 3 are either:

20.1. Distance between parallel planes

Two planes are parallel iff their normal vectors are parallel:

𝑃1:𝐴1𝑥+𝐵1𝑦+𝐶1𝑧=𝐷1𝑃2:𝐴2𝑥+𝐵2𝑦+𝐶2𝑧=𝐷2

are parallel iff (𝐴1,𝐵1,𝐶1)=𝑘(𝐴2,𝐵2,𝐶2) for some 𝑘0.

Rewriting both with the same normal vector 𝑛=(𝐴,𝐵,𝐶):

𝑃1:𝑛𝑥=𝐷1𝑃2:𝑛𝑥=𝐷2

The perpendicular distance between them is:

𝑑=|𝐷1𝐷2|𝐴2+𝐵2+𝐶2=|𝐷1𝐷2|𝑛
Example
𝑃1:𝑥+2𝑦+2𝑧=5𝑃2:𝑥+2𝑦+2𝑧=14

Same normal (1,2,2), 𝑛=1+4+4=3.

𝑑=|514|3=93=3

20.2. Strategy: pick a point on 𝑃1, measure to 𝑃2

Equivalent computation: any point 𝑥0 on 𝑃1 has point–plane distance to 𝑃2 equal to the inter-plane distance.

20.3. Non-parallel planes

If the normal vectors are not parallel, the planes intersect along a line in 3 — distance 0. Any pair of non-parallel planes intersects (in 3-D).

The intersection line’s direction is 𝑛1×𝑛2 (a vector orthogonal to both normals — see Cross Product).

20.4. Connections