Search: in
Adaptive quadrature
Adaptive quadrature in Encyclopedia Encyclopedia
  Tutorials     Encyclopedia     Videos     Books     Software     DVDs  
       





Adaptive quadrature

In applied mathematics, adaptive quadrature is a process in which the integral of a function f(x) is approximated using static quadrature rules on adaptively refined subintervals of the integration domain. Generally, adaptive algorithms are just as efficient and effective as traditional algorithms for "well-behaved" integrands, but are also effective for "badly-behaved" integrands for which traditional algorithms fail.

Contents


General scheme

Adaptive quadrature follows the general scheme

1. procedure integrate ( f , a , b , tau ) 2.    Q \approx \int_a^bf(x)\,\mbox{d}x 3.    \varepsilon \approx \left|Q - \int_a^bf(x)\,\mbox{d}x\right| 4.    if \varepsilon > \tau then 5.       m = (a + b) / 2 6.       Q = integrate(f,a,m,tau/2) + integrate(f,m,b,tau/2) 7.    endif 8.    return Q 

An approximation Q to the integral of f(x) over the interval [a,b] is computed (line 2), as well as an error estimate \varepsilon (line 3). If the estimated error is larger than the required tolerance \tau(line 4), the interval is subdivided (line 5) and the quadrature is applied on both halves separately (line 6). Either the initial estimate or the sum of the recursively computed halves is returned (line 7).

The important components are the quadrature rule itself

Q \approx \int_a^bf(x)\,\mbox{d}x ,

the error estimator

\varepsilon \approx \left|Q - \int_a^bf(x)\,\mbox{d}x\right| ,

and the logic for deciding which interval to subdivide, and when to terminate.

There are, of course, several variants of this scheme. The most common will be discussed later.

Basic quadrature rules

The quadrature rules generally have the form

Q_n \quad = \quad \sum_{i=0}^n w_if(x_i) \quad \approx \quad \int_a^b f(x)\,\mbox{d}x

where the nodes x_i and weights w_i are generally pre-computed.

In the simplest case, Newton Cotes formulas of even degree are used, where the nodes x_i are evenly spaced in the interval:

x_i = a + \frac{i}{n}(b - a).

When such rules are used, the points at which f(x) has been evaluated can be re-used upon recursion:

A similar strategy is used with Clenshaw Curtis quadrature, where the nodes are chosen as

x_i = \cos\left( \frac{2i}{n}\pi \right)

Or, when Fej r quadrature is used,

x_i = \cos\left( \frac{2(i+0.5)}{n+1}\pi \right).

Other quadrature rules, such as Gaussian quadrature or Gauss-Kronrod quadrature, may also be used.

An algorithm may elect to use different quadrature methods on different subintervals, for example using a high-order method only where the integrand is smooth.

Error estimation

Some quadrature algorithms generate a sequence of results which should approach the correct value. Otherwise one can use a "null rule" which has the form of the above quadrature rule, but whose value would be zero for a simple integrand (for example, if the integrand were a polynomial of the appropriate degree).

See:

Subdivision logic

"Local" adaptive quadrature makes the acceptable error for a given interval proportional to the length of that interval. This criterion can be difficult to satisfy if the integrand are badly behaved at only a few points, for example with a few step discontinuities. Alternatively, one could require only that the sum of the errors on each of the subintervals be less than the user's requirement. This would be "global" adaptive quadrature. Global adaptive quadrature can be more efficient (using fewer evaluations of the integrand) but are generally more complex to program and may require more working space to record information on the current set of intervals.

See also

References

ca:Quadratura adaptativa






Source: Wikipedia | The above article is available under the GNU FDL. | Edit this article



Search for Adaptive quadrature in Tutorials
Search for Adaptive quadrature in Encyclopedia
Search for Adaptive quadrature in Videos
Search for Adaptive quadrature in Books
Search for Adaptive quadrature in Software
Search for Adaptive quadrature in DVDs
Search for Adaptive quadrature in Store




Advertisement




Adaptive quadrature in Encyclopedia
Adaptive_quadrature top Adaptive_quadrature

Home - Add TutorGig to Your Site - Disclaimer

©2011-2013 TutorGig.info All Rights Reserved. Privacy Statement