190 likes | 296 Vues
This resource provides a comprehensive guide for graphing functions using Maple software in Calculus I, specifically focusing on sections 3.5 and 3.6. It covers key aspects like domain, intercepts, asymptotes, and intervals of increasing/decreasing behavior. Users will learn to detect local maxima/minima, intervals of concavity, and inflection points. The practical application involves plotting a polynomial function, analyzing critical points, and adjusting graphs to reveal essential information. This is an essential tool for visualizing and understanding calculus concepts through software.
E N D
MAT 1234Calculus I Section 3.5/ 3.6 Graphing with Maple http://myhome.spu.edu/lauw
Homework • No WebAssign HW • Turn in the attached HW problem
Preview • In practice, we use software to produce graphs • Try to make sure all important information are revealed • Software limitations
Important Information • Domain • Intercepts • Vertical/ Horizontal Asymptotes • Intervals of Increasing / Decreasing • Local max./ min. • Interval of Concavity • Inflection Points
Example 1 • Open Maple and work along with the slides
First Plot >f:=x->2*x^6+3*x^5+3*x^3-2*x^2; >plot(f(x),x=-5..5);
x-intercepts >fsolve(f(x)=0); x-intercepts:
y-intercepts >f(0); y-intercepts:
Horizontal Asymptotes >limit(f(x),x=-infinity); >limit(f(x),x=infinity);
Intervals of Increase and Decrease > >fprime:=D(f); >fsolve(fprime(x)=0);
Intervals of Concavity > >fpp:=D(fprime); >fsolve(fpp(x)=0);
Adjusted graph >plot(f(x),x=-3..1,y=-16..1);