Given the following problem: Finding location of a point on 2D plane, given the distances to three other know points,
we can find the position of the point using 3 other known points, which gives us three equations. My question is, why are 2 points/ 2 equations not enough for these kinds of problems? Two unknowns ($x_0$, $y_0$) should only require two equations, right?
More precisely, given $x_1$, $y_1$, $x_2$, $y_2$, $d_1$ and $d_2$, why can't we solve for $x_0$ and $y_0$ (exactly) using the following formulas:
$$(x_0-x_1)^2+(y_0-y_1)^2=d_1^2$$ $$(x_0-x_2)^2+(y_0-y_2)^2=d_2^2 $$
I understand that the squares introduce $\pm$, but I've never needed more than 2 equations to solve for 2 unknowns before and it's rubbing me the wrong way.
Thank you!
Thank you!|
– Bouch Jan 09 '23 at 00:13