Last updated 8/14/08
You can purchase a discounted student version of MAPLE from http://webstore.maplesoft.com . You will need to enter the promotion code XXXX, and our course name is Multivariable Calculus.
Our course Maple site is here.
MAPLE worksheets with my classroom demos appear at the bottom of this page.
with(packagename):
For example,
loads the VectorCalculus package. Do take note of capital letters; MAPLE is case-sensitive. MAPLE does not care about spaces, however, although you should not put spaces in the middle of single-word commands.
plot(f(x),x=a..b);
You must substitute your function for f(x) (like x2 in place of f(x)). The range x=a..b tells Maple over what range of values to evaluate the function. The view=[c..d,e..f] option can make the window larger (or smaller) than the evaluated range; see Maple's help for more details.
sqrt(x);
For natural logarithms, sines, cosines, etc., use standard notation: ln(x), sin(x), arctan(x), etc.
For the plot3d command, MAPLE assumes that the first argument is equal to z, so if you have z expressed explicitly as a function of x and y, just write in the function (but not z=). For example, to graph the function f(x,y) = x2 - y, use the command
plot3d(x^2-y, x = -5..5, y = -5..5);
If z is not expressed explicitly as a function of x and y, you will need to use implicitplot3d, in which the first argument is an equation. For example, to graph z2=x2+y2, use the command
implicitplot3d(z^2 = x^2 + y^2, x = -5..5, y = -5..5, z = -5..5);
More information will be forthcoming as we need it.
| | |
|---|---|
| The twisted cubic (movie) | Worksheet |
| A graph of z=θ | Worksheet |
| The path of a charged particle in a constant magnetic field oriented along the y-axis | Worksheet |
| A line (given by parametric equations) being drawn | Worksheet |
| Various graphs and animations illustrating the idea of traces. | Worksheet |
| Work from review, Friday 12/12/08. | Worksheet |