This description assumes that you have written your surfaces as
, where you have formulas
for
,
, and
.
On the Start menu, find the most current version of Maple. Double-click to start it,
To plot the parametric surface
for
and
, type
plot3d([t,u,sin(t)*sin(u)], t=-Pi..Pi, u=-Pi..Pi);
and then
press Enter
. Notice
that it's upper-case P
in Pi
.
Wait a moment, and the plot should appear. If you click on the
picture, it is replaced by an outline frame. At this point, you
can drag with the mouse to change the view. Double-click on the
picture to redraw it. You can also change various attributes of
the plot by using menu items from the menu bar. (You won't see
the plot menu options until you have selected the picture.) The
``Constrained'' option means uniform scaling in .
Notes.
Enter
. If you do a command and nothing
happens after a reasonable time, check to see if you have
forgotten the semicolon.
t
,
don't use the same one as a parameter in plots.
Enter
to
re-run it.
BACKSPACE
key.
sint
instead of
sin(t)
, Maple will think that's just another name, and
since it doesn't have a value for it, it just repeats the name
back. It will seem to you as though nothing is happening.