blob: a57f4f74fb6a9278bc6e96aacb5c3d1b70dae7a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
trig rule, used to find missing sides on a triangle
a^2 = b^2 + c^2 - 2bc cos(A)
when rearranged can be:
cos(A) = (b^2 + c^2 - a^2) / (2bc) // use this one when you only have side lengths
when using this use cos^-1
example in folder p1
|