Template:Short description Template:Redirect Template:More footnotes

File:Comparison Gaussquad trapezoidal.svg
Comparison between 2-point Gaussian and trapezoidal quadrature.
The blue curve shows the function whose definite integral on the interval Template:Math is to be calculated (the integrand). The trapezoidal rule approximates the function with a linear function that coincides with the integrand at the endpoints of the interval and is represented by an orange dashed line. The approximation is apparently not good, so the error is large (the trapezoidal rule gives an approximation of the integral equal to Template:Math, while the correct value is Template:Math). To obtain a more accurate result, the interval must be partitioned into many subintervals and then the composite trapezoidal rule must be used, which requires many more calculations.
The Gaussian quadrature chooses more suitable points instead, so even a linear function approximates the function better (the black dashed line). As the integrand is the third-degree polynomial Template:Math, the 2-point Gaussian quadrature rule even returns an exact result.

In numerical analysis, an Template:Mvar-point Gaussian quadrature rule, named after Carl Friedrich Gauss,<ref>Template:Harvnb</ref> is a quadrature rule constructed to yield an exact result for polynomials of degree Template:Math or less by a suitable choice of the nodes Template:Mvar and weights Template:Mvar for Template:Math.

The modern formulation using orthogonal polynomials was developed by Carl Gustav Jacobi in 1826.<ref>Template:Harvnb</ref> The most common domain of integration for such a rule is taken as Template:Math, so the rule is stated as <math display="block">\int_{-1}^1 f(x)\,dx \approx \sum_{i=1}^n w_i f(x_i),</math>

which is exact for polynomials of degree Template:Math or less. This exact rule is known as the Gauss–Legendre quadrature rule. The quadrature rule will only be an accurate approximation to the integral above if Template:Math is well-approximated by a polynomial of degree Template:Math or less on Template:Math.

The Gauss–Legendre quadrature rule is not typically used for integrable functions with endpoint singularities. Instead, if the integrand can be written as

<math display="block">f(x) = \left(1 - x\right)^\alpha \left(1 + x\right)^\beta g(x),\quad \alpha,\beta > -1,</math>

where Template:Math is well-approximated by a low-degree polynomial, then alternative nodes Template:Mvar and weights Template:Mvar will usually give more accurate quadrature rules. These are known as Gauss–Jacobi quadrature rules, i.e.,

<math display="block">\int_{-1}^1 f(x)\,dx = \int_{-1}^1 \left(1 - x\right)^\alpha \left(1 + x\right)^\beta g(x)\,dx \approx \sum_{i=1}^n w_i' g\left(x_i'\right).</math>

Common weights include <math display="inline">\frac{1}{\sqrt{1 - x^2}}</math> (Chebyshev–Gauss) and <math display="inline">\sqrt{1 - x^2}</math>. One may also want to integrate over semi-infinite (Gauss–Laguerre quadrature) and infinite intervals (Gauss–Hermite quadrature).

It can be shown (see Press et al., or Stoer and Bulirsch) that the quadrature nodes Template:Mvar are the roots of a polynomial belonging to a class of orthogonal polynomials (the class orthogonal with respect to a weighted inner-product). This is a key observation for computing Gauss quadrature nodes and weights.

Gauss–Legendre quadratureEdit

Template:Further

File:Legendrepolynomials6.svg
Graphs of Legendre polynomials (up to Template:Math

For the simplest integration problem stated above, i.e., Template:Math is well-approximated by polynomials on <math>[-1, 1]</math>, the associated orthogonal polynomials are Legendre polynomials, denoted by Template:Math. With the Template:Mvar-th polynomial normalized to give Template:Math, the Template:Mvar-th Gauss node, Template:Mvar, is the Template:Mvar-th root of Template:Mvar and the weights are given by the formula<ref>Template:Harvnb</ref> <math display="block"> w_i = \frac{2}{\left( 1 - x_i^2 \right) \left[P'_n(x_i)\right]^2}.</math>

Some low-order quadrature rules are tabulated below (over interval Template:Math, see the section below for other intervals).

Number of points, Template:Mvar Points, Template:Mvar Weights, Template:Mvar
1 0 2
2 <math>\pm\frac{1}{\sqrt{3}}</math> ±0.57735... 1
3 0 <math>\frac{8}{9}</math> 0.888889...
<math>\pm\sqrt{\frac{3}{5}}</math> ±0.774597... <math>\frac{5}{9}</math> 0.555556...
4 <math>\pm\sqrt{\frac{3}{7} - \frac{2}{7}\sqrt{\frac{6}{5}}}</math> ±0.339981... <math>\frac{18 + \sqrt{30}}{36}</math> 0.652145...
<math>\pm\sqrt{\frac{3}{7} + \frac{2}{7}\sqrt{\frac{6}{5}}}</math> ±0.861136... <math>\frac{18 - \sqrt{30}}{36}</math> 0.347855...
5 0 <math>\frac{128}{225}</math> 0.568889...
<math>\pm\frac{1}{3}\sqrt{5 - 2\sqrt{\frac{10}{7}}}</math> ±0.538469... <math>\frac{322 + 13\sqrt{70}}{900}</math> 0.478629...
<math>\pm\frac{1}{3}\sqrt{5 + 2\sqrt{\frac{10}{7}}}</math> ±0.90618... <math>\frac{322 - 13\sqrt{70}}{900}</math> 0.236927...

Change of intervalEdit

An integral over Template:Math must be changed into an integral over Template:Math before applying the Gaussian quadrature rule. This change of interval can be done in the following way: <math display="block">\int_a^b f(x)\,dx = \int_{ -1}^1 f\left(\frac{b-a}{2}\xi + \frac{a+b}{2}\right)\,\frac{dx}{d\xi}d\xi</math>

with <math>\frac{dx}{d\xi} = \frac{b-a}{2}</math>

Applying the <math>n</math> point Gaussian quadrature <math>(\xi, w)</math> rule then results in the following approximation: <math display="block">\int_a^b f(x)\,dx \approx \frac{b-a}{2} \sum_{i=1}^n w_i f\left(\frac{b-a}{2}\xi_i + \frac{a+b}{2}\right).</math>

Example of two-point Gauss quadrature ruleEdit

Use the two-point Gauss quadrature rule to approximate the distance in meters covered by a rocket from <math>t = 8\mathrm{s} </math> to <math>t = 30\mathrm{s},</math> as given by <math display="block">s = \int_{8}^{30}{\left( 2000\ln\left[ \frac{140000}{140000 - 2100t} \right] - 9.8t \right){dt}}</math>

Change the limits so that one can use the weights and abscissae given in Table 1. Also, find the absolute relative true error. The true value is given as 11061.34 m.

Solution

First, changing the limits of integration from <math>\left[ 8,30 \right]</math> to <math>\left[ - 1,1 \right]</math> gives

<math display="block"> \begin{align} \int_{8}^{30} {f(t) dt} &= \frac{30 - 8}{2} \int_{- 1}^{1}{f\left( \frac{30 - 8}{2}x + \frac{30 + 8}{2} \right){dx}} \\ &= 11\int_{- 1}^{1}{f\left( 11x + 19 \right){dx}} \end{align} </math>

Next, get the weighting factors and function argument values from Table 1 for the two-point rule,

  • <math>c_1 = 1.000000000 </math>
  • <math>x_1 = - 0.577350269 </math>
  • <math>c_2 = 1.000000000 </math>
  • <math>x_2 = 0.577350269 </math>

Now we can use the Gauss quadrature formula <math display="block"> \begin{align} 11\int_{-1}^{1}{f\left( 11x + 19 \right){dx}} & \approx 11\left[ c_1 f\left( 11 x_1 + 19 \right) + c_2 f\left( 11 x_2 + 19 \right) \right] \\ &= 11\left[ f\left( 11( - 0.5773503) + 19 \right) + f\left( 11(0.5773503) + 19 \right) \right] \\ &= 11\left[ f(12.64915) + f(25.35085) \right] \\ &= 11\left[ (296.8317) + (708.4811) \right] \\ &= 11058.44 \end{align}</math> since <math display="block"> \begin{align} f(12.64915) & = 2000\ln\left[ \frac{140000}{140000 - 2100(12.64915)} \right] - 9.8(12.64915) \\ &= 296.8317 \end{align}</math> <math display="block"> \begin{align} f(25.35085) & = 2000\ln\left[ \frac{140000}{140000 - 2100(25.35085)} \right] - 9.8(25.35085) \\ &= 708.4811 \end{align}</math>

Given that the true value is 11061.34 m, the absolute relative true error, <math>\left| \varepsilon_{t} \right|</math> is <math display="block"> \left| \varepsilon_{t} \right| = \left| \frac{11061.34 - 11058.44}{11061.34} \right| \times 100\% = 0.0262\% </math>


Other formsEdit

The integration problem can be expressed in a slightly more general way by introducing a positive weight function Template:Mvar into the integrand, and allowing an interval other than Template:Math. That is, the problem is to calculate <math display="block"> \int_a^b \omega(x)\,f(x)\,dx </math> for some choices of Template:Mvar, Template:Mvar, and Template:Mvar. For Template:Math, Template:Math, and Template:Math, 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 Template:Math Orthogonal polynomials A & S For more information, see ...
Template:Closed-closed Template:Math Legendre polynomials 25.4.29 Template:Section link
Template:Open-open <math>\left(1 - x\right)^\alpha \left(1 + x\right)^\beta,\quad \alpha, \beta > -1</math> Jacobi polynomials 25.4.33 (Template:Math) Gauss–Jacobi quadrature
Template:Open-open <math>\frac{1}{\sqrt{1 - x^2}}</math> Chebyshev polynomials (first kind) 25.4.38 Chebyshev–Gauss quadrature
Template:Closed-closed <math>\sqrt{1 - x^2}</math> Chebyshev polynomials (second kind) 25.4.40 Chebyshev–Gauss quadrature
Template:Closed-open <math> e^{-x}\, </math> Laguerre polynomials 25.4.45 Gauss–Laguerre quadrature
Template:Closed-open <math> x^\alpha e^{-x},\quad \alpha>-1 </math> Generalized Laguerre polynomials Gauss–Laguerre quadrature
Template:Open-open <math> e^{-x^2} </math> Hermite polynomials 25.4.46 Gauss–Hermite quadrature

Fundamental theoremEdit

Let Template:Mvar be a nontrivial polynomial of degree Template:Mvar such that <math display="block">\int_a^b \omega(x) \, x^k p_n(x) \, dx = 0, \quad \text{for all } k = 0, 1, \ldots, n - 1.</math>

Note that this will be true for all the orthogonal polynomials above, because each Template:Mvar is constructed to be orthogonal to the other polynomials Template:Mvar for Template:Math, and Template:Math is in the span of that set.

If we pick the Template:Mvar nodes Template:Mvar to be the zeros of Template:Mvar, then there exist Template:Mvar weights Template:Mvar which make the Gaussian quadrature computed integral exact for all polynomials Template:Math of degree Template:Math or less. Furthermore, all these nodes Template:Mvar will lie in the open interval Template:Math.<ref>Template:Harvnb</ref>

To prove the first part of this claim, let Template:Math be any polynomial of degree Template:Math or less. Divide it by the orthogonal polynomial Template:Mvar to get <math display="block"> h(x) = p_n(x) \, q(x) + r(x). </math> where Template:Math is the quotient, of degree Template:Math or less (because the sum of its degree and that of the divisor Template:Mvar must equal that of the dividend), and Template:Math is the remainder, also of degree Template:Math or less (because the degree of the remainder is always less than that of the divisor). Since Template:Mvar is by assumption orthogonal to all monomials of degree less than Template:Mvar, it must be orthogonal to the quotient Template:Math. Therefore <math display="block"> \int_a^b \omega(x)\,h(x)\,dx = \int_a^b \omega(x)\,\big( \, p_n(x) q(x) + r(x) \, \big)\,dx = \int_a^b \omega(x)\,r(x)\,dx. </math>

Since the remainder Template:Math is of degree Template:Math or less, we can interpolate it exactly using Template:Mvar interpolation points with Lagrange polynomials Template:Math, where <math display="block"> l_i(x) = \prod _{j \ne i} \frac{x-x_j}{x_i-x_j}. </math>

We have <math display="block"> r(x) = \sum_{i=1}^n l_i(x) \, r(x_i). </math>

Then its integral will equal <math display="block"> \int_a^b \omega(x)\,r(x)\,dx = \int_a^b \omega(x) \, \sum_{i=1}^n l_i(x) \, r(x_i) \, dx = \sum_{i=1}^n \, r(x_i) \, \int_a^b \omega(x) \, l_i(x) \, dx = \sum_{i=1}^n \, r(x_i) \, w_i, </math>

where Template:Math, the weight associated with the node Template:Math, is defined to equal the weighted integral of Template:Math (see below for other formulas for the weights). But all the Template:Mvar are roots of Template:Mvar, so the division formula above tells us that <math display="block"> h(x_i) = p_n(x_i) \, q(x_i) + r(x_i) = r(x_i), </math> for all Template:Mvar. Thus we finally have <math display="block"> \int_a^b \omega(x)\,h(x)\,dx = \int_a^b \omega(x) \, r(x) \, dx = \sum_{i=1}^n w_i \, r(x_i) = \sum_{i=1}^n w_i \, h(x_i). </math>

This proves that for any polynomial Template:Math of degree Template:Math or less, its integral is given exactly by the Gaussian quadrature sum.

To prove the second part of the claim, consider the factored form of the polynomial Template:Math. Any complex conjugate roots will yield a quadratic factor that is either strictly positive or strictly negative over the entire real line. Any factors for roots outside the interval from Template:Mvar to Template:Mvar will not change sign over that interval. Finally, for factors corresponding to roots Template:Mvar inside the interval from Template:Mvar to Template:Mvar that are of odd multiplicity, multiply Template:Math by one more factor to make a new polynomial <math display="block"> p_n(x) \, \prod_i (x - x_i). </math>

This polynomial cannot change sign over the interval from Template:Mvar to Template:Mvar because all its roots there are now of even multiplicity. So the integral <math display="block"> \int_a^b p_n(x) \, \left( \prod_i (x - x_i) \right) \, \omega(x) \, dx \ne 0, </math> since the weight function Template:Math is always non-negative. But Template:Math is orthogonal to all polynomials of degree Template:Math or less, so the degree of the product <math display="block"> \prod_i (x - x_i) </math> must be at least Template:Mvar. Therefore Template:Math has Template:Mvar distinct roots, all real, in the interval from Template:Mvar to Template:Mvar.

General formula for the weightsEdit

The weights can be expressed as

Template:NumBlk{a_{n-1}} \frac{\int_{a}^{b} \omega(x) p_{n-1}(x)^2 dx}{p'_{n}(x_{i}) p_{n-1}(x_{i})}</math>|Template:EquationRef}}

where <math>a_{k}</math> is the coefficient of <math>x^{k}</math> in <math>p_{k}(x)</math>. To prove this, note that using Lagrange interpolation one can express Template:Math in terms of <math>r(x_{i})</math> as <math display="block">r(x) = \sum_{i=1}^{n} r(x_{i}) \prod_{\begin{smallmatrix} 1 \leq j \leq n \\ j \neq i \end{smallmatrix}}\frac{x-x_{j}}{x_{i}-x_{j}}</math> because Template:Math has degree less than Template:Mvar and is thus fixed by the values it attains at Template:Mvar different points. Multiplying both sides by Template:Math and integrating from Template:Mvar to Template:Mvar yields <math display="block">\int_{a}^{b}\omega(x)r(x)dx = \sum_{i=1}^{n} r(x_{i}) \int_{a}^{b}\omega(x)\prod_{\begin{smallmatrix} 1 \leq j \leq n \\ j \neq i \end{smallmatrix}} \frac{x-x_{j}}{x_{i}-x_{j}}dx</math>

The weights Template:Mvar are thus given by <math display="block">w_{i} = \int_{a}^{b}\omega(x)\prod_{\begin{smallmatrix}1\leq j\leq n\\j\neq i\end{smallmatrix}}\frac{x-x_{j}}{x_{i}-x_{j}}dx</math>

This integral expression for <math>w_{i}</math> can be expressed in terms of the orthogonal polynomials <math>p_{n}(x)</math> and <math>p_{n-1}(x)</math> as follows.

We can write <math display="block"> \prod_{\begin{smallmatrix} 1 \leq j \leq n \\ j \neq i \end{smallmatrix}} \left(x-x_{j}\right) = \frac{\prod_{1\leq j\leq n} \left(x - x_{j}\right)}{x-x_{i}} = \frac{p_{n}(x)}{a_{n}\left(x-x_{i}\right)}</math>

where <math>a_{n}</math> is the coefficient of <math>x^n</math> in <math>p_{n}(x)</math>. Taking the limit of Template:Mvar to <math>x_{i}</math> yields using L'Hôpital's rule <math display="block"> \prod_{\begin{smallmatrix} 1 \leq j \leq n \\ j \neq i \end{smallmatrix}} \left(x_{i}-x_{j}\right) = \frac{p'_{n}(x_{i})}{a_{n}}</math>

We can thus write the integral expression for the weights as

Template:NumBlkdx</math>|Template:EquationRef}}

In the integrand, writing <math display="block">\frac{1}{x-x_i} = \frac{1 - \left(\frac{x}{x_i}\right)^{k}}{x - x_i} + \left(\frac{x}{x_i}\right)^{k} \frac{1}{x - x_i}</math>

yields <math display="block">\int_a^b\omega(x)\frac{x^kp_n(x)}{x-x_i}dx = x_i^k \int_{a}^{b}\omega(x)\frac{p_n(x)}{x-x_i}dx</math>

provided <math>k \leq n</math>, because <math display="block">\frac{1-\left(\frac{x}{x_{i}}\right)^{k}}{x-x_{i}}</math> is a polynomial of degree Template:Math which is then orthogonal to <math>p_{n}(x)</math>. So, if Template:Math is a polynomial of at most nth degree we have <math display="block">\int_{a}^{b}\omega(x)\frac{p_{n}(x)}{x-x_{i}} dx = \frac{1}{q(x_{i})} \int_{a}^{b} \omega(x)\frac{q(x) p_n(x)}{x-x_{i}}dx </math>

We can evaluate the integral on the right hand side for <math>q(x) = p_{n-1}(x)</math> as follows. Because <math>\frac{p_{n}(x)}{x-x_{i}}</math> is a polynomial of degree Template:Math, we have <math display="block">\frac{p_{n}(x)}{x-x_{i}} = a_{n}x^{n-1} + s(x)</math> where Template:Math is a polynomial of degree <math>n - 2</math>. Since Template:Math is orthogonal to <math>p_{n-1}(x)</math> we have <math display="block">\int_{a}^{b}\omega(x)\frac{p_{n}(x)}{x-x_{i}}dx=\frac{a_{n}}{p_{n-1}(x_{i})} \int_{a}^{b}\omega(x)p_{n-1}(x)x^{n-1}dx </math>

We can then write <math display="block">x^{n-1} = \left(x^{n-1} - \frac{p_{n-1}(x)}{a_{n-1}}\right) + \frac{p_{n-1}(x)}{a_{n-1}}</math>

The term in the brackets is a polynomial of degree <math>n - 2</math>, which is therefore orthogonal to <math>p_{n-1}(x)</math>. The integral can thus be written as <math display="block">\int_{a}^{b}\omega(x)\frac{p_{n}(x)}{x-x_{i}}dx = \frac{a_{n}}{a_{n-1} p_{n-1}(x_{i})} \int_{a}^{b}\omega(x) p_{n-1}(x)^{2} dx </math>

According to equation (Template:EquationNote), the weights are obtained by dividing this by <math>p'_{n}(x_{i})</math> and that yields the expression in equation (Template:EquationNote).

<math>w_{i}</math> can also be expressed in terms of the orthogonal polynomials <math>p_{n}(x)</math> and now <math>p_{n+1}(x)</math>. In the 3-term recurrence relation <math>p_{n+1}(x_{i}) = (a) p_{n}(x_{i}) + (b) p_{n-1}(x_{i})</math> the term with <math>p_{n}(x_{i})</math> vanishes, so <math>p_{n-1}(x_{i})</math> in Eq. (1) can be replaced by <math display="inline">\frac{1}{b} p_{n+1} \left(x_i\right)</math>.

Proof that the weights are positiveEdit

Consider the following polynomial of degree <math>2n - 2</math> <math display="block">f(x) = \prod_{\begin{smallmatrix} 1 \leq j \leq n \\ j \neq i \end{smallmatrix}}\frac{\left(x - x_j\right)^2}{\left(x_i - x_j\right)^2}</math> where, as above, the Template:Mvar are the roots of the polynomial <math>p_{n}(x)</math>. Clearly <math>f(x_j) = \delta_{ij}</math>. Since the degree of <math>f(x)</math> is less than <math>2n - 1</math>, the Gaussian quadrature formula involving the weights and nodes obtained from <math>p_{n}(x)</math> applies. Since <math>f(x_{j}) = 0</math> for Template:Mvar not equal to Template:Mvar, we have <math display="block">\int_{a}^{b}\omega(x)f(x)dx=\sum_{j=1}^{n}w_{j}f(x_{j}) = \sum_{j=1}^{n} \delta_{ij} w_j = w_{i} > 0.</math>

Since both <math>\omega(x)</math> and <math>f(x)</math> are non-negative functions, it follows that <math>w_{i} > 0</math>.

Computation of Gaussian quadrature rulesEdit

There are many algorithms for computing the nodes Template:Mvar and weights Template:Mvar of Gaussian quadrature rules. The most popular are the Golub-Welsch algorithm requiring Template:Math operations, Newton's method for solving <math>p_n(x) = 0</math> using the three-term recurrence for evaluation requiring Template:Math operations, and asymptotic formulas for large n requiring Template:Math operations.

Recurrence relationEdit

Orthogonal polynomials <math>p_r</math> with <math>(p_r, p_s) = 0</math> for <math>r \ne s</math> for a scalar product <math>(\cdot , \cdot)</math>, degree <math>(p_r) = r</math> and leading coefficient one (i.e. monic orthogonal polynomials) satisfy the recurrence relation <math display="block">p_{r+1}(x) = (x - a_{r,r}) p_r(x) - a_{r,r-1} p_{r-1}(x) \cdots - a_{r,0}p_0(x)</math>

and scalar product defined <math display="block">(f(x),g(x))=\int_a^b\omega(x)f(x)g(x)dx</math>

for <math>r = 0, 1, \ldots, n - 1</math> where Template:Mvar is the maximal degree which can be taken to be infinity, and where <math display="inline">a_{r,s} = \frac{\left(xp_r, p_s\right)}{\left(p_s, p_s\right)}</math>. First of all, the polynomials defined by the recurrence relation starting with <math>p_0(x) = 1</math> have leading coefficient one and correct degree. Given the starting point by <math>p_0</math>, the orthogonality of <math>p_r</math> can be shown by induction. For <math>r = s = 0</math> one has <math display="block">(p_1,p_0) = (x-a_{0,0}) (p_0,p_0) = (xp_0,p_0) - a_{0,0}(p_0,p_0) = (xp_0,p_0) - (xp_0,p_0) = 0.</math>

Now if <math>p_0, p_1, \ldots, p_r</math> are orthogonal, then also <math>p_{r+1}</math>, because in <math display="block">(p_{r+1}, p_s) = (xp_r, p_s) - a_{r,r}(p_r, p_s) - a_{r,r-1}(p_{r-1}, p_s)\cdots - a_{r,0}(p_0, p_s)</math> all scalar products vanish except for the first one and the one where <math>p_s</math> meets the same orthogonal polynomial. Therefore, <math display="block">(p_{r+1},p_s) = (xp_r,p_s) - a_{r,s}(p_s,p_s) = (xp_r,p_s)-(xp_r,p_s) = 0.</math>

However, if the scalar product satisfies <math>(xf, g) = (f,xg)</math> (which is the case for Gaussian quadrature), the recurrence relation reduces to a three-term recurrence relation: For <math>s < r - 1, xp_s</math> is a polynomial of degree less than or equal to Template:Math. On the other hand, <math>p_r</math> is orthogonal to every polynomial of degree less than or equal to Template:Math. Therefore, one has <math>(xp_r, p_s) = (p_r, xp_s) = 0</math> and <math>a_{r,s} = 0</math> for Template:Math. The recurrence relation then simplifies to <math display="block">p_{r+1}(x) = (x-a_{r,r}) p_r(x) - a_{r,r-1} p_{r-1}(x)</math>

or <math display="block">p_{r+1}(x) = (x-a_r) p_r(x) - b_r p_{r-1}(x)</math>

(with the convention <math>p_{-1}(x) \equiv 0</math>) where <math display="block">a_r := \frac{(xp_r,p_r)}{(p_r,p_r)}, \qquad b_r := \frac{(xp_r,p_{r-1})}{(p_{r-1},p_{r-1})} = \frac{(p_r,p_r)}{(p_{r-1},p_{r-1})}</math>

(the last because of <math>(xp_r, p_{r-1}) = (p_r, xp_{r-1}) = (p_r, p_r)</math>, since <math>xp_{r-1}</math> differs from <math>p_r</math> by a degree less than Template:Mvar).

The Golub-Welsch algorithmEdit

The three-term recurrence relation can be written in matrix form <math>J\tilde{P} = x\tilde{P} - p_n(x) \mathbf{e}_n</math> where <math>\tilde{P} = \begin{bmatrix} p_0(x) & p_1(x) & \cdots & p_{n-1}(x) \end{bmatrix}^\mathsf{T}</math>, <math>\mathbf{e}_n</math> is the <math>n</math>th standard basis vector, i.e., <math>\mathbf{e}_n = \begin{bmatrix} 0 & \cdots & 0 & 1 \end{bmatrix}^\mathsf{T}</math>, and Template:Mvar is the following tridiagonal matrix, called the Jacobi matrix: <math display="block">\mathbf{J} = \begin{bmatrix}

      a_0 &      1 &      0 &  \cdots  &       0 \\
      b_1 &    a_1 &      1 &  \ddots  &  \vdots \\
        0 &    b_2 & \ddots &  \ddots  &       0 \\
   \vdots & \ddots & \ddots &  a_{n-2} &       1 \\
        0 & \cdots &       0 & b_{n-1} & a_{n-1}

\end{bmatrix}.</math>

The zeros <math>x_j</math> of the polynomials up to degree Template:Mvar, which are used as nodes for the Gaussian quadrature can be found by computing the eigenvalues of this matrix. This procedure is known as Golub–Welsch algorithm.

For computing the weights and nodes, it is preferable to consider the symmetric tridiagonal matrix <math>\mathcal{J}</math> with elements <math display="block">\begin{align}

                                           \mathcal{J}_{k,i} = J_{k,i} &= a_{k-1}        & k &= 1,2,\ldots,n \\[2.1ex]
 \mathcal{J}_{k-1,i} = \mathcal{J}_{k,k-1} = \sqrt{J_{k,k-1}J_{k-1,k}} &= \sqrt{b_{k-1}} & k &= \hphantom{1,\,}2,\ldots,n.

\end{align}</math>

That is,

<math display="block">\mathcal{J} = \begin{bmatrix}

      a_0 & \sqrt{b_1} &          0 &        \cdots  &              0 \\

\sqrt{b_1} & a_1 & \sqrt{b_2} & \ddots & \vdots \\

        0 & \sqrt{b_2} &     \ddots &        \ddots  &              0 \\
   \vdots &     \ddots &     \ddots &        a_{n-2} & \sqrt{b_{n-1}} \\
        0 &     \cdots &          0 & \sqrt{b_{n-1}} &        a_{n-1}

\end{bmatrix}.</math>

Template:Math and <math>\mathcal{J}</math> are similar matrices and therefore have the same eigenvalues (the nodes). The weights can be computed from the corresponding eigenvectors: If <math>\phi^{(j)}</math> is a normalized eigenvector (i.e., an eigenvector with euclidean norm equal to one) associated with the eigenvalue Template:Mvar, the corresponding weight can be computed from the first component of this eigenvector, namely: <math display="block">w_j = \mu_0 \left(\phi_1^{(j)}\right)^2</math>

where <math>\mu_0</math> is the integral of the weight function <math display="block">\mu_0 = \int_a^b \omega(x) dx.</math>

See, for instance, Template:Harv for further details.

Error estimatesEdit

The error of a Gaussian quadrature rule can be stated as follows.<ref>Template:Harvnb</ref> For an integrand which has Template:Math continuous derivatives, <math display="block"> \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) </math> for some Template:Mvar in Template:Math, where Template:Mvar is the monic (i.e. the leading coefficient is Template:Math) orthogonal polynomial of degree Template:Mvar and where <math display="block"> (f,g) = \int_a^b \omega(x) f(x) g(x) \, dx.</math>

In the important special case of Template:Math, we have the error estimate<ref>Template:Harvnb</ref> <math display="block"> \frac{\left(b - a\right)^{2n+1} \left(n!\right)^4}{(2n + 1)\left[\left(2n\right)!\right]^3} f^{(2n)} (\xi), \qquad a < \xi < b.</math>

Stoer and Bulirsch remark that this error estimate is inconvenient in practice, since it may be difficult to estimate the order Template:Math 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 rulesEdit

{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}}

If the interval Template:Math 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 Template:Math points to an Template:Mvar-point rule in such a way that the resulting rule is of order Template:Math. 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 is often used as an estimate of the approximation error.

Gauss–Lobatto rulesEdit

Also known as Lobatto quadrature,<ref>Template:Harvnb</ref> named after Dutch mathematician Rehuel Lobatto. It is similar to Gaussian quadrature with the following differences:

  1. The integration points include the end points of the integration interval.
  2. It is accurate for polynomials up to degree Template:Math, where Template:Mvar is the number of integration points.<ref>Template:Harvnb</ref>

Lobatto quadrature of function Template:Math on interval Template:Math: <math display="block">\int_{-1}^1 {f(x) \, dx} = \frac {2} {n(n-1)}[f(1) + f(-1)] + \sum_{i = 2}^{n-1} {w_i f(x_i)} + R_n.</math>

Abscissas: Template:Mvar is the <math>(i - 1)</math>st zero of <math>P'_{n-1}(x)</math>, here <math>P_m(x)</math> denotes the standard Legendre polynomial of Template:Mvar-th degree and the dash denotes the derivative.

Weights: <math display="block">w_i = \frac{2}{n(n - 1)\left[P_{n-1}\left(x_i\right)\right]^2}, \qquad x_i \ne \pm 1.</math>

Remainder: <math display="block">R_n = \frac{-n\left(n - 1\right)^3 2^{2n-1} \left[\left(n - 2\right)!\right]^4}{(2n-1) \left[\left(2n - 2\right)!\right]^3} f^{(2n-2)}(\xi), \qquad -1 < \xi < 1.</math>

Some of the weights are:

Number of points, n Points, Template:Mvar Weights, Template:Mvar
<math>3</math> <math>0</math> <math>\frac{4}{3}</math>
<math>\pm 1</math> <math>\frac{1}{3}</math>
<math>4</math> <math>\pm \sqrt{\frac{1}{5}}</math> <math>\frac{5}{6}</math>
<math>\pm 1</math> <math>\frac{1}{6}</math>
<math>5</math> <math>0</math> <math>\frac{32}{45}</math>
<math>\pm\sqrt{\frac{3}{7}}</math> <math>\frac{49}{90}</math>
<math>\pm 1</math> <math>\frac{1}{10}</math>
<math>6</math> <math>\pm\sqrt{\frac{1}{3}-\frac{2\sqrt{7}}{21}}</math> <math>\frac{14+\sqrt{7}}{30}</math>
<math>\pm\sqrt{\frac{1}{3} + \frac{2\sqrt{7}}{21}}</math> <math>\frac{14 - \sqrt{7}}{30}</math>
<math>\pm 1</math> <math>\frac{1}{15}</math>
<math>7</math> <math>0</math> <math>\frac{256}{525}</math>
<math>\pm\sqrt{\frac{5}{11}-\frac{2}{11}\sqrt{\frac{5}{3}}}</math> <math>\frac{124 + 7\sqrt{15}}{350}</math>
<math>\pm\sqrt{\frac{5}{11} + \frac{2}{11}\sqrt{\frac{5}{3}}}</math> <math>\frac{124 - 7\sqrt{15}}{350}</math>
<math>\pm 1</math> <math>\frac{1}{21}</math>

An adaptive variant of this algorithm with 2 interior nodes<ref>Template:Harvnb</ref> is found in GNU Octave and MATLAB as quadl and integrate.<ref>Template:Harvnb</ref><ref>Template:Harvnb</ref>

ReferencesEdit

CitationsEdit

<references/>

BibliographyEdit

Template:Refbegin Template:Sfn whitelist

|CitationClass=web }}

|CitationClass=web }}

Template:Refend

External linksEdit

|_exclude=urlname, _debug, id |url = https://mathworld.wolfram.com/{{#if:Legendre-GaussQuadrature%7CLegendre-GaussQuadrature.html}} |title = Legendre-Gauss Quadrature |author = Weisstein, Eric W. |website = MathWorld |access-date = |ref = Template:SfnRef }}

Template:Numerical integration