I have a question that gives three points (in 3d space). The task involves finding the equation of a line where the points are equidistant to that of the three given points.
The points given were $(3,1,2)$, $(1, -1, 2)$, and $(3,-1,4)$.
How would I go about solving this problem?
So far I've used the distance formula for each individual point with some point $(x,y,z)$ on the line. But I am unsure of where to go from there?
You are almost done.
The distance formula gives you two equalities and after squaring both sides and cancellation of squares you get two linear equations which are two planes and the intersection is the required line.
$$ (x-3)^2+(y-1)^2+(z-2)^2=(x-1)^2+(y+1)^2+(z-2)^2 $$
simplifies to $$x+y =2$$
and $$ (x-3)^2+(y-1)^2+(z-2)^2=(x-3)^2+(y+1)^2+(z-4)^2 $$
simplifies to $$y-z=-3$$
The parametric equation of the line is $$x=t, y=2-t,z=5-t$$