44
[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical Engineer [email protected] Chabot Mathematics §3.3 Curve Sketching

[email protected] MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

Embed Size (px)

Citation preview

Page 1: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1

Bruce Mayer, PE Chabot College Mathematics

Bruce Mayer, PELicensed Electrical & Mechanical Engineer

[email protected]

Chabot Mathematics

§3.3 Curve

Sketching

Page 3: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 3

Bruce Mayer, PE Chabot College Mathematics

§3.3 Learning Goals

Determine horizontal and vertical asymptotes of a graph

Use Algebra to find Axes InterCepts on a Funciton Graph

Use Derivatives to find Significant Points on the graph

Discuss and apply a general procedure for sketching graphs

Page 4: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 4

Bruce Mayer, PE Chabot College Mathematics

T-Table Can Miss Features

Consider the Function

Make T-Table,Connect-Dots

210

810

x

xxyxf

x Y-5 -6.00-4 -4.44-3 -3.06-2 -1.88-1 -0.860 0.001 0.742 1.393 1.954 2.455 2.89 -5 -4 -3 -2 -1 0 1 2 3 4 5

-6

-5

-4

-3

-2

-1

0

1

2

3

x

y =

f(x)

= 1

0x(

x+8

)/(x

+1

0)2

MTH15 • GraphSketching

XYf cnGraph6x6BlueGreenBkGndTemplate1306.m

Page 5: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 5

Bruce Mayer, PE Chabot College Mathematics

MA

TL

AB

Co

de

% Bruce Mayer, PE% MTH-15 • 13Jul13% XYfcnGraph6x6BlueGreenBkGndTemplate1306.m% ref:%% The Limitsxmin = -35; xmax = 25; ymin = -15; ymax = 40;% The FUNCTIONx = linspace(xmin,xmax,500); y = 10*x.*(x+8)./(x+10).^2;% % The ZERO Lineszxh = [xmin xmax]; zyh = [0 0]; zxv = [0 0]; zyv = [ymin ymax];%% the 6x6 Plotaxes; set(gca,'FontSize',12);whitebg([0.8 1 1]); % Chg Plot BackGround to Blue-Greenplot(x,y, 'LineWidth', 4),axis([xmin xmax ymin ymax]),... grid, xlabel('\fontsize{14}x'), ylabel('\fontsize{14}y = f(x) = = 10x(x+8)/(x+10)^2'),... title(['\fontsize{16}MTH15 • GraphSketching',]),... annotation('textbox',[.51 .05 .0 .1], 'FitBoxToText', 'on', 'EdgeColor', 'none', 'String', 'XYfcnGraph6x6BlueGreenBkGndTemplate1306.m','FontSize',7)hold onplot(zxv,zyv, 'k', zxh,zyh, 'k', 'LineWidth', 2)plot([-10 -10], [ymin, ymax], '-- m', [xmin xmax],[10 10], '-- m', 'LineWidth', 2) set(gca,'XTick',[xmin:5:xmax]); set(gca,'YTick',[ymin:5:ymax])

Page 6: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 6

Bruce Mayer, PE Chabot College Mathematics

T-Table Can Miss Features

But Using Methods to be Discussed, Find

-35 -30 -25 -20 -15 -10 -5 0 5 10 15 20 25-15

-10

-5

0

5

10

15

20

25

30

35

40

x

y =

f(x)

= =

10

x(x+

8)/

(x+

10

)2MTH15 • GraphSketching

XYf cnGraph6x6BlueGreenBkGndTemplate1306.m

Page 7: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 7

Bruce Mayer, PE Chabot College Mathematics

MA

TL

AB

Co

de

% Bruce Mayer, PE% MTH-15 • 23Jun13% XYfcnGraph6x6BlueGreenBkGndTemplate1306.m% ref:%% The Limitsxmin = -5; xmax = 5; ymin = -6; ymax = 3;% The FUNCTIONx = [-5 -4 -3 -2 -1 0 1 2 3 4 5];y = [-6 -4.444444444 -3.06122449 -1.875 -0.864197531 0 0.743801653 1.388888889 1.952662722 2.448979592 2.888888889]% % The ZERO Lineszxh = [xmin xmax]; zyh = [0 0]; zxv = [0 0]; zyv = [ymin ymax];%% the 6x6 Plotaxes; set(gca,'FontSize',12);whitebg([0.8 1 1]); % Chg Plot BackGround to Blue-Greenplot(x,y, 'LineWidth', 4),axis([xmin xmax ymin ymax]),... grid, xlabel('\fontsize{14}x'), ylabel('\fontsize{14}y = f(x) = 10x(x+8)/(x+10)^2'),... title(['\fontsize{16}MTH15 • GraphSketching',]),... annotation('textbox',[.51 .05 .0 .1], 'FitBoxToText', 'on', 'EdgeColor', 'none', 'String', 'XYfcnGraph6x6BlueGreenBkGndTemplate1306.m','FontSize',7)hold onplot(x,y, 'x m', 'MarkerSize', 15, 'LineWidth', 3)plot(zxv,zyv, 'k', zxh,zyh, 'k', 'LineWidth', 2)set(gca,'XTick',[xmin:1:xmax]); set(gca,'YTick',[ymin:1:ymax]hold off

Page 8: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 8

Bruce Mayer, PE Chabot College Mathematics

T-Table Can Miss Features In Order for

T-Tables & ConnectDots to properly Characterize the Fcn Graph, the Domain (x) Column must• Cover sufficiently

Wide values• Have sufficiently

small increments

Unfortunately the Grapher does NOT know a-priori the• x Span • ∆x Increment Size

-5 -4 -3 -2 -1 0 1 2 3 4 5-6

-5

-4

-3

-2

-1

0

1

2

3

x

y =

f(x)

= 1

0x(

x+8

)/(x

+1

0)2

MTH15 • GraphSketching

XYf cnGraph6x6BlueGreenBkGndTemplate1306.m

-35 -30 -25 -20 -15 -10 -5 0 5 10 15 20 25-15

-10

-5

0

5

10

15

20

25

30

35

40

x

y =

f(x)

= =

10

x(x+

8)/

(x+

10

)2

MTH15 • GraphSketching

XYf cnGraph6x6BlueGreenBkGndTemplate1306.m

x-SpanInSufficent

Page 9: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 9

Bruce Mayer, PE Chabot College Mathematics

Better Graphing GamePlan

1. Find THE y-Intercept, if Anya. Set x = 0, find y

b. Only TWO Functions do NOT have a y-intercepts

– Of the form 1/x– x = const; x ≠ 0

2. Find x-Intercept(s), if Anya. Set y = 0, find x

b. Many functions do NOT have x-intercepts

Page 10: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 10

Bruce Mayer, PE Chabot College Mathematics

Better Graphing GamePlan

3. Find VERTICAL (↨) Asymptotes, If Anya. Exist ONLY when fcn has a denom

b. Set Denom = 0, solve for x– These Values of x are the Vertical Asymptote

(VA) Locations

4. Find HORIZONTAL (↔) Asymptotes (HA), If Any

a. HA’s Exist ONLY if the fcn has a finite limit-value when x→+∞, or when x→−∞

Page 11: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 11

Bruce Mayer, PE Chabot College Mathematics

Better Graphing GamePlan

b. Find y-value for:– These Values of y are the HA Locations

5. Find the Extrema (Max/Min) Locationsa. Set dy/dx = 0, solve for xE

b. Find the corresponding yE = f(xE)

c. Determine by 2nd Derivative, or ConCavity, to test whether (xE, yE) is a Max or a Min

– See Table on Next Slide

xfyx

limHA

Page 12: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 12

Bruce Mayer, PE Chabot College Mathematics

Better Graphing GamePlan– Determine Max/Min By Concavity

6. Find the Inflection Pt Locationsa. Set d2y/dx2 = 0, solve for xi

b. Find the corresponding yi = f(xi)

c. Determine by 3rd Derivative test The Inflection-concavity form: ↑-↓ or ↓- ↑

𝒅𝟐𝒚𝒅𝒙𝟐ቚ𝒙𝑬 Sign Concavity Max or Min

POSitive Up ↑ Min NEGative Down ↓ Max

Neither (Zero) No Information Flat Spot

Page 13: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 13

Bruce Mayer, PE Chabot College Mathematics

Better Graphing GamePlan

7. Find the Inflection Pt Locationsa. Set d2y/dx2 = 0, solve for xi

b. Find the corresponding yi = f(xi)

c. Determine by 3rd Derivative test The Inflection form: ↑-↓ or ↓- ↑

– Determine Inflection form by 3rd Derivative𝒅𝟑𝒚𝒅𝒙𝟑ቚ𝒙𝒊 Sign ConCavity Change Inflection Form

POSitive Down-to-Up ↓-↑ NEGative Up-to-Down ↓ ↑-↓

Neither (Zero) No Information ↑-↑ OR ↓-↓

Page 14: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 14

Bruce Mayer, PE Chabot College Mathematics

Better Graphing GamePlan

8. Sign Charts for Max/Min and ↑-↓/↓-↑a. To Find the “Flat Spot” behavior for dy/dx

= 0, when d2y/dx2 exists, but [d2y/dx2]xE = 0 use the Direction-Diagram

a b c

−−−−−−++++++ −−−−−− ++++++

x

Slope

df/dx Sign

Critical (Break)Points Max NO

Max/MinMin

Page 15: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 15

Bruce Mayer, PE Chabot College Mathematics

Better Graphing GamePlan

9. Sign Charts for Max/Min and ↑-↓/↓-↑a. To Find the ↑-↑ or ↓-↓ behavior for d2y/dx2

= 0, when d3y/dx3 exists, but [d3y/dx3]xi = 0 use the Dome-Diagram

a b c

−−−−−−++++++ −−−−−− ++++++

x

ConCavityForm

d2f/dx2 Sign

Critical (Break)Points Inflection NO

InflectionInflection

Page 16: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 16

Bruce Mayer, PE Chabot College Mathematics

Example Sketch Rational Fcn

Sketch

Set x = 0 to Find y-intercept

• Thus y-intercept → (0, 4/3)

Set y = 0 to Find x-intercept(s), if any

31

2122

2

xx

xxxfy

3

4

3

4

31

21

3010

201020 2

2

2

2

y

Page 17: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 17

Bruce Mayer, PE Chabot College Mathematics

Example Sketch Rational Fcn

y=0:

Solving for x: Finding y(x):

1

31

31

2120

31

2120

2

2

2

2

2

xx

xx

xx

xx

xx

22 201202120 xorxxx

2or21 xx

051

05

3212

221222

02523

250

321121

2211212

2

1

2

2

2

2

2

2

2

2

y

y

Page 18: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 18

Bruce Mayer, PE Chabot College Mathematics

Example Sketch Rational Fcn

The x-Intercepts• (½,0); Multiplicity = 1 (Linear Form)• (−2,0); Multiplicity = 2 (Parabolic Form)

The Horizontal Intercept(s)

3

3

2

2

2

2

1

1

31

212lim

31

212limlim

x

x

xx

xx

xx

xxy

xxx

Page 19: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 19

Bruce Mayer, PE Chabot College Mathematics

Example Sketch Rational Fcn

Continuing with the Limit

• Thus have a HORIZONTAL asymptote at y = 2

xx

xx

xx

xx

xx

xx

yxxx 3

11

1

21

12

lim31

212

limlim 2

2

2

2

2

2

211

12

0101

0102limlim 2

2

xx

y

Page 20: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 20

Bruce Mayer, PE Chabot College Mathematics

Example Sketch Rational Fcn

To Find VERTICAL asymptote(s) set the DeNom/Divisor = 0

• Using Zero Products

• Thus have VERTICAL Asymptotes at – x = −1– x = 3

31031

212 2

2

2

xxxx

xxxy

3or1310 2 xxxx

Page 21: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 21

Bruce Mayer, PE Chabot College Mathematics

Example Sketch Rational Fcn

Use Computer Algebra System, MuPAD to find and Solve Derivatives

From the Derivatives Find• Min at (−2,0) → ConCave UP• Inflection Points

– ↓-to-↑ at (−2.63299, 0.16714)– ↑-to-↓ at (0.63299, −0.29213)

Page 22: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 22

Bruce Mayer, PE Chabot College Mathematics

Th

e Grap

h

-4 -3 -2 -1 0 1 2 3 4 5 6-12

-8

-4

0

4

8

12

16

20

x

y =

f(x)

= =

(2

x+1

)(x+

2)2 /(

x+1

)2 (x-3

)MTH15 • GraphSketching

XYf cnGraph6x6BlueGreenBkGndTemplate1306.m

Page 25: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 25

Bruce Mayer, PE Chabot College Mathematics

Bruce Mayer, PELicensed Electrical & Mechanical Engineer

[email protected]

Chabot Mathematics

Appendix

srsrsr 22

Page 26: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 26

Bruce Mayer, PE Chabot College Mathematics

ConCavity Sign Chart

a b c

−−−−−−++++++ −−−−−− ++++++

x

ConCavityForm

d2f/dx2 Sign

Critical (Break)Points Inflection NO

InflectionInflection

Page 27: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 27

Bruce Mayer, PE Chabot College Mathematics

ConCavity Sign Chart

a b c

−−−−−−++++++ −−−−−− ++++++

x

ConCavityForm

d2f/dx2 Sign

Critical (Break)Points Inflection NO

InflectionInflection

Page 28: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 28

Bruce Mayer, PE Chabot College Mathematics

Page 29: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 29

Bruce Mayer, PE Chabot College Mathematics

Page 30: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 30

Bruce Mayer, PE Chabot College Mathematics

Page 31: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 31

Bruce Mayer, PE Chabot College Mathematics

Page 32: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 32

Bruce Mayer, PE Chabot College Mathematics

Page 33: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 33

Bruce Mayer, PE Chabot College Mathematics

Page 34: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 34

Bruce Mayer, PE Chabot College Mathematics

Page 35: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 35

Bruce Mayer, PE Chabot College Mathematics

Page 36: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 36

Bruce Mayer, PE Chabot College Mathematics

Page 37: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 37

Bruce Mayer, PE Chabot College Mathematics

Page 38: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 38

Bruce Mayer, PE Chabot College Mathematics

P33-46

0 50 100 150 200 250 300 350 400 450 5000

0.5

1

1.5

2

2.5

3

x

y =

f(x)

= 2

x +

80

k/x

MTH15 • P3.3-46 • Bruce Mayer, PE

XYf cnGraph6x6BlueGreenBkGndTemplate1306.m

Page 39: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 39

Bruce Mayer, PE Chabot College Mathematics

Page 40: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 40

Bruce Mayer, PE Chabot College Mathematics

Page 41: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 41

Bruce Mayer, PE Chabot College Mathematics

Page 42: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 42

Bruce Mayer, PE Chabot College Mathematics

Page 43: BMayer@ChabotCollege.edu MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 1 Bruce Mayer, PE Chabot College Mathematics Bruce Mayer, PE Licensed Electrical & Mechanical

[email protected] • MTH15_Lec-15_sec_3-3_Curve_Sketching.pptx 43

Bruce Mayer, PE Chabot College Mathematics

P3.3-56