Question:medium

Find the foot of the perpendicular drawn from point $(2, -1, 5)$ to the line \[ \frac{x - 11}{10} = \frac{y + 2}{-4} = \frac{z + 8}{-11} \] Also, find the length of the perpendicular.

Show Hint

To find the foot of a perpendicular from a point to a line, parameterize the line, then set the dot product of the vector from the point to a line point and the line's direction vector to zero.
Updated On: Jan 13, 2026
Show Solution

Solution and Explanation

The line is given in symmetric form as: \[ \frac{x - 11}{10} = \frac{y + 2}{-4} = \frac{z + 8}{-11} \] Let this ratio be equal to a parameter $t$. A general point $P$ on the line can be represented as: \[ P(t) = (10t + 11, -4t - 2, -11t - 8) \] Let the given point be $A = (2, -1, 5)$. The foot of the perpendicular from $A$ to the line is a point $P(t)$ such that the vector $\vec{AP}$ is orthogonal to the direction vector of the line, $\vec{d} = \langle 10, -4, -11 \rangle$. This condition is satisfied when $\vec{AP} \cdot \vec{d} = 0$: \[ \vec{AP} = \langle (10t + 11) - 2,\ (-4t - 2) - (-1),\ (-11t - 8) - 5 \rangle = \langle 10t + 9,\ -4t - 1,\ -11t - 13 \rangle \] Calculating the dot product: \[ (10t + 9)(10) + (-4t - 1)(-4) + (-11t - 13)(-11) = 0 \] Expanding this equation: \[ 100t + 90 + 16t + 4 + 121t + 143 = 0 \] Combining terms: \[ (100 + 16 + 121)t + (90 + 4 + 143) = 0\\ 237t + 237 = 0\\ t = -1 \] Substituting $t = -1$ back into the parametric form of $P(t)$: \[ x = 10(-1) + 11 = 1,\quad y = -4(-1) - 2 = 2,\quad z = -11(-1) - 8 = 3 \] Therefore, the foot of the perpendicular is $(1, 2, 3)$. The length of the perpendicular segment $AP$ is then calculated: \[ \vec{AP} = \langle 1 - 2,\ 2 - (-1),\ 3 - 5 \rangle = \langle -1,\ 3,\ -2 \rangle \] \[ |\vec{AP}| = \sqrt{(-1)^2 + 3^2 + (-2)^2} = \sqrt{1 + 9 + 4} = \sqrt{14} \] % Final Answer Foot of the Perpendicular: $(1, 2, 3)$
Length of the Perpendicular: $\sqrt{14}$ \begin{center} \includegraphics[width=0.55\textwidth]{ig5.png} \end{center}
Was this answer helpful?
1