Adaptive quadrature

Adaptive quadrature is a numerical integration method in which the integral of a function f ( x ) {\displaystyle f(x)} is approximated using static quadrature rules on adaptively refined subintervals of the region of integration. 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 may fail.

General scheme

Adaptive quadrature follows the general scheme

1. procedure integrate ( f, a, b, τ )
2.     
  
    
      
        Q
        
        
          
          
            a
          
          
            b
          
        
        f
        (
        x
        )
        
        
          d
        
        x
      
    
    {\displaystyle Q\approx \int _{a}^{b}f(x)\,\mathrm {d} x}
  

3.     
  
    
      
        ε
        
        
          |
          
            Q
            
            
              
              
                a
              
              
                b
              
            
            f
            (
            x
            )
            
            
              d
            
            x
          
          |
        
      
    
    {\displaystyle \varepsilon \approx \left|Q-\int _{a}^{b}f(x)\,\mathrm {d} x\right|}
  

4.     if ε > τ then
5.         m = (a + b) / 2
6.         Q = integrate(f, a, m, τ/2) + integrate(f, m, b, τ/2)
7.     endif
8.     return Q

An approximation Q {\displaystyle Q} to the integral of f ( x ) {\displaystyle f(x)} over the interval [ a , b ] {\displaystyle [a,b]} is computed (line 2), as well as an error estimate ε {\displaystyle \varepsilon } (line 3). If the estimated error is larger than the required tolerance τ {\displaystyle \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 a b f ( x ) d x , {\displaystyle Q\approx \int _{a}^{b}f(x)\,\mathrm {d} x,}

the error estimator

ε | Q a b f ( x ) d x | , {\displaystyle \varepsilon \approx \left|Q-\int _{a}^{b}f(x)\,\mathrm {d} x\right|,}

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

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

Basic rules

The quadrature rules generally have the form

Q n = i = 0 n w i f ( x i ) a b f ( x ) d x {\displaystyle Q_{n}\quad =\quad \sum _{i=0}^{n}w_{i}f(x_{i})\quad \approx \quad \int _{a}^{b}f(x)\,\mathrm {d} x}

where the nodes x i {\displaystyle x_{i}} and weights w i {\displaystyle w_{i}} are generally precomputed.

In the simplest case, Newton–Cotes formulas of even degree are used, where the nodes x i {\displaystyle x_{i}} are evenly spaced in the interval:

x i = a + b a n i . {\displaystyle x_{i}=a+{\frac {b-a}{n}}i.}

When such rules are used, the points at which f ( x ) {\displaystyle 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 ( 2 i n π ) . {\displaystyle x_{i}=\cos \left({\frac {2i}{n}}\pi \right).}

Or, when Fejér quadrature is used,

x i = cos ( 2 ( i + 0.5 ) n + 1 π ) . {\displaystyle 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:

  • Richardson extrapolation (see also Romberg's method)
  • Null rules
  • Epsilon algorithm

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 integrands 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 is generally more complex to program and may require more working space to record information on the current set of intervals.

See also

  • Adaptive numerical differentiation
  • Adaptive step size in ODE
  • Adaptive Simpson's method for an example of adaptive quadrature
  • QUADPACK, a FORTRAN library that uses global adaptive quadrature

Notes

References

  • McKeeman, William (December 1962). Gotlieb, Calvin (ed.). "Algorithm 145: Adaptive numerical integration by Simpson's rule". Communications of the ACM (Periodical). 5 (12). New York: ACM: 604–605. doi:10.1145/355580.369102. eISSN 1557-7317. ISSN 0001-0782. OCLC 1011805770.
  • John R. Rice. A Metalgorithm for Adaptive Quadrature. Journal of the ACM 22(1) pp 61-82 (January 1975).
  • Press, WH; Teukolsky, SA; Vetterling, WT; Flannery, BP (2007), "Section 4.7. Adaptive Quadrature", Numerical Recipes: The Art of Scientific Computing (3rd ed.), New York: Cambridge University Press, ISBN 978-0-521-88068-8