Q: Find the shortest distance from the point $A(1,1,1)$ to the plane $2x+3y+4z=5$.
I understand that we need to pick a point P on the plane such that we can form a vector PA.
Can someone explain where to go from here, including a conceptual explanation of deriving the appropriate distance formula?
Thanks

We need a line which is orthogonal to $$2x+3y+4z=5$$
The line $\vec{n}=<a,b,c>$ is normal to the plane $ax+by+cz=d.$ So that's pretty convenient... And then we get the rest of the way there from Bernard's hint!
$A+t\vec{n}$ certainly goes through A when $t =0$ we just need to figure out when it goes through our plane. Then we will have our two points and we will exploit distance formula. Using Bernard's hint we will use some substitutions to achieve $$2x+3y+4z=5$$ $$2(1+2t)+3(1+3t)+4(1+4t)=5$$ $$(2+3+4)+(4+9+16)t=5$$ $$9+29t=5$$ $$t=-\frac{4}{29}$$
Plugging this into $A+t\vec{n}$ finds the point we need and now we can just compare our points using distance formula.
Let's call this new point $B$ $$B=$$ $$A+t\vec{n}$$ $$A(1,1,1)-\frac{4}{29}\vec{n}(2,3,4)$$ $$(1,1,1)-\frac{4}{29}(2,3,4)$$ $$(1-\frac{8}{29},1-\frac{12}{29},1-\frac{16}{29})$$
$$(\frac{21}{29},\frac{17}{29},\frac{13}{29})$$
Then the distance between $A$ and $B$ is $$d(A,B)=\sqrt{(x_1-x_2)^2+(y_1-y_2)^2+(z_1-z_2)^2}$$ where $$A=(x_1,y_1,z_1)=(1,1,1) \text{ and }B=(x_2,y_2,z_2)=(\frac{21}{29},\frac{17}{29},\frac{13}{29})$$