Sponsored Links

Sabtu, 25 November 2017

Sponsored Links

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 ? ( b - a ) [ f ( a ) + f ( b ) 2 ] {\displaystyle \int _{a}^{b}f(x)\,dx\approx (b-a)\left[{\frac {f(a)+f(b)}{2}}\right]} .

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} ). 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 for place error bounds on the accuracy of the value of a definite interval 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}))}

which requires fewer evaluations of the function to calculate.


ShowMe - trapezoidal rule
src: showme0-9071.kxcdn.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.

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 functions

The trapezoidal rule often converges very quickly for periodic functions. This can be explained intuitively:

"When the function is periodic and one integrates over one full period, there are about as many sections of the graph that are concave up as concave down, so the errors cancel."

In the error formula above, f'(a) = f'(b), and only the O(N-3) term remains.

"Rough" functions

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


Approximate Integration: Trapezoidal Rule Error Bound: Proof - 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.

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.


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


See also

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

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


Notes


lec18 - ENG1060 Computing for Engineers LECTURE 18 Numerical ...
src: s3.amazonaws.com


References


Trapezoidal Rule in Python - 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

Source of the article : Wikipedia

Comments
0 Comments