Sponsored Links
-->

Monday, September 17, 2018

Trapezoidal Rule: Example 3 - YouTube
src: i.ytimg.com

In mathematics, and more specifically in numerical analysis, the trapezoidal rule (also known as the trapezoid rule or trapezium rule) is a technique for approximating the definite integral

? a b f ( x ) d x {\displaystyle \int _{a}^{b}f(x)\,dx} .

The trapezoidal rule works by approximating the region under the graph of the function f ( x ) {\displaystyle f(x)} as a trapezoid and calculating its area. It follows that

? a b f ( x ) d x ? ? x 2 ( f ( x 0 ) + 2 f ( x 1 ) + 2 f ( x 2 ) + 2 f ( x 3 ) + 2 f ( x 4 ) + ? + 2 f ( x n - 1 ) + f ( x n ) ) {\displaystyle \int _{a}^{b}f(x)\,dx\approx {\tfrac {\Delta x}{2}}\left(f(x_{0})+2f(x_{1})+2f(x_{2})+2f(x_{3})+2f(x_{4})+\cdots +2f(x_{n-1})+f(x_{n})\right)} ,

where ? x = b - a n {\displaystyle \Delta x={\frac {b-a}{n}}} and x i = a + i ? x {\displaystyle x_{i}=a+i\Delta x} .

The trapezoidal rule may be viewed as the result obtained by averaging the left and right Riemann sums, and is sometimes defined this way.

The integral can be even better approximated by partitioning the integration interval, applying the trapezoidal rule to each subinterval, and summing the results. In practice, this "chained" (or "composite") trapezoidal rule is usually what is meant by "integrating with the trapezoidal rule". Let { x k } {\displaystyle \{x_{k}\}} be a partition of [ a , b ] {\displaystyle [a,b]} such that a = x 0 < x 1 < ? < x N - 1 < x N = b {\displaystyle a=x_{0}<x_{1}<\cdots <x_{N-1}<x_{N}=b} and ? x k {\displaystyle \Delta x_{k}} be the length of the k {\displaystyle k} -th subinterval (that is, ? x k = x k - x k - 1 {\displaystyle \Delta x_{k}=x_{k}-x_{k-1}} ), then

? a b f ( x ) d x ? ? k = 1 N f ( x k - 1 ) + f ( x k ) 2 ? x k {\displaystyle \int _{a}^{b}f(x)\,dx\approx \sum _{k=1}^{N}{\frac {f(x_{k-1})+f(x_{k})}{2}}\Delta x_{k}} .

The approximation becomes more accurate as the resolution of the partition increases (that is, for larger N {\displaystyle N} , ? x k {\displaystyle \Delta x_{k}} decreases). When the partition has a regular spacing, as is often the case, the formula can be simplified for calculation efficiency.

As discussed below, it is also possible to place error bounds on the accuracy of the value of a definite integral estimated using a trapezoidal rule.


Video Trapezoidal rule



History

A 2016 paper reports that the trapezoid rule was in use in Babylon before 50 BC for integrating the velocity of Jupiter along the ecliptic.


Maps Trapezoidal rule



Numerical implementation

Non-uniform grid

When the grid spacing is non-uniform, one can use the formula

? a b f ( x ) d x ? ? k = 1 N f ( x k - 1 ) + f ( x k ) 2 ? x k {\displaystyle \int _{a}^{b}f(x)\,dx\approx \sum _{k=1}^{N}{\frac {f(x_{k-1})+f(x_{k})}{2}}\Delta x_{k}}

Uniform grid

For a domain discretized into N {\displaystyle N} equally spaced panels, considerable simplification may occur. Let

? x k = ? x = b - a N {\displaystyle \Delta x_{k}=\Delta x={\frac {b-a}{N}}}

the approximation to the integral becomes

? a b f ( x ) d x ? ? x 2 ? k = 1 N ( f ( x k - 1 ) + f ( x k ) ) {\displaystyle \int _{a}^{b}f(x)\,dx\approx {\frac {\Delta x}{2}}\sum _{k=1}^{N}\left(f(x_{k-1})+f(x_{k})\right)}
= ? x 2 ( f ( x 0 ) + 2 ? k = 1 N - 1 f ( x k ) + f ( x N ) ) {\displaystyle {}={\frac {\Delta x}{2}}(f(x_{0})+2\sum _{k=1}^{N-1}f(x_{k})+f(x_{N}))}
= ? x 2 ( f ( x 0 ) + 2 f ( x 1 ) + 2 f ( x 2 ) + 2 f ( x 3 ) + ? + 2 f ( x N - 1 ) + f ( x N ) ) {\displaystyle {}={\frac {\Delta x}{2}}(f(x_{0})+2f(x_{1})+2f(x_{2})+2f(x_{3})+\dotsb +2f(x_{N-1})+f(x_{N}))}
= ? x 2 ( f ( x 0 ) + 2 ? k = 1 N - 1 f ( x k ) + f ( x N ) ) {\displaystyle {}={\frac {\Delta x}{2}}\left(f(x_{0})+2\sum _{k=1}^{N-1}f(x_{k})+f(x_{N})\right)}

which requires fewer evaluations of the function to calculate.


How would I code the trapezoidal rule and simpsons rule for this ...
src: www.mathworks.com


Error analysis

The error of the composite trapezoidal rule is the difference between the value of the integral and the numerical result:

error = ? a b f ( x ) d x - b - a N [ f ( a ) + f ( b ) 2 + ? k = 1 N - 1 f ( a + k b - a N ) ] {\displaystyle {\text{error}}=\int _{a}^{b}f(x)\,dx-{\frac {b-a}{N}}\left[{f(a)+f(b) \over 2}+\sum _{k=1}^{N-1}f\left(a+k{\frac {b-a}{N}}\right)\right]}

There exists a number ? between a and b, such that

error = - ( b - a ) 3 12 N 2 f ? ( ? ) {\displaystyle {\text{error}}=-{\frac {(b-a)^{3}}{12N^{2}}}f''(\xi )}

It follows that if the integrand is concave up (and thus has a positive second derivative), then the error is negative and the trapezoidal rule overestimates the true value. This can also be seen from the geometric picture: the trapezoids include all of the area under the curve and extend over it. Similarly, a concave-down function yields an underestimate because area is unaccounted for under the curve, but none is counted above. If the interval of the integral being approximated includes an inflection point, the error is harder to identify.

Proof

First suppose that h = b - a N {\displaystyle h={\frac {b-a}{N}}} , a k = a + ( k - 1 ) h {\displaystyle a_{k}=a+(k-1)h} , and g k ( t ) = 1 2 t [ f ( a k ) + f ( a k + t ) ] - ? a k a k + t f ( x ) d x {\displaystyle g_{k}(t)={\frac {1}{2}}t[f(a_{k})+f(a_{k}+t)]-\int _{a_{k}}^{a_{k}+t}f(x)dx}

Then:

d g k d t = 1 2 [ f ( a k ) + f ( a k + t ) ] + 1 2 t ? f ? ( a k + t ) - f ( a k + t ) {\displaystyle {dg_{k} \over dt}={1 \over 2}[f(a_{k})+f(a_{k}+t)]+{1 \over 2}t\cdot f'(a_{k}+t)-f(a_{k}+t)}

d 2 g k d t 2 = 1 2 t ? f ? ( a k + t ) {\displaystyle {d^{2}g_{k} \over dt^{2}}={1 \over 2}t\cdot f''(a_{k}+t)}

and suppose that | f ? ( x ) | <= f ? ( ? ) {\displaystyle \left\vert f''(x)\right\vert \leq f''(\xi )} , so that:

| f ? ( a k + t ) | <= f ? ( ? ) {\displaystyle \left\vert f''(a_{k}+t)\right\vert \leq f''(\xi )} , - f ? ( ? ) <= f ? ( a k + t ) <= f ? ( ? ) {\displaystyle -f''(\xi )\leq f''(a_{k}+t)\leq f''(\xi )}

- f ? ( ? ) t 2 <= g k ? ( t ) <= f ? ( ? ) t 2 {\displaystyle -{\frac {f''(\xi )t}{2}}\leq g_{k}''(t)\leq {\frac {f''(\xi )t}{2}}}

Because of g k ? ( 0 ) = 0 {\displaystyle g_{k}'(0)=0} , g k ( 0 ) = 0 {\displaystyle g_{k}(0)=0}

? 0 t g k ? ( x ) d x = g k ? ( t ) {\displaystyle \int _{0}^{t}g_{k}''(x)dx=g_{k}'(t)} , ? 0 t g k ? ( x ) d x = g k ( t ) {\displaystyle \int _{0}^{t}g_{k}'(x)dx=g_{k}(t)}

so that:

- f ? ( ? ) t 2 4 <= g k ? ( t ) <= f ? ( ? ) t 2 4 {\displaystyle -{\frac {f''(\xi )t^{2}}{4}}\leq g_{k}'(t)\leq {\frac {f''(\xi )t^{2}}{4}}}

- f ? ( ? ) t 3 12 <= g k ( t ) <= f ? ( ? ) t 3 12 {\displaystyle -{\frac {f''(\xi )t^{3}}{12}}\leq g_{k}(t)\leq {\frac {f''(\xi )t^{3}}{12}}}

Then assign h to t.

- f ? ( ? ) h 3 12 <= g k ( h ) <= f ? ( ? ) h 3 12 {\displaystyle -{\frac {f''(\xi )h^{3}}{12}}\leq g_{k}(h)\leq {\frac {f''(\xi )h^{3}}{12}}}

And:

? k = 1 N g k ( h ) = b - a N [ f ( a ) + f ( b ) 2 + ? k = 1 N - 1 f ( a + k b - a N ) ] - ? a b f ( x ) d x {\displaystyle \sum _{k=1}^{N}g_{k}(h)={\frac {b-a}{N}}\left[{f(a)+f(b) \over 2}+\sum _{k=1}^{N-1}f\left(a+k{\frac {b-a}{N}}\right)\right]-\int _{a}^{b}f(x)dx} , ? k = 1 N f ? ( ? ) h 3 12 = f ? ( ? ) h 3 N 12 {\displaystyle \sum _{k=1}^{N}{\frac {f''(\xi )h^{3}}{12}}={\frac {f''(\xi )h^{3}N}{12}}}

So that:

- f ? ( ? ) h 3 N 12 <= b - a N [ f ( a ) + f ( b ) 2 + ? k = 1 N - 1 f ( a + k b - a N ) ] - ? a b f ( x ) d x <= f ? ( ? ) h 3 N 12 {\displaystyle -{\frac {f''(\xi )h^{3}N}{12}}\leq {\frac {b-a}{N}}\left[{f(a)+f(b) \over 2}+\sum _{k=1}^{N-1}f\left(a+k{\frac {b-a}{N}}\right)\right]-\int _{a}^{b}f(x)dx\leq {\frac {f''(\xi )h^{3}N}{12}}}

error = ? a b f ( x ) d x - b - a N [ f ( a ) + f ( b ) 2 + ? k = 1 N - 1 f ( a + k b - a N ) ] = f ? ( ? ) h 3 N 12 = f ? ( ? ) ( b - a ) 3 12 N 2 {\displaystyle {\text{error}}=\int _{a}^{b}f(x)dx-{\frac {b-a}{N}}\left[{f(a)+f(b) \over 2}+\sum _{k=1}^{N-1}f\left(a+k{\frac {b-a}{N}}\right)\right]={\frac {f''(\xi )h^{3}N}{12}}={\frac {f''(\xi )(b-a)^{3}}{12N^{2}}}}

In general, three techniques are used in the analysis of error:

  1. Fourier series
  2. Residue calculus
  3. Euler-Maclaurin summation formula:

An asymptotic error estimate for N -> ? is given by

error = - ( b - a ) 2 12 N 2 [ f ? ( b ) - f ? ( a ) ] + O ( N - 3 ) . {\displaystyle {\text{error}}=-{\frac {(b-a)^{2}}{12N^{2}}}{\big [}f'(b)-f'(a){\big ]}+O(N^{-3}).}

Further terms in this error estimate are given by the Euler-Maclaurin summation formula.

It is argued that the speed of convergence of the trapezoidal rule reflects and can be used as a definition of classes of smoothness of the functions.

Periodic and peak functions

The trapezoidal rule converges rapidly for periodic functions. This is an easy consequence of the Euler-Maclaurin summation formula, which says that if f {\displaystyle f} is p {\displaystyle p} times continuously differentiable with period T {\displaystyle T}

? k = 0 N - 1 f ( k h ) h = ? 0 T f ( x ) d x + ? k = 1 ? p / 2 ? B 2 k ( 2 k ) ! ( f ( 2 k - 1 ) ( T ) - f ( 2 k - 1 ) ( 0 ) ) - ( - 1 ) m h m ? 0 T B ~ p ( x / T ) f ( p ) ( x ) d x {\displaystyle \sum _{k=0}^{N-1}f(kh)h=\int _{0}^{T}f(x)\,dx+\sum _{k=1}^{\lfloor p/2\rfloor }{\frac {B_{2k}}{(2k)!}}(f^{(2k-1)}(T)-f^{(2k-1)}(0))-(-1)^{m}h^{m}\int _{0}^{T}{\tilde {B}}_{p}(x/T)f^{(p)}(x)\,\mathrm {d} x}

where h := T / N {\displaystyle h:=T/N} and B ~ p {\displaystyle {\tilde {B}}_{p}} is the periodic extension of the p {\displaystyle p} th Bernoulli polynomial. Due to the periodicity, the derivatives at the endpoint cancel and we see that the error is O ( h m ) {\displaystyle O(h^{m})} .

A similar effect is available for peak-like functions, such as Gaussian, Exponentially modified Gaussian and other functions with derivatives at integration limits that can be neglected. The evaluation of the full integral of a Gaussian function by trapezoidal rule with 1% accuracy can be made using just 4 points. Simpson's rule requires 1.8 times more points to achieve the same accuracy.

Although some effort has been made to extend the Euler-Maclaurin summation formula to higher dimensions, the most straightforward proof of the rapid convergence of the trapezoidal rule in higher dimensions is to reduce the problem to that of convergence of Fourier series. This line of reasoning shows that if f {\displaystyle f} is periodic on a n {\displaystyle n} -dimensional space with p {\displaystyle p} continuous derivatives, the speed of convergence is O ( h p / d ) {\displaystyle O(h^{p/d})} . For very large dimension, the shows that Monte-Carlo integration is most likely a better choice, but for 2 and 3 dimensions, equispaced sampling is efficient. This is exploited in computational solid state physics where equispaced sampling over primitive cells in the reciprocal lattice is known as Monkhorst-Pack integration.

"Rough" functions

For various classes of functions that are not twice-differentiable, the trapezoidal rule has sharper bounds than Simpson's rule.


Calculus II, Lecture 14, V2 Trapezoidal Rule - YouTube
src: i.ytimg.com


Applicability and alternatives

The trapezoidal rule is one of a family of formulas for numerical integration called Newton-Cotes formulas, of which the midpoint rule is similar to the trapezoid rule. Simpson's rule is another member of the same family, and in general has faster convergence than the trapezoidal rule for functions which are twice continuously differentiable, though not in all specific cases. However, for various classes of rougher functions (ones with weaker smoothness conditions), the trapezoidal rule has faster convergence in general than Simpson's rule.

Moreover, the trapezoidal rule tends to become extremely accurate when periodic functions are integrated over their periods, which can be analyzed in various ways. A similar effect is available for peak functions.

For non-periodic functions, however, methods with unequally spaced points such as Gaussian quadrature and Clenshaw-Curtis quadrature are generally far more accurate; Clenshaw-Curtis quadrature can be viewed as a change of variables to express arbitrary integrals in terms of periodic integrals, at which point the trapezoidal rule can be applied accurately.


Calc trapezoidal rule | AP Calculus AB, Calculus, Area Under Curve ...
src: showme0-9071.kxcdn.com


See also

  • Gaussian quadrature
  • Newton-Cotes formulas
  • Rectangle method
  • Romberg's method
  • Simpson's rule

AP Calculus Section 5.5 Trapezoidal Rule - YouTube
src: i.ytimg.com


Notes


Solved: Write A Function Trap (f,a,b,n) That Computes The ...
src: i.imgur.com


References


Approximate Integration: Trapezoidal Rule Error Bound: Proof - YouTube
src: i.ytimg.com


External links

  • Trapezium formula. I.P. Mysovskikh, Encyclopedia of Mathematics, ed. M. Hazewinkel
  • Notes on the convergence of trapezoidal-rule quadrature
  • An implementation of trapezoidal quadrature provided by Boost.Math

Source of article : Wikipedia

Comments
0 Comments