Calculus and Maple Homepage : http://www.math.ncsu.edu/calculus
Online Lectures - Maple Labs: http://lts.ncsu.edu/oip/engcalc/videos.html
Multimedia Center: Lab hours, Tutoring, Consultants, Video Tapes http://www.math.ncsu.edu/mmc/index.html
+ - / * ^ note that ^ is the same as **
e vs e
e5 is written as exp(5) which is not to be confused with
5e-1 (also known as .5 which is written as 5e-1 in Maple. Maple will distinguish this difference by using bold for e and non-bold e for scientific notation.evalm vs evalf (evalf evaluates an answer to decimal form ) 4 decimal places would be evalf(f,4);
Pi versus PI or pi
If you want to use Pi in Maple, always write it as Capital P and lowercase i if you want to use it as 3.14 PI and pi is used only as a graphic image with no numerical value association.
Practice by typing: Pi; sin(16); sqrt(3); exp(5);To store values you must ALWAYS use the :=
example; b:=5: or test1:=5*6: f:=x^2:Plugging in values into an equation can be done by f:=x -> x^2 then f(5);
Simplify an algebraic expression (for example) simplify((1+x)/x+(1-x)/x);
Solves a system of equations for a set of unknowns solve({2*x+5*y=12,12*x+4*y=17},{x,y});
To plot g when the equation is g:= x -> x^2 type plot(g,-10..10);
To plot 2 equations using h:= x -> x^2 + x type plot([g(x),h(x)], x=-5..5, y=-20..20);To change the color of each plotted line, use color=[color1, color2, color3]
For example: plot([sin(x), 2*sin(x), 3*sin(x), 4*sin(x)], x=0..2*Pi, color=[red, green, blue, yellow]);
For 3D plotting, you will first need to type with(plots):
For example if you used m:=(x,y)-> sin(x)*sin(y) *exp(-x^2); plot3d(m(x,y),x=-Pi..Pi,y=-Pi..Pi,axes=BOXED,style=HIDDEN,orientation=[135,75]);
Updated 6/3/04