Skip to main content

Exploring Calculus with Maple Introductory Calculus

Section 1.2 The Basics

Subsection 1.2.1 Recommended Tutorials

Before starting on these exercises, you should familiarize yourself with the material covered in the following tutorials:

Subsection 1.2.2 Introduction

In this activity, you will learn basic usage of some of the most common Maple commands:

Exercises 1.2.3 Exercises

2.

Factor the polynomial \(16x^4-160x^3y+600x^2y^2-1000xy^3+625y^4\text{.}\)
Hint.
When two or more variables appear next to each other, be sure to include a * or space between them, so that Maple knows that they are multiplied together.

4.

Now we would like Maple perform all three commands together.
Aside: Multi-line commands.
(a)
Have Maple expand the rational expression \(\dfrac{(x-y)^2+(x+y)^2}{x^3-y^3}\text{.}\)
(b)
Add a semicolon to the end of the line, followed by simplify(%).
(c)
Add another semicolon to the end of the line, followed by factor(%).
(d)
Hit Enter to run all three commands together.
Hint.
Whenever the % shortcut is used on a previous command, it is a good practice to run both commands simultaneously on the same Maple input.
You should see three outputs now: expanding, simplifying, and factoring.

5.

(Optional) Consider polynomials of the form \(x^p-1\text{,}\) where \(p\) is a prime number. Try factoring each of the following:
Can you notice a pattern and show that these polynomials follow a particular form when factored? To explain the pattern, use the
button to create a new paragraph after the current line.
Aside: New paragraph shortcut.

6.

Plot the following two functions using separate plot() commands and note the difference in domain:
State the difference in domain using a new paragraph.
Aside: The surd() command.

7.

On a new Maple input, create a plot of the following list of functions
\begin{gather*} [ x^2, x^3, sqrt(x), surd(x,3), abs(x) ] \end{gather*}
and include the following options (separated by commas).
  • x = -5..10 (This specifies the \(x\)-axis)
  • y = -5..10 (This specifies the \(y\)-axis)
  • colour = [red,blue,green,purple,orange]
Hint 1.
Square brackets in Maple are used to create a comma-separated list of items in the specified order. Curly braces may also be used to create a list where order does not matter.
Hint 2.
An example of plotting multiple functions at once can be found in SectionΒ 8.3.