righttri(a = NULL, b = NULL, c = NULL)
list
of known sides a, b, and c & the interior angles
A, B, and C (right angle), in degrees, if and only if the the given
sides create a right triangle.a
is the side adjacent to angle B and opposite angle A. Side b
is the side adjacent to angle A and opposite angle B. Side c (hypotenuse)
is opposite the right angle (angle C).This function makes the following calculations:
library(iemisc)
righttri(0, 2) # a = 0, b = 2
righttri(1, 2) # a = 1, b = 2
righttri(a = 5, c = 10)
righttri(a = 3, c = 5)
righttri(a = 5, c = 10)
Run the code above in your browser using DataLab