Skip to main content

Exploring Calculus with Maple Introductory Calculus

Section 6.10 Multiple Commands at Once

As you may have noticed, each time that we have used Maple input in this tutorial, there is a semicolon ; at the end of the line. This used to be required in older versions of Maple, though it is no longer mandatory in modern versions.
The reason why the semicolon continues to be important is because it tells Maple when one command ends and another begins. You can use this to run multiple commands within one Maple input:

Aside

> surd(x,3); exp(x);
\begin{equation*} \displaystyle \sqrt[3]{x} \end{equation*}
\begin{equation*} \displaystyle { e}^{x} \end{equation*}

Aside