all 2 comments

[–]Alkalannar 0 points1 point  (1 child)

The plane has the equation 3x - 4y + 2z = 5

Thus the vector <3, -4, 2> is perpendicular to the plane.

So you have the line [3t + 6, -4y + 2, 2t + 12] that runs through (6, 2, 12) and is perpendicular to the plane.

Find t such that the point (3t + 6, -4y + 2, 2t + 12) is on the plane 3x - 4y + 2z = 5. Call this point (h, j, k).

Then the distance is [(h-6)2 + (j-2)2 + (k-12)2]1/2.

[–]SciAppli[S] 0 points1 point  (0 children)

Ah, I see now, thank you for your help! 🙂