Skip to main content

Exploring Calculus with Maple Introductory Calculus

Section 6.1 Algebraic Operations

At its elementary level, Maple can be used as a really large, powerful calculator. It can do any arithmetic operation including, but not limited to, addition (+), subtraction (-), multiplication (*), division (/), powers (^), and other more complicated operations such as radicals (roots), logarithms, and exponentials. Anytime Maple performs an arithmetic operation, it is creating an expression.
> a + b;
\begin{equation*} a+b \end{equation*}
> a - b;
\begin{equation*} \displaystyle a-b \end{equation*}
> a * b;
\begin{equation*} \displaystyle ab \end{equation*}

Aside

> a / b;
\begin{equation*} \displaystyle {\frac {a}{b}} \end{equation*}
> a ^ b;
\begin{equation*} \displaystyle {a}^{b} \end{equation*}