[Math] How to get the third point coordinates in isosceles triangle

calculuscomputational geometrygeometrytrianglestrigonometry

Isosceles triangle $ABC$
$AB = AC = d_1$
$BC = d_2$

$A = (x_1, y_1)$
$B = (x_2, y_2)$
$C = (x_3, y_3)$

$\angle BAC = \phi$
$\angle ABC =\angle ACB = \theta$

I want an equation for $x_3$ and $y_3$ (and I know there will be two values)

Best Answer

I could solve this. The solution key was the conversion between the Cartesian Coordinate System and the Polar Coordinate System.

$x_3 = AB * Cos(ϕ) + x_1$

$y_3 = AB * Sin(ϕ) + y_1$