1 Numerical integration

Size: px
Start display at page:

Download "1 Numerical integration"

Transcription

1 1 Numericl integrtion 1.1 Introduction The term numericl integrtion reers to brod mily o lgorithms to compute numericl pproximtion to deinite (Riemnn) integrl. Generlly, the integrl is pproximted by weighted sum o unction vlues within the domin o integrtion, (x)dx w i (x i ). (1) Expression (1) is oten reerred to s qudrture (cubture or multidimensionl integrls) or rule. The bscisss x i (lso clled nodes) nd the weights w i o qudrture re usully optimized using one o lrge number o dierent strtegies to suit prticulr clss o integrtion problems. The best qudrture lgorithm or given problem depends on severl ctors, in prticulr on the integrnd. Dierent clsses o integrnds generlly require dierent qudrtures or the most eective clcultion. A populr numericl integrtion librry is QUADPACK [?]. It includes generl purpose routines like QAGS, bsed on n dptive GussKronrod qudrture with ccelertion s well s number o specilized routines. The GNU scientiic librry [?] (GSL) implements most o the QUADPACK routines nd in ddition includes modern generl-purpose dptive routine CQUAD bsed on Clenshw-Curtis qudrtures [?]. In the ollowing we shll consider some o the populr numericl integrtion lgorithms. 1. Rectngle nd trpezium rules In mthemtics, the Reimnn integrl is generlly deined in terms o Riemnn sums [?]. I the integrtion intervl [, b] is prtitioned into n subintervls, = t 0 < t 1 < t < < t n = b. () the Riemnn sum is deined s (x i ) x i, (3) 1

2 where x i [t i 1, t i ] nd x i = t i t i 1. Geometriclly Riemnn sum cn be interpreted s the re o collection o djucent rectngles with widths x i nd heights (x i ). The Riemn integrl is deined s the limit o Riemnn sum s the mesh the length o the lrgest subintervl o the prtition pproches zero. Speciiclly, the number denoted s (x)dx (4) is clled the Riemnn integrl, i or ny ɛ > 0 there exists δ > 0 such tht or ny prtition () with mx x i < δ we hve (x i ) x i (x)dx < ɛ. (5) A deinite integrl cn be interpreted s the net signed re bounded by the grph o the integrnd. Now, the n-point rectngle qudrture is simply the Riemnn sum (3), (x)dx (x i ) x i, (6) where the node x i is oten (but not lwys) tken in the middle o the corresponding subintervl, x i = t i x i, nd the subintervls re oten (but not lwys) chosen equl, x i = (b )/n. Geometriclly the n-point rectngle rule is n pproximtion to the integrl given by the re o collection o n djucent equl rectngles whose heights re determined by the vlues o the unction (t the middle o the rectngle). An n-point trpezium rule uses insted collection o trpezi itted under the grph, (t i 1 ) + (t i ) (x)dx x i. (7) Importntly, the trpezium rule is the verge o two Riemnn sums, (t i 1 ) + (t i ) x i = 1 (t i 1 ) x i + 1 (t i ) x i. (8) Rectngle nd trpezium qudrtures both hve the importnt eture o closely ollowing the very mthemticl deinition o the integrl s the limit

3 o the Riemnn sums. Thereore disregrding the round-o errors these two rules cnnot il i the integrl exists. For certin prtitions o the intervl the rectngle nd trpezium rules coincide. For exmple, or the nodes x i = + (b ) i 1 n, i = 1,..., n (9) both rules give the sme qudrture with equl weights, w i = (b )/n, (x)dx b n ( + (b ) i 1 ). (10) n Rectngle nd trpezium qudrtures re rrely used on their own becuse o the slow convergence but they oten serve s the bsis or more dvnced qudrtures, or exmple dptive qudrtures nd vrible trnsormtion qudrtures considered below. 1.3 Qudrtures with regulrly spced bscisss A qudrture (1) with n predeined nodes x i hs n ree prmeters: the weights w i. A set o n prmeters cn generlly be tuned to stisy n conditions. The rchetypl set o conditions in qudrtures is tht the qudrture integrtes exctly set o n unctions, This leds to set o n equtions, where the integrls {φ 1 (x),..., φ n (x)}. (11) k=1,...,n w i φ k (x i ) = I k, (1) I k. = φ k (x)dx (13) re ssumed to be known. Equtions (1) re liner in w i nd cn be esily solved. Since integrtion is liner opertion, the qudrture will then lso integrte exctly ny liner combintion o unctions (11). 3

4 A populr choice or predeined nodes is closed set tht is, including the end-points o the intervl o evenly spced bscisss, x i = + i 1 n 1 (b ),...,n. (14) However, in prctice it oten hppens tht the integrnd hs n integrble sinulrity t one or both ends o the intervl. In this cse one cn choose n open set o equidistnt nodes, x i = + i 1 n (b ),...,n. (15) The set o unctions to be integrted exctly is generlly chosen to suite the properties o the integrnds t hnd: the integrnds must be well represented by liner combintions o the chosen unctions Clssicl qudrtures Suppose the integrnd cn be well represented by the irst ew terms o its Tylor series, (k) () (x) = (x ) k, (16) k! k=0 where (k) is the k-th derivtive o the integrnd. This is oten the cse or nlytic tht is, ininitely dierentible unctions. For such integrnds one cn obviously choose polynomils {1, x, x,..., x n 1 } (17) s the set o unctions to be integrted exctly. This leds to the so clled clssicl qudrtures: qudrtures with regulrly spced bscisss nd polynomils s exctly integrble unctions. An n-point clssicl qudrture integrtes exctly the irst n terms o the unction s Tylor expnsion (16). The x n order term will not be integrted exctly nd will led to n error o the qudrture. Thus the error E n o the n-point clssicl qudrture is on the order o the integrl o the x n term in (16), E n (n) () (x ) n dx = (n) () n! (n + 1)! hn+1 h n+1, (18) 4

5 Tble 1: Mxim script to clculte nlyticlly the weights o n n-point clssicl qudrture with predeined bscisss in the intervl [0, 1]. n: 8; xs: mkelist((i-1)/(n-1),i,1,n); /* nodes: dpt to your needs */ ws: mkelist(conct(w,i),i,1,n); ps: mkelist(x^i,i,0,n-1); /* polynomils */ s: mkelist(buildq([i:i,ps:ps],lmbd([x],ps[i])),i,1,n); integ01: lmbd([],integrte((x),x,0,1)); Is: mplist(integ01,s); /* clculte the integrls */ eq: lmbd([],lreduce("+",mplist(,xs)*ws)); eqs: mplist(eq,s)-is; /* build equtions */ solve(eqs,ws); /* solve or the weights */ where h = b is the length o the integrtion intervl. A qudrture with the error o the order h n+1 is oten clled degree-n qudrture. I the integrnd is smooth enough nd the length h is smll enough clssicl qudrture with not so lrge n cn provide good pproximtion or the integrl. However, or lrge n the weights o clssicl qudrtures tend to hve lternting signs, which leds to lrge round-o errors, which in turn negtes the potentilly higher ccurcy o the qudrture. Agin, i the integrnd violtes the ssumption o Tylor expnsion or exmple by hving n integrble singulrity inside the integrtion intervl the higher order qudrtures my perorm poorly. Clssicl qudrtures re mostly o historicl interest nowdys. Alterntive methods such s qudrtures with optimized bscisss, dptive, nd vrible trnsormtion qudrtures re more stble nd ccurte nd re normlly preerred to clssicl qudrtures. Clssicl qudrtures with eqully spced bscisss both closed nd open sets re generlly reerred to s Newton-Cotes qudrtures. An interested reder cn generte Newton-Cotes qudrtures o ny degree n using the Mxim script in Tble (1). 1.4 Qudrtures with optimized bscisss In qudrtures with optimized bscisss not only the weights w i but lso the bscisss x i re chosen optimlly. The number o ree prmeters is thus n 5

6 nd one cn choose set o n unctions, {φ 1 (x),..., φ n (x)}, (19) to be integrted exctly. This gives system o n equtions, liner in w i nd non-liner in x i, k=1,...,n w i φ k (x i ) = I k, (0) where gin I k. = φ k (x)dx. (1) The weights nd bscisss o the qudrture cn be determined by solving this system o equtions 1. Although qudrtures with optimized bcisss re generlly o much higher order, n 1 compred to n 1 or non-optiml bscisss, the optiml points generlly cn not be reused t the next itertion in n dptive lgorithm Guss qudrtures Guss qudrtures del with slightly more generl orm o integrls, ω(x)(x)dx, (3) where ω(x) is positive weight unction. For ω(x) = 1 the problem is the sme s considered bove. Populr choices o the weight unction include ω(x) = (1 x ) ±1/, exp( x), exp( x ) nd others. The ide is to represent the integrnd s product ω(x)(x) such tht ll the diiculties go into the weight unction ω(x) while the remining ctor (x) is smooth nd well represented by polynomils. An N-point Guss qudrture is qudrture with optimized bcisss, ω(x)(x)dx N w i (x i ), (4) which integrtes exctly set o N polynomils o the orders 1,..., N 1 with the given weight ω(x). 1 Here is, or exmple, n n = qudrture with optimized bscisss, Z 1 q «q «1 1 (x)dx + +. ()

7 Fundmentl theorem There is theorem stting tht there exists set o polynomils p n (x), orthogonl on the intervl [, b] with the weight unction ω(x), ω(x)p n (x)p k (x) δ nk. (5) Now, one cn prove tht the optiml nodes or the N-point Guss qudrture re the roots o the polynomil p N (x), The ide behind the proo is to consider the integrl p N (x i ) = 0. (6) ω(x)q(x)p N (x)dx = 0, (7) where q(x) is n rbitrry polynomil o degree less thn N. The qudrture should represent this integrl exctly, N w i q(x i )p N (x i ) = 0. (8) Apprently this is only possible i x i re the roots o p N. Clcultion o nodes nd weights A net lgorithm usully reered to s Golub-Welsch [?] lgorithm or clcultion o the nodes nd weights o Guss qudrture is bsed on the symmetric orm o the three-term reccurence reltion or orthogonl polynomils, xp n 1 (x) = β n p n (x) + α n p n 1 (x) + β n 1 p n (x), (9) where p 1 (x). = 0, p 1 (x). = 1, nd n = 1,..., N. This reccurence reltion cn be written in the mtrix orm, xp(x) = Jp(x) + β N p N (x)e N, (30) where p(x) =. {p 0 (x),..., p N 1 (x)} T, e N = {0,..., 0, 1} T, nd the tridigonl mtrix J usully reered to s Jcobi mtrix or Jcobi opertor is given s α 1 β 1 β 1 α β J = β α 3 β 3. (31) β N 1 α N 7

8 Substituting the roots x i o p N tht is, the set {x i p N (x i ) = 0} into the mtrix eqution (30) leds to eigenvlue problem or the Jcobi mtrix, Jp(x i ) = x i p(x i ). (3) Thus, the nodes o n N-point Guss qudrture (the roots o the polynomil p N ) re the eigenvlues o the Jcobi mtrix J nd cn be clculted by stndrd digonliztion routine. The weights cn be obtined considering N integrls, ω(x)p n (x)dx = δ n0 ω(x)dx, n = 0,..., N 1. (33) Applying our qudrture gives the mtrix eqution, Pw = e 1 ω(x)dx, (34) where w =. {w 1,..., w N } T, e 1 = {1, 0,..., 0} T, nd p 0 (x 1 )... p 0 (x N ) P =. p 1 (x 1 )... p 1 (x N ) (35) p N 1 (x 1 )... p N 1 (x N ) Eqution (34) is liner in w i nd cn be solved directly. However, i digonliztion o the Jcobi mtrix provided the normlized eigenvectors, the weigths cn be redily obtined using the ollowing method. The mtrix P pprently consists o non-normlized column eigenvectors o the mtrix J. The eigenvectors re orthogonl nd thereore P T P is digonl mtrix with positive elements. Multiplying (34) by P T nd then by (P T P) 1 rom the let gives w = (P T P) 1 P T e 1 ω(x)dx. (36) From p 0 (x) = 1 it ollows tht P T e 1 = {1,..., 1} T nd thereore 1 w i = (P T P) ii ω(x)dx. (37) A symmetric tridigonl mtrix cn be digonlized very eectively using the QR/RL lgorithm. 8

9 Let the mtrix V be the set o the normlized column eigenvectors o the mtrix J. The mtrix V is then connected with the mtrix P through the normliztion eqution, V = (P T P) 1 P. (38) Thereore, gin tking into ccount tht p 0 (x) = 1, eqution (37) cn be written s w i = (V 1i ) ω(x)dx. (39) Exmple: Guss-Legendre qudrture Guss-Legendre qudrture dels with the weight ω(x) = 1 on the intervl [ 1, 1]. The ssocited polynomils re Legendre polynomils P n (x), hence the nme. Their reccurence reltion is usully given s (n 1)xP n 1 (x) = np n (x) + (n 1)P n (x). (40) Rescling the polynomils (preserving p 0 (x) = 1) s n + 1Pn (x) = p n (x) (41) reduces this reccurence reltion to the symmetric orm (9), xp n 1 (x) = 1 1 p n(x) (n) p n (x). (4) 1 ((n 1)) Correspondingly, the coeicients in the mtrix J re α n = 0, β n = 1 1. (43) 1 (n) The problem o inding the nodes nd the weights o the N-point Guss- Legendre qudrture is thus reduced to the eigenvlue problem or the Jcobi mtrix with coeicients (43). As n illustrtion o this lgorithm Tble () shows n Octve unction which clcultes the nodes nd the weights o the N-point Guss-Legendre qudrture nd then integrtes given unction. 9

10 Tble : An Octve unction which clcultes the nodes nd weights o the N-point Guss-Legendre qudrture nd then integrtes given unction. unction Q = g u s s l e g e n d r e (,, b,n) bet =. 5. / sqrt (1 ( (1:N 1 ) ). ˆ ( ) ) ; % r e c c u r e n c e r e l t i o n J = dig ( bet, 1 ) + dig ( bet, 1); % Jcobi mtrix [V,D] = eig ( J ) ; % d i g o n l i z t i o n o J x = dig (D) ; [ x, i ] = sort ( x ) ; % s o r t e d nodes w = V( 1, i ). ˆ ; % weights Q = w ( ( +b)/+(b )/ x ) ( b ) / ; % i n t e g r l endunction ; 1.4. Guss-Kronrod qudrtures Generlly, the error o numericl integrtion is estimted by compring the results rom two rules o dierent orders. However, or ordinry Guss qudrtures the nodes or two rules o dierent orders lmost never coinside. This mens tht one cn not reuse the points o the lower order rule when clculting the hihger order rule. Guss-Kronrod lgorithm [?] remedies this ineiciency. The points inherited rom the lower order rule re reused in the higher order rule s predeined nodes (with n weights s ree prmeters), nd then m more optiml points re dded (m bscisss nd m weights s ree prmeters). The order o the method is n + m 1. The lower order rule becomes embedded tht is, it uses subset o the nodes into the higher order rule. On the next itertion the procedure is repeted. Ptterson [?] hs tbulted nodes nd weigths or severl sequences o embedded Guss-Kronrod rules. 1.5 Adptive qudrtures Higher order qudrtures suer rom round-o errors s the weights w i generlly hve lternting signs. Agin, using high order polynomils is dngerous s they typiclly oscillte wildly nd my led to Runge s phenomenon. Thereore, i the error o the qudrture is yet too lrge or qudrture with suiciently lrge n, the best strtegy is to subdivide the intervl in two nd then use the qudrture on the hl-intervls. Indeed, i the error is o the order h k, the subdivision would led to reduced error, (h/) k < h k, i k > 1. An dptive qudrture is n lgorithm where the integrtion intervl is 10

11 subdivided into dptively reined subintervls until the given ccurcy gol is reched. Adptive lgorithms re usully built on pirs o qudrture rules higher order rule, Q = w i (x i ), (44) i where w i re the weights o the higher order rule nd Q is the higher order estimte o the integrl, nd lower order rule, q = i v i (x i ), (45) where v i re the weights o the lower order rule nd q is the the lower order estimte o the integrl. The dierence between the higher order rule nd the lower order rule gives n estimte o the error, δq = Q q. (46) The integrtion result is ccepted, i the error δq is smller thn tolernce, δq < δ + ɛ Q, (47) where δ is the bsolute ccurcy gol nd ɛ is the reltive ccurcy gol o the integrtion. I the error estimte is lrger thn tolernce, the intervl is subdivided into two hl-intervls nd the procedure pplies recursively to subintervls with the sme reltive ccurcy gol ɛ nd rescled bsolute ccurcy gol δ/. The points x i re usully chosen such tht the two qudrtures use the sme points, nd tht the points cn be reused in the subsequent recursive steps. The reuse o the unction evlutions mde t the previous step o dptive integrtion is very importnt or the eiciency o the lgorithm. The equllyspced bscisss nturlly provide or such reuse. As n exmple, Tble 3 shows n implementtion o the described lgorithm using { 1 x i = 6, 6, 4 6, 5 } (esily reusble points), (48) 6 { w i = 6, 1 6, 1 6, } (trpezium rule), (49) 6 { 1 v i = 4, 1 4, 1 4, 1 } (rectngle rule). (50) 4 11

12 During recursion the unction vlues t the points # nd #3 re inherited rom the previous step nd need not be reclculted. The points nd weights re cited or the rescled integrtion intervl [0, 1]. The trnsormtion o the points nd weights to the originl intervl [, b] is given s x i + (b )x i, w i (b )w i. (51) This implementtion clcultes directly the Riemnn sums nd cn thereore del with integrble singulrities, lthough rther ineiciently. More eicient dptive routines keep trck o the subdivisions o the intervl nd the locl errors [?]. This llows detection o singulrities nd switching in their vicinity to speciiclly tuned qudrtures. It lso llows better estimtes o locl nd globl errors. 1.6 Vrible trnsormtion qudrtures The ide behind vrible trnsormtion qudrtures is to pply the given qudrture either with optimimized or regulrly spced nodes not to the originl integrl, but to vrible trnsormed integrl [?], tb t ( g(t) ) g (t)dt N w i ( g(t i ) ) g (t i ), (5) where the trnsormtion x = g(t) is chosen such tht the trnsormed integrl better suits the given qudrture. Here g denotes the derivtive nd [t, t b ] is the corresponding intervl in the new vrible. For exmple, the Guss-Legendre qudrture ssumes the integrnd cn be well represented with polynomils nd perorms poorly on integrls with integrble singulrities like I = 0 1 dx. (53) x However, simple vrible trnsormtion x = t removes the singulrity, I = 0 dt, (54) 1

13 Tble 3: Recursive dptive integrtor in C #include<mth. h> #include< s s e r t. h> #include<s t d i o. h> double dpt4 ( double ( double ), double, double b, double cc, double eps, double, double 3, int nrec ) { s s e r t ( nrec < ); double 1= ( +(b ) / 6 ), 4= ( +5 (b ) / 6 ) ; double Q=( ) / 6 ( b ), q=( ) / 4 ( b ) ; double t o l e r n c e=cc+eps b s (Q), e r r o r= b s (Q q ) ; i ( e r r o r < t o l e r n c e ) return Q; else { double Q1=dpt4 (,, ( +b ) /, cc / s q r t (. ), eps, 1,, nrec +1); double Q=dpt4 (, ( +b ) /, b, cc / s q r t (. ), eps, 3, 4, nrec +1); return Q1+Q ; } } double dpt ( double ( double ), double, double b, double cc, double eps ) { double = ( + (b ) / 6 ), 3= ( +4 (b ) / 6 ) ; int nrec =0; return dpt4 (,, b, cc, eps,, 3, nrec ) ; } int min ( ) // uses gcc n e s t e d u n c t i o n s { int c l l s =0; double =0,b=1, cc =0.001, eps =0.001; double ( double x ){ c l l s ++; return 1/ s q r t ( x ) ; } ; // n e s t e d u n c t i o n double Q=dpt (,, b, cc, eps ) ; p r i n t ( Q=%g c l l s=%d\n,q, c l l s ) ; return 0 ; } nd the Guss-Legendre qudrture or the trnsormed integrl gives exct result. The price is tht the trnsormed qudrture perorms less eectively on smooth unctions. Some o the populr vrible trnsormtion qudrtures re Clenshw- Curtis [?], bsed on the trnsormtion 1 π 0 (cos θ) sin θdθ, (55) nd tnh-sinh qudrture [?], bsed on the trnsormtion 1 ( ( π )) π tnh sinh(t) cosh(t) cosh (. (56) π sinh(t))dt Generlly, the eqully spced trpezium rule is used ter the trnsormtion. 13

14 1.7 Ininite intervls One wy to clculte n integrl over ininite intervl is to trnsorm it by vrible sustitution into n integrl over inite intervl. The ltter cn then be evluted by ordinry integrtion methods. Tble 4 lists severl o such trnsormtion. Tble 4: Vrible trnsormtions reducing ininite intervl integrls into integrls over inite intervls ( ) t 1 + t 1 t (1 t dt, (57) ) ( ) ( 1 t + 1 t )) dt t t t, (58) ( ( + ( + 1 t ( t ) 1 dt, (59) 1 t (1 t) ) dt t t, (60) t ) 1 dt, (61) 1 + t (1 + t) ) dt t. (6) ( 1 t t 14

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

COSC 3361 Numerical Analysis I Numerical Integration and Differentiation (III) - Gauss Quadrature and Adaptive Quadrature

COSC 3361 Numerical Analysis I Numerical Integration and Differentiation (III) - Gauss Quadrature and Adaptive Quadrature COSC 336 Numericl Anlysis I Numericl Integrtion nd Dierentition III - Guss Qudrture nd Adptive Qudrture Edgr Griel Fll 5 COSC 336 Numericl Anlysis I Edgr Griel Summry o the lst lecture I For pproximting

More information

Lecture 6: Singular Integrals, Open Quadrature rules, and Gauss Quadrature

Lecture 6: Singular Integrals, Open Quadrature rules, and Gauss Quadrature Lecture notes on Vritionl nd Approximte Methods in Applied Mthemtics - A Peirce UBC Lecture 6: Singulr Integrls, Open Qudrture rules, nd Guss Qudrture (Compiled 6 August 7) In this lecture we discuss the

More information

Numerical Integration

Numerical Integration Chpter 5 Numericl Integrtion Numericl integrtion is the study of how the numericl vlue of n integrl cn be found. Methods of function pproximtion discussed in Chpter??, i.e., function pproximtion vi the

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

Numerical Integration. 1 Introduction. 2 Midpoint Rule, Trapezoid Rule, Simpson Rule. AMSC/CMSC 460/466 T. von Petersdorff 1

Numerical Integration. 1 Introduction. 2 Midpoint Rule, Trapezoid Rule, Simpson Rule. AMSC/CMSC 460/466 T. von Petersdorff 1 AMSC/CMSC 46/466 T. von Petersdorff 1 umericl Integrtion 1 Introduction We wnt to pproximte the integrl I := f xdx where we re given, b nd the function f s subroutine. We evlute f t points x 1,...,x n

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

Orthogonal Polynomials

Orthogonal Polynomials Mth 4401 Gussin Qudrture Pge 1 Orthogonl Polynomils Orthogonl polynomils rise from series solutions to differentil equtions, lthough they cn be rrived t in vriety of different mnners. Orthogonl polynomils

More information

Numerical quadrature based on interpolating functions: A MATLAB implementation

Numerical quadrature based on interpolating functions: A MATLAB implementation SEMINAR REPORT Numericl qudrture bsed on interpolting functions: A MATLAB implementtion by Venkt Ayylsomyjul A seminr report submitted in prtil fulfillment for the degree of Mster of Science (M.Sc) in

More information

3.4 Numerical integration

3.4 Numerical integration 3.4. Numericl integrtion 63 3.4 Numericl integrtion In mny economic pplictions it is necessry to compute the definite integrl of relvlued function f with respect to "weight" function w over n intervl [,

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

DOING PHYSICS WITH MATLAB MATHEMATICAL ROUTINES

DOING PHYSICS WITH MATLAB MATHEMATICAL ROUTINES DOIG PHYSICS WITH MATLAB MATHEMATICAL ROUTIES COMPUTATIO OF OE-DIMESIOAL ITEGRALS In Cooper School of Physics, University of Sydney in.cooper@sydney.edu.u DOWLOAD DIRECTORY FOR MATLAB SCRIPTS mth_integrtion_1d.m

More information

New Expansion and Infinite Series

New Expansion and Infinite Series Interntionl Mthemticl Forum, Vol. 9, 204, no. 22, 06-073 HIKARI Ltd, www.m-hikri.com http://dx.doi.org/0.2988/imf.204.4502 New Expnsion nd Infinite Series Diyun Zhng College of Computer Nnjing University

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

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

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

1 The Lagrange interpolation formula

1 The Lagrange interpolation formula Notes on Qudrture 1 The Lgrnge interpoltion formul We briefly recll the Lgrnge interpoltion formul. The strting point is collection of N + 1 rel points (x 0, y 0 ), (x 1, y 1 ),..., (x N, y N ), with x

More information

Numerical integration

Numerical integration 2 Numericl integrtion This is pge i Printer: Opque this 2. Introduction Numericl integrtion is problem tht is prt of mny problems in the economics nd econometrics literture. The orgniztion of this chpter

More information

Numerical Analysis. 10th ed. R L Burden, J D Faires, and A M Burden

Numerical Analysis. 10th ed. R L Burden, J D Faires, and A M Burden Numericl Anlysis 10th ed R L Burden, J D Fires, nd A M Burden Bemer Presenttion Slides Prepred by Dr. Annette M. Burden Youngstown Stte University July 9, 2015 Chpter 4.1: Numericl Differentition 1 Three-Point

More information

Discrete Least-squares Approximations

Discrete Least-squares Approximations Discrete Lest-squres Approximtions Given set of dt points (x, y ), (x, y ),, (x m, y m ), norml nd useful prctice in mny pplictions in sttistics, engineering nd other pplied sciences is to construct curve

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

Lecture 17. Integration: Gauss Quadrature. David Semeraro. University of Illinois at Urbana-Champaign. March 20, 2014

Lecture 17. Integration: Gauss Quadrature. David Semeraro. University of Illinois at Urbana-Champaign. March 20, 2014 Lecture 17 Integrtion: Guss Qudrture Dvid Semerro University of Illinois t Urbn-Chmpign Mrch 0, 014 Dvid Semerro (NCSA) CS 57 Mrch 0, 014 1 / 9 Tody: Objectives identify the most widely used qudrture method

More information

Lecture 14 Numerical integration: advanced topics

Lecture 14 Numerical integration: advanced topics Lecture 14 Numericl integrtion: dvnced topics Weinn E 1,2 nd Tiejun Li 2 1 Deprtment of Mthemtics, Princeton University, weinn@princeton.edu 2 School of Mthemticl Sciences, Peking University, tieli@pku.edu.cn

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

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

1. Gauss-Jacobi quadrature and Legendre polynomials. p(t)w(t)dt, p {p(x 0 ),...p(x n )} p(t)w(t)dt = w k p(x k ),

1. Gauss-Jacobi quadrature and Legendre polynomials. p(t)w(t)dt, p {p(x 0 ),...p(x n )} p(t)w(t)dt = w k p(x k ), 1. Guss-Jcobi qudrture nd Legendre polynomils Simpson s rule for evluting n integrl f(t)dt gives the correct nswer with error of bout O(n 4 ) (with constnt tht depends on f, in prticulr, it depends on

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

THE EXISTENCE-UNIQUENESS THEOREM FOR FIRST-ORDER DIFFERENTIAL EQUATIONS.

THE EXISTENCE-UNIQUENESS THEOREM FOR FIRST-ORDER DIFFERENTIAL EQUATIONS. THE EXISTENCE-UNIQUENESS THEOREM FOR FIRST-ORDER DIFFERENTIAL EQUATIONS RADON ROSBOROUGH https://intuitiveexplntionscom/picrd-lindelof-theorem/ This document is proof of the existence-uniqueness theorem

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

Numerical Integration

Numerical Integration Numericl Integrtion Wouter J. Den Hn London School of Economics c 2011 by Wouter J. Den Hn June 3, 2011 Qudrture techniques I = f (x)dx n n w i f (x i ) = w i f i i=1 i=1 Nodes: x i Weights: w i Qudrture

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

Best Approximation. Chapter The General Case

Best Approximation. Chapter The General Case Chpter 4 Best Approximtion 4.1 The Generl Cse In the previous chpter, we hve seen how n interpolting polynomil cn be used s n pproximtion to given function. We now wnt to find the best pproximtion to given

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

Lecture 23: Interpolatory Quadrature

Lecture 23: Interpolatory Quadrature Lecture 3: Interpoltory Qudrture. Qudrture. The computtion of continuous lest squres pproximtions to f C[, b] required evlutions of the inner product f, φ j = fxφ jx dx, where φ j is polynomil bsis function

More information

P 3 (x) = f(0) + f (0)x + f (0) 2. x 2 + f (0) . In the problem set, you are asked to show, in general, the n th order term is a n = f (n) (0)

P 3 (x) = f(0) + f (0)x + f (0) 2. x 2 + f (0) . In the problem set, you are asked to show, in general, the n th order term is a n = f (n) (0) 1 Tylor polynomils In Section 3.5, we discussed how to pproximte function f(x) round point in terms of its first derivtive f (x) evluted t, tht is using the liner pproximtion f() + f ()(x ). We clled this

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

Advanced Computational Fluid Dynamics AA215A Lecture 3 Polynomial Interpolation: Numerical Differentiation and Integration.

Advanced Computational Fluid Dynamics AA215A Lecture 3 Polynomial Interpolation: Numerical Differentiation and Integration. Advnced Computtionl Fluid Dynmics AA215A Lecture 3 Polynomil Interpoltion: Numericl Differentition nd Integrtion Antony Jmeson Winter Qurter, 2016, Stnford, CA Lst revised on Jnury 7, 2016 Contents 3 Polynomil

More information

CHAPTER 4a. ROOTS OF EQUATIONS

CHAPTER 4a. ROOTS OF EQUATIONS CHAPTER 4. ROOTS OF EQUATIONS A. J. Clrk School o Engineering Deprtment o Civil nd Environmentl Engineering by Dr. Ibrhim A. Asskk Spring 00 ENCE 03 - Computtion Methods in Civil Engineering II Deprtment

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

Lecture 19: Continuous Least Squares Approximation

Lecture 19: Continuous Least Squares Approximation Lecture 19: Continuous Lest Squres Approximtion 33 Continuous lest squres pproximtion We begn 31 with the problem of pproximting some f C[, b] with polynomil p P n t the discrete points x, x 1,, x m for

More information

Matrices, Moments and Quadrature, cont d

Matrices, Moments and Quadrature, cont d Jim Lmbers MAT 285 Summer Session 2015-16 Lecture 2 Notes Mtrices, Moments nd Qudrture, cont d We hve described how Jcobi mtrices cn be used to compute nodes nd weights for Gussin qudrture rules for generl

More information

On Second Derivative-Free Zero Finding Methods

On Second Derivative-Free Zero Finding Methods 010 Americn Control Conerence Mrriott Wterront, Bltimore, MD, USA June 30-July 0, 010 FrC07.4 On Second Derivtive-Free Zero Finding Methods Mohmmed A. Hsn Deprtment o Electricl & Computer Engineering University

More information

Numerical Integration

Numerical Integration Chpter 1 Numericl Integrtion Numericl differentition methods compute pproximtions to the derivtive of function from known vlues of the function. Numericl integrtion uses the sme informtion to compute numericl

More information

Physics 116C Solution of inhomogeneous ordinary differential equations using Green s functions

Physics 116C Solution of inhomogeneous ordinary differential equations using Green s functions Physics 6C Solution of inhomogeneous ordinry differentil equtions using Green s functions Peter Young November 5, 29 Homogeneous Equtions We hve studied, especilly in long HW problem, second order liner

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

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

Abstract inner product spaces

Abstract inner product spaces WEEK 4 Abstrct inner product spces Definition An inner product spce is vector spce V over the rel field R equipped with rule for multiplying vectors, such tht the product of two vectors is sclr, nd the

More information

LECTURE 19. Numerical Integration. Z b. is generally thought of as representing the area under the graph of fèxè between the points x = a and

LECTURE 19. Numerical Integration. Z b. is generally thought of as representing the area under the graph of fèxè between the points x = a and LECTURE 9 Numericl Integrtion Recll from Clculus I tht denite integrl is generlly thought of s representing the re under the grph of fèxè between the points x = nd x = b, even though this is ctully only

More information

Lecture 20: Numerical Integration III

Lecture 20: Numerical Integration III cs4: introduction to numericl nlysis /8/0 Lecture 0: Numericl Integrtion III Instructor: Professor Amos Ron Scribes: Mrk Cowlishw, Yunpeng Li, Nthnel Fillmore For the lst few lectures we hve discussed

More information

Calculus and linear algebra for biomedical engineering Week 11: The Riemann integral and its properties

Calculus and linear algebra for biomedical engineering Week 11: The Riemann integral and its properties Clculus nd liner lgebr for biomedicl engineering Week 11: The Riemnn integrl nd its properties Hrtmut Führ fuehr@mth.rwth-chen.de Lehrstuhl A für Mthemtik, RWTH Achen Jnury 9, 2009 Overview 1 Motivtion:

More information

Theoretical foundations of Gaussian quadrature

Theoretical foundations of Gaussian quadrature Theoreticl foundtions of Gussin qudrture 1 Inner product vector spce Definition 1. A vector spce (or liner spce) is set V = {u, v, w,...} in which the following two opertions re defined: (A) Addition of

More information

Trapezoidal Rule, n = 1, x 0 = a, x 1 = b, h = b a. f (x)dx = h 2 (f (x 0) + f (x 1 )) h3

Trapezoidal Rule, n = 1, x 0 = a, x 1 = b, h = b a. f (x)dx = h 2 (f (x 0) + f (x 1 )) h3 Trpezoidl Rule, n = 1, x 0 =, x 1 = b, h = b f (x)dx = h 2 (f (x 0) + f (x 1 )) h3 12 f (ξ). Simpson s Rule: n = 3, x 0 =, x 1 = +b 2, x 2 = b, h = b 2. Qudrture Rule, double node t x 1 P 3 (x)dx = f (x

More information

Orthogonal Polynomials and Least-Squares Approximations to Functions

Orthogonal Polynomials and Least-Squares Approximations to Functions Chpter Orthogonl Polynomils nd Lest-Squres Approximtions to Functions **4/5/3 ET. Discrete Lest-Squres Approximtions Given set of dt points (x,y ), (x,y ),..., (x m,y m ), norml nd useful prctice in mny

More information

Construction of Gauss Quadrature Rules

Construction of Gauss Quadrature Rules Jim Lmbers MAT 772 Fll Semester 2010-11 Lecture 15 Notes These notes correspond to Sections 10.2 nd 10.3 in the text. Construction of Guss Qudrture Rules Previously, we lerned tht Newton-Cotes qudrture

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

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

Chapter 4. Additional Variational Concepts

Chapter 4. Additional Variational Concepts Chpter 4 Additionl Vritionl Concepts 137 In the previous chpter we considered clculus o vrition problems which hd ixed boundry conditions. Tht is, in one dimension the end point conditions were speciied.

More information

ENGI 3424 Engineering Mathematics Five Tutorial Examples of Partial Fractions

ENGI 3424 Engineering Mathematics Five Tutorial Examples of Partial Fractions ENGI 44 Engineering Mthemtics Five Tutoril Exmples o Prtil Frctions 1. Express x in prtil rctions: x 4 x 4 x 4 b x x x x Both denomintors re liner non-repeted ctors. The cover-up rule my be used: 4 4 4

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

c n φ n (x), 0 < x < L, (1) n=1

c n φ n (x), 0 < x < L, (1) n=1 SECTION : Fourier Series. MATH4. In section 4, we will study method clled Seprtion of Vribles for finding exct solutions to certin clss of prtil differentil equtions (PDEs. To do this, it will be necessry

More information

Numerical Integration. Newton Cotes Formulas. Quadrature. Newton Cotes Formulas. To approximate the integral b

Numerical Integration. Newton Cotes Formulas. Quadrature. Newton Cotes Formulas. To approximate the integral b Numericl Integrtion Newton Cotes Formuls Given function f : R R nd two rel numbers, b R, < b, we clculte (pproximtely) the integrl I(f,, b) = f (x) dx K. Frischmuth (IfM UR) Numerics for CSE 08/09 8 /

More information

Chapter 3 Solving Nonlinear Equations

Chapter 3 Solving Nonlinear Equations Chpter 3 Solving Nonliner Equtions 3.1 Introduction The nonliner function of unknown vrible x is in the form of where n could be non-integer. Root is the numericl vlue of x tht stisfies f ( x) 0. Grphiclly,

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

Unit #9 : Definite Integral Properties; Fundamental Theorem of Calculus

Unit #9 : Definite Integral Properties; Fundamental Theorem of Calculus Unit #9 : Definite Integrl Properties; Fundmentl Theorem of Clculus Gols: Identify properties of definite integrls Define odd nd even functions, nd reltionship to integrl vlues Introduce the Fundmentl

More information

63. Representation of functions as power series Consider a power series. ( 1) n x 2n for all 1 < x < 1

63. Representation of functions as power series Consider a power series. ( 1) n x 2n for all 1 < x < 1 3 9. SEQUENCES AND SERIES 63. Representtion of functions s power series Consider power series x 2 + x 4 x 6 + x 8 + = ( ) n x 2n It is geometric series with q = x 2 nd therefore it converges for ll q =

More information

Advanced Calculus: MATH 410 Notes on Integrals and Integrability Professor David Levermore 17 October 2004

Advanced Calculus: MATH 410 Notes on Integrals and Integrability Professor David Levermore 17 October 2004 Advnced Clculus: MATH 410 Notes on Integrls nd Integrbility Professor Dvid Levermore 17 October 2004 1. Definite Integrls In this section we revisit the definite integrl tht you were introduced to when

More information

Lecture 12: Numerical Quadrature

Lecture 12: Numerical Quadrature Lecture 12: Numericl Qudrture J.K. Ryn@tudelft.nl WI3097TU Delft Institute of Applied Mthemtics Delft University of Technology 5 December 2012 () Numericl Qudrture 5 December 2012 1 / 46 Outline 1 Review

More information

COT4501 Spring Homework VII

COT4501 Spring Homework VII COT451 Spring 1 Homework VII The ssignment is due in clss on Thursdy, April 19, 1. There re five regulr problems nd one computer problem (using MATLAB). For written problems, you need to show your work

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

f(x)dx . Show that there 1, 0 < x 1 does not exist a differentiable function g : [ 1, 1] R such that g (x) = f(x) for all

f(x)dx . Show that there 1, 0 < x 1 does not exist a differentiable function g : [ 1, 1] R such that g (x) = f(x) for all 3 Definite Integrl 3.1 Introduction In school one comes cross the definition of the integrl of rel vlued function defined on closed nd bounded intervl [, b] between the limits nd b, i.e., f(x)dx s the

More information

Chapter 3 Polynomials

Chapter 3 Polynomials Dr M DRAIEF As described in the introduction of Chpter 1, pplictions of solving liner equtions rise in number of different settings In prticulr, we will in this chpter focus on the problem of modelling

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

Lecture Notes: Orthogonal Polynomials, Gaussian Quadrature, and Integral Equations

Lecture Notes: Orthogonal Polynomials, Gaussian Quadrature, and Integral Equations 18330 Lecture Notes: Orthogonl Polynomils, Gussin Qudrture, nd Integrl Equtions Homer Reid My 1, 2014 In the previous set of notes we rrived t the definition of Chebyshev polynomils T n (x) vi the following

More information

Quadrature Rules for Evaluation of Hyper Singular Integrals

Quadrature Rules for Evaluation of Hyper Singular Integrals Applied Mthemticl Sciences, Vol., 01, no. 117, 539-55 HIKARI Ltd, www.m-hikri.com http://d.doi.org/10.19/ms.01.75 Qudrture Rules or Evlution o Hyper Singulr Integrls Prsnt Kumr Mohnty Deprtment o Mthemtics

More information

221B Lecture Notes WKB Method

221B Lecture Notes WKB Method Clssicl Limit B Lecture Notes WKB Method Hmilton Jcobi Eqution We strt from the Schrödinger eqution for single prticle in potentil i h t ψ x, t = [ ] h m + V x ψ x, t. We cn rewrite this eqution by using

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

Numerical Methods I Orthogonal Polynomials

Numerical Methods I Orthogonal Polynomials Numericl Methods I Orthogonl Polynomils Aleksndr Donev Cournt Institute, NYU 1 donev@cournt.nyu.edu 1 MATH-GA 2011.003 / CSCI-GA 2945.003, Fll 2014 Nov 6th, 2014 A. Donev (Cournt Institute) Lecture IX

More information

Problem Set 3 Solutions

Problem Set 3 Solutions Chemistry 36 Dr Jen M Stndrd Problem Set 3 Solutions 1 Verify for the prticle in one-dimensionl box by explicit integrtion tht the wvefunction ψ ( x) π x is normlized To verify tht ψ ( x) is normlized,

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

Section 6.1 Definite Integral

Section 6.1 Definite Integral Section 6.1 Definite Integrl Suppose we wnt to find the re of region tht is not so nicely shped. For exmple, consider the function shown elow. The re elow the curve nd ove the x xis cnnot e determined

More information

W. We shall do so one by one, starting with I 1, and we shall do it greedily, trying

W. We shall do so one by one, starting with I 1, and we shall do it greedily, trying Vitli covers 1 Definition. A Vitli cover of set E R is set V of closed intervls with positive length so tht, for every δ > 0 nd every x E, there is some I V with λ(i ) < δ nd x I. 2 Lemm (Vitli covering)

More information

Suppose we want to find the area under the parabola and above the x axis, between the lines x = 2 and x = -2.

Suppose we want to find the area under the parabola and above the x axis, between the lines x = 2 and x = -2. Mth 43 Section 6. Section 6.: Definite Integrl Suppose we wnt to find the re of region tht is not so nicely shped. For exmple, consider the function shown elow. The re elow the curve nd ove the x xis cnnot

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

Riemann Integrals and the Fundamental Theorem of Calculus

Riemann Integrals and the Fundamental Theorem of Calculus Riemnn Integrls nd the Fundmentl Theorem of Clculus Jmes K. Peterson Deprtment of Biologicl Sciences nd Deprtment of Mthemticl Sciences Clemson University September 16, 2013 Outline Grphing Riemnn Sums

More information

QUADRATURE is an old-fashioned word that refers to

QUADRATURE is an old-fashioned word that refers to World Acdemy of Science Engineering nd Technology Interntionl Journl of Mthemticl nd Computtionl Sciences Vol:5 No:7 011 A New Qudrture Rule Derived from Spline Interpoltion with Error Anlysis Hdi Tghvfrd

More information

A short introduction to local fractional complex analysis

A short introduction to local fractional complex analysis A short introduction to locl rctionl complex nlysis Yng Xio-Jun Deprtment o Mthemtics Mechnics, hin University o Mining Technology, Xuhou mpus, Xuhou, Jingsu, 228, P R dyngxiojun@63com This pper presents

More information

Chapter 1. Chapter 1 1

Chapter 1. Chapter 1 1 Chpter Chpter : Signls nd Systems... 2. Introduction... 2.2 Signls... 3.2. Smpling... 4.2.2 Periodic Signls... 0.2.3 Discrete-Time Sinusoidl Signls... 2.2.4 Rel Exponentil Signls... 5.2.5 Complex Exponentil

More information

Math Lecture 23

Math Lecture 23 Mth 8 - Lecture 3 Dyln Zwick Fll 3 In our lst lecture we delt with solutions to the system: x = Ax where A is n n n mtrix with n distinct eigenvlues. As promised, tody we will del with the question of

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

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

Lecture 1. Functional series. Pointwise and uniform convergence.

Lecture 1. Functional series. Pointwise and uniform convergence. 1 Introduction. Lecture 1. Functionl series. Pointwise nd uniform convergence. In this course we study mongst other things Fourier series. The Fourier series for periodic function f(x) with period 2π is

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

221A Lecture Notes WKB Method

221A Lecture Notes WKB Method A Lecture Notes WKB Method Hmilton Jcobi Eqution We strt from the Schrödinger eqution for single prticle in potentil i h t ψ x, t = [ ] h m + V x ψ x, t. We cn rewrite this eqution by using ψ x, t = e

More information

Math 360: A primitive integral and elementary functions

Math 360: A primitive integral and elementary functions Mth 360: A primitive integrl nd elementry functions D. DeTurck University of Pennsylvni October 16, 2017 D. DeTurck Mth 360 001 2017C: Integrl/functions 1 / 32 Setup for the integrl prtitions Definition:

More information

The Fundamental Theorem of Calculus

The Fundamental Theorem of Calculus The Fundmentl Theorem of Clculus MATH 151 Clculus for Mngement J. Robert Buchnn Deprtment of Mthemtics Fll 2018 Objectives Define nd evlute definite integrls using the concept of re. Evlute definite integrls

More information

Fundamental Theorem of Calculus and Computations on Some Special Henstock-Kurzweil Integrals

Fundamental Theorem of Calculus and Computations on Some Special Henstock-Kurzweil Integrals Fundmentl Theorem of Clculus nd Computtions on Some Specil Henstock-Kurzweil Integrls Wei-Chi YANG wyng@rdford.edu Deprtment of Mthemtics nd Sttistics Rdford University Rdford, VA 24142 USA DING, Xiofeng

More information

n f(x i ) x. i=1 In section 4.2, we defined the definite integral of f from x = a to x = b as n f(x i ) x; f(x) dx = lim i=1

n f(x i ) x. i=1 In section 4.2, we defined the definite integral of f from x = a to x = b as n f(x i ) x; f(x) dx = lim i=1 The Fundmentl Theorem of Clculus As we continue to study the re problem, let s think bck to wht we know bout computing res of regions enclosed by curves. If we wnt to find the re of the region below the

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

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