Maple Tutorial 2:
Trigonometric and Hyperbolic Functions
M.M. Yovanovich
TUTORIAL2.MWS
Trigonometric and hyperbolic functions.
> restart:
Trigonometric functions.
> trigs:= [sin(x), cos(x), tan(x), csc(x), sec(x), cot(x)];
> subs(x = Pi/3, trigs);
> evalf(%, 8);
Hyperbolic functions.
> hypers:= [sinh(x), cosh(x), tanh(x), sech(x), csch(x), coth(x)];
> subs(x = 0.7, hypers);
> evalf(%, 8);
Convert hyperbolics to exponential functions.
> convert(sinh(x), exp);
> convert(cosh(x), exp);
> convert(tanh(x), exp);
Inverse trigonometric functions.
> invtrig:= [arcsin(x),arccos(x),arctan(x)];
> subs(x = .45, invtrig);
> evalf(%, 8);
Inverse hyperbolic functions.
> invhyper:= [arcsinh(x),arccosh(x),arctanh(x)];
> subs(x = 0.9, invhyper);
> evalf(%, 10);