Trapezoidal rule

{{short description|Numerical integration method}}

{{About|a rule for approximating integrals|the trapezoidal rule used for initial value problems|Trapezoidal rule (differential equations)|and|Heun's method}}

File:Trapezoidal rule illustration.svg

In calculus, the trapezoidal rule (or trapezium rule in British English){{efn|See Trapezoid for more information on terminology.}} is a technique for numerical integration, i.e., approximating the definite integral:

\int_a^b f(x) \, dx.

The trapezoidal rule works by approximating the region under the graph of the function

f(x) as a trapezoid and calculating its area. It follows that

\int_{a}^{b} f(x) \, dx \approx (b-a) \cdot \tfrac{1}{2}(f(a)+f(b)).

File:WikiTrap.gif

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\} be a partition of [a,b] such that a=x_0 < x_1 < \cdots < x_{N-1} < x_N = b and \Delta x_k be the length of the k-th subinterval (that is, \Delta x_k = x_k - x_{k-1}), then

\int_a^b f(x) \, dx \approx \sum_{k=1}^N \frac{f(x_{k-1}) + f(x_k)}{2} \Delta x_k. 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 approximation becomes more accurate as the resolution of the partition increases (that is, for larger N, all \Delta x_k decrease).

When the partition has a regular spacing, as is often the case, that is, when all the \Delta x_k have the same value \Delta x, the formula can be simplified for calculation efficiency by factoring \Delta x out:.

\int_a^b f(x) \, dx \approx \Delta x \left(\frac{f(x_0) + f(x_N)} 2 + \sum_{k=1}^{n-1} f(x_k) \right).

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.

File:Integration num trapezes notation.svg

History

A 2016 Science paper reports that the trapezoid rule was in use in Babylon before 50 BCE for integrating the velocity of Jupiter along the ecliptic.{{cite journal |last=Ossendrijver |first=Mathieu |date=Jan 29, 2016 |title=Ancient Babylonian astronomers calculated Jupiter's position from the area under a time-velocity graph |journal=Science |doi=10.1126/science.aad8085 |pmid=26823423 |volume=351 |issue=6272 |pages=482–484 |bibcode=2016Sci...351..482O |s2cid=206644971 |url=https://www.science.org/doi/full/10.1126/science.aad8085}}{{Cite news |date=2016-01-29 |title=Ancient Babylonians 'first to use geometry' |url=https://www.bbc.com/news/science-environment-35431974 |access-date=2025-02-13 |work=BBC News |language=en-GB}}

Numerical implementation

= Non-uniform grid =

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

\int_{a}^{b} f(x)\, dx \approx \sum_{k=1}^N \frac{f(x_{k-1}) + f(x_k)}{2} \Delta x_k ,

wherein \Delta x_k = x_{k} - x_{k-1} .

= Uniform grid =

For a domain partitioned by N equally spaced points, considerable simplification may occur.

Let

\Delta x = \frac{b-a}{N}, and x_k=a+k \Delta x for {{tmath|1=k=0,1,\ldots, N}}.

The approximation to the integral becomes

\begin{align}

\int_{a}^{b} f(x)\, dx

\approx \frac{\Delta x}{2}& \sum_{k=1}^{N} \left( f(x_{k-1}) + f(x_{k}) \right) \\[1ex]

&= \Delta x \left( \frac{f(x_N) + f(x_0) }{2} + \sum_{k=1}^{N-1} f(x_k) \right) .

\end{align}

Error analysis

File:Trapezium2.gif

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

\text{E} = \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{{harvtxt|Atkinson|1989|loc=equation (5.1.7)}}

\text{E} = -\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 sign of the error is harder to identify.

An asymptotic error estimate for N → ∞ is given by

\text{E} = -\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.

Several techniques can be used to analyze the error, including:{{Harv|Weideman|2002|loc=p. 23, section 2}}

  1. Fourier series
  2. Residue calculus
  3. Euler–Maclaurin summation formula{{harvtxt|Atkinson|1989|loc=equation (5.1.9)}}{{harvtxt|Atkinson|1989|loc=p. 285}}
  4. Polynomial interpolation{{harvtxt|Burden|Faires|2011|p=194}}

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.

= Proof =

First suppose that h=\frac{b-a}{N} and a_k=a+(k-1)h. Let g_k(t) = \frac{1}{2} t[f(a_k)+f(a_k+t)] - \int_{a_k}^{a_k+t} f(x) \, dx be the function such that |g_k(h)| is the error of the trapezoidal rule on one of the intervals, [a_k, a_k+h] . Then

{dg_k \over dt}={1 \over 2}[f(a_k)+f(a_k+t)]+{1\over2}t\cdot f'(a_k+t)-f(a_k+t),

and

{d^2g_k \over dt^2}={1\over 2}t\cdot f''(a_k+t).

Now suppose that \left| f(x) \right| \leq \left| f(\xi) \right|, which holds if f is sufficiently smooth. It then follows that

\left| f(a_k+t) \right| \leq f(\xi)

which is equivalent to

-f(\xi) \leq f(a_k+t) \leq f(\xi), or -\frac{f(\xi)t}{2} \leq g_k(t) \leq \frac{f(\xi)t}{2}.

Since g_k'(0)=0 and g_k(0)=0,

\int_0^t g_k''(x) dx = g_k'(t) and \int_0^t g_k'(x) dx = g_k(t).

Using these results, we find

-\frac{f(\xi)t^2}{4} \leq g_k'(t) \leq \frac{f(\xi)t^2}{4}

and

-\frac{f(\xi)t^3}{12} \leq g_k(t) \leq \frac{f(\xi)t^3}{12}

Letting t = h we find

-\frac{f(\xi)h^3}{12} \leq g_k(h) \leq \frac{f(\xi)h^3}{12}.

Summing all of the local error terms we find

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

But we also have

- \sum_{k=1}^N \frac{f(\xi)h^3}{12} \leq \sum_{k=1}^N g_k(h) \leq \sum_{k=1}^N \frac{f(\xi)h^3}{12}

and

\sum_{k=1}^N \frac{f(\xi)h^3}{12}=\frac{f(\xi)h^3N}{12},

so that

-\frac{f(\xi)h^3N}{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^bf(x)dx \leq \frac{f(\xi)h^3N}{12}.

Therefore the total error is bounded by

\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^3N}{12}=\frac{f(\xi)(b-a)^3}{12N^2}.

= 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 is p times continuously differentiable with period T

\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)^p h^p \int_0^T\tilde{B}_{p}(x/T)f^{(p)}(x) \, dx

where h:=T/N and \tilde{B}_{p} is the periodic extension of the pth Bernoulli polynomial.{{cite book|title=Numerical Analysis, volume 181 of Graduate Texts in Mathematics|first=Rainer|last=Kress |year=1998 |publisher=Springer-Verlag}} Due to the periodicity, the derivatives at the endpoint cancel and we see that the error is O(h^p).

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.{{Cite journal |last=Goodwin|first=E. T. |date=1949 |title=The evaluation of integrals of the form \textstyle\int_{-\infty}^\infty{f(x)e^{-x^2}dx} | journal=Mathematical Proceedings of the Cambridge Philosophical Society |language=en |volume=45 |issue=2 |pages=241–245 |doi=10.1017/S0305004100024786 |bibcode=1949PCPS...45..241G |issn=1469-8064}} The evaluation of the full integral of a Gaussian function by trapezoidal rule with 1% accuracy can be made using just 4 points.{{Cite journal| last1=Kalambet|first1=Yuri |last2=Kozmin|first2=Yuri |last3=Samokhin|first3=Andrey |date=2018 |title=Comparison of integration rules in the case of very narrow chromatographic peaks |journal=Chemometrics and Intelligent Laboratory Systems|volume=179 |pages=22–30 |doi=10.1016/j.chemolab.2018.06.001|issn=0169-7439}} Simpson's rule requires 1.8 times more points to achieve the same accuracy.

= "Rough" functions =

For functions that are not in C2, the error bound given above is not applicable. Still, error bounds for such rough functions can be derived, which typically show a slower convergence with the number of function evaluations N than the O(N^{-2}) behaviour given above. Interestingly, in this case the trapezoidal rule often has sharper bounds than Simpson's rule for the same number of function evaluations.

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.{{Harv|Cruz-Uribe|Neugebauer|2002}}

Moreover, the trapezoidal rule tends to become extremely accurate when periodic functions are integrated over their periods, which can be analyzed in various ways.{{Harv|Rahman|Schmeisser|1990}}{{Harv|Weideman|2002}} 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.

Example

The following integral is given:

\int_{0.1}^{1.3}{5xe^{- 2x}{dx}}

{{ordered list| list-style-type = lower-alpha

| Use the composite trapezoidal rule to estimate the value of this integral. Use three segments.

| Find the true error E_{t} for part (a).

| Find the absolute relative true error \left| \varepsilon_{t} \right| for part (a).

}}

Solution

{{ordered list| list-style-type = lower-alpha

| The solution using the composite trapezoidal rule with 3 segments is applied as follows.

\int_{a}^{b}{f(x){dx}} \approx \frac{b - a}{2n}\left\lbrack f(a) + 2\sum_{i = 1}^{n - 1}{f(a + {ih})} + f(b) \right\rbrack

\begin{align}

n &= 3 \\

a &= 0.1 \\

b &= 1.3 \\

h &= \frac{b - a}{n}

= \frac{1.3 - 0.1}{3}

= 0.4

\end{align}

Using the composite trapezoidal rule formula

\begin{align} \int_a^b {f(x){dx}} \approx \frac{b - a}{2n} \left\lbrack f(a) + 2\left\{ \sum_{i = 1}^{n - 1}{f(a + {ih})} \right\} + f(b) \right\rbrack\;\;\;\;\;\;\;\;\;\;\;\; (3) \end{align}

\begin{align}

I &\approx \frac{1.3 - 0.1}{6}\left\lbrack f(0.1) + 2\sum_{i = 1}^{3 - 1}{f(0.1 + 0.4i)} + f(1.3) \right\rbrack\\

I &\approx \frac{1.3 - 0.1}{6}\left\lbrack f(0.1) + 2\sum_{i = 1}^{2}{f(0.1 + 0.4i)} + f(1.3) \right\rbrack\\

&= 0.2\lbrack f(0.1) + 2f(0.5) + 2f(0.9) + f(1.3)\rbrack\\

&= 0.2[5 \times 0.1 \times e^{- 2(0.1)}+2(5 \times 0.5 \times e^{- 2(0.5)})+2(5 \times 0.9 \times e^{- 2(0.9)}) + 5 \times 1.3 \times e^{- 2(1.3)}\rbrack\\

&= 0.84385

\end{align}

| The exact value of the above integral can be found by integration by parts and is

\int_{0.1}^{1.3} 5xe^{- 2x}{dx} = 0.89387

So the true error is

\begin{align}

E_{t} &= \text{True Value} - \text{Approximate Value}\\

&= 0.89387 - 0.84385\\

&= 0.05002

\end{align}

| The absolute relative true error is

\displaystyle \begin{align}\left| \varepsilon_{t} \right| &= \left| \frac{\text{True Error}}{\text{True Value}} \right| \times 100\%\\

&= \left| \frac{0.05002}{0.89387} \right| \times 100\%\\

&= 5.5959\%

\end{align}

}}

See also

Notes

{{notelist}}

References

{{refbegin}}

  • {{citation |last=Atkinson |first=Kendall E. |year=1989 |title=An Introduction to Numerical Analysis |edition=2nd |publisher=John Wiley & Sons |location=New York |isbn=978-0-471-50023-0}}
  • {{citation |last1=Rahman |first1=Qazi I. |last2=Schmeisser |first2=Gerhard |date=December 1990 |title=Characterization of the speed of convergence of the trapezoidal rule |journal=Numerische Mathematik |issn=0945-3245 |doi=10.1007/BF01386402 |volume=57 |issue=1 |pages=123–138|s2cid=122245944 }}
  • {{citation |last1=Burden |first1=Richard L. |last2=Faires |first2=J. Douglas |year=2011|title=Numerical Analysis |edition=9th |publisher=Brooks/Cole }}
  • {{citation |last=Weideman |first=J. A. C. |date=January 2002 |title=Numerical Integration of Periodic Functions: A Few Examples |journal=The American Mathematical Monthly |doi=10.2307/2695765 |jstor=2695765 |volume=109 |issue=1 |pages=21–36}}
  • {{citation |last1=Cruz-Uribe |first1=D. |last2=Neugebauer |first2=C. J. |year=2002 |title=Sharp Error Bounds for the Trapezoidal Rule and Simpson's Rule |journal=Journal of Inequalities in Pure and Applied Mathematics |volume=3 |issue=4 |url=http://www.emis.de/journals/JIPAM/images/031_02_JIPAM/031_02.pdf }}

{{refend}}