Maple

Maple 6: A quick reference (by D. Meade, U. South Carolina)

The program is started by
maple

It is ended by
quit

Help
?topic - give you help on topic
?topic,subtopic - help on a subtopic
?index - help index

There are three books about Maple somewhere around in the department.

Points to remember


Unusual function names

Examples

h:=[5.162, 35.218, 18.775];
c:=[7.050, 34.960, 18.716];
h-c;
[-1.888000, .258000, .059000]

eqn:={1.2 x - 1.9 y + .5 z = 0, -1.5 x + .3 y + 2.0 z = -.3, -.9 x + .1 y - .1 z = 2.8}
solve(eqn,{x,y,z});
     {y = -2.556319862, x = -3.157924907, z = -2.134995701}