Skip to main content

Exploring Calculus with Maple Introductory Calculus

Section 6.6 Trigonometric and Inverse Trigonometric Functions

Trigonometric functions can be typed directly into a Maple input using parentheses. For inverse trigonometric functions, it is generally considered better to use the \(\arctan()\) notation instead of \(\tan^{-1}()\) notation.

Aside

> sin(x);
> cos(x);
> tan(x);
> csc(x);
> sec(x);
> tan(x);
> arcsin(x);
> arccos(x);
> arctan(x);
> arccsc(x);
> arcsec(x);
> arccot(x);