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.
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 = 0 , distance = 0
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 a x + b y + cz + d = 0 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.
Look at the figure. The blue slab is the plane π . The orange arrow is the normal n . A point P can sit:
on the positive side (where n 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 a x 1 + b y 1 + c z 1 + d just records which of the two half-spaces P is in. Keep this picture in mind for every example.
Worked example Example 1 — positive signed value (cell C1)
Distance from P = ( 3 , 1 , 1 ) to π : x + 2 y + 2 z − 3 = 0 .
Forecast: guess whether the signed value is + or − , and roughly the size, before computing.
Numerator (signed): 1 ( 3 ) + 2 ( 1 ) + 2 ( 1 ) − 3 = 3 + 2 + 2 − 3 = 4 .
Why this step? Plugging P into the plane's left side measures how far "off zero" P is, in scaled units.
It's positive — so P sits on the side the normal n = ( 1 , 2 , 2 ) points toward. This is exactly cell C1.
Denominator: 1 2 + 2 2 + 2 2 = 9 = 3 .
Why this step? This is ∣ n ∣ ; it converts the raw scaled number into a length (the projection onto the unit normal — see Projection of a vector ).
Distance: D = 3 ∣4∣ = 3 4 .
Why this step? Distance is never negative, so we take the magnitude.
Verify: the unit normal is n ^ = 3 1 ( 1 , 2 , 2 ) . Since the signed value was positive, P is ahead of the plane, so we step a distance 3 4 against n ^ to land on π : P − 3 4 n ^ = ( 3 − 9 4 , 1 − 9 8 , 1 − 9 8 ) . Plug in: 9 23 + 2 ⋅ 9 1 + 2 ⋅ 9 1 − 3 = 9 23 + 2 + 2 − 3 = 9 27 − 3 = 0. ✓ Lands exactly on the plane.
Worked example Example 2 — negative signed value, bars matter (cell C2)
Distance from P = ( 4 , − 2 , 1 ) to π : 2 x + y − 2 z + 3 = 0 .
Forecast: will you need the absolute value bars, or is the number already positive?
Signed numerator: 2 ( 4 ) + ( − 2 ) − 2 ( 1 ) + 3 = 8 − 2 − 2 + 3 = 7 .
Why? Positive here — so P is on the side n = ( 2 , 1 , − 2 ) points toward.
Denominator: 2 2 + 1 2 + ( − 2 ) 2 = 9 = 3 .
Distance: D = 3 ∣7∣ = 3 7 .
Why the bars still? Even though 7 > 0 , always write ∣ ⋅ ∣ as a habit — the next problem will be negative.
Verify: now flip to a genuinely negative case: for P ′ = ( 0 , 0 , 0 ) , signed value = 3 > 0 but for P ′′ = ( − 3 , 0 , 0 ) , signed value = 2 ( − 3 ) + 0 − 0 + 3 = − 3 < 0 , giving D = 3 ∣ − 3∣ = 1 — the bars turned − 3 into a positive distance. This confirms cell C2's lesson. ✓
Worked example Example 3 — the point lies ON the plane (cell C3)
Distance from P = ( 1 , 0 , 1 ) to π : x − y − z = 0 .
Forecast: is P maybe on the plane? If so, what should D be?
Numerator: 1 − 0 − 1 = 0 .
Why? A zero numerator means P satisfies the plane equation exactly.
Denominator: 1 + 1 + 1 = 3 (never zero for a real plane, so no division problem).
Why divide at all? The numerator is a scaled signed quantity; dividing by ∣ n ∣ = a 2 + b 2 + c 2 converts it into a true geometric distance. Here the numerator is 0 , so the distance is 0 regardless — but the division is still the step that would give the correct length in any non-zero case.
Distance: D = 3 0 = 0 .
Verify: D = 0 is the degenerate case — P is on the plane, so the perpendicular drop has length zero. This confirms the formula behaves correctly at the boundary between the two half-spaces. ✓
Worked example Example 4 — distance from the origin (cell C4)
Distance from O = ( 0 , 0 , 0 ) to π : 3 x − 4 z + 10 = 0 (note b = 0 ).
Forecast: for the origin, the numerator should collapse to just ∣ d ∣ — predict the answer.
Numerator: 3 ( 0 ) − 4 ( 0 ) + 10 = 10 = ∣ d ∣ .
Why? Every term with a coordinate vanishes at the origin, leaving only the constant d .
Denominator: 3 2 + 0 2 + ( − 4 ) 2 = 9 + 16 = 25 = 5 .
Why include the 0 ? The missing y -term still contributes b 2 = 0 ; skipping it is fine but writing it prevents mistakes.
Distance: D = 5 10 = 2 .
Verify: the shortcut D = ∣ n ∣ ∣ d ∣ = 5 10 = 2 matches. ✓
Worked example Example 5 — distance between two parallel planes (cell C5)
Find the gap between π 1 : x + 2 y − 2 z + 1 = 0 and π 2 : x + 2 y − 2 z − 8 = 0 . See Distance between two parallel planes .
Forecast: the normals are identical ( 1 , 2 , − 2 ) , so the planes are parallel and the gap is constant. Guess it.
Grab any point on π 2 : set y = z = 0 : x − 8 = 0 ⇒ x = 8 . Point Q = ( 8 , 0 , 0 ) .
Why? The distance between parallel planes = distance from any point of one to the other.
Feed Q into π 1 : numerator = 8 + 0 − 0 + 1 = 9 .
Denominator: 1 + 4 + 4 = 3 .
Distance: D = 3 9 = 3 .
Verify (shortcut): since normals already match, D = ∣ n ∣ ∣ d 1 − d 2 ∣ = 3 ∣1 − ( − 8 ) ∣ = 3 9 = 3. ✓ Both routes agree.
Worked example Example 6 — same side or opposite side? (cell C6)
Do A = ( 1 , 1 , 1 ) and B = ( 3 , 0 , − 2 ) lie on the same side of π : 2 x − y + z − 1 = 0 ?
Forecast: we do NOT need distances here — only the signs . Predict same or opposite.
Signed value at A : 2 ( 1 ) − 1 + 1 − 1 = 1 > 0 .
Why sign only? The dividing plane is the zero-set; which half-space a point is in depends only on the sign of a x + b y + cz + d .
Signed value at B : 2 ( 3 ) − 0 + ( − 2 ) − 1 = 6 − 2 − 1 = 3 > 0 .
Compare: both positive ⇒ same side .
Verify: product of the two signed values = 1 × 3 = 3 > 0 ; a positive product confirms same side. (A negative product would mean the segment A B crosses the plane.) ✓
Worked example Example 7 — plane given in a disguised form (cell C7)
Distance from P = ( 1 , 1 , 1 ) to the plane written as 2 x + 3 y = z + 4 .
Forecast: this is not yet in a x + b y + cz + d = 0 form. What must you do first ?
Rearrange to standard form: move everything to one side: 2 x + 3 y − z − 4 = 0 .
Why? The formula demands the form a x + b y + cz + d = 0 ; using the disguised version would give the wrong d and wrong coefficients (see Equation of a plane ).
Read off: a = 2 , b = 3 , c = − 1 , d = − 4 .
Numerator: 2 ( 1 ) + 3 ( 1 ) − 1 ( 1 ) − 4 = 2 + 3 − 1 − 4 = 0 .
Denominator: 4 + 9 + 1 = 14 .
Distance: D = 14 0 = 0 .
Verify: P actually lies on the plane — check the original disguised form: 2 ( 1 ) + 3 ( 1 ) = 5 and z + 4 = 1 + 4 = 5 . Both sides equal 5 , so P satisfies it. ✓ The disguise hid an on-plane point.
Worked example Example 8 — real-world word problem, with units (cell C8)
A drone hovers at position P = ( 10 , 5 , 8 ) metres in a warehouse. A tilted solar panel is the plane π : 3 x + 4 z − 30 = 0 (coordinates in metres). How far is the drone from the panel, and which side of it is the drone on?
Forecast: estimate whether the answer is "a few metres" or "tens of metres."
Signed numerator: 3 ( 10 ) + 0 ( 5 ) + 4 ( 8 ) − 30 = 30 + 32 − 30 = 32 .
Why the 0 ( 5 ) ? The panel equation has no y -term (b = 0 ), so the drone's y = 5 does not affect the distance — the panel is "vertical" along y .
Denominator: 3 2 + 0 2 + 4 2 = 25 = 5 .
Distance: D = 5 ∣32∣ = 6.4 metres.
Why units survive: coordinates are metres and the formula is a ratio of (metres)/(dimensionless direction), so D comes out in metres .
Side: signed value = + 32 > 0 ⇒ the drone is on the side the normal ( 3 , 0 , 4 ) points toward.
Verify: 6.4 × 5 = 32 = ∣ numerator ∣ ; consistent. A distance of 6.4 m for a drone tens of metres out in x , z is physically sensible. ✓
Worked example Example 9 — exam twist: solve for an unknown coefficient (cell C9)
The distance from P = ( 1 , 2 , 2 ) to the plane π : x + 2 y + 2 z + k = 0 is 2 . Find all values of k .
Forecast: because a distance uses absolute value, expect two answers for k .
Set up the equation: 1 + 4 + 4 ∣1 + 2 ( 2 ) + 2 ( 2 ) + k ∣ = 2.
Why? We know the output distance and want the input k — run the formula backwards .
Simplify: numerator inside bars = 1 + 4 + 4 + k = 9 + k ; denominator = 3 . So 3 ∣9 + k ∣ = 2 .
Clear the fraction: ∣9 + k ∣ = 6 .
Why the bars split into two cases? ∣9 + k ∣ = 6 means 9 + k = 6 or 9 + k = − 6 .
Solve both: k = 6 − 9 = − 3 , or k = − 6 − 9 = − 15 .
Verify: for k = − 3 : numerator = 9 − 3 = 6 , D = 6/3 = 2 ✓. For k = − 15 : numerator = 9 − 15 = − 6 , D = ∣ − 6∣/3 = 2 ✓. Both give distance 2 — the two planes are the two parallel positions at distance 2 from P , one on each side.
The flowchart below (also described in words) routes any question to its cell:
first, is the plane already in a x + b y + cz + d = 0 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 ∣ d 1 − d 2 ∣/∣ n ∣ (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).
Is plane in standard form
Plug point compute C1 C2 C3 C4
Borrow a point or use d1 minus d2 C5
Set formula equal solve backwards C9
Translate to coordinates keep units C8
Recall Match each example to its edge-case lesson
Which example proves the formula gives 0 exactly on the plane?
Which example needs you to rearrange before reading coefficients?
Which example uses the sign but never the distance?
Why does the unknown-k example have two answers?
Answers: 1) Ex 3 (and Ex 7). 2) Ex 7 — disguised as 2 x + 3 y = z + 4 . 3) Ex 6 — same/opposite side. 4) Because ∣9 + k ∣ = 6 splits into 9 + k = ± 6 , one plane on each side of P .
Mnemonic The universal move
"Standard form → Plug → Length → (bars or sign)." Get a x + b y + cz + d = 0 , plug the point, divide by ∣ n ∣ , then take ∣ ⋅ ∣ for distance or keep the sign for the side.