Gaussian quadrature

From Wikipedia, the free encyclopedia

(Redirected from Gauss-Kronrod quadrature)
Jump to: navigation, search

In numerical analysis, a quadrature rule is an approximation of the definite integral of a function, usually stated as a weighted sum of function values at specified points within the domain of integration. (See numerical integration for more on quadrature rules.) An n-point Gaussian quadrature rule, named after Carl Friedrich Gauss, is a quadrature rule constructed to yield an exact result for polynomials of degree 2n − 1, by a suitable choice of the n points xi and n weights wi. The domain of integration for such a rule is conventionally taken as [−1, 1], so the rule is stated as

\int_{-1}^1 f(x)\,dx \approx \sum_{i=1}^n w_i f(x_i).

It can be shown (see Press, et al., or Stoer and Bulirsch) that the evaluation points are just the roots of a polynomial belonging to a class of orthogonal polynomials.

Contents

For the integration problem stated above, the associated polynomials are Legendre polynomials, Pn(x). With the nth polynomial normalized to give Pn(1) = 1, the ith Gauss node, xi, is the ith root of Pn; its weight is given by (Abramowitz & Stegun 1972, p. 887)

 w_i = \frac{2}{\left( 1-x_i^2 \right) (P'_n(x_i))^2} \,\!

Some low-order rules for solving the integration problem are listed below.

Number of points, n Points, xi Weights, wi
1 0 2
2 \pm\sqrt{1/3} 1
3 0 89
\pm\sqrt{3/5} 59
4 \pm\sqrt{\Big( 3 - 2\sqrt{6/5} \Big)/7} \tfrac{18+\sqrt{30}}{36}
\pm\sqrt{\Big( 3 + 2\sqrt{6/5} \Big)/7} \tfrac{18-\sqrt{30}}{36}
5 0 128225
\pm\tfrac13\sqrt{5-2\sqrt{10/7}} \tfrac{322+13\sqrt{70}}{900}
\pm\tfrac13\sqrt{5+2\sqrt{10/7}} \tfrac{322-13\sqrt{70}}{900}

An integral over [a, b] must be changed into an integral over [−1, 1] before applying the Gaussian quadrature rule. This change of interval can be done in the following way:


\int_a^b f(t)\,dt = \frac{b-a}{2} \int_{-1}^1 f\left(\frac{b-a}{2}x 
+ \frac{a+b}{2}\right)\,dx

After applying the Gaussian quadrature rule, the following approximation is obtained:


\frac{b-a}{2} \sum_{i=1}^n w_i f\left(\frac{b-a}{2}x_i + \frac{a+b}{2}\right)

The integration problem can be expressed in a slightly more general way by introducing a positive weight function ω into the integrand, and allowing an interval other than [−1, 1]. That is, the problem is to calculate

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

for some choices of a, b, and ω. For a = −1, b = 1, and ω(x) = 1, the problem is the same as that considered above. Other choices lead to other integration rules. Some of these are tabulated below. Equation numbers are given for Abramowitz and Stegun (A & S).

Interval ω(x) Orthogonal polynomials A & S
[−1, 1] 1\, Legendre polynomials 25.4.29
(−1, 1) (1-x)^\alpha (1+x)^\beta,\quad \alpha, \beta > -1\, Jacobi polynomials 25.4.33 (β = 0)
(−1, 1) \frac{1}{\sqrt{1 - x^2}} Chebyshev polynomials (first kind) 25.4.38
[−1, 1] \sqrt{1 - x^2} Chebyshev polynomials (second kind) 25.4.40
[0, ∞)  e^{-x}\, Laguerre polynomials 25.4.45
(−∞, ∞)  e^{-x^2} Hermite polynomials 25.4.46

Let q be a nontrivial polynomial of degree n such that


\int_a^b \omega(x) \, x^k q(x) \, dx = 0, \quad \text{for all }k=0,1,\ldots,n-1.

If we pick the nodes to be the zeros of q, then there exist weights wi which make the computed integral exact for all polynomials of degree 2n − 1 or less. Furthermore, all these nodes will lie in the open interval (a, b) (Stoer & Bulirsch 2002, pp. 172–175).

The error of a Gaussian quadrature rule can be stated as follows (Stoer & Bulirsch 2002, Thm 3.6.24). For an integrand which has 2n continuous derivatives,

 \int_a^b \omega(x)\,f(x)\,dx - \sum_{i=1}^n w_i\,f(x_i)
 = \frac{f^{(2n)}(\xi)}{(2n)!} \, (p_n,p_n)

for some ξ in (a, b), where pn is the orthogonal polynomial of order n and where

 (f,g) = \int_a^b \omega(x) f(x) g(x) \, dx . \,\!

In the important special case of ω(x) = 1, we have the error estimate (Kahaner, Moler & Nash 1989, §5.2)

 \frac{(b-a)^{2n+1} (n!)^4}{(2n+1)[(2n)!]^3} f^{(2n)} (\xi) , \qquad a < \xi < b . \,\!

Stoer and Bulirsch remark that this error estimate is inconvenient in practice, since it may be difficult to estimate the order 2n derivative, and furthermore the actual error may be much less than a bound established by the derivative. Another approach is to use two Gaussian quadrature rules of different orders, and to estimate the error as the difference between the two results. For this purpose, Gauss-Kronrod quadrature rules can be useful.

If the interval [a, b] is subdivided, the Gauss evaluation points of the new subintervals never coincide with the previous evaluation points (except at zero for odd numbers), and thus the integrand must be evaluated at every point. Gauss-Kronrod rules are extensions of Gauss quadrature rules generated by adding n + 1 points to an n-point rule in such a way that the resulting rule is of order 3n + 1. This allows for computing higher-order estimates while re-using 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. The rules are named after Alexander Kronrod who invented them in the 1960s. The algorithms in QUADPACK (see below) are based on Gauss–Kronrod rules.

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 yields both a quadrature estimate and an error estimate.

(G7,K15) on [−1,1]
Gauss nodes Weights
±0.94910 79123 42759 0.12948 49661 68870
±0.74153 11855 99394 0.27970 53914 89277
±0.40584 51513 77397 0.38183 00505 05119
 0.00000 00000 00000 0.41795 91836 73469
Kronrod nodes Weights
±0.99145 53711 20813 0.02293 53220 10529
±0.94910 79123 42759 0.06309 20926 29979
±0.86486 44233 59769 0.10479 00103 22250
±0.74153 11855 99394 0.14065 32597 15525
±0.58608 72354 67691 0.16900 47266 39267
±0.40584 51513 77397 0.19035 05780 64785
±0.20778 49550 07898 0.20443 29400 75298
 0.00000 00000 00000 0.20948 21410 84728

Patterson showed how to find further extensions of this type.

Advanced Search
Included Web Search Engines


Safe Search

close

Top Matching Results

Occasionally Search.com will highlight specialized results that are based on the context of your query. Examples of specialized results include specific links to news, images, or video.

Top Matching Results may highlight information from other Search.com pages, content from the CNET Network of sites, or third party content. The listings are based purely on relevance. Search.com does not receive payment for listings in this section but our partners that provide this data may get paid for listing these products.

Sponsored Links

This section contains paid listings which have been purchased by companies that want to have their sites appear for specific search terms and related content. These listings are administered, sorted and maintained by a third party and are not endorsed by Search.com.

Search Results

Search.com sends your search query to several search engines at one time and integrates the results into one list which has been sorted by relevance using Search.com's proprietary algorithm. You can customize the list of search engines included in your metasearch from the preferences.

The search engines that are used in your metasearch may allow companies to pay to have their Web sites included within the results. To view the Paid Inclusion policy for a specific search engine, please visit their Web site. Search.com does not accept payment or share revenue with any search engine partner for listings in this section.