I have a triangle and I know the coordinates of two vertices: $A=(x_1,y_1), B=(x_2,y_2)$
All the angles: $ABC = 90^\circ, CAB = 30^\circ$ and $BCA = 60^\circ$
and all the edge lengths.
How can I find the coordonates of the third verix $C=(x_3,y_3)$?
I know there are two solutions (I want both).
Thank you.
Given the right angle at $B$, the slopes of $AB$ and $BC$ are negative inverses. So the slope of $BC$=$\frac {-1}{\frac {y_2-y_1}{x_2-x_1}}=\frac {x_1-x_2}{y_2-y_1}$. Now you can use the point-slope form of the linear equation. If we let $C=(x_3,y_3)$ the equation of $BC$ is $y-y_2=\frac {x_1-x_2}{y_2-y_1}(x-x_2)$ $C$ then is $(x_3,\frac {x_1-x_2}{y_2-y_1}(x_3-x_2)+y_2)$ You can then sum the squares of these and solve for $(x_3-x_2)^2$. Your two solutions are the two signs of this.