mat 1234 calculus i section 3.5/ 3.6 graphing with maple

19
MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple http://myhome.spu.edu/lauw

Upload: lily-wiggins

Post on 03-Jan-2016

214 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

MAT 1234Calculus I

Section 3.5/ 3.6

Graphing with Maple

http://myhome.spu.edu/lauw

Page 2: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Homework

No WebAssign HW Turn in the attached HW problem

Page 3: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Preview

In practice, we use software to produce graphs

Try to make sure all important information are revealed

Software limitations

Page 4: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Important Information

Domain Intercepts Vertical/ Horizontal Asymptotes Intervals of Increasing / Decreasing Local max./ min. Interval of Concavity Inflection Points

Page 5: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Example 1

Open Maple and work along with the slides

Page 6: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Example 1

6 5 3 2( ) 2 3 3 2f x x x x x

Page 7: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Domain6 5 3 2( ) 2 3 3 2f x x x x x

?Domain

Page 8: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

First Plot6 5 3 2( ) 2 3 3 2f x x x x x

>f:=x->2*x^6+3*x^5+3*x^3-2*x^2;

>plot(f(x),x=-5..5);

Page 9: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

x-intercepts

>fsolve(f(x)=0);

x-intercepts:

Page 10: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

y-intercepts

>f(0);

y-intercepts:

Page 11: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Horizontal Asymptotes

>limit(f(x),x=-infinity);

>limit(f(x),x=infinity);

lim ( ) ? lim ( ) ?x x

f x f x

Page 12: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Vertical Asymptotes

Page 13: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Intervals of Increase and Decrease

>

>fprime:=D(f);

> fsolve(fprime(x)=0);

( ) 0f x

Page 14: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Intervals of Increase and Decrease( ) 0f x

Page 15: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Local max./min.

Page 16: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Intervals of Concavity

>

>fpp:=D(fprime);

>fsolve(fpp(x)=0);

( ) 0f x

Page 17: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Intervals of Concavity ( ) 0f x

Page 18: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Inflection Points

Page 19: MAT 1234 Calculus I Section 3.5/ 3.6 Graphing with Maple

Adjusted graph

>plot(f(x),x=-3..1,y=-16..1);