[Math] Getting the angles of a non-right triangle when all lengths are known

trianglestrigonometry

I have a triangle that I know the lengths of all the sides. But I need to know the angles. Needs to work with non-right triangles as well.

I know it is possible, and I could have easily done this years ago when I was in trig, but it has completely slipped my mind.

Id prefer a solution that I can code into a function, or something that does not require constructing right triangles from it.

Best Answer

As has been mentioned in comments, the formula that you're looking for is the Law of Cosines. The three formulations are: $$c^2 = a^2 + b^2 - 2ab \cos(C)$$ $$b^2 = a^2 + c^2 -2ac \cos(B)$$ $$a^2 = b^2 + c^2 - 2bc \cos(A)$$

You can use this law to find all three angles. Alternatively, once you have one of the angles, you can find the next using the Law of Sines, which states that: $${\sin{A} \over a} = {\sin{B} \over b} = {\sin{C} \over c}$$

And of course, once you have solved for two of the angles, you need only subtract their sum from $180$ degrees to get the measure of the third.