I have $8$ points on a plane $(x_1,y_1)....(x_8,y_8)$ among these $8$ points I know the coordinates for $7$ points and I have to find the $8^{th}$ point.
Each points has the difference between all other points. I am also having other info like Euclid dist and angle between the points. How can I identify the coordinate position of the $8^{th}$ point?
The information is:
1) I have pairwise difference between each point as diff[diff $x_1$,diff $y_1$]=$(x_1,y_1)-(x_2,y_2)$.
2) Pair wise distance between the points: $d= \sqrt{(x_1 - x_2)^2 + (y_1 - y_2)^2}$
3) Pair wise angle/direction of the points $=a\tan{2}((p_1\cdot y-p_2 \cdot y),(p_1\cdot x-p_2\cdot x))\cdot \frac{180}{3.14}$
the identified point should be best fit for all other points.