Gaussian quadrature

Gaussian quadrature

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 2"n" − 1 or less by a suitable choice of the points "x""i" and weights "w""i" for "i" = 1,...,"n".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).

Gaussian quadrature as above will only produce accurate results if the function "f"("x") is well approximated by a polynomial function within the range [-1,1] . The method is, for example, not suitable for functions with singularities. However, if the integrated function can be written as f(x) = W(x) g(x),, where "g"("x") is approximately polynomial, and "W"("x") is known, then there are alternative weights w_i such that

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

Common weighting functions include W(x)=(1-x^2)^{-1/2}, (Gauss-Chebyshev) and W(x)=e^{-x^2} (Gauss-Hermite).

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.

Rules for the basic problem

For the integration problem stated above,the associated polynomials are Legendre polynomials, "P""n"("x"). With the "n"th polynomial normalized to give "P""n"(1) = 1, the "i"th Gauss node, "x""i", is the "i"th root of "P""n"; its weight is given by Harv|Abramowitz|Stegun|1972|loc=p. 887: w_i = frac{2}{left( 1-x_i^2 ight) (P'_n(x_i))^2} ,!Some low-order rules for solving the integration problem are listed below.

Change of interval for Gaussian quadrature

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(x),dx = frac{b-a}{2} int_{-1}^1 fleft(frac{b-a}{2}x + frac{a+b}{2} ight),dx

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

:frac{b-a}{2} sum_{i=1}^n w_i fleft(frac{b-a}{2}x_i + frac{a+b}{2} ight)

Other forms of Gaussian quadrature

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).

Fundamental theorem

Let p_n be a nontrivial polynomial of degree "n" such that

:int_a^b omega(x) , x^k p_n(x) , dx = 0, quad ext{for all }k=0,1,ldots,n-1.

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

The polynomial p_n is said to be an orthogonal polynomial of degree "n" associated to the weight function omega (x). It is unique up to a constant normalization factor.

Computation of Gaussian quadrature rules

For computing the nodes x_i and weights w_i of Gaussian quadrature rules, the fundamental tool is the three-term recurrence relation satisfied by the set of orthogonal polynomials associated to the corresponding weight function.

If, for instance, p_n is the monic orthogonal polynomial of degree "n" (the orthogonal polynomial of degree "n" with the highest degree coefficient equal to one), one can show that such orthogonal polynomials are related through the recurrence relation

:p_{n+1}(x)+(B_n-x)p_n (x)+A_n p_{n-1}(x)=0, qquad n=1,2,ldots

From this, nodes and weights can be computed from the eigenvalues and eigenvectors of an associated linear algebra problem. This is usually named as the Golub–Welsch algorithm harv|Gil|Segura|Temme|2007.

The starting idea comes from the observation that, if x_i is a root of the orthogonal polynomial p_n then, using the previous recurrence formula for k=0,1,ldots, n-1 and because p_n (x_j)=0, we have

J ilde{P}=x_j ilde{P}

where ilde{P}= [p_0 (x_j),p_1 (x_j),...,p_{n-1}(x_j)] ^{T}

and J is the so-called Jacobi matrix:

mathbf{J}=left(egin{array}{llllll}B_0 & 1 & 0 & ldots & ldots & ldots\A_1 & B_1 & 1 & 0 & ldots & ldots \0 & A_2 & B_2 & 1 & 0 & ldots \ldots & ldots & ldots & ldots & ldots & ldots \ldots & ldots & ldots & A_{n-2} & B_{n-2} & 1 \ldots & ldots & ldots & ldots & A_{n-1} & B_{n-1}end{array} ight).

The nodes of gaussian quadrature can therefore be computed as the eigenvalues of a tridiagonal matrix.

For computing the weights and nodes, it is preferable to consider the symmetric tridiagonal matrix mathcal{J} with elements mathcal{J}_{i,i}=J_{i,i}, i=1,ldots,n and mathcal{J}_{i-1,i}=mathcal{J}_{i,i-1}=sqrt{J_{i,i-1}J_{i-1,i,, i=2,ldots,n. mathbf{J} and mathcal{J} are equivalent and therefore have the same eigenvalues (the nodes). The weights can be computed from the matrix J. If phi^{(j)} is a normalized eigenvector (i.e., an eigenvector with euclidean norm equal to one) associated to the eigenvalue x_j, the corresponding weight can be computed fromthe first component of this eigenvector, namely:

w_j=mu_0 left(phi_1^{(j)} ight)^2

where mu_0 is the integral of the weight function

mu_0=int_a^b w(x) dx.

See, for instance, harv|Gil|Segura|Temme|2007 for further details.

Error estimates

The error of a Gaussian quadrature rule can be stated as follows harv|Stoer|Bulirsch|2002|loc=Thm 3.6.24.For an integrand which has 2"n" 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 "p""n" 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 Harv|Kahaner|Moler|Nash|1989|loc=§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 2"n" 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.

Gauss–Kronrod rules

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.

References

*
*
*
*
*.

External links

* [http://www.alglib.net/integral/gq/ ALGLIB] contains a collection of algorithms for numerical integration (in C# / C++ / Delphi / Visual Basic / etc.)
* [http://www.gnu.org/software/gsl/ GNU Scientific Library] - includes C version of QUADPACK algorithms (see also GNU Scientific Library)
* [http://numericalmethods.eng.usf.edu/topics/gauss_quadrature.html Gaussian Quadrature Rule of Integration - Notes, PPT, Matlab, Mathematica, Maple, Mathcad] at "Holistic Numerical Methods Institute"
* [http://www.sitmo.com/eqcat/13 Gaussian Quadrature table] at sitmo.com
* [http://mathworld.wolfram.com/Legendre-GaussQuadrature.html Legendre-Gauss Quadrature at MathWorld]
* [http://demonstrations.wolfram.com/GaussianQuadrature/ Gaussian Quadrature] by Chris Maes and Anton Antonov, The Wolfram Demonstrations Project.


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • Gaussian grid — A Gaussian grid is used in the earth sciences as a grid for scientific modeling on a sphere (i.e., the approximate shape of the Earth). The grid is rectangular, with a set number of orthogonal coordinates (usually latitude and longitude), such… …   Wikipedia

  • Quadrature amplitude modulation — (QAM) (Pronounced IPA|kwa:m) is a modulation scheme which conveys data by changing ( modulating ) the amplitude of two carrier waves. These two waves, usually sinusoids, are out of phase with each other by 90° and are thus called quadrature… …   Wikipedia

  • Quadrature amplitude modulation — Quadraturamplitudenmodulation (Abkürzung: QAM, engl: Quadrature Amplitude Modulation) ist eine Modulationsart in der elektronischen Nachrichtentechnik, die Amplitudenmodulation und Phasenmodulation miteinander kombiniert. Dabei werden derselben… …   Deutsch Wikipedia

  • Quadrature Phase Shift Keying — Die Quadraturphasenumtastung oder Vierphasen Modulation (englisch Quadrature Phase Shift Keying, QPSK) ist ein digitales Modulationsverfahren in der Nachrichtentechnik. Mit QPSK können pro Sendesymbol zwei Bits übertragen werden. Dadurch… …   Deutsch Wikipedia

  • Clenshaw–Curtis quadrature — and Fejér quadrature are methods for numerical integration, or quadrature , that are based on an expansion of the integrand in terms of Chebyshev polynomials. Equivalently, they employ a change of variables x = cos θ and use a discrete… …   Wikipedia

  • Tanh-sinh quadrature — is a method for numerical integration introduced by Hidetosi Takahasi and Masatake Mori in 1974.[1] It uses the change of variables to transform an integral on the interval x ∈ (−1, +1) to an integral on the entire real line… …   Wikipedia

  • Gauss–Kronrod quadrature formula — In numerical mathematics, the Gauss–Kronrod quadrature formula is a method for numerical integration (calculating approximate values of integrals). Gauss–Kronrod quadrature is a variant of Gaussian quadrature, in which the evaluation points are… …   Wikipedia

  • 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… …   Wikipedia

  • Chebyshev–Gauss quadrature — In numerical analysis Chebyshev–Gauss quadrature is an extension of Gaussian quadrature method for approximating the value of integrals of the following kind: and In the first case where …   Wikipedia

  • Gauss–Laguerre quadrature — In numerical analysis Gauss–Laguerre quadrature is an extension of Gaussian quadrature method for approximating the value of integrals of the following kind::int {0}^{+infty} e^{ x} f(x),dx.In this case :int {0}^{+infty} e^{ x} f(x),dx approx sum …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”