Netscape caches recently accessed data. If you have used a web page, hold down shift-key while clicking on the Reload button to be sure you are getting the latest version. (This will usually but not always get the most up to date document.)
Click on the worksheet you wish to download. A dialog box will appear which will allow you to save the file. Place it in an appropriate directory or folder, which should be in your Private directory or folder if you are using the university system. Make sure that you organize your computer in appropriate directories or folders for different purposes so you can find important files like your Maple worksheets, for example, by making a directory folder called math126 in your Private directory or folder to save your Math 126 Maple worksheets. The worksheet file will have some abbreviated name indicating its purpose, and it will have an extension of the form '.mw'. (Some systems may suppress the extension.)
Normally, you will be loading existing worksheets. You may also want to adjust the size of the window so that it fills the screen. Open the desired worksheet by choosing the File menu option 'Open'. A dialog box will appear allowing you to find the worksheet and load it.
> with(plots):
> polarplot(2*sin(theta),theta=0..2*Pi);
if you execute the second statement without having executed the first, Maple will just print the statement again. The first statement loads the plots package which contains the operation 'polarplot'. Without that operation loaded, Maple doesn't know what to do when you invoke it, so it just repeats it to you.
Since output and text can overflow the screen, you may have to use the scroll bar to move back in the worksheet to see relevant output.
Many Maple statements will be self explanatory, but don't worry about the meaning of obscure syntax in commands. The text in the demonstration and help worksheets will explain what is being done. Your main tasks on Maple worksheets are to learn how to use Maple to do routine calculations and to observe the output and think about what it means, not to become an expert Maple programmer.
An important warning. Maple and similar programs have one confusing aspect. If you save a partially completed worksheet and later reopen it, your previous output will appear on the screen, but the statements won't have been executed. You can go into the Edit menu, then Execute then Worksheet and Maple will re-execute all the commands. As mentioned previously, Maple remembers the order in which statements have been executed rather than their order on the screen. If you move around in the worksheet and execute statements, you may produce some unexpected results.
Often, if you wish to modify a statement in place, you can do this by placing the cursor there and editing. Or, if you want a neat record of your work, you may use the Edit menu 'Copy' and 'Paste' commands to copy the statement to the end of the worksheet, and then make your changes there. You can experiment with the functions in the Menu bar to see how to add a prompt when you need one.
When done, you should save the worksheet, then print the worksheet by selecting the 'Print' option from the File menu.
It is important to understand that Maple is just one tool to help you understand mathematics, and it is not the major part of your course. Your instructor and teaching assistant will rightfully be concentrating on how to help you understand the mathematics and may not be particularly interested in the intricacies of Maple programming, which requires specialized knowledge. If you have a question about Maple which they cannot answer, they will direct you to someone who can.
> int(f(x), x=a..b);
may calculate the integral of an expression in x, here denoted
f(x) between the limits a and b. f(x)
could be an explicit
expression such as 2*x + x^2, or it could be a function value
for a function defined previously by a statement of the form
> f := x -> some expression in x;
Similarly,
> plot3d(f(x,y),x=a..b,y=c..d);
will allow you make a three dimensional plot of an expression.
Thus, you might find it helpful to use Maple in routine homework assignments
as you learn more Maple statements. Don't rely too strongly on this, however,
since, at least at present, you will have to do your tests the old
fashioned way, by hand.
Prepared by Nancy K. Stanton
Department of Mathematics
631-7436
8/31/00
Nancy.K.Stanton.1@nd.edu
based on material prepared by Leonard Evens at Northwestern University.