How can I transform the given mathematical expression in python to find x & y value?
(x-x2)**2 + (y-y2)**2 = d1**2 ====> 1
(x-x3)**2 + (y-y3)**2 = d3**2 ====> 2
By subtracting one from another,
2(x3-x2)x+2(y3-y2)y+(x2**2-x3**2+y2**2-y3**2)=d1**2-d3**2 ====> 3
The another value can be find out by substituting the obtained value from 3 in either 1 or 2.
How can I achieve the process in python?