3.6.11 · D33D Geometry

Worked examples — Distance from a point to a plane

2,213 words10 min readBack to topic

This deep dive takes the one formula from the parent note and runs it through every situation an exam or a real problem can throw at you. We never assume you remember the derivation — we restate the tool, then hammer it against edge cases.

Every symbol here was earned in the parent note; here we only use it, carefully, on hard cases.


The scenario matrix

Before working anything, let's list every distinct case this formula can meet. Each worked example below is tagged with the cell it fills.

# Case class What is tricky about it Example
C1 Positive signed value Point on the normal's side Ex 1
C2 Negative signed value Point on the opposite side; bars matter Ex 2
C3 Point on the plane Numerator , distance Ex 3
C4 Origin as the point Numerator collapses to $ d
C5 Two parallel planes Reuse formula via a borrowed point Ex 5
C6 Same-side / opposite-side test Only the sign is read, not the length Ex 6
C7 Plane not in form Must rearrange first (degenerate-looking input) Ex 7
C8 Real-world word problem (with units) Translate words → coordinates Ex 8
C9 Exam twist: unknown coefficient Solve backwards from a given distance Ex 9

The goal: after reading all nine, no plane-distance question can surprise you — you will always recognise which cell you are in.


Setting the geometry straight

Figure — Distance from a point to a plane

Look at the figure. The blue slab is the plane . The orange arrow is the normal . A point can sit:

  • on the positive side (where points) — green dot,
  • on the negative side — red dot,
  • exactly on the plane — gray dot.

The perpendicular drop (dashed) is always the shortest path; the sign of just records which of the two half-spaces is in. Keep this picture in mind for every example.


Worked examples


Which cell am I in? — decision map

The flowchart below (also described in words) routes any question to its cell: first, is the plane already in form? If not, rearrange (C7). Then ask what is required: the distance of a point → plug and compute (C1–C4); which side → read only the sign (C6); two parallel planes → borrow a point or use (C5); find an unknown coefficient → set the formula equal to the given distance and solve backwards (C9); a word problem → translate to coordinates keeping units (C8).

no

yes

distance of a point

which side

two parallel planes

find unknown k

word problem

Plane distance question

Is plane in standard form

Rearrange first C7

What is asked

Plug point compute C1 C2 C3 C4

Read only the sign C6

Borrow a point or use d1 minus d2 C5

Set formula equal solve backwards C9

Translate to coordinates keep units C8


Active recall

Recall Match each example to its edge-case lesson
  1. Which example proves the formula gives exactly on the plane?
  2. Which example needs you to rearrange before reading coefficients?
  3. Which example uses the sign but never the distance?
  4. Why does the unknown- example have two answers?

Answers: 1) Ex 3 (and Ex 7). 2) Ex 7 — disguised as . 3) Ex 6 — same/opposite side. 4) Because splits into , one plane on each side of .


Connections