IB Maths AA HL Topic 3 โ€” Geometry & Trigonometry Paper 1 & 2 ~8 min read HL only

Shortest Distances with Planes

The shortest distance from a point to a plane is always the perpendicular distance โ€” measured along a line in the direction of the plane’s normal. Same idea applies for parallel planes and parallel-to-plane lines: pick any point on one and find its perpendicular distance to the other.

๐Ÿ“˜ What you need to know

Two methods

Line method
d = |ฮปn|
build a line through P in direction n, find ฮป at intersection
Direct formula
d = |n ยท p โˆ’ d||n|
substitute the point into the LHS, divide by |n|
Both give the same answer. The line method is what most mark schemes show. The direct formula is faster โ€” useful for quick calculations and finding unknowns.

Special cases

SetupApproach
Point and planeline method or direct formula
Line parallel to planepick any point on line, treat as point-to-plane
Two parallel planespick any point on one, treat as point-to-plane
Line crosses planedistance = 0 (they intersect)

๐Ÿงญ Recipe โ€” shortest distance from a point to a plane (line method)

  1. Identify the normal n from the plane.
  2. Write a line through P perpendicular to the plane: r = p + ฮปn.
  3. Substitute the parametric form into the plane equation.
  4. Solve for ฮป.
  5. Distance = |ฮป| ร— |n|.

Worked examples

WE 1

Shortest distance from a point to a plane

Find the shortest distance from the point P(5, 0, 3) to the plane 2x โˆ’ y + 2z = 7.

Step 1: Normal n = (2, โˆ’1, 2); |n| = 3 Step 2: Line through P perpendicular to plane r = (5, 0, 3) + ฮป(2, โˆ’1, 2) Step 3: Substitute into plane equation 2(5+2ฮป) โˆ’ (0โˆ’ฮป) + 2(3+2ฮป) = 7 10 + 4ฮป + ฮป + 6 + 4ฮป = 7 16 + 9ฮป = 7 โ†’ ฮป = โˆ’1 Step 4: Distance = |ฮป| ร— |n| = 1 ร— 3 Distance = 3 verify with direct formula: |2(5) โˆ’ 0 + 2(3) โˆ’ 7|/3 = |9|/3 = 3 โœ“
WE 2

Shortest distance from the origin to a plane

Find the shortest distance from the origin O to the plane 6x + 2y โˆ’ 3z = 14.

Step 1: Normal n = (6, 2, โˆ’3); |n| = โˆš(36+4+9) = โˆš49 = 7 Step 2: Line through O perpendicular to plane r = ฮป(6, 2, โˆ’3) Step 3: Substitute 6(6ฮป) + 2(2ฮป) โˆ’ 3(โˆ’3ฮป) = 14 36ฮป + 4ฮป + 9ฮป = 49ฮป = 14 โ†’ ฮป = 2/7 Step 4: Distance = (2/7) ร— 7 Distance = 2 direct formula: |0 โˆ’ 14|/7 = 2 โ€” same answer, faster
WE 3

Shortest distance from a line parallel to a plane

Show that the line r = (3, 4, 2) + s(2, 1, โˆ’2) is parallel to the plane x + 2y + 2z = 6, and find the shortest distance between them.

Step 1: Check parallel: b ยท n = (2)(1) + (1)(2) + (โˆ’2)(2) = 0 โœ“ Step 2: Pick anchor P = (3, 4, 2) on line Step 3: Direct formula for distance from P to plane |n ยท P โˆ’ d| = |3 + 8 + 4 โˆ’ 6| = 9 |n| = โˆš(1+4+4) = 3 Distance = 9/3 = 3 since the line is parallel, every point on it is the same distance from the plane
WE 4

Shortest distance between two parallel planes

Find the shortest distance between the parallel planes ฮ 1: 2x โˆ’ y + 2z = 9 and ฮ 2: 2x โˆ’ y + 2z = โˆ’3.

Step 1: Same normal (2, โˆ’1, 2) โ†’ planes parallel โœ“ Step 2: Use parallel-plane shortcut distance = |dโ‚ โˆ’ dโ‚‚| / |n| |n| = โˆš(4+1+4) = 3 |9 โˆ’ (โˆ’3)| / 3 = 12/3 Distance = 4 long way: pick (5, 1, 0) on ฮ โ‚; line method gives ฮป = โˆ’4/3, distance = 4 โœ“
WE 5

Find a coordinate so a point is at a given distance from a plane

Find the values of k for which the point P(k, 0, 1) is at a distance of 3 from the plane 2x + y โˆ’ 2z = 5.

Step 1: Direct formula sets up the equation |2k + 0 โˆ’ 2(1) โˆ’ 5| / 3 = 3 |2k โˆ’ 7| = 9 Step 2: Two cases from absolute value 2k โˆ’ 7 = 9 โ†’ k = 8 2k โˆ’ 7 = โˆ’9 โ†’ k = โˆ’1 k = 8 or k = โˆ’1 two solutions because P can be 3 units on either side of the plane
WE 6

Shortest distance from a point to a plane in vector form

Find the shortest distance from the point P(2, 3, โˆ’1) to the plane ฮ : r = (1, 0, 0) + ฮป(1, 1, 0) + ฮผ(0, 1, 1).

Step 1: Find normal n = b ร— c i: (1)(1) โˆ’ (0)(1) = 1 j: โˆ’[(1)(1) โˆ’ (0)(0)] = โˆ’1 k: (1)(1) โˆ’ (1)(0) = 1 n = (1, โˆ’1, 1); |n| = โˆš3 Step 2: Find d = n ยท a d = (1)(1) + (โˆ’1)(0) + (1)(0) = 1 Cartesian: x โˆ’ y + z = 1 Step 3: Direct formula |n ยท P โˆ’ d| = |2 โˆ’ 3 + (โˆ’1) โˆ’ 1| = |โˆ’3| = 3 Distance = 3/โˆš3 = โˆš3 converting to Cartesian form first makes the distance calculation faster

๐Ÿ’ก Top tips

โš  Common mistakes

That closes Vector Planes โ€” and Topic 3 of the AA HL syllabus. Up next is Topic 4: Statistics & Probability. The geometry intuition you’ve built (vectors, projections, perpendicularity) will reappear in unexpected places โ€” correlation as a kind of “angle” between data vectors, regression as a projection. Different language, same structural ideas.

Need help with Vector Planes?

Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.

Book Free Session โ†’