Gauss–Kronrod_quadrature_formula

Gauss–Kronrod quadrature formula

Gauss–Kronrod quadrature formula

Numerical integration method


The Gauss–Kronrod quadrature formula is an adaptive method for numerical integration. It is a variant of Gaussian quadrature, in which the evaluation points are chosen so that an accurate approximation can be computed by re-using the information produced by the computation of a less accurate approximation. It is an example of what is called a nested quadrature rule: for the same set of function evaluation points, it has two quadrature rules, one higher order and one lower order (the latter called an embedded rule). The difference between these two approximations is used to estimate the calculational error of the integration.

These formulas are named after Alexander Kronrod, who invented them in the 1960s, and Carl Friedrich Gauss.

Description

The problem in numerical integration is to approximate definite integrals of the form

Such integrals can be approximated, for example, by n-point Gaussian quadrature

where wi, xi are the weights and points at which to evaluate the function f(x).

If the interval [a, b] is subdivided, the Gauss evaluation points of the new subintervals never coincide with the previous evaluation points (except at the midpoint for odd numbers of evaluation points), and thus the integrand must be evaluated at every point. Gauss–Kronrod formulas are extensions of the Gauss quadrature formulas generated by adding points to an -point rule in such a way that the resulting rule is of order (Laurie (1997, p. 1133); the corresponding Gauss rule is of order ). These extra points are the zeros of Stieltjes polynomials. This allows for computing higher-order estimates while reusing the function values of a lower-order estimate. The difference between a Gauss quadrature rule and its Kronrod extension are often used as an estimate of the approximation error.

Example

A popular example combines a 7-point Gauss rule with a 15-point Kronrod rule (Kahaner, Moler & Nash 1989, §5.5). Because the Gauss points are incorporated into the Kronrod points, a total of only 15 function evaluations are needed.

More information Weights, Kronrod nodes ...

The integral is then estimated by the Kronrod rule and the error can be estimated as .

For an arbitrary interval the node positions and weights are scaled to the interval as follows:

Patterson (1968) showed how to find further extensions of this type, Piessens & Branders (1974) and Monegato (1978) proposed improved algorithms, and finally the most efficient algorithm was proposed by Laurie (1997). Quadruple precision (34 decimal digits) coefficients for (G7, K15), (G10, K21), (G15, K31), (G20, K41) and others are computed and tabulated.[1]

Implementations

Routines for Gauss–Kronrod quadrature are provided by the QUADPACK library, the GNU Scientific Library, the NAG Numerical Libraries, R,[2] the C++ library Boost.,[3] as well as the Julia package QuadGK.jl[4] (which can compute Gauss–Kronrod formulas to arbitrary precision).

See also


Notes

  1. Pavel Holoborodko (2011-11-07). "Gauss-Kronrod Quadrature Nodes and Weights". Retrieved 2016-01-15.
  2. "R: Integration of One-Dimensional Functions". R Documentation. Retrieved 14 December 2019.
  3. Thompson, Nick; Maddock, John. "Gauss-Kronrod Quadrature". boost.org. Retrieved 24 December 2017.
  4. "QuadGK.jl Manual". juliamath.github.io. Retrieved 2023-07-19.

References


Share this article:

This article uses material from the Wikipedia article Gauss–Kronrod_quadrature_formula, and is written by contributors. Text is available under a CC BY-SA 4.0 International License; additional terms may apply. Images, videos and audio are available under their respective licenses.