3.19 DistancesHL ONLY
1. Distance Between a Point and a Line
Calculating the shortest distance from a point to a line requires finding the perpendicular foot on the line.
Methodology:
- Define the foot point $P$ using the parametric equation of line $L$.
- Construct the vector $\overrightarrow{AP}$.
- Since the shortest path is perpendicular, set the dot product of $\overrightarrow{AP}$ and the line's direction vector $\vec{b}$ to zero ($\overrightarrow{AP} \cdot \vec{b} = 0$).
- Solve for $\lambda$, find the coordinates of $P$, and calculate the distance $d(A,P)$.
EXAMPLE 1 (Point to Line Calculation)
Determine the distance between $A(1,2,3)$ and line $L: \vec{r} = \begin{pmatrix} 5 \\ 7 \\ 9 \end{pmatrix} + \lambda\begin{pmatrix} 3 \\ 2 \\ 1 \end{pmatrix}$.
2. Distance Between Two Lines
EXAMPLE 2 (Distance Between Skew Lines)
Find the distance between $L_1: \vec{r} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} + \mu\begin{pmatrix} 4 \\ 5 \\ 0 \end{pmatrix}$ and $L_2: \vec{r} = \begin{pmatrix} 5 \\ 7 \\ 9 \end{pmatrix} + \lambda\begin{pmatrix} 3 \\ 2 \\ 1 \end{pmatrix}$.
$\overrightarrow{PQ} \cdot \vec{b}_2 = 0 \implies 3(4+3\lambda-4\mu) + 2(5+2\lambda-5\mu) + 1(6+\lambda) = 0 \implies 14\lambda - 22\mu = -28$
3. Distance Between a Point and a Plane
Calculating the distance from a point to a plane uses a similar method. The perpendicular line from the point to the plane is parallel to the plane's normal vector $\vec{n}$.
EXAMPLE 3 (Point to Plane Calculation)
Find the distance between $A(3,4,6)$ and Plane $\Pi: 2x + 3y + 5z = 10$.
4. Distance Between a Line and a Plane
This applies only if the line is parallel to the plane. We find the distance from a point $A$ on line $L$ to the plane $\Pi$.
EXAMPLE 4 (Line to Plane Calculation)
Consider Line $L: \vec{r} = \begin{pmatrix} 3 \\ 4 \\ 6 \end{pmatrix} + \lambda\begin{pmatrix} -3 \\ 2 \\ 0 \end{pmatrix}$ and Plane $\Pi: 2x + 3y + 5z = 10$.