3.19 Distances (HL)
1. Distance Between a Point and a Line
Calculating the absolute shortest distance tracking from a stationary coordinate point to a geometric line necessitates finding the precise perpendicular "foot" junction resting perfectly on the line.
Methodology:
- Define the unknown foot coordinate point $P$ operating mathematically upon the parametric form of line $L$.
- Construct the directional connection vector mapping $\vec{AP}$.
- Since the shortest path tracks exactly perpendicularly, set the spatial dot product between connecting vector $\vec{AP}$ and the line's inherent direction vector $\vec{b}$ decisively to zero ($\vec{AP} \cdot \vec{b} = 0$).
- Solve the formulated algebraic sequence identifying specific parameter $\lambda$, extract precise coordinates for foot $P$, and calculate Pythagorean distance $d(A,P)$.
EXAMPLE (Point to Line Calculation)
Determine the strict minimal distance bridging coordinate $A(1,2,3)$ and bounding line $L: \vec{r} = \binom{5}{7}{9} + \lambda\binom{3}{2}{1}$.
$3(4+3\lambda) + 2(5+2\lambda) + 1(6+\lambda) = 0$
$12 + 9\lambda + 10 + 4\lambda + 6 + \lambda = 0$
$14\lambda + 28 = 0 \Rightarrow \lambda = -2$.
2. Distance Between Two Lines
EXAMPLE (Distance Between Skew Lines)
Analyze distances interacting spanning $L_1: \vec{r} = \binom{1}{2}{3} + \mu\binom{4}{5}{0}$ against $L_2: \vec{r} = \binom{5}{7}{9} + \lambda\binom{3}{2}{1}$.
$\vec{PQ} \cdot \vec{b}_1 = 0 \Rightarrow 4(4+3\lambda-4\mu) + 5(5+2\lambda-5\mu) + 0 = 0 \Rightarrow 22\lambda - 41\mu = -41$.
$\vec{PQ} \cdot \vec{b}_2 = 0 \Rightarrow 3(4+3\lambda-4\mu) + 2(5+2\lambda-5\mu) + 1(6+\lambda) = 0 \Rightarrow 14\lambda - 22\mu = -28$.
3. Distance Between a Point and a Plane
Calculating the minimal interval space bounding a fixed spatial point against an extensive continuous plane mirrors prior logical mechanics perfectly. The perpendicular projection axis intersecting the designated target bounds automatically operates perfectly parallel extending adjacent to the plane's identified normal vector $\vec{n}$.
EXAMPLE (Point to Plane Calculation)
Assess distance metrics tracing between coordinate $A(3,4,6)$ evaluating strictly against internal Plane $\Pi: 2x + 3y + 5z = 10$.
$2(3+2\lambda) + 3(4+3\lambda) + 5(6+5\lambda) = 10$
$6 + 4\lambda + 12 + 9\lambda + 30 + 25\lambda = 10$
$48 + 38\lambda = 10 \Rightarrow 38\lambda = -38 \Rightarrow \lambda = -1$.
Application Note: When calculating the distance bridging parallel planes, safely pick any arbitrary random coordinate anchor seated exactly upon Plane 1 and measure spatial span exclusively against the structural boundaries delineating Plane 2 using this identical operation mechanism.