18. Planes

A plane in 3 is the set of points (𝑥,𝑦,𝑧) satisfying a single linear equation:

𝐴𝑥+𝐵𝑦+𝐶𝑧=𝐷

The vector 𝑛=(𝐴,𝐵,𝐶) is the normal vector — perpendicular to every vector lying in the plane.

18.1. Point–normal form

If 𝑥0 is a known point on the plane and 𝑛 is the normal, then any other point 𝑥 lies on the plane iff 𝑥𝑥0 is perpendicular to 𝑛:

𝑛(𝑥𝑥0)=0

Expanding componentwise:

𝑛1(𝑥𝑥0)+𝑛2(𝑦𝑦0)+𝑛3(𝑧𝑧0)=0
Example

Find the plane equation given 𝑛=(1,3,2) and a point on the plane 𝑥0=(1,2,3).

1(𝑥1)+3(𝑦2)2(𝑧3)=0

Simplify:

𝑥1+3𝑦62𝑧+6=0𝑥+3𝑦2𝑧=1

18.2. Reading the normal off the equation

In the form 𝐴𝑥+𝐵𝑦+𝐶𝑧=𝐷, the coefficients are exactly the components of the normal vector:

𝑛=(𝐴,𝐵,𝐶)
Example
3𝑥+2𝑦+7𝑧=𝜋𝑛=(3,2,7)

18.3. See also