2.12.1 Problem
2.12.2 Solution
$cos = cos(2.1232);
You can also use their inverses: asin( ), acos(
), and atan( ):
$atan = atan(1.2);
2.12.3 Discussion
These functions assume their arguments are in radians, not degrees. (See Section 2.13 if this is a problem.)
The function atan2( ) takes two
variables $x and $y, and computes atan($x/$y).
However, it always returns the correct sign because it uses both parameters when
finding the quadrant of the result.
For secant, cosecant, and cotangent, you should manually
calculate the reciprocal values of sin( ), cos( ), and
tan( ):
$n = .707;
$secant = 1 / sin($n);
$cosecant = 1 / cos($n);
$cotangent = 1 / tan($n);