Skip to main content

Exploring Calculus with Maple Introductory Calculus

Section 6.3 Radical Functions

For your first commands, you should know how to type a square root or other root into Maple. The sqrt() command can be used for square roots, while it is usually better to use surd() for higher roots.
> sqrt(a);
\begin{equation*} \displaystyle \sqrt{a} \end{equation*}

Aside

> surd(a, 3);
\begin{equation*} \displaystyle \sqrt [3]{a} \end{equation*}
> surd(a, 4);
\begin{equation*} \displaystyle \sqrt [4]{a} \end{equation*}

Aside