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:

  1. Define the unknown foot coordinate point $P$ operating mathematically upon the parametric form of line $L$.
  2. Construct the directional connection vector mapping $\vec{AP}$.
  3. 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$).
  4. 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}$.

Foot $P$ maps parametrically to $(5+3\lambda, 7+2\lambda, 9+\lambda)$.
The required connecting trajectory $\vec{AP}$ evaluates strictly via point subtraction: $\binom{5+3\lambda-1}{7+2\lambda-2}{9+\lambda-3} = \binom{4+3\lambda}{5+2\lambda}{6+\lambda}$.
Executing perpendicular constraint rules calculates: $\vec{AP} \cdot \vec{b} = 0$
$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$.
Substituting back resolves exact coordinates for foot point $P(-1, 3, 7)$.
Measuring distance via geometric boundaries yields: $d(A,P) = \sqrt{(-1-1)^2 + (3-2)^2 + (7-3)^2} = \sqrt{4 + 1 + 16} = \mathbf{\sqrt{21}}$.

2. Distance Between Two Lines

If Lines act Parallel: Select any arbitrary anchor point cleanly off Line 1 and calculate distance relative cleanly to Line 2 utilizing the precise methodology outlined above.
If Lines act Skew: The shortest dimensional gap traces a continuous line acting simultaneously perfectly perpendicular to both structural geometries. This establishes two interacting foot nodes ($P$ and $Q$).

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}$.

Designate respective intersection parameter nodes: $P(1+4\mu, 2+5\mu, 3)$ operating against $Q(5+3\lambda, 7+2\lambda, 9+\lambda)$.
Determine structural connecting linkage $\vec{PQ}$: $\binom{4+3\lambda-4\mu}{5+2\lambda-5\mu}{6+\lambda}$.
Establish dual perpendicular restrictions mapped securely against respective directional matrices:
$\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$.
The resulting system solves evaluating $\lambda = -\frac{41}{15}$ and $\mu = -\frac{7}{15}$.
Substituting numerical coefficients extracts the specific location points, granting exact capability to compute target distance length $|\vec{PQ}|$.

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$.

The connecting vector axis $AP$ adheres rigidly parallel tracing the normal factor $\vec{n} = \binom{2}{3}{5}$.
The projection equation builds as $\vec{r} = \binom{3}{4}{6} + \lambda\binom{2}{3}{5}$.
Extracting coordinate variables produces node $P(3+2\lambda, 4+3\lambda, 6+5\lambda)$. Since $P$ resides mathematically inside plane bounds, integrate cleanly into Cartesian boundaries:
$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$.
Coordinate mapping yields footprint node $P(1,1,1)$.
Calculated resulting length establishes absolute distance: $d(A,P) = \sqrt{(3-1)^2 + (4-1)^2 + (6-1)^2} = \sqrt{4+9+25} = \mathbf{\sqrt{38}}$.

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.