Homework 3 solutions

Size: px
Start display at page:

Download "Homework 3 solutions"

Transcription

1 Homework 3 solutios Sectio 2.2: Ex 3,4,5,9,12,14 Sectio 2.3: Ex 1,4; AP 1,2 20 poits. Grded 2.2, Ex 4,5, d 2.3, AP 1,2 Sectio For ech uctio, id itervl [,] so tht d hve dieret sigs. x = e x 2 x -3 > 0, 0 < 0, 3 > 0; thus roots lie i the itervls [-3,0] d [0,3]. x = cosx + 1 x /4 > 0 d /2 < 0; thus root lies i the itervl [ /4, /2]. c x = lx 5 + x 3 < 0 d 5 > 0; thus root lies i the itervl [3,5] d x = x 2 10x > 0, 5 < 0, 7 > 0; thus roots lie i the itervls [3,5] d [5,7] Strt with [ o, o ] d use the lse positio method to compute c o, c 1, c 2, d c x = e x 2 x = 0, [ o, o ] = [-2.4, -1.6] c o = , c 1 = , c 2 = , c 3 = x = cosx + 1 x, [ o, o ] = [.8, 1.6] c o = , c 1 = , c 2 = , c 3 = Wht will hppe i the isectio method is used with the uctio x = 1/x-2 d the itervl is [3,7]? 37 = 1/5 > 0, so the lgorithm would tell us tht there is o root i [3,7], which is true. the itervl is [1,7]? 17 = -1/5 < 0, ut there is o root i 1,7. The method ils, ecuse the uctio is ot cotiuous i [1,7].

2 12. Show tht the ormul c is lgericlly equivlet to c. We dd the terms: c 14. The polyomil x = x-1 3 x-2x-3 hs 3 zeros: x=1 o multiplicity 3, x=2, d x=3, ech o multiplicity 1. I o d o re y two rel umers such tht o < 1 d o > 3, the o o <0. Thus, o the itervl [ o, o ] the isectio method will coverge to oe o the three zeros. I o <1 d o >3 re selected so tht c = + /2 is ot equl to 1, 2, or 3 or y >= 1, the the isectio method will ever coverge to which zeros? Why? It c t coverge to x=2, uless it hits c =2 exctly extremely ulikely, or the ollowig reso. Excludig the cses where c hits 1 or 3 exctly, i o <1, d o >3, the the midpoit c o will e either less th 1, greter th 3, or i the itervl 1,3. I the irst d secod cses, 1 =c o or 1 =c o, d we ck to the origil cse o <1, o >3. Assume, thereore, tht the itertio hs proceeded util c is i 1,3, d relel this poit c o. I, 1 < c o < 3, the there re three possiilities: i 1 < c o < 2, i which cse c o >0, so 1 = c o, d x=2 is outside o the rcket, ii 2 < c o < 3, i which cse c o <0, so 1 = c o, d gi, x=2 is outside o the rcket, or iii c o = 2. I either cse, oce itertio gets poit i the itervl 1,3, it rckets i o either 1 or 3, ut ever 2, uless it hppes to hit o 2 exctly.

3 Sectio 2.3 Exercises 1,4 Grphiclly determie the pproximte loctio o the roots o x=0 i the give itervl. Determie itervl [,] over which the isectio or lse positio lgorithms c e used to determie the roots. 1. x = x 2 e x or x i [-2, 2] The grph o x is show elow: So the root is pproximtely t x=-0.7. You could use the itervl [-1,-.5] i the lgorithms. 4. x = cosx + 1+x 2-1 or x i [-2,2] The grph o x is show elow: There re two roots, t pproximtely x = -1.8 d x = 1.8. You could use the itervls [-2, -1.6] or [1.6, 2].

4 Algorithms d Progrms 1-2. Approximte the rel roots, to 12 deciml plces, o ech uctio over the give itervl. 1. x = 1,000,000 x 3 111,000 x x 1, or x i [-2, 2]. Three roots, t x = 0.1,.01,.001. Note tht x c e ctored: x = 1000 x x 1 10 x x = 5 x x x 8 5 x 6 3 x 5 5x 2 + 8x 3, or x i [-15, 15] Two roots, t x = d x = MATLAB codes re show elow. Three iles were used: i script tht deies the uctio d ouds, ii uctio to id corse pproximtios o the roots, d iii uctio tht perorms the isectio lgorithm to id ie pproximtio o the roots. The output ws the ollowig: x = 1,000,000 x 3 111,000 x x 1 x = 5x 10 38x x 8 5 x 6 3 x 5 5x 2 + 8x 3 Corse pproximtio: e itertios Root: e-003, c=3.318e-010 Corse pproximtio: e itertios Root: e-001, c=4.005e-011 Corse pproximtio: e itertios Root: e-002, c=-3.017e-010 Corse pproximtio: e itertios Root: e+000, Error: 7.452e-013 c=5.923e-005 Corse pproximtio: e itertios Root: e-001, c=3.318e-009

5 MATLAB codes %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Fid root o x=0 usig isectio method % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Deie uctio to id zero o, d regio to id zero i =@x *x.^ *x.^2+1110*x-1; i=-2; i=2; =@x5*x.^10-38*x.^9 + 21*x.^8-5*pi*x.^6-3*pi*x.^5-5*x.^2 + 8*x - 3; i=-5; i=8; % Tolerces or error delt1 = 10^-4; % error i corse pproximtio delt2 = 10^-12; % error i isectio method % Fid corse pproximtio o roots: R = pproot,i:delt1:i; rts=0; % Use isectio method to id ie pproximtio: or i=1:legthr =Ri-delt1; =Ri+delt1; [c,err,yc,k]=isect,,,delt2; rtsi=c; dispsprit'\corse pproximtio: %.4e\%i itertios\root: %.12e, \Error: %.3e \c=%.3e',ri,k,c,err,c ed % Plot uctio d roots igure1; ezplot,[i,i] hold o; plotrts,0*rts,'r*'%,[i i],[0 0],'g' uctio R = pproot,x % Iput - is oject uctio % - X is the vector o scisss % Output - R is the vector o pproximte loctios or roots Y=X; =legthx; m=0; or k=2:, i Yk-1*Yk <= 0, m=m+1; Rm=Xk-1+Xk/2; ed ed

6 uctio [c,err,yc,k]=isect,,,delt %Iput - is the uctio % - d re the let d right edpoits % - delt is the tolerce %Output - c is the zero % - yc= c % - err is the error estimte or c %I is deied s M-ile uctio use ottio % cll [c,err,yc]=isect@,,,delt. %I is deied s oymous uctio use the % cll [c,err,yc]=isect,,,delt. y=; y=; i y*y > 0,retur,ed mx1=1+roudlog--logdelt/log2; or k=1:mx1 c=+/2; yc=c; i yc==0 =c; =c; elsei y*yc>0 =c; y=yc; else =c; y=yc; ed i - < delt, rek,ed ed c=+/2; err=s-; yc=c;

Homework 2 solutions

Homework 2 solutions Sectio 2.1: Ex 1,3,6,11; AP 1 Sectio 2.2: Ex 3,4,9,12,14 Homework 2 solutios 1. Determie i ech uctio hs uique ixed poit o the speciied itervl. gx = 1 x 2 /4 o [0,1]. g x = -x/2, so g is cotiuous d decresig

More information

Week 13 Notes: 1) Riemann Sum. Aim: Compute Area Under a Graph. Suppose we want to find out the area of a graph, like the one on the right:

Week 13 Notes: 1) Riemann Sum. Aim: Compute Area Under a Graph. Suppose we want to find out the area of a graph, like the one on the right: Week 1 Notes: 1) Riem Sum Aim: Compute Are Uder Grph Suppose we wt to fid out the re of grph, like the oe o the right: We wt to kow the re of the red re. Here re some wys to pproximte the re: We cut the

More information

Pre-Calculus - Chapter 3 Sections Notes

Pre-Calculus - Chapter 3 Sections Notes Pre-Clculus - Chpter 3 Sectios 3.1-3.4- Notes Properties o Epoets (Review) 1. ( )( ) = + 2. ( ) =, (c) = 3. 0 = 1 4. - = 1/( ) 5. 6. c Epoetil Fuctios (Sectio 3.1) Deiitio o Epoetil Fuctios The uctio deied

More information

Limit of a function:

Limit of a function: - Limit of fuctio: We sy tht f ( ) eists d is equl with (rel) umer L if f( ) gets s close s we wt to L if is close eough to (This defiitio c e geerlized for L y syig tht f( ) ecomes s lrge (or s lrge egtive

More information

Approximations of Definite Integrals

Approximations of Definite Integrals Approximtios of Defiite Itegrls So fr we hve relied o tiderivtives to evlute res uder curves, work doe by vrible force, volumes of revolutio, etc. More precisely, wheever we hve hd to evlute defiite itegrl

More information

Numerical Integration

Numerical Integration Numericl tegrtio Newto-Cotes Numericl tegrtio Scheme Replce complicted uctio or tulted dt with some pproimtig uctio tht is esy to itegrte d d 3-7 Roerto Muscedere The itegrtio o some uctios c e very esy

More information

1. (25 points) Use the limit definition of the definite integral and the sum formulas to compute. [1 x + x2

1. (25 points) Use the limit definition of the definite integral and the sum formulas to compute. [1 x + x2 Mth 3, Clculus II Fil Exm Solutios. (5 poits) Use the limit defiitio of the defiite itegrl d the sum formuls to compute 3 x + x. Check your swer by usig the Fudmetl Theorem of Clculus. Solutio: The limit

More information

B. Examples 1. Finite Sums finite sums are an example of Riemann Sums in which each subinterval has the same length and the same x i

B. Examples 1. Finite Sums finite sums are an example of Riemann Sums in which each subinterval has the same length and the same x i Mth 06 Clculus Sec. 5.: The Defiite Itegrl I. Riem Sums A. Def : Give y=f(x):. Let f e defied o closed itervl[,].. Prtitio [,] ito suitervls[x (i-),x i ] of legth Δx i = x i -x (i-). Let P deote the prtitio

More information

f ( x) ( ) dx =

f ( x) ( ) dx = Defiite Itegrls & Numeric Itegrtio Show ll work. Clcultor permitted o, 6,, d Multiple Choice. (Clcultor Permitted) If the midpoits of equl-width rectgles is used to pproximte the re eclosed etwee the x-xis

More information

Trapezoidal Rule of Integration

Trapezoidal Rule of Integration Trpezoidl Rule o Itegrtio Civil Egieerig Mjors Authors: Autr Kw, Chrlie Brker http://umericlmethods.eg.us.edu Trsormig Numericl Methods Eductio or STEM Udergrdutes /0/00 http://umericlmethods.eg.us.edu

More information

Interpolation. 1. What is interpolation?

Interpolation. 1. What is interpolation? Iterpoltio. Wht is iterpoltio? A uctio is ote give ol t discrete poits such s:.... How does oe id the vlue o t other vlue o? Well cotiuous uctio m e used to represet the + dt vlues with pssig through the

More information

The Reimann Integral is a formal limit definition of a definite integral

The Reimann Integral is a formal limit definition of a definite integral MATH 136 The Reim Itegrl The Reim Itegrl is forml limit defiitio of defiite itegrl cotiuous fuctio f. The costructio is s follows: f ( x) dx for Reim Itegrl: Prtitio [, ] ito suitervls ech hvig the equl

More information

Approximate Integration

Approximate Integration Study Sheet (7.7) Approimte Itegrtio I this sectio, we will ler: How to fid pproimte vlues of defiite itegrls. There re two situtios i which it is impossile to fid the ect vlue of defiite itegrl. Situtio:

More information

The Definite Riemann Integral

The Definite Riemann Integral These otes closely follow the presettio of the mteril give i Jmes Stewrt s textook Clculus, Cocepts d Cotexts (d editio). These otes re iteded primrily for i-clss presettio d should ot e regrded s sustitute

More information

Closed Newton-Cotes Integration

Closed Newton-Cotes Integration Closed Newto-Cotes Itegrtio Jmes Keeslig This documet will discuss Newto-Cotes Itegrtio. Other methods of umericl itegrtio will be discussed i other posts. The other methods will iclude the Trpezoidl Rule,

More information

Trapezoidal Rule of Integration

Trapezoidal Rule of Integration Trpezoidl Rule o Itegrtio Mjor: All Egieerig Mjors Authors: Autr Kw, Chrlie Brker Trsormig Numericl Methods Eductio or STEM Udergrdutes /0/200 Trpezoidl Rule o Itegrtio Wht is Itegrtio Itegrtio: The process

More information

BC Calculus Review Sheet

BC Calculus Review Sheet BC Clculus Review Sheet Whe you see the words. 1. Fid the re of the ubouded regio represeted by the itegrl (sometimes 1 f ( ) clled horizotl improper itegrl). This is wht you thik of doig.... Fid the re

More information

( ) dx ; f ( x ) is height and Δx is

( ) dx ; f ( x ) is height and Δx is Mth : 6.3 Defiite Itegrls from Riem Sums We just sw tht the exct re ouded y cotiuous fuctio f d the x xis o the itervl x, ws give s A = lim A exct RAM, where is the umer of rectgles i the Rectgulr Approximtio

More information

Test Info. Test may change slightly.

Test Info. Test may change slightly. 9. 9.6 Test Ifo Test my chge slightly. Short swer (0 questios 6 poits ech) o Must choose your ow test o Tests my oly be used oce o Tests/types you re resposible for: Geometric (kow sum) Telescopig (kow

More information

Graphing Review Part 3: Polynomials

Graphing Review Part 3: Polynomials Grphig Review Prt : Polomils Prbols Recll, tht the grph of f ( ) is prbol. It is eve fuctio, hece it is smmetric bout the bout the -is. This mes tht f ( ) f ( ). Its grph is show below. The poit ( 0,0)

More information

1.3 Continuous Functions and Riemann Sums

1.3 Continuous Functions and Riemann Sums mth riem sums, prt 0 Cotiuous Fuctios d Riem Sums I Exmple we sw tht lim Lower() = lim Upper() for the fuctio!! f (x) = + x o [0, ] This is o ccidet It is exmple of the followig theorem THEOREM Let f be

More information

n 2 + 3n + 1 4n = n2 + 3n + 1 n n 2 = n + 1

n 2 + 3n + 1 4n = n2 + 3n + 1 n n 2 = n + 1 Ifiite Series Some Tests for Divergece d Covergece Divergece Test: If lim u or if the limit does ot exist, the series diverget. + 3 + 4 + 3 EXAMPLE: Show tht the series diverges. = u = + 3 + 4 + 3 + 3

More information

MA123, Chapter 9: Computing some integrals (pp )

MA123, Chapter 9: Computing some integrals (pp ) MA13, Chpter 9: Computig some itegrls (pp. 189-05) Dte: Chpter Gols: Uderstd how to use bsic summtio formuls to evlute more complex sums. Uderstd how to compute its of rtiol fuctios t ifiity. Uderstd how

More information

0 otherwise. sin( nx)sin( kx) 0 otherwise. cos( nx) sin( kx) dx 0 for all integers n, k.

0 otherwise. sin( nx)sin( kx) 0 otherwise. cos( nx) sin( kx) dx 0 for all integers n, k. . Computtio of Fourier Series I this sectio, we compute the Fourier coefficiets, f ( x) cos( x) b si( x) d b, i the Fourier series To do this, we eed the followig result o the orthogolity of the trigoometric

More information

Taylor Polynomials. The Tangent Line. (a, f (a)) and has the same slope as the curve y = f (x) at that point. It is the best

Taylor Polynomials. The Tangent Line. (a, f (a)) and has the same slope as the curve y = f (x) at that point. It is the best Tylor Polyomils Let f () = e d let p() = 1 + + 1 + 1 6 3 Without usig clcultor, evlute f (1) d p(1) Ok, I m still witig With little effort it is possible to evlute p(1) = 1 + 1 + 1 (144) + 6 1 (178) =

More information

Definite Integral. The Left and Right Sums

Definite Integral. The Left and Right Sums Clculus Li Vs Defiite Itegrl. The Left d Right Sums The defiite itegrl rises from the questio of fidig the re betwee give curve d x-xis o itervl. The re uder curve c be esily clculted if the curve is give

More information

Numerical Methods. Lecture 5. Numerical integration. dr hab. inż. Katarzyna Zakrzewska, prof. AGH. Numerical Methods lecture 5 1

Numerical Methods. Lecture 5. Numerical integration. dr hab. inż. Katarzyna Zakrzewska, prof. AGH. Numerical Methods lecture 5 1 Numeril Methods Leture 5. Numeril itegrtio dr h. iż. Ktrzy Zkrzewsk, pro. AGH Numeril Methods leture 5 Outlie Trpezoidl rule Multi-segmet trpezoidl rule Rihrdso etrpoltio Romerg's method Simpso's rule

More information

10.5 Test Info. Test may change slightly.

10.5 Test Info. Test may change slightly. 0.5 Test Ifo Test my chge slightly. Short swer (0 questios 6 poits ech) o Must choose your ow test o Tests my oly be used oce o Tests/types you re resposible for: Geometric (kow sum) Telescopig (kow sum)

More information

Simpson s 1/3 rd Rule of Integration

Simpson s 1/3 rd Rule of Integration Simpso s 1/3 rd Rule o Itegrtio Mjor: All Egieerig Mjors Authors: Autr Kw, Chrlie Brker Trsormig Numericl Methods Eductio or STEM Udergrdutes 1/10/010 1 Simpso s 1/3 rd Rule o Itegrtio Wht is Itegrtio?

More information

 n. A Very Interesting Example + + = d. + x3. + 5x4. math 131 power series, part ii 7. One of the first power series we examined was. 2!

 n. A Very Interesting Example + + = d. + x3. + 5x4. math 131 power series, part ii 7. One of the first power series we examined was. 2! mth power series, prt ii 7 A Very Iterestig Emple Oe of the first power series we emied ws! + +! + + +!! + I Emple 58 we used the rtio test to show tht the itervl of covergece ws (, ) Sice the series coverges

More information

18.01 Calculus Jason Starr Fall 2005

18.01 Calculus Jason Starr Fall 2005 18.01 Clculus Jso Strr Lecture 14. October 14, 005 Homework. Problem Set 4 Prt II: Problem. Prctice Problems. Course Reder: 3B 1, 3B 3, 3B 4, 3B 5. 1. The problem of res. The ciet Greeks computed the res

More information

TAYLOR AND MACLAURIN SERIES

TAYLOR AND MACLAURIN SERIES Calculus TAYLOR AND MACLAURIN SERIES Give a uctio ( ad a poit a, we wish to approimate ( i the eighborhood o a by a polyomial o degree. c c ( a c( a c( a P ( c ( a We have coeiciets to choose. We require

More information

General properties of definite integrals

General properties of definite integrals Roerto s Notes o Itegrl Clculus Chpter 4: Defiite itegrls d the FTC Sectio Geerl properties of defiite itegrls Wht you eed to kow lredy: Wht defiite Riem itegrl is. Wht you c ler here: Some key properties

More information

Chapter Real Numbers

Chapter Real Numbers Chpter. - Rel Numbers Itegers: coutig umbers, zero, d the egtive of the coutig umbers. ex: {,-3, -, -,,,, 3, } Rtiol Numbers: quotiets of two itegers with ozero deomitor; termitig or repetig decimls. ex:

More information

Mathacle. PSet Stats, Concepts In Statistics Level Number Name: Date:

Mathacle. PSet Stats, Concepts In Statistics Level Number Name: Date: APPENDEX I. THE RAW ALGEBRA IN STATISTICS A I-1. THE INEQUALITY Exmple A I-1.1. Solve ech iequlity. Write the solutio i the itervl ottio..) 2 p - 6 p -8.) 2x- 3 < 5 Solutio:.). - 4 p -8 p³ 2 or pî[2, +

More information

10.5 Power Series. In this section, we are going to start talking about power series. A power series is a series of the form

10.5 Power Series. In this section, we are going to start talking about power series. A power series is a series of the form 0.5 Power Series I the lst three sectios, we ve spet most of tht time tlkig bout how to determie if series is coverget or ot. Now it is time to strt lookig t some specific kids of series d we will evetully

More information

Important Facts You Need To Know/Review:

Important Facts You Need To Know/Review: Importt Fcts You Need To Kow/Review: Clculus: If fuctio is cotiuous o itervl I, the its grph is coected o I If f is cotiuous, d lim g Emple: lim eists, the lim lim f g f g d lim cos cos lim 3 si lim, t

More information

The Basic Properties of the Integral

The Basic Properties of the Integral The Bsic Properties of the Itegrl Whe we compute the derivtive of complicted fuctio, like x + six, we usully use differetitio rules, like d [f(x)+g(x)] d f(x)+ d g(x), to reduce the computtio dx dx dx

More information

The Definite Integral

The Definite Integral The Defiite Itegrl A Riem sum R S (f) is pproximtio to the re uder fuctio f. The true re uder the fuctio is obtied by tkig the it of better d better pproximtios to the re uder f. Here is the forml defiitio,

More information

UNIVERSITY OF BRISTOL. Examination for the Degrees of B.Sc. and M.Sci. (Level C/4) ANALYSIS 1B, SOLUTIONS MATH (Paper Code MATH-10006)

UNIVERSITY OF BRISTOL. Examination for the Degrees of B.Sc. and M.Sci. (Level C/4) ANALYSIS 1B, SOLUTIONS MATH (Paper Code MATH-10006) UNIVERSITY OF BRISTOL Exmitio for the Degrees of B.Sc. d M.Sci. (Level C/4) ANALYSIS B, SOLUTIONS MATH 6 (Pper Code MATH-6) My/Jue 25, hours 3 miutes This pper cotis two sectios, A d B. Plese use seprte

More information

12.2 The Definite Integrals (5.2)

12.2 The Definite Integrals (5.2) Course: Aelerted Egieerig Clulus I Istrutor: Mihel Medvisky. The Defiite Itegrls 5. Def: Let fx e defied o itervl [,]. Divide [,] ito suitervls of equl width Δx, so x, x + Δx, x + jδx, x. Let x j j e ritrry

More information

SUTCLIFFE S NOTES: CALCULUS 2 SWOKOWSKI S CHAPTER 11

SUTCLIFFE S NOTES: CALCULUS 2 SWOKOWSKI S CHAPTER 11 SUTCLIFFE S NOTES: CALCULUS SWOKOWSKI S CHAPTER Ifiite Series.5 Altertig Series d Absolute Covergece Next, let us cosider series with both positive d egtive terms. The simplest d most useful is ltertig

More information

Calculus II Homework: The Integral Test and Estimation of Sums Page 1

Calculus II Homework: The Integral Test and Estimation of Sums Page 1 Clculus II Homework: The Itegrl Test d Estimtio of Sums Pge Questios Emple (The p series) Get upper d lower bouds o the sum for the p series i= /ip with p = 2 if the th prtil sum is used to estimte the

More information

1 Tangent Line Problem

1 Tangent Line Problem October 9, 018 MAT18 Week Justi Ko 1 Tget Lie Problem Questio: Give the grph of fuctio f, wht is the slope of the curve t the poit, f? Our strteg is to pproimte the slope b limit of sect lies betwee poits,

More information

EVALUATING DEFINITE INTEGRALS

EVALUATING DEFINITE INTEGRALS Chpter 4 EVALUATING DEFINITE INTEGRALS If the defiite itegrl represets re betwee curve d the x-xis, d if you c fid the re by recogizig the shpe of the regio, the you c evlute the defiite itegrl. Those

More information

1.1 The FTC and Riemann Sums. An Application of Definite Integrals: Net Distance Travelled

1.1 The FTC and Riemann Sums. An Application of Definite Integrals: Net Distance Travelled mth 3 more o the fudmetl theorem of clculus The FTC d Riem Sums A Applictio of Defiite Itegrls: Net Distce Trvelled I the ext few sectios (d the ext few chpters) we will see severl importt pplictios of

More information

10. AREAS BETWEEN CURVES

10. AREAS BETWEEN CURVES . AREAS BETWEEN CURVES.. Ares etween curves So res ove the x-xis re positive nd res elow re negtive, right? Wrong! We lied! Well, when you first lern out integrtion it s convenient fiction tht s true in

More information

Westchester Community College Elementary Algebra Study Guide for the ACCUPLACER

Westchester Community College Elementary Algebra Study Guide for the ACCUPLACER Westchester Commuity College Elemetry Alger Study Guide for the ACCUPLACER Courtesy of Aims Commuity College The followig smple questios re similr to the formt d cotet of questios o the Accuplcer Elemetry

More information

4. When is the particle speeding up? Why? 5. When is the particle slowing down? Why?

4. When is the particle speeding up? Why? 5. When is the particle slowing down? Why? AB CALCULUS: 5.3 Positio vs Distce Velocity vs. Speed Accelertio All the questios which follow refer to the grph t the right.. Whe is the prticle movig t costt speed?. Whe is the prticle movig to the right?

More information

Numerical Integration - (4.3)

Numerical Integration - (4.3) Numericl Itegrtio - (.). Te Degree of Accurcy of Qudrture Formul: Te degree of ccurcy of qudrture formul Qf is te lrgest positive iteger suc tt x k dx Qx k, k,,,...,. Exmple fxdx 9 f f,,. Fid te degree

More information

Laws of Integral Indices

Laws of Integral Indices A Lws of Itegrl Idices A. Positive Itegrl Idices I, is clled the se, is clled the idex lso clled the expoet. mes times.... Exmple Simplify 5 6 c Solutio 8 5 6 c 6 Exmple Simplify Solutio The results i

More information

GRAPHING LINEAR EQUATIONS. Linear Equations. x l ( 3,1 ) _x-axis. Origin ( 0, 0 ) Slope = change in y change in x. Equation for l 1.

GRAPHING LINEAR EQUATIONS. Linear Equations. x l ( 3,1 ) _x-axis. Origin ( 0, 0 ) Slope = change in y change in x. Equation for l 1. GRAPHING LINEAR EQUATIONS Qudrt II Qudrt I ORDERED PAIR: The first umer i the ordered pir is the -coordite d the secod umer i the ordered pir is the y-coordite. (, ) Origi ( 0, 0 ) _-is Lier Equtios Qudrt

More information

Chapter 7 Infinite Series

Chapter 7 Infinite Series MA Ifiite Series Asst.Prof.Dr.Supree Liswdi Chpter 7 Ifiite Series Sectio 7. Sequece A sequece c be thought of s list of umbers writte i defiite order:,,...,,... 2 The umber is clled the first term, 2

More information

Next we encountered the exponent equaled 1, so we take a leap of faith and generalize that for any x (that s not zero),

Next we encountered the exponent equaled 1, so we take a leap of faith and generalize that for any x (that s not zero), 79 CH 0 MORE EXPONENTS Itroductio T his chpter is cotiutio of the epoet ides we ve used m times efore. Our gol is to comie epressios with epoets i them. First, quick review of epoets: 0 0 () () 0 ( ) 0

More information

Multiplicative Versions of Infinitesimal Calculus

Multiplicative Versions of Infinitesimal Calculus Multiplictive Versios o Iiitesiml Clculus Wht hppes whe you replce the summtio o stdrd itegrl clculus with multiplictio? Compre the revited deiitio o stdrd itegrl D å ( ) lim ( ) D i With ( ) lim ( ) D

More information

For students entering Honors Precalculus Summer Packet

For students entering Honors Precalculus Summer Packet Hoors PreClculus Summer Review For studets eterig Hoors Preclculus Summer Pcket The prolems i this pcket re desiged to help ou review topics from previous mthemtics courses tht re importt to our success

More information

Orthogonal functions - Function Approximation

Orthogonal functions - Function Approximation Orthogol uctios - Fuctio Approimtio - he Problem - Fourier Series - Chebyshev Polyomils he Problem we re tryig to pproimte uctio by other uctio g which cosists o sum over orthogol uctios Φ weighted by

More information

ALGEBRA II CHAPTER 7 NOTES. Name

ALGEBRA II CHAPTER 7 NOTES. Name ALGEBRA II CHAPTER 7 NOTES Ne Algebr II 7. th Roots d Rtiol Expoets Tody I evlutig th roots of rel ubers usig both rdicl d rtiol expoet ottio. I successful tody whe I c evlute th roots. It is iportt for

More information

f(t)dt 2δ f(x) f(t)dt 0 and b f(t)dt = 0 gives F (b) = 0. Since F is increasing, this means that

f(t)dt 2δ f(x) f(t)dt 0 and b f(t)dt = 0 gives F (b) = 0. Since F is increasing, this means that Uiversity of Illiois t Ur-Chmpig Fll 6 Mth 444 Group E3 Itegrtio : correctio of the exercises.. ( Assume tht f : [, ] R is cotiuous fuctio such tht f(x for ll x (,, d f(tdt =. Show tht f(x = for ll x [,

More information

MAS221 Analysis, Semester 2 Exercises

MAS221 Analysis, Semester 2 Exercises MAS22 Alysis, Semester 2 Exercises Srh Whitehouse (Exercises lbelled * my be more demdig.) Chpter Problems: Revisio Questio () Stte the defiitio of covergece of sequece of rel umbers, ( ), to limit. (b)

More information

AP Calculus Notes: Unit 6 Definite Integrals. Syllabus Objective: 3.4 The student will approximate a definite integral using rectangles.

AP Calculus Notes: Unit 6 Definite Integrals. Syllabus Objective: 3.4 The student will approximate a definite integral using rectangles. AP Clculus Notes: Uit 6 Defiite Itegrls Sllus Ojective:.4 The studet will pproimte defiite itegrl usig rectgles. Recll: If cr is trvelig t costt rte (cruise cotrol), the its distce trveled is equl to rte

More information

SM2H. Unit 2 Polynomials, Exponents, Radicals & Complex Numbers Notes. 3.1 Number Theory

SM2H. Unit 2 Polynomials, Exponents, Radicals & Complex Numbers Notes. 3.1 Number Theory SMH Uit Polyomils, Epoets, Rdicls & Comple Numbers Notes.1 Number Theory .1 Addig, Subtrctig, d Multiplyig Polyomils Notes Moomil: A epressio tht is umber, vrible, or umbers d vribles multiplied together.

More information

Convergence rates of approximate sums of Riemann integrals

Convergence rates of approximate sums of Riemann integrals Covergece rtes of pproximte sums of Riem itegrls Hiroyuki Tski Grdute School of Pure d Applied Sciece, Uiversity of Tsuku Tsuku Irki 5-857 Jp tski@mth.tsuku.c.jp Keywords : covergece rte; Riem sum; Riem

More information

Limits and an Introduction to Calculus

Limits and an Introduction to Calculus Nme Chpter Limits d Itroductio to Clculus Sectio. Itroductio to Limits Objective: I this lesso ou lered how to estimte limits d use properties d opertios of limits. I. The Limit Cocept d Defiitio of Limit

More information

( ) k ( ) 1 T n 1 x = xk. Geometric series obtained directly from the definition. = 1 1 x. See also Scalars 9.1 ADV-1: lim n.

( ) k ( ) 1 T n 1 x = xk. Geometric series obtained directly from the definition. = 1 1 x. See also Scalars 9.1 ADV-1: lim n. Sclrs-9.0-ADV- Algebric Tricks d Where Tylor Polyomils Come From 207.04.07 A.docx Pge of Algebric tricks ivolvig x. You c use lgebric tricks to simplify workig with the Tylor polyomils of certi fuctios..

More information

5.1 - Areas and Distances

5.1 - Areas and Distances Mth 3B Midterm Review Writte by Victori Kl vtkl@mth.ucsb.edu SH 63u Office Hours: R 9:5 - :5m The midterm will cover the sectios for which you hve received homework d feedbck Sectios.9-6.5 i your book.

More information

Fourier Series and Applications

Fourier Series and Applications 9/7/9 Fourier Series d Applictios Fuctios epsio is doe to uderstd the better i powers o etc. My iportt probles ivolvig prtil dieretil equtios c be solved provided give uctio c be epressed s iiite su o

More information

Linford 1. Kyle Linford. Math 211. Honors Project. Theorems to Analyze: Theorem 2.4 The Limit of a Function Involving a Radical (A4)

Linford 1. Kyle Linford. Math 211. Honors Project. Theorems to Analyze: Theorem 2.4 The Limit of a Function Involving a Radical (A4) Liford 1 Kyle Liford Mth 211 Hoors Project Theorems to Alyze: Theorem 2.4 The Limit of Fuctio Ivolvig Rdicl (A4) Theorem 2.8 The Squeeze Theorem (A5) Theorem 2.9 The Limit of Si(x)/x = 1 (p. 85) Theorem

More information

( x y ) x y. a b. a b. Chapter 2Properties of Exponents and Scientific Notation. x x. x y, Example: (x 2 )(x 4 ) = x 6.

( x y ) x y. a b. a b. Chapter 2Properties of Exponents and Scientific Notation. x x. x y, Example: (x 2 )(x 4 ) = x 6. Chpter Properties of Epoets d Scietific Nottio Epoet - A umer or symol, s i ( + y), plced to the right of d ove other umer, vrile, or epressio (clled the se), deotig the power to which the se is to e rised.

More information

Remarks: (a) The Dirac delta is the function zero on the domain R {0}.

Remarks: (a) The Dirac delta is the function zero on the domain R {0}. Sectio Objective(s): The Dirc s Delt. Mi Properties. Applictios. The Impulse Respose Fuctio. 4.4.. The Dirc Delt. 4.4. Geerlized Sources Defiitio 4.4.. The Dirc delt geerlized fuctio is the limit δ(t)

More information

Theorem 5.3 (Continued) The Fundamental Theorem of Calculus, Part 2: ab,, then. f x dx F x F b F a. a a. f x dx= f x x

Theorem 5.3 (Continued) The Fundamental Theorem of Calculus, Part 2: ab,, then. f x dx F x F b F a. a a. f x dx= f x x Chpter 6 Applictios Itegrtio Sectio 6. Regio Betwee Curves Recll: Theorem 5.3 (Cotiued) The Fudmetl Theorem of Clculus, Prt :,,, the If f is cotiuous t ever poit of [ ] d F is tiderivtive of f o [ ] (

More information

8.1 Arc Length. What is the length of a curve? How can we approximate it? We could do it following the pattern we ve used before

8.1 Arc Length. What is the length of a curve? How can we approximate it? We could do it following the pattern we ve used before 8.1 Arc Legth Wht is the legth of curve? How c we pproximte it? We could do it followig the ptter we ve used efore Use sequece of icresigly short segmets to pproximte the curve: As the segmets get smller

More information

Area, Volume, Rotations, Newton s Method

Area, Volume, Rotations, Newton s Method Are, Volume, Rottio, Newto Method Are etwee curve d the i A ( ) d Are etwee curve d the y i A ( y) yd yc Are etwee curve A ( ) g( ) d where ( ) i the "top" d g( ) i the "ottom" yd Are etwee curve A ( y)

More information

Algebra II, Chapter 7. Homework 12/5/2016. Harding Charter Prep Dr. Michael T. Lewchuk. Section 7.1 nth roots and Rational Exponents

Algebra II, Chapter 7. Homework 12/5/2016. Harding Charter Prep Dr. Michael T. Lewchuk. Section 7.1 nth roots and Rational Exponents Algebr II, Chpter 7 Hrdig Chrter Prep 06-07 Dr. Michel T. Lewchuk Test scores re vilble olie. I will ot discuss the test. st retke opportuit Sturd Dec. If ou hve ot tke the test, it is our resposibilit

More information

CS537. Numerical Analysis and Computing

CS537. Numerical Analysis and Computing CS57 Numerical Aalysis ad Computig Lecture Locatig Roots o Equatios Proessor Ju Zhag Departmet o Computer Sciece Uiversity o Ketucky Leigto KY 456-6 Jauary 9 9 What is the Root May physical system ca be

More information

( ) = A n + B ( ) + Bn

( ) = A n + B ( ) + Bn MATH 080 Test 3-SOLUTIONS Fll 04. Determie if the series is coverget or diverget. If it is coverget, fid its sum.. (7 poits) = + 3 + This is coverget geometric series where r = d

More information

Second Mean Value Theorem for Integrals By Ng Tze Beng. The Second Mean Value Theorem for Integrals (SMVT) Statement of the Theorem

Second Mean Value Theorem for Integrals By Ng Tze Beng. The Second Mean Value Theorem for Integrals (SMVT) Statement of the Theorem Secod Me Vlue Theorem for Itegrls By Ng Tze Beg This rticle is out the Secod Me Vlue Theorem for Itegrls. This theorem, first proved y Hoso i its most geerlity d with extesio y ixo, is very useful d lmost

More information

Accuplacer Elementary Algebra Study Guide

Accuplacer Elementary Algebra Study Guide Testig Ceter Studet Suess Ceter Aupler Elemetry Alger Study Guide The followig smple questios re similr to the formt d otet of questios o the Aupler Elemetry Alger test. Reviewig these smples will give

More information

ICS141: Discrete Mathematics for Computer Science I

ICS141: Discrete Mathematics for Computer Science I ICS4: Discrete Mthemtics for Computer Sciece I Dept. Iformtio & Computer Sci., J Stelovsky sed o slides y Dr. Bek d Dr. Still Origils y Dr. M. P. Frk d Dr. J.L. Gross Provided y McGrw-Hill 3- Quiz. gcd(84,96).

More information

MATH 104 FINAL SOLUTIONS. 1. (2 points each) Mark each of the following as True or False. No justification is required. y n = x 1 + x x n n

MATH 104 FINAL SOLUTIONS. 1. (2 points each) Mark each of the following as True or False. No justification is required. y n = x 1 + x x n n MATH 04 FINAL SOLUTIONS. ( poits ech) Mrk ech of the followig s True or Flse. No justifictio is required. ) A ubouded sequece c hve o Cuchy subsequece. Flse b) A ifiite uio of Dedekid cuts is Dedekid cut.

More information

Repeated Root and Common Root

Repeated Root and Common Root Repeted Root d Commo Root 1 (Method 1) Let α, β, γ e the roots of p(x) x + x + 0 (1) The α + β + γ 0, αβ + βγ + γα, αβγ - () (α - β) (α + β) - αβ (α + β) [ (βγ + γα)] + [(α + β) + γ (α + β)] +γ (α + β)

More information

Name: A2RCC Midterm Review Unit 1: Functions and Relations Know your parent functions!

Name: A2RCC Midterm Review Unit 1: Functions and Relations Know your parent functions! Nme: ARCC Midterm Review Uit 1: Fuctios d Reltios Kow your pret fuctios! 1. The ccompyig grph shows the mout of rdio-ctivity over time. Defiitio of fuctio. Defiitio of 1-1. Which digrm represets oe-to-oe

More information

Chapter 5. The Riemann Integral. 5.1 The Riemann integral Partitions and lower and upper integrals. Note: 1.5 lectures

Chapter 5. The Riemann Integral. 5.1 The Riemann integral Partitions and lower and upper integrals. Note: 1.5 lectures Chpter 5 The Riem Itegrl 5.1 The Riem itegrl Note: 1.5 lectures We ow get to the fudmetl cocept of itegrtio. There is ofte cofusio mog studets of clculus betwee itegrl d tiderivtive. The itegrl is (iformlly)

More information

( ) 2 3 ( ) I. Order of operations II. Scientific Notation. Simplify. Write answers in scientific notation. III.

( ) 2 3 ( ) I. Order of operations II. Scientific Notation. Simplify. Write answers in scientific notation. III. Assessmet Ceter Elemetry Alger Study Guide for the ACCUPLACER (CPT) The followig smple questios re similr to the formt d otet of questios o the Aupler Elemetry Alger test. Reviewig these smples will give

More information

We will begin by supplying the proof to (a).

We will begin by supplying the proof to (a). (The solutios of problem re mostly from Jeffrey Mudrock s HWs) Problem 1. There re three sttemet from Exmple 5.4 i the textbook for which we will supply proofs. The sttemets re the followig: () The spce

More information

REVIEW OF CHAPTER 5 MATH 114 (SECTION C1): ELEMENTARY CALCULUS

REVIEW OF CHAPTER 5 MATH 114 (SECTION C1): ELEMENTARY CALCULUS REVIEW OF CHAPTER 5 MATH 4 (SECTION C): EEMENTARY CACUUS.. Are.. Are d Estimtig with Fiite Sums Emple. Approimte the re of the shded regio R tht is lies ove the -is, elow the grph of =, d etwee the verticl

More information

Math 2414 Activity 17 (Due with Final Exam) Determine convergence or divergence of the following alternating series: a 3 5 2n 1 2n 1

Math 2414 Activity 17 (Due with Final Exam) Determine convergence or divergence of the following alternating series: a 3 5 2n 1 2n 1 Mth 44 Activity 7 (Due with Fil Exm) Determie covergece or divergece of the followig ltertig series: l 4 5 6 4 7 8 4 {Hit: Loo t 4 } {Hit: } 5 {Hit: AST or just chec out the prtil sums} {Hit: AST or just

More information

MTH 146 Class 16 Notes

MTH 146 Class 16 Notes MTH 46 Clss 6 Notes 0.4- Cotiued Motivtio: We ow cosider the rc legth of polr curve. Suppose we wish to fid the legth of polr curve curve i terms of prmetric equtios s: r f where b. We c view the cos si

More information

Solutions to Final Exam Review Problems

Solutions to Final Exam Review Problems . Let f(x) 4+x. Solutios to Fial Exam Review Problems Math 5C, Witer 2007 (a) Fid the Maclauri series for f(x), ad compute its radius of covergece. Solutio. f(x) 4( ( x/4)) ( x/4) ( ) 4 4 + x. Sice the

More information

Math 104: Final exam solutions

Math 104: Final exam solutions Mth 14: Fil exm solutios 1. Suppose tht (s ) is icresig sequece with coverget subsequece. Prove tht (s ) is coverget sequece. Aswer: Let the coverget subsequece be (s k ) tht coverges to limit s. The there

More information

AP Calculus AB Unit 5 (Ch. 6): The Definite Integral: Day 12 Chapter 6 Review

AP Calculus AB Unit 5 (Ch. 6): The Definite Integral: Day 12 Chapter 6 Review AP Clculus AB Unit 5 (Ch. 6): The Definite Integrl: Dy Nme o Are Approximtions Riemnn Sums: LRAM, MRAM, RRAM Chpter 6 Review Trpezoidl Rule: T = h ( y + y + y +!+ y + y 0 n n) **Know how to find rectngle

More information

Mathematical Notation Math Calculus & Analytic Geometry I

Mathematical Notation Math Calculus & Analytic Geometry I Mthemticl Nottio Mth - Clculus & Alytic Geometry I Nme : Use Wor or WorPerect to recrete the ollowig ocumets. Ech rticle is worth poits c e prite give to the istructor or emile to the istructor t jmes@richl.eu.

More information

Homework 3 Solutions

Homework 3 Solutions CS 341: Foundtions of Computer Science II Prof. Mrvin Nkym Homework 3 Solutions 1. Give NFAs with the specified numer of sttes recognizing ech of the following lnguges. In ll cses, the lphet is Σ = {,1}.

More information

Student Success Center Elementary Algebra Study Guide for the ACCUPLACER (CPT)

Student Success Center Elementary Algebra Study Guide for the ACCUPLACER (CPT) Studet Success Ceter Elemetry Algebr Study Guide for the ACCUPLACER (CPT) The followig smple questios re similr to the formt d cotet of questios o the Accuplcer Elemetry Algebr test. Reviewig these smples

More information

A GENERALIZATION OF HERMITE-HADAMARD S INEQUALITY

A GENERALIZATION OF HERMITE-HADAMARD S INEQUALITY Krgujevc Jourl o Mthemtics Volume 4() (7), Pges 33 38. A GENERALIZATION OF HERMITE-HADAMARD S INEQUALITY MOHAMMAD W. ALOMARI Abstrct. I literture the Hermite-Hdmrd iequlity ws eligible or my resos, oe

More information

Numerical Integration by using Straight Line Interpolation Formula

Numerical Integration by using Straight Line Interpolation Formula Glol Jourl of Pure d Applied Mthemtics. ISSN 0973-1768 Volume 13, Numer 6 (2017), pp. 2123-2132 Reserch Idi Pulictios http://www.ripulictio.com Numericl Itegrtio y usig Stright Lie Iterpoltio Formul Mhesh

More information

Mathematical Notation Math Calculus & Analytic Geometry I

Mathematical Notation Math Calculus & Analytic Geometry I Mthemticl Nottio Mth - Clculus & Alytic Geometry I Use Wor or WorPerect to recrete the ollowig ocumets. Ech rticle is worth poits shoul e emile to the istructor t jmes@richl.eu. Type your me t the top

More information

Riemann Integral and Bounded function. Ng Tze Beng

Riemann Integral and Bounded function. Ng Tze Beng Riem Itegrl d Bouded fuctio. Ng Tze Beg I geerlistio of re uder grph of fuctio, it is ormlly ssumed tht the fuctio uder cosidertio e ouded. For ouded fuctio, the rge of the fuctio is ouded d hece y suset

More information

BC Calculus Path to a Five Problems

BC Calculus Path to a Five Problems BC Clculus Pth to Five Problems # Topic Completed U -Substitutio Rule Itegrtio by Prts 3 Prtil Frctios 4 Improper Itegrls 5 Arc Legth 6 Euler s Method 7 Logistic Growth 8 Vectors & Prmetrics 9 Polr Grphig

More information

Calculus Summary Sheet

Calculus Summary Sheet Clculus Summry Sheet Limits Trigoometric Limits: siθ lim θ 0 θ = 1, lim 1 cosθ = 0 θ 0 θ Squeeze Theorem: If f(x) g(x) h(x) if lim f(x) = lim h(x) = L, the lim g(x) = L x x x Ietermite Forms: 0 0,,, 0,

More information