I am meeting with a problem, say I have already know the coordinates of N points (a1,a2,a3....) in 3D space. And I have a new point, say x. I only know the distances from x to the known N points. Is there an efficient method to find the coordinate of x?
If all of the distance are error-free, I think I can random pick up 3 known points, and compute the coordinate of x. But the distance are not error-free, i.e. if I use different points as reference, the coordinate of x maybe differ a lot.
So I want to use all of those N distance to compute the coordinate of x. Can anyone give some solution or suggestions?