Concept:
• Distance from point to line:
\[
d = \frac{|\overrightarrow{AB} \times \vec{v}|}{|\vec{v}|}
\]
where \( \vec{v} \) is direction vector of line.
Step 1: Write coordinates.
\[
A = (4,2,2), \quad B = (1,2,2)
\]
Step 2: Find vector \( \overrightarrow{AB} \).
\[
\overrightarrow{AB} = B - A = (-3,0,0)
\]
Step 3: Direction vector of line.
\[
\vec{v} = (2,3,6)
\]
Step 4: Compute cross product.
\[
\overrightarrow{AB} \times \vec{v} =
\begin{vmatrix}
\hat{i} & \hat{j} & \hat{k} \\
-3 & 0 & 0 \\
2 & 3 & 6
\end{vmatrix}
\]
\[
= \hat{i}(0 - 0) - \hat{j}(-18 - 0) + \hat{k}(-9 - 0)
\]
\[
= (0,18,-9)
\]
Step 5: Find magnitude.
\[
|\overrightarrow{AB} \times \vec{v}| = \sqrt{0^2 + 18^2 + (-9)^2}
\]
\[
= \sqrt{324 + 81} = \sqrt{405} = 9\sqrt{5}
\]
Step 6: Magnitude of direction vector.
\[
|\vec{v}| = \sqrt{4 + 9 + 36} = \sqrt{49} = 7
\]
Step 7: Distance.
\[
d = \frac{9\sqrt{5}}{7}
\]
Step 8: Final Answer.
\[
\boxed{\frac{9\sqrt{5}}{7}}
\]