3.6.11 · D53D Geometry

Question bank — Distance from a point to a plane

1,940 words9 min readBack to topic

Before the traps, we set up every symbol you'll meet, anchored to one picture, and re-derive the master formula so the questions rest on solid ground.


Setup: the symbols, the picture, the formula

Figure — Distance from a point to a plane

Look at the figure. The plane is the flat sheet. From a point on it, the arrow (amber) reaches up to . Its shadow onto the normal direction (cyan) is the perpendicular drop — the true distance . The sideways part of is wasted; only the along-normal part counts.

Why this formula — a 4-step derivation

Step 1 — the shadow onto the normal is the distance. The shortest way from to the wall is straight along . The length of 's piece along is a projection, and the projection onto a unit direction is exactly a dot product (see Projection of a vector):

Figure — Distance from a point to a plane

Step 2 — expand the dot product using :

Step 3 — kill . Since is on the plane, . Substitute: The unknown has vanished — the answer depends only on and the plane.

Step 4 — divide by , then take magnitude (distance ):

Figure — Distance from a point to a plane

Now the traps.


True or false — justify

Each line: a claim ::: the honest verdict with a reason.

The number by itself is the distance from to the plane.
False — it is a scaled signed quantity; you must divide by to turn it into a true length, and take absolute value for distance.
If satisfies , then lies on the plane and its distance is zero.
True — the numerator vanishes, so ; being "on the plane" and "distance zero" are the same statement.
Multiplying the whole plane equation by (so ) changes the computed distance.
False — numerator and denominator both scale by , so the ratio is unchanged; distance is a geometric fact independent of how you scale the equation.
The shortest path from to the plane could be a slanted line if the plane is tilted.
False — the shortest path is always along the normal direction, no matter the plane's tilt; any slant adds length by the Pythagorean theorem.
For two points on the same side of the plane, has the same sign.
True — the sign of that expression records which half-space you are in, so matching signs mean the same side. Foot of perpendicular from a point to a plane uses this idea to locate landing points.
If for , then points away from .
False — a positive signed distance (the projection ) means sits on the side the normal points toward; the arrow points from the plane toward .
The distance from the origin to is always .
False — it is ; it equals only when the normal already has length .
Two parallel planes with normals and can have their gap found by directly.
False — the normals must be made identical first (scale one equation so the coefficients match); only then is valid. See Distance between two parallel planes.
The distance formula still works if happens to lie exactly on the plane.
True — it gracefully returns ; there is no division-by-zero or undefined case at that point.

Spot the error

Recall is a point on the plane and is the arrow from to . Each line quotes a flawed line of work ::: names and fixes the mistake.

", so the distance numerator is ."
The was dropped; without it you measure to the parallel plane through the origin, not to . The correct numerator is .
"."
The denominator must be , not ; you need the length , not its square.
"The point gave a negative number, so the distance is negative."
Distance is never negative; take the absolute value. The negative sign only tells you which side of the plane is on.
"To find the gap between and , I subtracted their values: ."
You forgot to divide by ; the correct gap is (with normals already matched).
"I put the plane's coefficients into the numerator's slots and the point's coordinates into ."
Roles are swapped — the point goes into ; the plane's coefficients fill the numerator's multipliers and the whole denominator.
"For plane through the origin, distance from the origin is ... wait, that's wrong, the origin is far away."
It is correct — a plane written with passes through the origin, so the origin's distance genuinely is . The intuition of "far away" is the error here.
" is the distance, so I dotted the arrow-from-plane-to- with (not ) and stopped."
Dotting with gives a value stretched by ; you must divide by (i.e. project onto the unit normal ). This is exactly the Projection of a vector step done properly.

Why questions

Recall denotes any point on the plane (subscript ), so it obeys . Each line: a "why" ::: the reasoning.

Why does the arbitrary on-plane point vanish from the final formula?
Because satisfies ; substituting this collapses all the -terms into the constant , leaving only and the plane's coefficients.
Why do we project onto the normal rather than any other direction?
The normal is the unique direction perpendicular to the plane, and the perpendicular drop is the shortest path; projecting onto it isolates exactly that shortest component and discards the sideways part.
Why does dividing by fix the scale?
A dot product with overcounts by the factor ; dividing restores the projection onto a unit vector, whose length is measured in true units of distance.
Why is any point on the plane equally valid in the derivation?
Because every on-plane point gives the same perpendicular drop to (the sideways differences project to zero along the normal); the answer cannot depend on which you pick, and the algebra confirms it by eliminating .
Why does the constant matter so much?
encodes where the plane sits along its normal; the coefficients only fix the plane's orientation, so without you'd have infinitely many parallel planes and no fixed distance. See Equation of a plane.
Why can the signed version tell "same side" without ever computing a distance?
The sign flips only when you cross the plane, so two points sharing a sign have not crossed it — they are in the same half-space, regardless of magnitudes.
Why is the origin case a special shortcut?
Substituting kills the terms, leaving just on top — a clean read-off of how far the plane's constant places it from the origin.

Edge cases

Each line: a degenerate or boundary scenario ::: what actually happens.

What if , i.e. ?
Then is not a plane at all (it's either the whole space or empty), the denominator is , and the formula is undefined — there is no plane to measure to.
What if the point lies on the plane?
The numerator is exactly , so ; this is the natural boundary between the two half-spaces, not a breakdown of the formula.
What if the two "parallel" planes are actually the same plane (after matching normals, )?
Then and the gap is — correctly reporting that they coincide, so there is no separation to measure.
What if the plane passes through the origin ()?
The formula still holds; the origin's distance becomes and every other point's numerator is just . Nothing breaks — is a valid, ordinary case.
What if two candidate normals differ only in sign, e.g. vs ?
The unsigned distance is identical (absolute value and same denominator), but the signed distance flips sign, so "which side is positive" reverses — the geometry is the same, only the labelling of sides swaps.
What happens to the signed distance as moves further along the normal, away from the plane?
It grows without bound and keeps its sign; the signed distance behaves like a coordinate axis running perpendicular to the plane, zero on it and increasing linearly outward.
Is the distance from a point to a plane ever the same idea as distance to a line in 3D?
They share the "drop a perpendicular" spirit, but the plane version projects onto a single normal (one dot product), whereas Distance from a point to a line in 3D needs a cross product because a line has many perpendicular directions.

Connections