diff options
Diffstat (limited to 'maths/MUSTKNOW')
-rwxr-xr-x | maths/MUSTKNOW/cosineRule | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/maths/MUSTKNOW/cosineRule b/maths/MUSTKNOW/cosineRule new file mode 100755 index 0000000..a57f4f7 --- /dev/null +++ b/maths/MUSTKNOW/cosineRule @@ -0,0 +1,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 |