This is my code to find the coordinate of projection of the point pA = {2, 3, 5} on the plane -284 + 14 x + 2 y + 5 z == 0.
Clear["Global`*"] pA = {2, 3, 5}; myP = -284 + 14 x + 2 y + 5 z; {x, y, z} /. Solve[{x == pA[[1]] + Coefficient[myP, x] t, y == pA[[2]] + Coefficient[myP, y] t, z == pA[[3]] + Coefficient[myP, z] t, myP == 0}, {x, y, z, t}, Reals] {{16, 5, 10}}
What is simpler way to find the projection of a point on a plane?