In numerical analysis, the trapezoidal rule (also known as the trapezoid rule or trapezium rule) is an approximate technique for calculating the definite integral

The trapezoidal rule works by approximating the region under the graph of the function
as a trapezoid and calculating its area. It follows that

Contents |
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.[1]
Moreover, the trapezoidal rule tends to become extremely accurate when periodic functions are integrated over their periods, which can be analyzed in various ways.[2][3]
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.
For a domain discretized into "N" equally spaced panels, or "N+1" grid points (1, 2, ..., N+1), where the grid spacing is "h=(b-a)/N", the approximation to the integral becomes

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

The error of the composite trapezoidal rule is the difference between the value of the integral and the numerical result:
![\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]](http://bin.sensegates.com/s/f/c/c/fcc7b80f5e85dce8b8a262ee9ce83223.png)
There exists a number ξ between a and b, such that[4]

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, then the error is harder to identify.
In general, three techniques are used in the analysis of error:[5]
An asymptotic error estimate for N → ∞ is given by
![\text{error} = -\frac{(b-a)^2}{12N^2} \big[ f'(b)-f'(a) \big] + O(N^{-3}).](http://bin.sensegates.com/s/1/b/5/1b56d173d86d901046ad0eef1308513e.png)
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.[2]
The trapezoidal rule often converges very quickly for periodic functions.[3] This can be explained intuitively as:
More detailed analysis can be found in.[2][3]
| This section requires expansion. |
For various classes of functions that are not twice-differentiable, the trapezoidal rule has sharper bounds than Simpson's rule.[1]
The trapezoidal rule is easily implemented in Excel.
As an example, we show the integral of
.

The (composite) trapezoidal rule can be implemented in Python as follows:
#!/usr/bin/env python from __future__ import division def trapezoidal_rule(f, a, b, n): """Approximates the definite integral of f from a to b by the composite trapezoidal rule, using n subintervals""" h = (b - a) / n s = f(a) + f(b) for i in xrange(1, n): s += 2 * f(a + i * h) return s * h / 2 print trapezoidal_rule(lambda x:x**9, 0.0, 10.0, 100000) # displays 1000000000.75
The (composite) trapezoidal rule can be implemented in MATLAB as follows:
function s=Traq(f,a,b,M) %Input - f is the integrand input as a string 'f' % - a and b are upper and lower limits of integration % - M is the number of subintervals %Output - s is the trapezoidal rule sum h=(b-a)/M; s=0; for k=1:(M-1) x=a+h*k; s=s+feval(f,x); end s=h*(feval(f,a)+feval(f,b))/2+h*s;
An alternative implementation that uses the MATLAB's vectorization is
function s=Trapezoid(f,a,b,M) %Input - f is the integrand input as a string 'f', which must accept vector inputs % - a and b are upper and lower limits of integration % - M is the number of subintervals %Output - s is the trapezoidal rule sum h=(b-a)/M; x=a:h:b; fval=feval(f,x); s=h*sum(fval(1:end-1)+fval(2:end))/2;
In C++, one can implement the trapezoidal rule as follows.
template <class ContainerA, class ContainerB> double trapezoid_integrate(const ContainerA &x, const ContainerB &y) { if (x.size() != y.size()) { throw std::logic_error("x and y must be the same size"); } double sum = 0.0; for (int i = 1; i < x.size(); i++) { sum += (x[i] - x[i-1]) * (y[i] + y[i-1]); } return sum * 0.5; }
Here, x and y can be any object of a class implementing operator[] and size().
| The Wikibook A-level Mathematics has a page on the topic of |
sensagent's content
Dictionary and translator for handheld
New : sensagent is now available on your handheld
Advertising ▼
Webmaster Solution
Alexandria
A windows (pop-into) of information (full-content of Sensagent) triggered by double-clicking any word on your webpage. Give contextual explanation and translation from your sites !
SensagentBox
With a SensagentBox, visitors to your site can access reliable information on over 5 million pages provided by Sensagent.com. Choose the design that fits your site.
Business solution
Improve your site content
Add new content to your site from Sensagent by XML.
Crawl products or adds
Get XML access to reach the best products.
Index images and define metadata
Get XML access to fix the meaning of your metadata.
Please, email us to describe your idea.
Lettris
Lettris is a curious tetris-clone game where all the bricks have the same square shape but different content. Each square carries a letter. To make squares disappear and save space for other squares you have to assemble English words (left, right, up, down) from the falling squares.
boggle
Boggle gives you 3 minutes to find as many words (3 letters or more) as you can in a grid of 16 letters. You can also try the grid of 16 letters. Letters must be adjacent and longer words score better. See if you can get into the grid Hall of Fame !
English dictionary
Main references
Most English definitions are provided by WordNet .
English thesaurus is mainly derived from The Integral Dictionary (TID).
English Encyclopedia is licensed by Wikipedia (GNU).
Copyrights
The wordgames anagrams, crossword, Lettris and Boggle are provided by Memodata.
The web service Alexandria is granted from Memodata for the Ebay search.
The SensagentBox are offered by sensAgent.
Translation
Change the target language to find translations.
Tips: browse the semantic fields (see From ideas to words) in two languages to learn more.
last searches on the dictionary :
computed in 0.047s