1 Part II: Numerical Integration

Size: px
Start display at page:

Download "1 Part II: Numerical Integration"

Transcription

1 Mth 4 Lb 1 Prt II: Numericl Integrtion This section includes severl techniques for getting pproimte numericl vlues for definite integrls without using ntiderivtives. Mthemticll, ect nswers re preferble nd stisfing, but for most pplictions, numericl nswer with severl digits of ccurc is just s useful. For instnce, suppose ou re utomotive or ircrft designer. You m wish to know how much metl is required to build our design, creted using computer-ided design grphics progrm. Due to the fluctutions in the price for metl, ou onl need the pproimte cost bsed on piecewise-liner pproimtion to our design. Numericl techniques such s those discussed in this section cn be used for tht. 1.1 Emples of Riemnn sums: five rectngulr rules We now describe five methods of computing Riemnn sums. We will cll these rectngulr rules, nd the correspond to five nturl ws of choosing the point c k t which to compute the height, f(c k ), of the rectngle over the subintervl [ k 1, k ]. (Lter, we will consider two other methods of computing Riemnn sums which re non-rectngulr rules. These methods use shpes other thn rectngles to cheive better pproimtions to the re under curve.) Left end-point Rule (LRAM) Let c k = k 1, the left end-point of the k-th subintervl [ k 1, k ]. LRAM n = f( k 1 )( k k 1 ). If the sub-intervls re ll of the sme size = k k 1, then k=1 LRAM n = [f( 0 ) + f( 1 ) + + f( n 1 )]. Right end-point Rule (RRAM) Let c k = k, the right end-point of the k-th subintervl [ k 1, k ]. RRAM n = f( k )( k k 1 ). If the sub-intervls re ll of the sme size = k k 1, then k=1 RRAM n = [f( 1 ) + f( ) + + f( n )]. Mid-point Rule (MRAM) Let c k = k 1+ k, the mid-point of the k-th subintervl [ k 1, k ]. MRAM n = ( ) k 1 + k f ( k k 1 ). k=1 If the sub-intervls re ll of the sme size = k k 1, then [ ( ) ( ) ( )] n 1 + n MRAM n = f + f + + f. 1

2 Mth 4 Lb Lower Sum (LS) Let m k be the -vlue in the k-th subintervl so tht f(m k ) is the minimum vlue of f in tht intervl. LS n = n k=1 f(m k)( k k 1 ). Upper Sum (US): Let M k be the -vlue in the k-th subintervl so tht f(m k ) is the minimum vlue of f in tht intervl. US n = n k=1 f(m k)( k k 1 ). The figures below give n emple illustrting the rectngles tht result from ppling the first three rules. Regrdless of which of these three rules we ppl, the rectngles m be bove or below the grph of the function f, depending on the shpe of the grph. In contrst, the lower sum lws builds the rectngles below the grph of f. Consequentl, the lower sum is lws less thn or equl to the ect re A: LS A for ever prtition P. Similrl, the upper sum builds rectngles over the grph of f, nd the upper sum is lws greter thn or equl to the ect re A: US A for ever prtition P. The lower nd upper sums provide bounds on the size of the ect re: LS A US. Left Sum = Right Sum = Midpoint Sum = Lower Sum = Upper Sum =

3 Mth 4 Lb Emple 1. Use the wmim softwre to crete function tht ou cn use to pproimte the re under the curve f() = 1/ between the points = 1 nd b = using the first method described bove (LRAM). Solution: First, we tell Mim the intervl nd the function s follows: :1$ b:$ f():=1/$ This defines the intervl strting point = 1, ending point b =, nd the function f() = 1/. We will use n rectngles of equl width, so the width of ech rectngle is = b n no mtter which method we re using. We cll this the step size. There re n + 1 points in the intervl [, b] over which we re integrting: = 0 < 1 < < n = b We need to tell Mim the vlue of ech point i. To get the vlue i, strt t the point nd move i steps to the right. So i is plus i times the step size: ( ) b i = + i. n This is true no mtter which method we re using. In Mim, we define this s follows: 1 (i,n) := + i*(b-)/n; This function tkes two input rguments, i nd n, nd outputs the vlue i, the i-th element in the prtition = 0 < 1 < < n 1 < n = b. Net, define function to pproimte the integrl using the left hnd rule pproimtion method (LRAM) s follows: LRAM(n) := sum( f((i,n)), i, 0, n-1 ) * ( (b-)/n ); Notice tht we hve defined LRAM s function of n, so b plugging in vrious vlues for n we cn use this function to pproimte the re under the curve using n number of rectngles. For emple, we find tht with 5 rectngles LRAM(5); returns 1879/50. To show the nswer in deciml nottion, flot(lram(5)); returns Similrl, for 10 rectngles, flot(lram(10)); returns , while for 100 rectngles flot(lram(100)); ields We know tht the integrl 1 1 d is ln(). Checking the deciml representtion of ln() in Mim, we find tht flot(log()); returns So we see tht the pproimtion obtined with the LRAM function is ok for smll n, nd is much improved when n = Mke sure ou hve lred defined nd b before defining (i,n). Recll tht ln() is represented in Mim b log(). 3

4 Mth 4 Lb Problem 1: Use wmim to crete function to pproimte the re under the curve f() = 1 between the points = 0 nd b = 1 using the second method described bove (RRAM). Write our nswers below. (Hint: For LRAM we evlute the function nd sum over the points { 0, 1,..., n 1 }, while for RRAM we will evlute the function nd sum over the points { 1,,..., n }.) Answers: flot( RRAM(5) ) = flot( RRAM(10) )= Problem : Use wmim to crete function to pproimte the re under the curve f() = 1/ between the points = 1 nd b = using the third method described bove (MRAM). (Hint: ou will need function to compute the midpoints, which ou cn define in terms of the function (i,n) tht ou hve bove. For emple, (i,n) := ( (i,n) + (i+1,n) ) / ; Your definition of the function MRAM(n) will involve f((i,n)) insted of f((i,n)).) Answers: flot( MRAM(5) ) = flot( MRAM(10) )= Compre our nswers with those in the emple on the previous pge. Which is more ccurte in this cse? (circle one) LRAM MRAM 4

5 Mth 4 Lb 1. The trpezoid rule nd Simpson s rule The methods in this section pproimte the definite integrl of function f b building es functions close to f nd then ectl evluting the definite integrls of the es functions. If the es functions re close enough to f, then the sum of the definite integrls of the es functions will be close to the definite integrl of f. Above, we sw tht the left, right nd midpoint pproimtions fit horizontl lines to f. There, the es functions were piecewise constnt functions, nd the pproimting regions re rectngles. The Trpezoidl Rule fits slnted lines to f, the es functions re piecewise liner, nd the pproimting regions re trpezoids. Finll, Simpson s Rule fits prbols to f, nd the es functions re piecewise qudrtic polnomils. For simplicit, we will divide the intervl [, b] into n equll long subintervls. Ech subintervl hs length h = i = b n, nd the points of the prtition re 0 =, 1 = + h, = + h,..., i = + ih,..., n = + nh = + n( b n ) = b. The re of trpezoid is (bse) (verge height), so the re of the trpezoid with coordintes ( 0, 0), ( 0, 0 ), ( 1, 0), ( 1, 1 ), is ( 1 0 ) ( ). (See Figure 1.) ( 1, 1) ( 0, 1) ( 0, 0) ( 1, 0) Figure 1: Trpezoid Theorem 1. ( Trpezoidl Approimtion Rule ) If f is integrble on [, b], nd [, b] is prtitioned into n subintervls of length h = b n, then the Trpezoidl pproimtion of b f() d is T n = h [f( 0) + f( 1 ) + f( ) f( n 1 ) + f( n )]. Proof: The re of the trpezoid with coordintes ( i, 0), ( i, i ), ( i+1, 0), ( i+1, i+1 ), where i = f( i ), is ( i+1 i ) i+i+1 = h ( i + i+1 ). Therefore, the sum of the trpezoidl res pproimting b f() d is s desired. i= ( i+1 i ) i + i+1 = h ( i + i+1 ) = h ( n 1 + n ), i= 5

6 Mth 4 Lb f() Figure : Tble for Emple. Clculte T 4, the Trpezoidl pproimtion of 3 f() d, for the function vlues in Figure. 1 Solution: The step size is h = (b )/n = (3 1)/4 = 1/. Therefore, T 4 = h [f( 0)+f( 1 )+f( )+f( 3 )+f( 4 )] = 1 [4.+(3.4)+(.8)+(3.6)+(3.)] = (0.5)(7) = Problem 3: Let s see how well the trpezoidl rule pproimtes n integrl whose ect vlue we know, 3 1 d = 6 3. Clculte T 4, the Trpezoidl pproimtion of 3 1 d. Answer: 1.3 Simpson s rule If the grph of f is curved, even the slnted lines m not fit the grph of f s closel s we would like, nd lrge number of subintervls m still be needed with the Trpezoidl rule to get good pproimtion of the definite integrl. Curves tpicll fit the grph of f better thn stright lines, nd the esiest nonliner curves re prbols. Theorem. Three points ( 0, 0 ), ( 1, 1 ), (, ) re needed to determine the eqution of prbol, nd the re under prbolic region with evenl spced i vlues is 3 ( ). Theorem 3. ( Simpson s Rule ) If f is integrble on [, b], nd [, b] is prtitioned into n even number n of subintervls of length h = = b n, then the Prbolic pproimtion of b f() d is S n = 3 [f( 0) + 4f( 1 ) + f( ) + 4f( 3 ) + f( 4 ) f( n 1 ) + f( n )]. Emple 3. Clculte S 4, the Simpson s rule pproimtion of 3 f() d, for the function vlues tbulted 1 in Figure. Solution: The step size is h = (b )/n = (3 1)/4 = 1/. Then S 4 = h 3 [f( 0) + 4f( 1 ) + f( ) + 4f( 3 ) + f( 4 )] = 1 6 [4. + 4(3.4) + (.8) + 4(3.6) + (3.)] = 41 6 =

7 Mth 4 Lb 1.4 Trpezoidl vs. Simpson: Which Method Is Best? The hrdest nd slowest prt of these pproimtions, whether b hnd or b computer, is the evlution of the function t the i vlues. For n subintervls, ll of the methods require bout the sme number of function evlutions. The rest of this section discusses error bounds of the pproimtions so we cn know how close our pproimtion is to the ect vlue of the integrl even if we don t know the ect vlue. Theorem 4. (Error Bound for Trpezoidl Approimtion) If the second derivtive of f is continuous on [, b] nd M m [,b] f (), then the error of the T n pproimtion is b f() d T n (b )3 1n M. The error bound formul (b )3 M 1n for the Trpezoidl pproimtion is gurntee : the ctul error is gurnteed to be no lrger thn the error bound. In fct, the ctul error is usull much smller thn the error bound. The word error does not indicte mistke, it mens the devition or distnce from the ect nswer. Emple 4. How lrge must n be to be certin tht T n is within of 1 sin() d? 0 Solution: We wnt to pick n so tht (b )3 1n M 1/1000. We m tke M = 1, so (b )3 1n M = 1 1n 1/1000, or n 1000/1. Tking n = 10 will work. Theorem 5. (Error Bound for Simpson s Rule Approimtion) If the fourth derivtive of f is continuous on [, b] nd M 4 m [,b] f (4) (), then the error of the S n pproimtion is b f() d S n (b )5 180n 4 M 4. Problem 4: How lrge must n be to be certin tht S n is within of 1 0 sin() d? Answer: 7

Goals: Determine how to calculate the area described by a function. Define the definite integral. Explore the relationship between the definite

Goals: Determine how to calculate the area described by a function. Define the definite integral. Explore the relationship between the definite Unit #8 : The Integrl Gols: Determine how to clculte the re described by function. Define the definite integrl. Eplore the reltionship between the definite integrl nd re. Eplore wys to estimte the definite

More information

The Trapezoidal Rule

The Trapezoidal Rule _.qd // : PM Pge 9 SECTION. Numericl Integrtion 9 f Section. The re of the region cn e pproimted using four trpezoids. Figure. = f( ) f( ) n The re of the first trpezoid is f f n. Figure. = Numericl Integrtion

More information

Chapter 6 Notes, Larson/Hostetler 3e

Chapter 6 Notes, Larson/Hostetler 3e Contents 6. Antiderivtives nd the Rules of Integrtion.......................... 6. Are nd the Definite Integrl.................................. 6.. Are............................................ 6. Reimnn

More information

Math 131. Numerical Integration Larson Section 4.6

Math 131. Numerical Integration Larson Section 4.6 Mth. Numericl Integrtion Lrson Section. This section looks t couple of methods for pproimting definite integrls numericlly. The gol is to get good pproimtion of the definite integrl in problems where n

More information

Math& 152 Section Integration by Parts

Math& 152 Section Integration by Parts Mth& 5 Section 7. - Integrtion by Prts Integrtion by prts is rule tht trnsforms the integrl of the product of two functions into other (idelly simpler) integrls. Recll from Clculus I tht given two differentible

More information

4.6 Numerical Integration

4.6 Numerical Integration .6 Numericl Integrtion 5.6 Numericl Integrtion Approimte definite integrl using the Trpezoidl Rule. Approimte definite integrl using Simpson s Rule. Anlze the pproimte errors in the Trpezoidl Rule nd Simpson

More information

The Regulated and Riemann Integrals

The Regulated and Riemann Integrals Chpter 1 The Regulted nd Riemnn Integrls 1.1 Introduction We will consider severl different pproches to defining the definite integrl f(x) dx of function f(x). These definitions will ll ssign the sme vlue

More information

Calculus - Activity 1 Rate of change of a function at a point.

Calculus - Activity 1 Rate of change of a function at a point. Nme: Clss: p 77 Mths Helper Plus Resource Set. Copright 00 Bruce A. Vughn, Techers Choice Softwre Clculus - Activit Rte of chnge of function t point. ) Strt Mths Helper Plus, then lod the file: Clculus

More information

and that at t = 0 the object is at position 5. Find the position of the object at t = 2.

and that at t = 0 the object is at position 5. Find the position of the object at t = 2. 7.2 The Fundmentl Theorem of Clculus 49 re mny, mny problems tht pper much different on the surfce but tht turn out to be the sme s these problems, in the sense tht when we try to pproimte solutions we

More information

Properties of Integrals, Indefinite Integrals. Goals: Definition of the Definite Integral Integral Calculations using Antiderivatives

Properties of Integrals, Indefinite Integrals. Goals: Definition of the Definite Integral Integral Calculations using Antiderivatives Block #6: Properties of Integrls, Indefinite Integrls Gols: Definition of the Definite Integrl Integrl Clcultions using Antiderivtives Properties of Integrls The Indefinite Integrl 1 Riemnn Sums - 1 Riemnn

More information

sec x over the interval (, ). x ) dx dx x 14. Use a graphing utility to generate some representative integral curves of the function Curve on 5

sec x over the interval (, ). x ) dx dx x 14. Use a graphing utility to generate some representative integral curves of the function Curve on 5 Curve on Clcultor eperience Fin n ownlo (or type in) progrm on your clcultor tht will fin the re uner curve using given number of rectngles. Mke sure tht the progrm fins LRAM, RRAM, n MRAM. (You nee to

More information

5.1 Estimating with Finite Sums Calculus

5.1 Estimating with Finite Sums Calculus 5.1 ESTIMATING WITH FINITE SUMS Emple: Suppose from the nd to 4 th hour of our rod trip, ou trvel with the cruise control set to ectl 70 miles per hour for tht two hour stretch. How fr hve ou trveled during

More information

13.3. The Area Bounded by a Curve. Introduction. Prerequisites. Learning Outcomes

13.3. The Area Bounded by a Curve. Introduction. Prerequisites. Learning Outcomes The Are Bounded b Curve 3.3 Introduction One of the importnt pplictions of integrtion is to find the re bounded b curve. Often such n re cn hve phsicl significnce like the work done b motor, or the distnce

More information

Definite integral. Mathematics FRDIS MENDELU

Definite integral. Mathematics FRDIS MENDELU Definite integrl Mthemtics FRDIS MENDELU Simon Fišnrová Brno 1 Motivtion - re under curve Suppose, for simplicity, tht y = f(x) is nonnegtive nd continuous function defined on [, b]. Wht is the re of the

More information

5.7 Improper Integrals

5.7 Improper Integrals 458 pplictions of definite integrls 5.7 Improper Integrls In Section 5.4, we computed the work required to lift pylod of mss m from the surfce of moon of mss nd rdius R to height H bove the surfce of the

More information

Z b. f(x)dx. Yet in the above two cases we know what f(x) is. Sometimes, engineers want to calculate an area by computing I, but...

Z b. f(x)dx. Yet in the above two cases we know what f(x) is. Sometimes, engineers want to calculate an area by computing I, but... Chpter 7 Numericl Methods 7. Introduction In mny cses the integrl f(x)dx cn be found by finding function F (x) such tht F 0 (x) =f(x), nd using f(x)dx = F (b) F () which is known s the nlyticl (exct) solution.

More information

Definite integral. Mathematics FRDIS MENDELU. Simona Fišnarová (Mendel University) Definite integral MENDELU 1 / 30

Definite integral. Mathematics FRDIS MENDELU. Simona Fišnarová (Mendel University) Definite integral MENDELU 1 / 30 Definite integrl Mthemtics FRDIS MENDELU Simon Fišnrová (Mendel University) Definite integrl MENDELU / Motivtion - re under curve Suppose, for simplicity, tht y = f(x) is nonnegtive nd continuous function

More information

Polynomial Approximations for the Natural Logarithm and Arctangent Functions. Math 230

Polynomial Approximations for the Natural Logarithm and Arctangent Functions. Math 230 Polynomil Approimtions for the Nturl Logrithm nd Arctngent Functions Mth 23 You recll from first semester clculus how one cn use the derivtive to find n eqution for the tngent line to function t given

More information

Midpoint Approximation

Midpoint Approximation Midpoint Approximtion Sometimes, we need to pproximte n integrl of the form R b f (x)dx nd we cnnot find n ntiderivtive in order to evlute the integrl. Also we my need to evlute R b f (x)dx where we do

More information

13.3. The Area Bounded by a Curve. Introduction. Prerequisites. Learning Outcomes

13.3. The Area Bounded by a Curve. Introduction. Prerequisites. Learning Outcomes The Are Bounded b Curve 3.3 Introduction One of the importnt pplictions of integrtion is to find the re bounded b curve. Often such n re cn hve phsicl significnce like the work done b motor, or the distnce

More information

APPROXIMATE INTEGRATION

APPROXIMATE INTEGRATION APPROXIMATE INTEGRATION. Introduction We hve seen tht there re functions whose nti-derivtives cnnot be expressed in closed form. For these resons ny definite integrl involving these integrnds cnnot be

More information

The Trapezoidal Rule

The Trapezoidal Rule SECTION. Numericl Integrtion 9 f Section. The re of the region cn e pproimted using four trpezoids. Figure. = f( ) f( ) n The re of the first trpezoid is f f n. Figure. = Numericl Integrtion Approimte

More information

We know that if f is a continuous nonnegative function on the interval [a, b], then b

We know that if f is a continuous nonnegative function on the interval [a, b], then b 1 Ares Between Curves c 22 Donld Kreider nd Dwight Lhr We know tht if f is continuous nonnegtive function on the intervl [, b], then f(x) dx is the re under the grph of f nd bove the intervl. We re going

More information

1 The Riemann Integral

1 The Riemann Integral The Riemnn Integrl. An exmple leding to the notion of integrl (res) We know how to find (i.e. define) the re of rectngle (bse height), tringle ( (sum of res of tringles). But how do we find/define n re

More information

We divide the interval [a, b] into subintervals of equal length x = b a n

We divide the interval [a, b] into subintervals of equal length x = b a n Arc Length Given curve C defined by function f(x), we wnt to find the length of this curve between nd b. We do this by using process similr to wht we did in defining the Riemnn Sum of definite integrl:

More information

6.5 Numerical Approximations of Definite Integrals

6.5 Numerical Approximations of Definite Integrals Arknss Tech University MATH 94: Clculus II Dr. Mrcel B. Finn 6.5 Numericl Approximtions of Definite Integrls Sometimes the integrl of function cnnot be expressed with elementry functions, i.e., polynomil,

More information

Numerical Analysis: Trapezoidal and Simpson s Rule

Numerical Analysis: Trapezoidal and Simpson s Rule nd Simpson s Mthemticl question we re interested in numericlly nswering How to we evlute I = f (x) dx? Clculus tells us tht if F(x) is the ntiderivtive of function f (x) on the intervl [, b], then I =

More information

ES.182A Topic 32 Notes Jeremy Orloff

ES.182A Topic 32 Notes Jeremy Orloff ES.8A Topic 3 Notes Jerem Orloff 3 Polr coordintes nd double integrls 3. Polr Coordintes (, ) = (r cos(θ), r sin(θ)) r θ Stndrd,, r, θ tringle Polr coordintes re just stndrd trigonometric reltions. In

More information

Review Exercises for Chapter 4

Review Exercises for Chapter 4 _R.qd // : PM Pge CHAPTER Integrtion Review Eercises for Chpter In Eercises nd, use the grph of to sketch grph of f. To print n enlrged cop of the grph, go to the wesite www.mthgrphs.com... In Eercises

More information

The First Fundamental Theorem of Calculus. If f(x) is continuous on [a, b] and F (x) is any antiderivative. f(x) dx = F (b) F (a).

The First Fundamental Theorem of Calculus. If f(x) is continuous on [a, b] and F (x) is any antiderivative. f(x) dx = F (b) F (a). The Fundmentl Theorems of Clculus Mth 4, Section 0, Spring 009 We now know enough bout definite integrls to give precise formultions of the Fundmentl Theorems of Clculus. We will lso look t some bsic emples

More information

Chapter 9 Definite Integrals

Chapter 9 Definite Integrals Chpter 9 Definite Integrls In the previous chpter we found how to tke n ntiderivtive nd investigted the indefinite integrl. In this chpter the connection etween ntiderivtives nd definite integrls is estlished

More information

Chapter 8.2: The Integral

Chapter 8.2: The Integral Chpter 8.: The Integrl You cn think of Clculus s doule-wide triler. In one width of it lives differentil clculus. In the other hlf lives wht is clled integrl clculus. We hve lredy eplored few rooms in

More information

Big idea in Calculus: approximation

Big idea in Calculus: approximation Big ide in Clculus: pproximtion Derivtive: f (x) = df dx f f(x +h) f(x) =, x h rte of chnge is pproximtely the rtio of chnges in the function vlue nd in the vrible in very short time Liner pproximtion:

More information

Lecture 14: Quadrature

Lecture 14: Quadrature Lecture 14: Qudrture This lecture is concerned with the evlution of integrls fx)dx 1) over finite intervl [, b] The integrnd fx) is ssumed to be rel-vlues nd smooth The pproximtion of n integrl by numericl

More information

Riemann Sums and Riemann Integrals

Riemann Sums and Riemann Integrals Riemnn Sums nd Riemnn Integrls Jmes K. Peterson Deprtment of Biologicl Sciences nd Deprtment of Mthemticl Sciences Clemson University August 26, 2013 Outline 1 Riemnn Sums 2 Riemnn Integrls 3 Properties

More information

5.1 How do we Measure Distance Traveled given Velocity? Student Notes

5.1 How do we Measure Distance Traveled given Velocity? Student Notes . How do we Mesure Distnce Trveled given Velocity? Student Notes EX ) The tle contins velocities of moving cr in ft/sec for time t in seconds: time (sec) 3 velocity (ft/sec) 3 A) Lel the x-xis & y-xis

More information

Chapter 7 Notes, Stewart 8e. 7.1 Integration by Parts Trigonometric Integrals Evaluating sin m x cos n (x) dx...

Chapter 7 Notes, Stewart 8e. 7.1 Integration by Parts Trigonometric Integrals Evaluating sin m x cos n (x) dx... Contents 7.1 Integrtion by Prts................................... 2 7.2 Trigonometric Integrls.................................. 8 7.2.1 Evluting sin m x cos n (x)......................... 8 7.2.2 Evluting

More information

Sections 5.2: The Definite Integral

Sections 5.2: The Definite Integral Sections 5.2: The Definite Integrl In this section we shll formlize the ides from the lst section to functions in generl. We strt with forml definition.. The Definite Integrl Definition.. Suppose f(x)

More information

Riemann Sums and Riemann Integrals

Riemann Sums and Riemann Integrals Riemnn Sums nd Riemnn Integrls Jmes K. Peterson Deprtment of Biologicl Sciences nd Deprtment of Mthemticl Sciences Clemson University August 26, 203 Outline Riemnn Sums Riemnn Integrls Properties Abstrct

More information

Multiple Integrals. Review of Single Integrals. Planar Area. Volume of Solid of Revolution

Multiple Integrals. Review of Single Integrals. Planar Area. Volume of Solid of Revolution Multiple Integrls eview of Single Integrls eding Trim 7.1 eview Appliction of Integrls: Are 7. eview Appliction of Integrls: Volumes 7.3 eview Appliction of Integrls: Lengths of Curves Assignment web pge

More information

Exam 2, Mathematics 4701, Section ETY6 6:05 pm 7:40 pm, March 31, 2016, IH-1105 Instructor: Attila Máté 1

Exam 2, Mathematics 4701, Section ETY6 6:05 pm 7:40 pm, March 31, 2016, IH-1105 Instructor: Attila Máté 1 Exm, Mthemtics 471, Section ETY6 6:5 pm 7:4 pm, Mrch 1, 16, IH-115 Instructor: Attil Máté 1 17 copies 1. ) Stte the usul sufficient condition for the fixed-point itertion to converge when solving the eqution

More information

Math 8 Winter 2015 Applications of Integration

Math 8 Winter 2015 Applications of Integration Mth 8 Winter 205 Applictions of Integrtion Here re few importnt pplictions of integrtion. The pplictions you my see on n exm in this course include only the Net Chnge Theorem (which is relly just the Fundmentl

More information

Chapter 5. Numerical Integration

Chapter 5. Numerical Integration Chpter 5. Numericl Integrtion These re just summries of the lecture notes, nd few detils re included. Most of wht we include here is to be found in more detil in Anton. 5. Remrk. There re two topics with

More information

1. Extend QR downwards to meet the x-axis at U(6, 0). y

1. Extend QR downwards to meet the x-axis at U(6, 0). y In the digrm, two stright lines re to be drwn through so tht the lines divide the figure OPQRST into pieces of equl re Find the sum of the slopes of the lines R(6, ) S(, ) T(, 0) Determine ll liner functions

More information

Section 4: Integration ECO4112F 2011

Section 4: Integration ECO4112F 2011 Reding: Ching Chpter Section : Integrtion ECOF Note: These notes do not fully cover the mteril in Ching, ut re ment to supplement your reding in Ching. Thus fr the optimistion you hve covered hs een sttic

More information

Chapter 1. Basic Concepts

Chapter 1. Basic Concepts Socrtes Dilecticl Process: The Þrst step is the seprtion of subject into its elements. After this, by deþning nd discovering more bout its prts, one better comprehends the entire subject Socrtes (469-399)

More information

Tangent Line and Tangent Plane Approximations of Definite Integral

Tangent Line and Tangent Plane Approximations of Definite Integral Rose-Hulmn Undergrdute Mthemtics Journl Volume 16 Issue 2 Article 8 Tngent Line nd Tngent Plne Approximtions of Definite Integrl Meghn Peer Sginw Vlley Stte University Follow this nd dditionl works t:

More information

INTRODUCTION TO INTEGRATION

INTRODUCTION TO INTEGRATION INTRODUCTION TO INTEGRATION 5.1 Ares nd Distnces Assume f(x) 0 on the intervl [, b]. Let A be the re under the grph of f(x). b We will obtin n pproximtion of A in the following three steps. STEP 1: Divide

More information

Distance And Velocity

Distance And Velocity Unit #8 - The Integrl Some problems nd solutions selected or dpted from Hughes-Hllett Clculus. Distnce And Velocity. The grph below shows the velocity, v, of n object (in meters/sec). Estimte the totl

More information

NUMERICAL INTEGRATION

NUMERICAL INTEGRATION NUMERICAL INTEGRATION How do we evlute I = f (x) dx By the fundmentl theorem of clculus, if F (x) is n ntiderivtive of f (x), then I = f (x) dx = F (x) b = F (b) F () However, in prctice most integrls

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

5: The Definite Integral

5: The Definite Integral 5: The Definite Integrl 5.: Estimting with Finite Sums Consider moving oject its velocity (meters per second) t ny time (seconds) is given y v t = t+. Cn we use this informtion to determine the distnce

More information

31.2. Numerical Integration. Introduction. Prerequisites. Learning Outcomes

31.2. Numerical Integration. Introduction. Prerequisites. Learning Outcomes Numericl Integrtion 3. Introduction In this Section we will present some methods tht cn be used to pproximte integrls. Attention will be pid to how we ensure tht such pproximtions cn be gurnteed to be

More information

Math 1431 Section M TH 4:00 PM 6:00 PM Susan Wheeler Office Hours: Wed 6:00 7:00 PM Online ***NOTE LABS ARE MON AND WED

Math 1431 Section M TH 4:00 PM 6:00 PM Susan Wheeler Office Hours: Wed 6:00 7:00 PM Online ***NOTE LABS ARE MON AND WED Mth 43 Section 4839 M TH 4: PM 6: PM Susn Wheeler swheeler@mth.uh.edu Office Hours: Wed 6: 7: PM Online ***NOTE LABS ARE MON AND WED t :3 PM to 3: pm ONLINE Approimting the re under curve given the type

More information

Integration Techniques

Integration Techniques Integrtion Techniques. Integrtion of Trigonometric Functions Exmple. Evlute cos x. Recll tht cos x = cos x. Hence, cos x Exmple. Evlute = ( + cos x) = (x + sin x) + C = x + 4 sin x + C. cos 3 x. Let u

More information

Riemann is the Mann! (But Lebesgue may besgue to differ.)

Riemann is the Mann! (But Lebesgue may besgue to differ.) Riemnn is the Mnn! (But Lebesgue my besgue to differ.) Leo Livshits My 2, 2008 1 For finite intervls in R We hve seen in clss tht every continuous function f : [, b] R hs the property tht for every ɛ >

More information

x ) dx dx x sec x over the interval (, ).

x ) dx dx x sec x over the interval (, ). Curve on 6 For -, () Evlute the integrl, n (b) check your nswer by ifferentiting. ( ). ( ). ( ).. 6. sin cos 7. sec csccot 8. sec (sec tn ) 9. sin csc. Evlute the integrl sin by multiplying the numertor

More information

Fundamental Theorem of Calculus

Fundamental Theorem of Calculus Fundmentl Theorem of Clculus Recll tht if f is nonnegtive nd continuous on [, ], then the re under its grph etween nd is the definite integrl A= f() d Now, for in the intervl [, ], let A() e the re under

More information

1 The fundamental theorems of calculus.

1 The fundamental theorems of calculus. The fundmentl theorems of clculus. The fundmentl theorems of clculus. Evluting definite integrls. The indefinite integrl- new nme for nti-derivtive. Differentiting integrls. Tody we provide the connection

More information

Math 1B, lecture 4: Error bounds for numerical methods

Math 1B, lecture 4: Error bounds for numerical methods Mth B, lecture 4: Error bounds for numericl methods Nthn Pflueger 4 September 0 Introduction The five numericl methods descried in the previous lecture ll operte by the sme principle: they pproximte the

More information

The Riemann Integral

The Riemann Integral Deprtment of Mthemtics King Sud University 2017-2018 Tble of contents 1 Anti-derivtive Function nd Indefinite Integrls 2 3 4 5 Indefinite Integrls & Anti-derivtive Function Definition Let f : I R be function

More information

Review Problem for Midterm #1

Review Problem for Midterm #1 Review Problem for Midterm # Midterm I: - :5.m Fridy (Sep. ), Topics: 5.8 nd 6.-6. Office Hours before the midterm I: W - pm (Sep 8), Th -5 pm (Sep 9) t UH 8B Solution to quiz cn be found t http://mth.utoledo.edu/

More information

5.2 Volumes: Disks and Washers

5.2 Volumes: Disks and Washers 4 pplictions of definite integrls 5. Volumes: Disks nd Wshers In the previous section, we computed volumes of solids for which we could determine the re of cross-section or slice. In this section, we restrict

More information

f(x) dx, If one of these two conditions is not met, we call the integral improper. Our usual definition for the value for the definite integral

f(x) dx, If one of these two conditions is not met, we call the integral improper. Our usual definition for the value for the definite integral Improper Integrls Every time tht we hve evluted definite integrl such s f(x) dx, we hve mde two implicit ssumptions bout the integrl:. The intervl [, b] is finite, nd. f(x) is continuous on [, b]. If one

More information

METHODS OF APPROXIMATING THE RIEMANN INTEGRALS AND APPLICATIONS

METHODS OF APPROXIMATING THE RIEMANN INTEGRALS AND APPLICATIONS Journl of Young Scientist Volume III 5 ISSN 44-8; ISSN CD-ROM 44-9; ISSN Online 44-5; ISSN-L 44 8 METHODS OF APPROXIMATING THE RIEMANN INTEGRALS AND APPLICATIONS An ALEXANDRU Scientific Coordintor: Assist

More information

MATH 144: Business Calculus Final Review

MATH 144: Business Calculus Final Review MATH 144: Business Clculus Finl Review 1 Skills 1. Clculte severl limits. 2. Find verticl nd horizontl symptotes for given rtionl function. 3. Clculte derivtive by definition. 4. Clculte severl derivtives

More information

A-Level Mathematics Transition Task (compulsory for all maths students and all further maths student)

A-Level Mathematics Transition Task (compulsory for all maths students and all further maths student) A-Level Mthemtics Trnsition Tsk (compulsory for ll mths students nd ll further mths student) Due: st Lesson of the yer. Length: - hours work (depending on prior knowledge) This trnsition tsk provides revision

More information

Math 113 Exam 2 Practice

Math 113 Exam 2 Practice Mth Em Prctice Februry, 8 Em will cover sections 6.5, 7.-7.5 nd 7.8. This sheet hs three sections. The first section will remind you bout techniques nd formuls tht you should know. The second gives number

More information

Improper Integrals. Type I Improper Integrals How do we evaluate an integral such as

Improper Integrals. Type I Improper Integrals How do we evaluate an integral such as Improper Integrls Two different types of integrls cn qulify s improper. The first type of improper integrl (which we will refer to s Type I) involves evluting n integrl over n infinite region. In the grph

More information

Integration. 148 Chapter 7 Integration

Integration. 148 Chapter 7 Integration 48 Chpter 7 Integrtion 7 Integrtion t ech, by supposing tht during ech tenth of second the object is going t constnt speed Since the object initilly hs speed, we gin suppose it mintins this speed, but

More information

Chapters 4 & 5 Integrals & Applications

Chapters 4 & 5 Integrals & Applications Contents Chpters 4 & 5 Integrls & Applictions Motivtion to Chpters 4 & 5 2 Chpter 4 3 Ares nd Distnces 3. VIDEO - Ares Under Functions............................................ 3.2 VIDEO - Applictions

More information

CMDA 4604: Intermediate Topics in Mathematical Modeling Lecture 19: Interpolation and Quadrature

CMDA 4604: Intermediate Topics in Mathematical Modeling Lecture 19: Interpolation and Quadrature CMDA 4604: Intermedite Topics in Mthemticl Modeling Lecture 19: Interpoltion nd Qudrture In this lecture we mke brief diversion into the res of interpoltion nd qudrture. Given function f C[, b], we sy

More information

a < a+ x < a+2 x < < a+n x = b, n A i n f(x i ) x. i=1 i=1

a < a+ x < a+2 x < < a+n x = b, n A i n f(x i ) x. i=1 i=1 Mth 33 Volume Stewrt 5.2 Geometry of integrls. In this section, we will lern how to compute volumes using integrls defined by slice nlysis. First, we recll from Clculus I how to compute res. Given the

More information

III. Lecture on Numerical Integration. File faclib/dattab/lecture-notes/numerical-inter03.tex /by EC, 3/14/2008 at 15:11, version 9

III. Lecture on Numerical Integration. File faclib/dattab/lecture-notes/numerical-inter03.tex /by EC, 3/14/2008 at 15:11, version 9 III Lecture on Numericl Integrtion File fclib/dttb/lecture-notes/numerical-inter03.tex /by EC, 3/14/008 t 15:11, version 9 1 Sttement of the Numericl Integrtion Problem In this lecture we consider the

More information

M344 - ADVANCED ENGINEERING MATHEMATICS

M344 - ADVANCED ENGINEERING MATHEMATICS M3 - ADVANCED ENGINEERING MATHEMATICS Lecture 18: Lplce s Eqution, Anltic nd Numericl Solution Our emple of n elliptic prtil differentil eqution is Lplce s eqution, lso clled the Diffusion Eqution. If

More information

LINEAR ALGEBRA APPLIED

LINEAR ALGEBRA APPLIED 5.5 Applictions of Inner Product Spces 5.5 Applictions of Inner Product Spces 7 Find the cross product of two vectors in R. Find the liner or qudrtic lest squres pproimtion of function. Find the nth-order

More information

2 b. , a. area is S= 2π xds. Again, understand where these formulas came from (pages ).

2 b. , a. area is S= 2π xds. Again, understand where these formulas came from (pages ). AP Clculus BC Review Chpter 8 Prt nd Chpter 9 Things to Know nd Be Ale to Do Know everything from the first prt of Chpter 8 Given n integrnd figure out how to ntidifferentite it using ny of the following

More information

Calculus Module C21. Areas by Integration. Copyright This publication The Northern Alberta Institute of Technology All Rights Reserved.

Calculus Module C21. Areas by Integration. Copyright This publication The Northern Alberta Institute of Technology All Rights Reserved. Clculus Module C Ares Integrtion Copright This puliction The Northern Alert Institute of Technolog 7. All Rights Reserved. LAST REVISED Mrch, 9 Introduction to Ares Integrtion Sttement of Prerequisite

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER /2019

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER /2019 ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS MATH00030 SEMESTER 208/209 DR. ANTHONY BROWN 7.. Introduction to Integrtion. 7. Integrl Clculus As ws the cse with the chpter on differentil

More information

NUMERICAL INTEGRATION. The inverse process to differentiation in calculus is integration. Mathematically, integration is represented by.

NUMERICAL INTEGRATION. The inverse process to differentiation in calculus is integration. Mathematically, integration is represented by. NUMERICAL INTEGRATION 1 Introduction The inverse process to differentition in clculus is integrtion. Mthemticlly, integrtion is represented by f(x) dx which stnds for the integrl of the function f(x) with

More information

Math 113 Exam 1-Review

Math 113 Exam 1-Review Mth 113 Exm 1-Review September 26, 2016 Exm 1 covers 6.1-7.3 in the textbook. It is dvisble to lso review the mteril from 5.3 nd 5.5 s this will be helpful in solving some of the problems. 6.1 Are Between

More information

Review of basic calculus

Review of basic calculus Review of bsic clculus This brief review reclls some of the most importnt concepts, definitions, nd theorems from bsic clculus. It is not intended to tech bsic clculus from scrtch. If ny of the items below

More information

APPLICATIONS OF THE DEFINITE INTEGRAL

APPLICATIONS OF THE DEFINITE INTEGRAL APPLICATIONS OF THE DEFINITE INTEGRAL. Volume: Slicing, disks nd wshers.. Volumes by Slicing. Suppose solid object hs boundries extending from x =, to x = b, nd tht its cross-section in plne pssing through

More information

Review of Calculus, cont d

Review of Calculus, cont d Jim Lmbers MAT 460 Fll Semester 2009-10 Lecture 3 Notes These notes correspond to Section 1.1 in the text. Review of Clculus, cont d Riemnn Sums nd the Definite Integrl There re mny cses in which some

More information

Calculus AB. For a function f(x), the derivative would be f '(

Calculus AB. For a function f(x), the derivative would be f '( lculus AB Derivtive Formuls Derivtive Nottion: For function f(), the derivtive would e f '( ) Leiniz's Nottion: For the derivtive of y in terms of, we write d For the second derivtive using Leiniz's Nottion:

More information

approaches as n becomes larger and larger. Since e > 1, the graph of the natural exponential function is as below

approaches as n becomes larger and larger. Since e > 1, the graph of the natural exponential function is as below . Eponentil nd rithmic functions.1 Eponentil Functions A function of the form f() =, > 0, 1 is clled n eponentil function. Its domin is the set of ll rel f ( 1) numbers. For n eponentil function f we hve.

More information

38 Riemann sums and existence of the definite integral.

38 Riemann sums and existence of the definite integral. 38 Riemnn sums nd existence of the definite integrl. In the clcultion of the re of the region X bounded by the grph of g(x) = x 2, the x-xis nd 0 x b, two sums ppered: ( n (k 1) 2) b 3 n 3 re(x) ( n These

More information

The Fundamental Theorem of Calculus. The Total Change Theorem and the Area Under a Curve.

The Fundamental Theorem of Calculus. The Total Change Theorem and the Area Under a Curve. Clculus Li Vs The Fundmentl Theorem of Clculus. The Totl Chnge Theorem nd the Are Under Curve. Recll the following fct from Clculus course. If continuous function f(x) represents the rte of chnge of F

More information

MA Lesson 21 Notes

MA Lesson 21 Notes MA 000 Lesson 1 Notes ( 5) How would person solve n eqution with vrible in n eponent, such s 9? (We cnnot re-write this eqution esil with the sme bse.) A nottion ws developed so tht equtions such s this

More information

We partition C into n small arcs by forming a partition of [a, b] by picking s i as follows: a = s 0 < s 1 < < s n = b.

We partition C into n small arcs by forming a partition of [a, b] by picking s i as follows: a = s 0 < s 1 < < s n = b. Mth 255 - Vector lculus II Notes 4.2 Pth nd Line Integrls We begin with discussion of pth integrls (the book clls them sclr line integrls). We will do this for function of two vribles, but these ides cn

More information

First Semester Review Calculus BC

First Semester Review Calculus BC First Semester Review lculus. Wht is the coordinte of the point of inflection on the grph of Multiple hoice: No lcultor y 3 3 5 4? 5 0 0 3 5 0. The grph of piecewise-liner function f, for 4, is shown below.

More information

Chapter 0. What is the Lebesgue integral about?

Chapter 0. What is the Lebesgue integral about? Chpter 0. Wht is the Lebesgue integrl bout? The pln is to hve tutoril sheet ech week, most often on Fridy, (to be done during the clss) where you will try to get used to the ides introduced in the previous

More information

4.4 Areas, Integrals and Antiderivatives

4.4 Areas, Integrals and Antiderivatives . res, integrls nd ntiderivtives 333. Ares, Integrls nd Antiderivtives This section explores properties of functions defined s res nd exmines some connections mong res, integrls nd ntiderivtives. In order

More information

Unit 1 Exponentials and Logarithms

Unit 1 Exponentials and Logarithms HARTFIELD PRECALCULUS UNIT 1 NOTES PAGE 1 Unit 1 Eponentils nd Logrithms (2) Eponentil Functions (3) The number e (4) Logrithms (5) Specil Logrithms (7) Chnge of Bse Formul (8) Logrithmic Functions (10)

More information

different methods (left endpoint, right endpoint, midpoint, trapezoid, Simpson s).

different methods (left endpoint, right endpoint, midpoint, trapezoid, Simpson s). Mth 1A with Professor Stnkov Worksheet, Discussion #41; Wednesdy, 12/6/217 GSI nme: Roy Zho Problems 1. Write the integrl 3 dx s limit of Riemnn sums. Write it using 2 intervls using the 1 x different

More information

Week 10: Riemann integral and its properties

Week 10: Riemann integral and its properties Clculus nd Liner Algebr for Biomedicl Engineering Week 10: Riemnn integrl nd its properties H. Führ, Lehrstuhl A für Mthemtik, RWTH Achen, WS 07 Motivtion: Computing flow from flow rtes 1 We observe the

More information

AB Calculus Review Sheet

AB Calculus Review Sheet AB Clculus Review Sheet Legend: A Preclculus, B Limits, C Differentil Clculus, D Applictions of Differentil Clculus, E Integrl Clculus, F Applictions of Integrl Clculus, G Prticle Motion nd Rtes This is

More information

x = b a n x 2 e x dx. cdx = c(b a), where c is any constant. a b

x = b a n x 2 e x dx. cdx = c(b a), where c is any constant. a b CHAPTER 5. INTEGRALS 61 where nd x = b n x i = 1 (x i 1 + x i ) = midpoint of [x i 1, x i ]. Problem 168 (Exercise 1, pge 377). Use the Midpoint Rule with the n = 4 to pproximte 5 1 x e x dx. Some quick

More information

1 Error Analysis of Simple Rules for Numerical Integration

1 Error Analysis of Simple Rules for Numerical Integration cs41: introduction to numericl nlysis 11/16/10 Lecture 19: Numericl Integrtion II Instructor: Professor Amos Ron Scries: Mrk Cowlishw, Nthnel Fillmore 1 Error Anlysis of Simple Rules for Numericl Integrtion

More information

( ) as a fraction. Determine location of the highest

( ) as a fraction. Determine location of the highest AB Clculus Exm Review Sheet - Solutions A. Preclculus Type prolems A1 A2 A3 A4 A5 A6 A7 This is wht you think of doing Find the zeros of f ( x). Set function equl to 0. Fctor or use qudrtic eqution if

More information