Im trying to find a way to calculate the position of the one of the base points of an isocicles triangle if I know the positions of the other two points, the angle measures, and the side lengths. It must be possible since you know everything else about the triangle except that one base point. However I've yet to find success.
Is there a way to do this?
Hint.
It is sufficient to know the position of a base point $A=(x_A,y_A)$ , the position of the vertex $C=(x_C,y_C)$ and the leght of the basis $\overline{AB}=a$.
We have that the side of the triangle is $\overline{AC}=l= \sqrt{(x_A-x_C)^2+(y_A-y_C)^2}$ and the $B$ have to be the intersection of the two circle with center $C$ and radius $l$ and of center $A$ and radius $a$, given by the solution of the system: $$ \begin{cases} (x-x_A)^2+(y-y_A)^2=a^2\\ (x-x_C)^2+(y-y_C)^2=l^2 \end{cases} $$ Note that, in general we have two solutions.