Numerical Integration

Size: px
Start display at page:

Download "Numerical Integration"

Transcription

1 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 or very diicult. some cses it my ot e possile to itegrte uctio usig lyticl mes. Or it is possily we ever ever see the uctios themselves. We just get dt poits d hve to work rom there. these situtios we c use umericl itegrtio. We will egi y lookig t the Newto-Cotes Numericl tegrtio schemes. This scheme pproimtes deiite itegrl,, rom to, to polyomil uctio. Geerlly, the higher-order the polyomil, the etter the pproimtio o the itegrl will e tegrtio

2 Result o itegrtio is ouded y d the is etwee = d = C e pproimted umericlly y dividig the regio ito smll segmets ech o width The re o ech segmet c e pproimted y trpezoid pproimtig ech segmet o the curve y stright lie Trpezoidl Rule 3-7 Roerto Muscedere We will irst look t the trpezoidl rule. The ide ehid this pproch is to id the trpezoidl re etwee the curve d the -is i eve segmets d to sum them up. the width o ech o these segmets is resoly smll compred to the compleity o the curve, we should get good pproimtio tegrtio

3 Trpezoidl Rule Trpezoidl Rule is the irst o the Newto- Cotes closed itegrtio ormuls = is stright lie d d 3-7 Roerto Muscedere 3 We will irst look t how the trpezoidl rule is oud. We pply it i the Newto-Cotes umericl itegrtio scheme with irst-order polyomil. A irst-order polyomil is simply lie. So sed o the iormtio o our curve, we c crete lie segmet tht will itersect the curve t poits d. This uctio o the lie,, hs the orm o y=m+. We c see the slope, m, is the dierece i the y poits o d divided y the poits o d. We c lso see the y itercept,, is set to tegrtio 3

4 tegrtio Roerto Muscedere Trpezoidl Rule Trpezoidl Rule The re uder this stright lie is estimte o the itegrl o etwee the limits o d d we plced this lie equtio ito the itegrl d perorm itegrtio d some lger, we id the re uder the curve.

5 tegrtio Roerto Muscedere Trpezoidl Rule Trpezoidl Rule Sme result i we clculted trpezoid grphiclly We could lso do the sme process grphiclly. we clculte the re o the trigle o top, - * - /, plus the re o the rectgle o the ottom, - *, d sum them up, we get the sme swer.

6 Trpezoidl Rule: Emple Numericlly itegrte: =, =.8 Alyticl swer = Roerto Muscedere 6 Here is emple. Numericlly itegrte the ove uctio etwee d.8. We c do this lyticlly, d i we do we get swer o out tegrtio 6

7 Trpezoidl Rule: Emple Sigiict dierece rom lyticl solutio o Roerto Muscedere 7 We use the sigle-segmet trpezoidl rule d oti.78. This is ot very good pproimtio. But why is tht? tegrtio 7

8 Trpezoidl Rule: Emple Why so d? 3-7 Roerto Muscedere 8 Bsiclly this is wht is hppeig. We re oly clcultig very rough trpezoid sed o the curve d the limits o the itegrl. the limits re chose to e t low poits while there re high poits i etwee, we will get poor pproimtios. The solutio to this is to use multiple segmets with the trpezoidl rule tegrtio 8

9 tegrtio Roerto Muscedere Trpezoidl Rule Trpezoidl Rule Add series o itervls d d d h We do this y epdig our origil itegrl to iclude multiple segmets. We replce d with d s we c hve more s ow.

10 tegrtio 3-7 Roerto Muscedere Trpezoidl Rule Trpezoidl Rule Sustitutig the trpezoidl rule or ech itegrl yields: h h h we sustitute i our sigle segmet trpezoidl rule, we oti the ove pproimtio. This c e geerlized though.

11 tegrtio 3-7 Roerto Muscedere Trpezoidl Rule Trpezoidl Rule Groupig the terms: i i i i h we group the terms together, we c come up with etter uctio.

12 Trpezoidl Rule: Emple Numericlly itegrte: =, =.8, = Alyticl swer = Roerto Muscedere Lets try tht emple gi, this time usig segmets tegrtio

13 Trpezoidl Rule: Emple Sigiictly etter th with oe segmet o the trpezoidl rule Roerto Muscedere 3 Our pproimtio is much etter ow. t still is t tht gret, ut it is cosiderly etter th with oe segmet. We c chieve etter pproimtio usig lrger tegrtio 3

14 tegrtio Code p. clss tegrtio { privte: doule, ; // limits o itegrtio doule *doule ; //uctio to e itegrted pulic: tegrtiodoule *Fdoule, doule, doule { =F; =; =;} doule Trpezoidlit ; }; 3-7 Roerto Muscedere 4 t is ovious tht we will hve to perorm lot o clcultios to oti good umericl pproimtio o itegrl. So we should write some code to do this. Agi to mke our code simpler we will use uctio to crete our dt poits. We cll our clss tegrtio. t hs some privte memers,,, d poiter to uctio. We hve costructor which tkes ll the pssed vlues, the uctio,, d d stores them i to the privte memers. We lso declre the Trpezoidl uctio to clculte the re uder the curve tegrtio 4

15 tegrtio Code p. doule tegrtio::trpezoidlit { doule h=-/; doule sum=.; doule =; doule ; orit i=; i<=-; i++ { +=h; sum+=; } =++.*sum*h/.; } retur ; 3-7 Roerto Muscedere 5 The Trpezoidl uctio is reltively smll. We irst clculte h sed o, d. We set the sum o the summtio prt o the uctio to zero. We will e usig loop to id the sum o the elemets through -. Our iitil is set to. We ow go though ech elemet, ut strtig t d goig to -. Our loop irst dds h to so tht our correspods to the proper i. We the dd the result o the uctio with rgumets to the sum. We do this util elemet -. We the use the sum log with the vlues o d to id the re uder the curve. We retur this vlue tegrtio 5

16 Trpezoidl Emple - Code doule FUNdoule // User supplied uctio { retur. + 5* - ** + 675*** - 9**** + 4*****; } it mi { tegrtio FUN,,.8; it i; ori=;i<=6;i++ cout << "=" << i << ", =" <<.Trpezoidli << edl; } retur ; 3-7 Roerto Muscedere 6 We declre our uctio, the sme s the emples eore, ut you c chge this or y uctio. Our mi code is simple. We crete the oject rom the clss tegrtio d pss the uctio to it d the limits d.8 log with 8 segmets. We the output the result o the Trpezoidl pproimtio or chgig rom to tegrtio 6

17 Trpezoidl Emple - Output =, =.78 =, =.688 =3, = =4, =.4848 =5, = =6, =.577 =7, = =8, =.68 =9, =.699 =, =.654 =, =.6945 =, =.68 =3, =.654 =4, =.675 =5, =.698 =6, = Roerto Muscedere 7 The result, or 8 segmets, is.68. we use 6 segmets, the result is We c see tht usig doule the segmets hs oly give us little it more ccurcy tegrtio 7

18 Simpso s s /3 Rule Simpso s Rule is the secod o the Newto- Cotes closed itegrtio ormuls = usig Lgrge terpoltig Polyomils d i i j ji d i j j 3-7 Roerto Muscedere 8 We c improve our umericl itegrtio methods y usig d order polyomil. This method is kow s the Simpso s /3 rule. The reso it is clled /3 will ecome ppret soo. this cse, we will use Lgrge terpoltig polyomil. The uctio is show ove, ut or =, the result is ot too comple tegrtio 8

19 tegrtio Roerto Muscedere Simpso Simpso s /3 Rule s /3 Rule Ater itegrtio d lgeric mipultio: 4 3 h h we epd out the uctio or =, we get the ove epressio. Ater itegrtio d lgeric mipultio we c sigiictly reduce the uctio. We c ow see where the /3 cme rom s it is the ctor pplied to h.

20 Trpezoidl Rule: Emple Wht does this represet? 3-7 Roerto Muscedere This uctio represets the re etwee two poits, ut y usig curve, ot stright lie s i the Trpezoidl rule. For this grphicl depictio, we c see tht our pproimtio is greter th the uctio give, s the uctio my e hve cosiderly higher order. y cse, this is deiitely etter th usig stright lie tegrtio

21 Simpso s s /3 Rule: Emple Numericlly itegrte: =, =.8 Alyticl swer = Roerto Muscedere We will try the sme emple s eore, ut usig the Simpso s /3 rule tegrtio

22 Simpso s s /3 Rule: Emple Better th with Trpezoidl Rule with two segmets Roerto Muscedere heretly will e whe usig the Simpso s /3 rule. We oti re o.367 which is much etter th the Trpezoidl rule.688 usig =. We c see the pproimtio is etter, ut with ew more clcultios tegrtio

23 Simpso s s /3 Rule Add series o itervls d h 4 d d 3-7 Roerto Muscedere 3 We c improve the Simpso s /3 rule y pplyig it to multi segmets o the uctio. We do this y rekig the itegrl up ito multiple segmets tegrtio 3

24 tegrtio Roerto Muscedere Simpso Simpso s /3 Rule s /3 Rule Sustitutig Simpso s /3 rule or ech itegrl yields: h h h We c ow sustitute i the sigle-segmet Simpso s /3 rule to oti the ove uctio.

25 tegrtio Roerto Muscedere Simpso Simpso s /3 Rule s /3 Rule Groupig the terms: must e eve,4,6,3,5 4 3 j j i i we group the terms, we get simpler uctio. There re two seprte summtios i this uctio. Oe or the odd i s d oe or the eve i s. This uctio is roke up ito two lies so it c e see etter. This is ot mtri.

26 Simpso s s /3 Rule: Emple Numericlly itegrte: =, =.8, = 4 Alyticl swer = Roerto Muscedere 6 Lets try the sme emple gi, this time with = tegrtio 6

27 Simpso s s /3 Rule: Emple Better th with Trpezoidl Rule with eight segmets Roerto Muscedere 7 Pluggig i ll the umers we c see the pproimtio is etter the the trpezoidl rule with =8. ct this Simpso s /3 rule pproimtio is slightly worse th the Trpezoidl with = tegrtio 7

28 tegrtio Code p. clss tegrtio { privte: doule, ; // limits o itegrtio doule *doule ; //uctio to e itegrted pulic: tegrtiodoule *Fdoule, doule, doule { =F; =; =;} doule Trpezoidlit ; doule Simpsos3it ; }; 3-7 Roerto Muscedere 8 We c eted our tegrtio clss to iclude the Simpso s /3 rule. We do this y ddig ew uctio Simpsos tegrtio 8

29 tegrtio Code p.3 doule tegrtio::simpsos3it { doule h=-/; doule sum=.; doule =; doule ; orit i=; i<; i++ { +=h; i i% sum+=4*; else sum+=*; } =++sum*h/3.; } retur ; 3-7 Roerto Muscedere 9 For the Simpso s /3 rule, we slightly modiy the Trpezoidl uctio. For Simpso s we eed to sum the odd d eve i s seprtely. our loop we check to see i i modulo is ot zero, i so, is odd d we dd *4 to the sum. it is eve, we dd * to the sum. Our clcultio o is tht o Simpso s /3 rule. The uctios re ot very dieret rom ech other tegrtio 9

30 Simpso s s /3 Emple - Code doule FUNdoule // User supplied uctio { retur. + 5* - ** + 675*** - 9**** + 4*****; } it mi { tegrtio FUN,,.8; it i; ori=;i<=6;i+= cout << "=" << i << ", trp=" <<.Trpezoidli << ", simp=" <<.Simpsos3i << edl; } retur ; 3-7 Roerto Muscedere 3 We hve the sme uctio s eore, just s our erlier emples. The mi code hs ee eteded to clculte the re usig oth the Trpezoidl rule d Simpso s /3 rule or oly eve vlues o tegrtio 3

31 Simpso s s /3 Emple - Output =, trp=.688, simp= =4, trp=.4848, simp=.6347 =6, trp=.577, simp=.6376 =8, trp=.68, simp= =, trp=.654, simp=.64 =, trp=.68, simp=.643 =4, trp=.675, simp=.644 =6, trp=.6355, simp= Roerto Muscedere 3 We c see the results or = to 6. Oviously the Simpso s /3 rule otis etter pproimtio with lesser clcultios, however, it sometimes otis poor clcultios do to the ct it is pproimtig secod order segmets tegrtio 3

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

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

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

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

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

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

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

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

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

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

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

Numerical Solutions of Fredholm Integral Equations Using Bernstein Polynomials

Numerical Solutions of Fredholm Integral Equations Using Bernstein Polynomials Numericl Solutios of Fredholm Itegrl Equtios Usig erstei Polyomils A. Shiri, M. S. Islm Istitute of Nturl Scieces, Uited Itertiol Uiversity, Dhk-, gldesh Deprtmet of Mthemtics, Uiversity of Dhk, Dhk-,

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

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

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

Topic 4 Fourier Series. Today

Topic 4 Fourier Series. Today Topic 4 Fourier Series Toy Wves with repetig uctios Sigl geertor Clssicl guitr Pio Ech istrumet is plyig sigle ote mile C 6Hz) st hrmoic hrmoic 3 r hrmoic 4 th hrmoic 6Hz 5Hz 783Hz 44Hz A sigle ote will

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

 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

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

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

Homework 3 solutions

Homework 3 solutions 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 2.2 3. For ech uctio, id itervl [,] so tht d hve dieret sigs. x = e x 2 x -3

More information

INTEGRATION TECHNIQUES (TRIG, LOG, EXP FUNCTIONS)

INTEGRATION TECHNIQUES (TRIG, LOG, EXP FUNCTIONS) Mthemtics Revisio Guides Itegrtig Trig, Log d Ep Fuctios Pge of MK HOME TUITION Mthemtics Revisio Guides Level: AS / A Level AQA : C Edecel: C OCR: C OCR MEI: C INTEGRATION TECHNIQUES (TRIG, LOG, EXP FUNCTIONS)

More information

Math1242 Project I (TI 84) Name:

Math1242 Project I (TI 84) Name: Mth4 Project I (TI 84) Nme: Riem Sums d Defiite Itegrls The re uder the grph of positive fuctio is give y the defiite itegrl of the fuctio. The defiite itegrl c e pproimted y the followig sums: Left Riem

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

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

1 Section 8.1: Sequences. 2 Section 8.2: Innite Series. 1.1 Limit Rules. 1.2 Common Sequence Limits. 2.1 Denition. 2.

1 Section 8.1: Sequences. 2 Section 8.2: Innite Series. 1.1 Limit Rules. 1.2 Common Sequence Limits. 2.1 Denition. 2. Clculus II d Alytic Geometry Sectio 8.: Sequeces. Limit Rules Give coverget sequeces f g; fb g with lim = A; lim b = B. Sum Rule: lim( + b ) = A + B, Dierece Rule: lim( b ) = A B, roduct Rule: lim b =

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

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

the midpoint of the ith subinterval, and n is even for

the midpoint of the ith subinterval, and n is even for Mth4 Project I (TI 89) Nme: Riem Sums d Defiite Itegrls The re uder the grph of positive fuctio is give y the defiite itegrl of the fuctio. The defiite itegrl c e pproimted y the followig sums: Left Riem

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

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

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

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

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

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

The total number of permutations of S is n!. We denote the set of all permutations of S by

The total number of permutations of S is n!. We denote the set of all permutations of S by DETERMINNTS. DEFINITIONS Def: Let S {,,, } e the set of itegers from to, rrged i scedig order. rerrgemet jjj j of the elemets of S is clled permuttio of S. S. The totl umer of permuttios of S is!. We deote

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

Fourier Series. Topic 4 Fourier Series. sin. sin. Fourier Series. Fourier Series. Fourier Series. sin. b n. a n. sin

Fourier Series. Topic 4 Fourier Series. sin. sin. Fourier Series. Fourier Series. Fourier Series. sin. b n. a n. sin Topic Fourier Series si Fourier Series Music is more th just pitch mplitue it s lso out timre. The richess o sou or ote prouce y musicl istrumet is escrie i terms o sum o umer o istict requecies clle hrmoics.

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

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

INTEGRATION IN THEORY

INTEGRATION IN THEORY CHATER 5 INTEGRATION IN THEORY 5.1 AREA AROXIMATION 5.1.1 SUMMATION NOTATION Fibocci Sequece First, exmple of fmous sequece of umbers. This is commoly ttributed to the mthemtici Fibocci of is, lthough

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

Project 3: Using Identities to Rewrite Expressions

Project 3: Using Identities to Rewrite Expressions MAT 5 Projet 3: Usig Idetities to Rewrite Expressios Wldis I lger, equtios tht desrie properties or ptters re ofte lled idetities. Idetities desrie expressio e repled with equl or equivlet expressio tht

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

MAT641- Numerical Analysis (Master course) D. Samy MZIOU

MAT641- Numerical Analysis (Master course) D. Samy MZIOU Syllbus: MAT64- Numericl Alysis Mster course - - - D. Smy MZIOU Review: Clculus lier Algebr Numericl Alysis MATLAB sotwre will be used itesively i this course There will be regulr homewor ssigmets, usully

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

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

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

SOLUTION OF SYSTEM OF LINEAR EQUATIONS. Lecture 4: (a) Jacobi's method. method (general). (b) Gauss Seidel method.

SOLUTION OF SYSTEM OF LINEAR EQUATIONS. Lecture 4: (a) Jacobi's method. method (general). (b) Gauss Seidel method. SOLUTION OF SYSTEM OF LINEAR EQUATIONS Lecture 4: () Jcobi's method. method (geerl). (b) Guss Seidel method. Jcobi s Method: Crl Gustv Jcob Jcobi (804-85) gve idirect method for fidig the solutio of system

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

* power rule: * fraction raised to negative exponent: * expanded power rule:

* power rule: * fraction raised to negative exponent: * expanded power rule: Mth 15 Iteredite Alger Stud Guide for E 3 (Chpters 7, 8, d 9) You use 3 5 ote crd (oth sides) d scietific clcultor. You re epected to kow (or hve writte o our ote crd) foruls ou eed. Thik out rules d procedures

More information

Section IV.6: The Master Method and Applications

Section IV.6: The Master Method and Applications Sectio IV.6: The Mster Method d Applictios Defiitio IV.6.1: A fuctio f is symptoticlly positive if d oly if there exists rel umer such tht f(x) > for ll x >. A cosequece of this defiitio is tht fuctio

More information

5.3. The Definite Integral. Limits of Riemann Sums

5.3. The Definite Integral. Limits of Riemann Sums . The Defiite Itegrl 4. The Defiite Itegrl I Sectio. we ivestigted the limit of fiite sum for fuctio defied over closed itervl [, ] usig suitervls of equl width (or legth), s - d>. I this sectio we cosider

More information

Crushed Notes on MATH132: Calculus

Crushed Notes on MATH132: Calculus Mth 13, Fll 011 Siyg Yg s Outlie Crushed Notes o MATH13: Clculus The otes elow re crushed d my ot e ect This is oly my ow cocise overview of the clss mterils The otes I put elow should ot e used to justify

More information

y udv uv y v du 7.1 INTEGRATION BY PARTS

y udv uv y v du 7.1 INTEGRATION BY PARTS 7. INTEGRATION BY PARTS Ever differetitio rule hs correspodig itegrtio rule. For istce, the Substitutio Rule for itegrtio correspods to the Chi Rule for differetitio. The rule tht correspods to the Product

More information

[Q. Booklet Number]

[Q. Booklet Number] 6 [Q. Booklet Numer] KOLKATA WB- B-J J E E - 9 MATHEMATICS QUESTIONS & ANSWERS. If C is the reflecto of A (, ) i -is d B is the reflectio of C i y-is, the AB is As : Hits : A (,); C (, ) ; B (, ) y A (,

More information

Fast Fourier Transform 1) Legendre s Interpolation 2) Vandermonde Matrix 3) Roots of Unity 4) Polynomial Evaluation

Fast Fourier Transform 1) Legendre s Interpolation 2) Vandermonde Matrix 3) Roots of Unity 4) Polynomial Evaluation Algorithm Desig d Alsis Victor Admchi CS 5-45 Sprig 4 Lecture 3 J 7, 4 Cregie Mello Uiversit Outlie Fst Fourier Trsform ) Legedre s Iterpoltio ) Vdermode Mtri 3) Roots of Uit 4) Polomil Evlutio Guss (777

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

Vectors. Vectors in Plane ( 2

Vectors. Vectors in Plane ( 2 Vectors Vectors i Ple ( ) The ide bout vector is to represet directiol force Tht mes tht every vector should hve two compoets directio (directiol slope) d mgitude (the legth) I the ple we preset vector

More information

b a 2 ((g(x))2 (f(x)) 2 dx

b a 2 ((g(x))2 (f(x)) 2 dx Clc II Fll 005 MATH Nme: T3 Istructios: Write swers to problems o seprte pper. You my NOT use clcultors or y electroic devices or otes of y kid. Ech st rred problem is extr credit d ech is worth 5 poits.

More information

REVISION SHEET FP1 (AQA) ALGEBRA. E.g., if 2x

REVISION SHEET FP1 (AQA) ALGEBRA. E.g., if 2x The mi ides re: The reltioships betwee roots d coefficiets i polyomil (qudrtic) equtios Fidig polyomil equtios with roots relted to tht of give oe the Further Mthemtics etwork wwwfmetworkorguk V 7 REVISION

More information

[ 20 ] 1. Inequality exists only between two real numbers (not complex numbers). 2. If a be any real number then one and only one of there hold.

[ 20 ] 1. Inequality exists only between two real numbers (not complex numbers). 2. If a be any real number then one and only one of there hold. [ 0 ]. Iequlity eists oly betwee two rel umbers (ot comple umbers).. If be y rel umber the oe d oly oe of there hold.. If, b 0 the b 0, b 0.. (i) b if b 0 (ii) (iii) (iv) b if b b if either b or b b if

More information

Mathematical Notation Math Calculus for Business and Social Science

Mathematical Notation Math Calculus for Business and Social Science Mthemticl Nottio Mth 190 - Clculus for Busiess d Socil Sciece Use Word or WordPerfect to recrete the followig documets. Ech rticle is worth 10 poits d should e emiled to the istructor t jmes@richld.edu.

More information

Lecture 4 Recursive Algorithm Analysis. Merge Sort Solving Recurrences The Master Theorem

Lecture 4 Recursive Algorithm Analysis. Merge Sort Solving Recurrences The Master Theorem Lecture 4 Recursive Algorithm Alysis Merge Sort Solvig Recurreces The Mster Theorem Merge Sort MergeSortA, left, right) { if left < right) { mid = floorleft + right) / 2); MergeSortA, left, mid); MergeSortA,

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

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

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING Lectures MODULE 0 FURTHER CALCULUS II. Sequeces d series. Rolle s theorem d me vlue theorems 3. Tlor s d Mcluri s theorems 4. L Hopitl

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

lecture 22: Newton Cotes quadrature

lecture 22: Newton Cotes quadrature lecture : Newto Cotes qudrture f () 3. Newto Cotes qudrture You ecoutered the most bsic method for pproimtig itegrl whe you lered clculus: the Riem itegrl is motivted by pproimtig the re uder curve by

More information

FOURIER SERIES PART I: DEFINITIONS AND EXAMPLES. To a 2π-periodic function f(x) we will associate a trigonometric series. a n cos(nx) + b n sin(nx),

FOURIER SERIES PART I: DEFINITIONS AND EXAMPLES. To a 2π-periodic function f(x) we will associate a trigonometric series. a n cos(nx) + b n sin(nx), FOURIER SERIES PART I: DEFINITIONS AND EXAMPLES To -periodic fuctio f() we will ssocite trigoometric series + cos() + b si(), or i terms of the epoetil e i, series of the form c e i. Z For most of the

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

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

EXPONENTS AND LOGARITHMS

EXPONENTS AND LOGARITHMS 978--07-6- Mthemtis Stdrd Level for IB Diplom Eerpt EXPONENTS AND LOGARITHMS WHAT YOU NEED TO KNOW The rules of epoets: m = m+ m = m ( m ) = m m m = = () = The reltioship etwee epoets d rithms: = g where

More information

We saw in Section 5.1 that a limit of the form. 2 DEFINITION OF A DEFINITE INTEGRAL If f is a function defined for a x b,

We saw in Section 5.1 that a limit of the form. 2 DEFINITION OF A DEFINITE INTEGRAL If f is a function defined for a x b, 3 6 6 CHAPTER 5 INTEGRALS CAS 5. Fid the ect re uder the cosie curve cos from to, where. (Use computer lger sstem oth to evlute the sum d compute the it.) I prticulr, wht is the re if? 6. () Let A e the

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

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.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

Mean Value Theorem for Integrals If f(x) is a continuous function on [a,b] then there

Mean Value Theorem for Integrals If f(x) is a continuous function on [a,b] then there Itegrtio, Prt 5: The Me Vlue Theorem for Itegrls d the Fudmetl Theorem of Clculus, Prt The me vlue theorem for derivtives tells us tht if fuctio f() is sufficietly ice over the itervl [,] the t some poit

More information

Add Maths Formulae List: Form 4 (Update 18/9/08)

Add Maths Formulae List: Form 4 (Update 18/9/08) Add Mths Formule List: Form 4 (Updte 8/9/08) 0 Fuctios Asolute Vlue Fuctio f ( ) f( ), if f( ) 0 f( ), if f( ) < 0 Iverse Fuctio If y f( ), the Rememer: Oject the vlue of Imge the vlue of y or f() f()

More information

(1) Functions A relationship between two variables that assigns to each element in the domain exactly one element in the range.

(1) Functions A relationship between two variables that assigns to each element in the domain exactly one element in the range. -. ALGEBRA () Fuctios A reltioship etwee two vriles tht ssigs to ech elemet i the domi ectly oe elemet i the rge. () Fctorig Aother ottio for fuctio of is f e.g. Domi: The domi of fuctio Rge: The rge of

More information

moment = m! x, where x is the length of the moment arm.

moment = m! x, where x is the length of the moment arm. th 1206 Clculus Sec. 6.7: omets d Ceters of ss I. Fiite sses A. Oe Dimesiol Cses 1. Itroductio Recll the differece etwee ss d Weight.. ss is the mout of "stuff" (mtter) tht mkes up oject.. Weight is mesure

More information

z line a) Draw the single phase equivalent circuit. b) Calculate I BC.

z line a) Draw the single phase equivalent circuit. b) Calculate I BC. ECE 2260 F 08 HW 7 prob 4 solutio EX: V gyb' b' b B V gyc' c' c C = 101 0 V = 1 + j0.2 Ω V gyb' = 101 120 V = 6 + j0. Ω V gyc' = 101 +120 V z LΔ = 9 j1.5 Ω ) Drw the sigle phse equivlet circuit. b) Clculte

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

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

lecture 16: Introduction to Least Squares Approximation

lecture 16: Introduction to Least Squares Approximation 97 lecture 16: Itroductio to Lest Squres Approximtio.4 Lest squres pproximtio The miimx criterio is ituitive objective for pproximtig fuctio. However, i my cses it is more ppelig (for both computtio d

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

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

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

THE NATIONAL UNIVERSITY OF IRELAND, CORK COLÁISTE NA hollscoile, CORCAIGH UNIVERSITY COLLEGE, CORK SUMMER EXAMINATION 2005 FIRST ENGINEERING

THE NATIONAL UNIVERSITY OF IRELAND, CORK COLÁISTE NA hollscoile, CORCAIGH UNIVERSITY COLLEGE, CORK SUMMER EXAMINATION 2005 FIRST ENGINEERING OLLSCOIL NA héireann, CORCAIGH THE NATIONAL UNIVERSITY OF IRELAND, CORK COLÁISTE NA hollscoile, CORCAIGH UNIVERSITY COLLEGE, CORK SUMMER EXAMINATION 2005 FIRST ENGINEERING MATHEMATICS MA008 Clculus d Lier

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

(200 terms) equals Let f (x) = 1 + x + x 2 + +x 100 = x101 1

(200 terms) equals Let f (x) = 1 + x + x 2 + +x 100 = x101 1 SECTION 5. PGE 78.. DMS: CLCULUS.... 5. 6. CHPTE 5. Sectio 5. pge 78 i + + + INTEGTION Sums d Sigm Nottio j j + + + + + i + + + + i j i i + + + j j + 5 + + j + + 9 + + 7. 5 + 6 + 7 + 8 + 9 9 i i5 8. +

More information

Review of the Riemann Integral

Review of the Riemann Integral Chpter 1 Review of the Riem Itegrl This chpter provides quick review of the bsic properties of the Riem itegrl. 1.0 Itegrls d Riem Sums Defiitio 1.0.1. Let [, b] be fiite, closed itervl. A prtitio P of

More information

f(x) is a function of x and it is defined on the set R of real numbers. If then f(x) is continuous at x=x 0, where x 0 R.

f(x) is a function of x and it is defined on the set R of real numbers. If then f(x) is continuous at x=x 0, where x 0 R. MATHEMATICAL PRELIMINARIES Limit Cotiuity Coverget squece Series Dieretible uctios Itegrble uctios Summtio deiitio o itegrl Me vlue theorem Me vlue theorem or itegrls Tylor's theorem Computer represettio

More information

UNISA NUMERICAL METHODS (COS 233-8) Solutions to October 2000 Final Exams

UNISA NUMERICAL METHODS (COS 233-8) Solutions to October 2000 Final Exams UNISA NUMERICAL METHODS COS -8 Solutios to October Fil Ems Questio Re: Tble 4. pge 47 o Gerld/Wetley [ d editio] Write dow te itertio scemes or i ii iii te bisectio metod; te metod o lse positio regul

More information

Logarithmic Scales: the most common example of these are ph, sound and earthquake intensity.

Logarithmic Scales: the most common example of these are ph, sound and earthquake intensity. Numercy Itroductio to Logrithms Logrithms re commoly credited to Scottish mthemtici med Joh Npier who costructed tle of vlues tht llowed multiplictios to e performed y dditio of the vlues from the tle.

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

BC Calculus Review Sheet. converges. Use the integral: L 1

BC Calculus Review Sheet. converges. Use the integral: L 1 BC Clculus Review Sheet Whe yu see the wrds.. Fid the re f the uuded regi represeted y the itegrl (smetimes f ( ) clled hriztl imprper itegrl).. Fid the re f differet uuded regi uder f() frm (,], where

More information

Options: Calculus. O C.1 PG #2, 3b, 4, 5ace O C.2 PG.24 #1 O D PG.28 #2, 3, 4, 5, 7 O E PG #1, 3, 4, 5 O F PG.

Options: Calculus. O C.1 PG #2, 3b, 4, 5ace O C.2 PG.24 #1 O D PG.28 #2, 3, 4, 5, 7 O E PG #1, 3, 4, 5 O F PG. O C. PG.-3 #, 3b, 4, 5ce O C. PG.4 # Optios: Clculus O D PG.8 #, 3, 4, 5, 7 O E PG.3-33 #, 3, 4, 5 O F PG.36-37 #, 3 O G. PG.4 #c, 3c O G. PG.43 #, O H PG.49 #, 4, 5, 6, 7, 8, 9, 0 O I. PG.53-54 #5, 8

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