

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Instructions for using maple, a computer algebra system, to perform various mathematical operations including basic operations, limits, differentiation, integration, and graphing. Students enrolled in mathematics 2072 are encouraged to follow the commands and examples given to gain proficiency in using maple for calculus topics.
Typology: Assignments
1 / 3
This page cannot be seen from the preview
Don't miss anything!


MATH 2072 Maple Introduction Name:
Maple - computer algebra system able to do symbolic manipulations for the various Calculus topics covered this semester as well as 2D and 3D graphing and animations.
Type in and execute the following commands.
7+5;
a = 7; b = 5; a + b;
a:= 7; b := 5; a + b;
f := x− > x∧2: g := x− > x − 4: h := x− > cos(x):
f (2);
f (h(x));
g(h(f (2)));
evalf(g(h(f (2))));
f := x− > x∧ 3 − 4 ∗ x∧2 + 11: limit((f(x+h)-f(x))/h,h=0);
limit((1+sin(x))∧cot(3*x),x=0);
limit(3*x/sqrt(x∧2+1),x=infinity);
Type in and execute the following commands used to evaluate derivatives.
diff(csc(x),x);
Diff(exp(x∧3),x) = diff(exp(x∧3),x);
Type in and execute the following commands used to evaluate integrals.
int(ln(x),x);
int(exp(−x∧2),x=0..infinity);
int(x*(x+4)∧2,x);
f := x− >(1-x+2x∧2-x∧3)/(x(x∧2+1)∧2);
f(x) = convert(f(x),parfrac,x);
int(f(x),x);