I am trying to work out if there is a way to calculate some coordinates relative to each other simply by knowing $3$ or more distances from some unknown points.
I do not have a distance matrix, I simply have distances from myself to $3$ or more points. These distances are calculated from signal strength, not geometry.
For instance, if I am given \begin{align*} d_1 & = 7.0711\\ d_2 & = 2.8284\\ d_3 & = 3.1623 \end{align*} I assign my location as $(0,0)$.
Then I move somewhere, recalculate and find my new distances are \begin{align*} d_1 & = 7.6158\\ d_2 & = 5.6569\\ d_3 & = 3.1623 \end{align*}
These are real values and I know from plotting some points and calculating distances that the second set means my new location is $(2,2)$. Is there some way to calculate this from knowing only the two sets of distances and assigning myself a point of origin?
Note : I have searched already and most questions were related to distances and known points or distance matrices so I don't think I'm asking a duplicate question.
Thanks