4.5 Gaussian Quadratures and Orthogonal Polynomials 147 Dahlquist.G.,and Bjorck,A.1974,Numerica/Methods (Englewood Cliffs,NJ:Prentice-Hall). 87.4.3,p.294. Stoer,J.,and Bulirsch,R.1980,Introduction to Numerical Analysis(New York:Springer-Verlag). 53.7,p.152. 4.5 Gaussian Quadratures and Orthogonal Polynomials In the formulas of 84.1,the integral of a function was approximated by the sum of its functional values at a set of equally spaced points.multiplied by certain aptly nted for chosen weighting coefficients.We saw that as we allowed ourselves more freedom in choosing the coefficients,we could achieve integration formulas of higher and higher order.The idea of Gaussian quadratures is to give ourselves the freedom to choose not only the weighting coefficients,but also the location of the abscissas at which the function is to be evaluated:They will no longer be equally spaced.Thus, 令 we will have twice the number of degrees of freedom at our disposal;it will turn out that we can achieve Gaussian quadrature formulas whose order is,essentially,twice that of the Newton-Cotes formula with the same number of function evaluations. Does this sound too good to be true?Well,in a sense it is.The catch is a familiar one,which cannot be overemphasized:High order is not the same as high accuracy.High order translates to high accuracy only when the integrand is very 的 smooth,in the sense of being"well-approximated by a polynomial." There is,however,one additional feature of Gaussian quadrature formulas that SCIENTIFIC( adds to their usefulness:We can arrange the choice of weights and abscissas to make the integral exact for a class of integrands"polynomials times some known function W(z)"rather than for the usual class of integrands "polynomials."The function W()can then be chosen to remove integrable singularities from the desired integral. Given W(z),in other words,and given an integer N,we can find a set of weights w;and abscissas j such that the approximation 10.621 N Wof(e)dz≈∑fe) (4.5.1) % Numerical Recipes 43106 j=1 is exact if f(x)is a polynomial.For example,to do the integral (outside exp(-cos2z)d North (4.5.2) -1 V1-x2 (not a very natural looking integral,it must be admitted),we might well be interested in a Gaussian quadrature formula based on the choice 1 w@)=√1- (4.5.3) in the interval (-1,1).(This particular choice is called Gauss-Chebyshey integration, for reasons that will become clear shortly
4.5 Gaussian Quadratures and Orthogonal Polynomials 147 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machinereadable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). Dahlquist, G., and Bjorck, A. 1974, Numerical Methods (Englewood Cliffs, NJ: Prentice-Hall), §7.4.3, p. 294. Stoer, J., and Bulirsch, R. 1980, Introduction to Numerical Analysis (New York: Springer-Verlag), §3.7, p. 152. 4.5 Gaussian Quadratures and Orthogonal Polynomials In the formulas of §4.1, the integral of a function was approximated by the sum of its functional values at a set of equally spaced points, multiplied by certain aptly chosen weighting coefficients. We saw that as we allowed ourselves more freedom in choosing the coefficients, we could achieve integration formulas of higher and higher order. The idea of Gaussian quadratures is to give ourselves the freedom to choose not only the weighting coefficients, but also the location of the abscissas at which the function is to be evaluated: They will no longer be equally spaced. Thus, we will have twice the number of degrees of freedom at our disposal; it will turn out that we can achieve Gaussian quadrature formulas whose order is, essentially, twice that of the Newton-Cotes formula with the same number of function evaluations. Does this sound too good to be true? Well, in a sense it is. The catch is a familiar one, which cannot be overemphasized: High order is not the same as high accuracy. High order translates to high accuracy only when the integrand is very smooth, in the sense of being “well-approximated by a polynomial.” There is, however, one additional feature of Gaussian quadrature formulas that adds to their usefulness: We can arrange the choice of weights and abscissas to make the integral exact for a class of integrands “polynomials times some known function W(x)” rather than for the usual class of integrands “polynomials.” The function W(x) can then be chosen to remove integrable singularities from the desired integral. Given W(x), in other words, and given an integer N, we can find a set of weights wj and abscissas xj such that the approximation b a W(x)f(x)dx ≈ N j=1 wjf(xj ) (4.5.1) is exact if f(x) is a polynomial. For example, to do the integral 1 −1 exp(− cos2 x) √ 1 − x2 dx (4.5.2) (not a very natural looking integral, it must be admitted), we might well be interested in a Gaussian quadrature formula based on the choice W(x) = 1 √ 1 − x2 (4.5.3) in the interval(−1, 1). (This particular choice is called Gauss-Chebyshev integration, for reasons that will become clear shortly.)
148 Chapter 4.Integration of Functions Notice that the integration formula(4.5.1)can also be written with the weight function W(x)not overtly visible:Define g(x)=W(x)f(x)and vj=wi/W(xj). Then (4.5.1)becomes g(x)dz≈y59() (4.5.4) j=1 Where did the function W(z)go?It is lurking there,ready to give high-order accuracy to integrands of the form polynomials times W(),and ready to deny high- order accuracy to integrands that are otherwise perfectly smooth and well-behaved. When you find tabulations of the weights and abscissas for a given W(z),you have to determine carefully whether they are to be used with a formula in the form of (4.5.1).or like(4.5.4). Here is an example of a quadrature routine that contains the tabulated abscissas and weights for the case W(z)=1 and N =10.Since the weights and abscissas are,in this case,symmetric around the midpoint of the range of integration,there RECIPES are actually only five distinct values of each: float qgaus(float (*func)(float),float a,float b) Returns the integral of the function func between a and b,by ten-point Gauss-Legendre inte- d 令 ress. gration:the function is evaluated exactly ten times at interior points in the range of integration. int j; float xr,xm,dx,s; 9 stat1cf1oatx☐=[0.0,0.1488743389,0.4333953941, The abscissas and weights. 0.6794095682,0.8650633666,0.9739065285]; First value of each array stat1cf1oat"0=[0.0,0.2955242247,0.2692667193 not used. IENTIFIC 0.2190863625,0.1494513491,0.0666713443]; 6 m=0.5*(b+a); xr=0.5*(b-a); s=0; Will be twice the average value of the function,since the for(j=1;j<=5;j+)[ ten weights (five numbers above each used twice) dx=xr*x[]; sum to 2. 9 s +=w[]((*func)(xm+dx)+(*func)(xm-dx)); 10.621 return s *xr; Scale the answer to the range of integration. Numerica uction Recipes 43108 The above routine illustrates that one can use Gaussian quadratures without (outside necessarily understanding the theory behind them:One just locates tabulated weights and abscissas in a book(e.g,[1]or [21).However,the theory is very pretty,and it 首 Software. will come in handy if you ever need to construct your own tabulation of weights and abscissas for an unusual choice of W().We will therefore give,without any proofs some useful results that will enable you to do this.Several of the results assume that W(x)does not change sign inside (a,b),which is usually the case in practice. The theory behind Gaussian quadratures goes back to Gauss in 1814,who used continued fractions to develop the subject.In 1826 Jacobi rederived Gauss's results by means of orthogonal polynomials.The systematic treatment of arbitrary weight functions W(x)using orthogonal polynomials is largely due to Christoffel in 1877.To introduce these orthogonal polynomials,let us fix the interval of interest to be (a,b).We can define the "scalar product of two functions f and g over a
148 Chapter 4. Integration of Functions Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machinereadable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). Notice that the integration formula (4.5.1) can also be written with the weight function W(x) not overtly visible: Define g(x) ≡ W(x)f(x) and vj ≡ wj/W(xj ). Then (4.5.1) becomes b a g(x)dx ≈ N j=1 vjg(xj ) (4.5.4) Where did the function W(x) go? It is lurking there, ready to give high-order accuracy to integrands of the form polynomials times W(x), and ready to deny highorder accuracy to integrands that are otherwise perfectly smooth and well-behaved. When you find tabulations of the weights and abscissas for a given W(x), you have to determine carefully whether they are to be used with a formula in the form of (4.5.1), or like (4.5.4). Here is an example of a quadrature routine that contains the tabulated abscissas and weights for the case W(x)=1 and N = 10. Since the weights and abscissas are, in this case, symmetric around the midpoint of the range of integration, there are actually only five distinct values of each: float qgaus(float (*func)(float), float a, float b) Returns the integral of the function func between a and b, by ten-point Gauss-Legendre integration: the function is evaluated exactly ten times at interior points in the range of integration. { int j; float xr,xm,dx,s; static float x[]={0.0,0.1488743389,0.4333953941, The abscissas and weights. First value of each array not used. 0.6794095682,0.8650633666,0.9739065285}; static float w[]={0.0,0.2955242247,0.2692667193, 0.2190863625,0.1494513491,0.0666713443}; xm=0.5*(b+a); xr=0.5*(b-a); s=0; Will be twice the average value of the function, since the ten weights (five numbers above each used twice) sum to 2. for (j=1;j<=5;j++) { dx=xr*x[j]; s += w[j]*((*func)(xm+dx)+(*func)(xm-dx)); } return s *= xr; Scale the answer to the range of integration. } The above routine illustrates that one can use Gaussian quadratures without necessarily understanding the theory behind them: One just locates tabulated weights and abscissas in a book (e.g., [1] or [2]). However, the theory is very pretty, and it will come in handy if you ever need to construct your own tabulation of weights and abscissas for an unusual choice of W(x). We will therefore give, without any proofs, some useful results that will enable you to do this. Several of the results assume that W(x) does not change sign inside (a, b), which is usually the case in practice. The theory behind Gaussian quadratures goes back to Gauss in 1814, who used continued fractions to develop the subject. In 1826 Jacobi rederived Gauss’s results by means of orthogonal polynomials. The systematic treatment of arbitrary weight functions W(x) using orthogonal polynomials is largely due to Christoffel in 1877. To introduce these orthogonal polynomials, let us fix the interval of interest to be (a, b). We can define the “scalar product of two functions f and g over a
4.5 Gaussian Quadratures and Orthogonal Polynomials 149 weight function W"as (flg) W(x)f(x)g(x)dx (4.5.5) The scalar product is a number,not a function of x.Two functions are said to be orthogonal if their scalar product is zero.A function is said to be normalized if its scalar product with itself is unity.A set of functions that are all mutually orthogonal and also all individually normalized is called an orthonormal set. We can find a set of polynomials(i)that includes exactly one polynomial of order j,called p(),for eachj=0,1,2,...,and (ii)all of which are mutually orthogonal over the specified weight function W(z).A constructive procedure for B finding such a set is the recurrence relation 茶餐 P-1(x)≡0 Cam p0(x)≡1 (4.5.6) RECIPES p5+1(x)=(x-a)P5(c)-bjP-1(x)j=0,1,2,. 9 where 〈rpilp5.》 aj plp5》 j=0,1, 9 (4.5.7) bj= plp》 j=1,2,. Pj-1lp5-1)》 IENTIFIC The coefficient bo is arbitrary;we can take it to be zero. 可 The polynomials defined by (4.5.6)are monic,i.e.,the coefficient of their leading term for pi()]is unity.If we divide each pi()by the constant [/2we can render the set of polynomials orthonormal.One also encounters orthogonal polynomials with various other normalizations.You can convert from a given normalization to monic polynomials if you know that the coefficient of ←92 in p;is Aj,say;then the monic polynomials are obtained by dividing each pj Recipes Numerica 10621 by Aj.Note that the coefficients in the recurrence relation(4.5.6)depend on the 4310 adopted normalization. Recipes The polynomial p()can be shown to have exactly j distinct roots in the interval (a,b).Moreover,it can be shown that the roots of pi()"interleave"the j-1 roots of pj-1(),i.e.,there is exactly one root of the former in between each North two adjacent roots of the latter.This fact comes in handy if you need to find all the roots:You can start with the one root of p()and then,in turn,bracket the roots of each higher j,pinning them down at each stage more precisely by Newton's rule or some other root-finding scheme (see Chapter 9). Why would you ever want to find all the roots of an orthogonal polynomial pj()?Because the abscissas of the N-point Gaussian quadrature formulas(4.5.1) and(4.5.4)with weighting function W(z)in the interval (a,b)are precisely the roots of the orthogonal polynomial p(r)for the same interval and weighting function. This is the fundamental theorem of Gaussian quadratures,and lets you find the abscissas for any particular case
4.5 Gaussian Quadratures and Orthogonal Polynomials 149 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machinereadable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). weight function W ” as f|g ≡ b a W(x)f(x)g(x)dx (4.5.5) The scalar product is a number, not a function of x. Two functions are said to be orthogonal if their scalar product is zero. A function is said to be normalized if its scalar product with itself is unity. A set of functions that are all mutually orthogonal and also all individually normalized is called an orthonormal set. We can find a set of polynomials (i) that includes exactly one polynomial of order j, called pj (x), for each j = 0, 1, 2,... , and (ii) all of which are mutually orthogonal over the specified weight function W(x). A constructive procedure for finding such a set is the recurrence relation p−1(x) ≡ 0 p0(x) ≡ 1 pj+1(x)=(x − aj )pj (x) − bjpj−1(x) j = 0, 1, 2,... (4.5.6) where aj = xpj |pj pj |pj j = 0, 1,... bj = pj|pj pj−1|pj−1 j = 1, 2,... (4.5.7) The coefficient b0 is arbitrary; we can take it to be zero. The polynomials defined by (4.5.6) are monic, i.e., the coefficient of their leading term [xj for pj(x)] is unity. If we divide each pj (x) by the constant [pj |pj ] 1/2 we can render the set of polynomials orthonormal. One also encounters orthogonal polynomials with various other normalizations. You can convert from a given normalization to monic polynomials if you know that the coefficient of xj in pj is λj , say; then the monic polynomials are obtained by dividing each p j by λj . Note that the coefficients in the recurrence relation (4.5.6) depend on the adopted normalization. The polynomial pj (x) can be shown to have exactly j distinct roots in the interval (a, b). Moreover, it can be shown that the roots of pj (x) “interleave” the j − 1 roots of pj−1(x), i.e., there is exactly one root of the former in between each two adjacent roots of the latter. This fact comes in handy if you need to find all the roots: You can start with the one root of p1(x) and then, in turn, bracket the roots of each higher j, pinning them down at each stage more precisely by Newton’s rule or some other root-finding scheme (see Chapter 9). Why would you ever want to find all the roots of an orthogonal polynomial pj (x)? Because the abscissas of the N-point Gaussian quadrature formulas (4.5.1) and (4.5.4) with weighting function W(x) in the interval(a, b) are precisely the roots of the orthogonal polynomial pN (x) for the same interval and weighting function. This is the fundamental theorem of Gaussian quadratures, and lets you find the abscissas for any particular case
150 Chapter 4.Integration of Functions Once you know the abscissas 1,...,N,you need to find the weights wj, j=1,...,N.One way to do this (not the most efficient)is to solve the set of linear equations Po(z1) Po(EN)》 1 W(x)po(x)dz P1(x1) P1(IN) 2 0 (4.5.8) -PN-1(E1) PN-1(EN) .WN 0 Equation(4.5.8)simply solves for those weights such that the quadrature(4.5.1) gives the correct answer for the integral of the first N orthogonal polynomials.Note that the zeros on the right-hand side of(4.5.8)appear because p(x),...,PN-1(x) are all orthogonal to po(),which is a constant.It can be shown that,with those weights,the integral ofthe next N-1 polynomials is also exact,so that the quadrature is exact for all polynomials of degree 2N-1 or less.Another way to evaluate the weights (though one whose proof is beyond our scope)is by the formula RECIPES y与=N-ipN-1) 9 (4.5.9) PN-1(j)pN(zj) where p(i)is the derivative of the orthogonal polynomial at its zero xj. The computation of Gaussian quadrature rules thus involves two distinct phases: (i)the generation of the orthogonal polynomials po,...,P,i.e.,the computation of the coefficients ai,bi in (4.5.6);(ii)the determination of the zeros of p(x),and the computation of the associated weights.For the case of the"classical"orthogonal polynomials,the coefficients aj and b;are explicitly known (equations 4.5.10- 61 4.5.14 below)and phase (i)can be omitted.However,if you are confronted with a "nonclassical"weight function W(z),and you don't know the coefficients aj and bj,the construction of the associated set of orthogonal polynomials is not trivial. We discuss it at the end of this section. 公 Numerica 10621 Computation of the Abscissas and Weights 43106 This task can range from easy to difficult,depending on how much you already Recipes know about your weight function and its associated polynomials.In the case of (outside classical,well-studied,orthogonal polynomials,practically everything is known. North Software. including good approximations for their zeros.These can be used as starting guesses, enabling Newton's method (to be discussed in $9.4)to converge very rapidly. Newton's method requires the derivative p(z),which is evaluated by standard relations in terms of pN and pN-1.The weights are then conveniently evaluated by equation (4.5.9).For the following named cases,this direct root-finding is faster, by a factor of 3 to 5,than any other method. Here are the weight functions,intervals,and recurrence relations that generate the most commonly used orthogonal polynomials and their corresponding Gaussian quadrature formulas
150 Chapter 4. Integration of Functions Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machinereadable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). Once you know the abscissas x1,...,xN , you need to find the weights wj , j = 1,...,N. One way to do this (not the most efficient) is to solve the set of linear equations p0(x1) ... p0(xN ) p1(x1) ... p1(xN ) . . . . . . pN−1(x1) ... pN−1(xN ) w1 w2 . . . wN = b a W(x)p0(x)dx 0 . . . 0 (4.5.8) Equation (4.5.8) simply solves for those weights such that the quadrature (4.5.1) gives the correct answer for the integral of the first N orthogonal polynomials. Note that the zeros on the right-hand side of (4.5.8) appear because p 1(x),...,pN−1(x) are all orthogonal to p0(x), which is a constant. It can be shown that, with those weights, the integral of the next N −1 polynomials is also exact, so that the quadrature is exact for all polynomials of degree 2N − 1 or less. Another way to evaluate the weights (though one whose proof is beyond our scope) is by the formula wj = pN−1|pN−1 pN−1(xj )p N (xj ) (4.5.9) where p N (xj ) is the derivative of the orthogonal polynomial at its zero xj . The computation of Gaussian quadrature rules thus involves two distinct phases: (i) the generation of the orthogonal polynomials p 0,...,pN , i.e., the computation of the coefficients aj , bj in (4.5.6); (ii) the determination of the zeros of p N (x), and the computation of the associated weights. For the case of the “classical” orthogonal polynomials, the coefficients aj and bj are explicitly known (equations 4.5.10 – 4.5.14 below) and phase (i) can be omitted. However, if you are confronted with a “nonclassical” weight function W(x), and you don’t know the coefficients a j and bj , the construction of the associated set of orthogonal polynomials is not trivial. We discuss it at the end of this section. Computation of the Abscissas and Weights This task can range from easy to difficult, depending on how much you already know about your weight function and its associated polynomials. In the case of classical, well-studied, orthogonal polynomials, practically everything is known, including good approximations for their zeros. These can be used as starting guesses, enabling Newton’s method (to be discussed in §9.4) to converge very rapidly. Newton’s method requires the derivative p N (x), which is evaluated by standard relations in terms of pN and pN−1. The weights are then conveniently evaluated by equation (4.5.9). For the following named cases, this direct root-finding is faster, by a factor of 3 to 5, than any other method. Here are the weight functions, intervals, and recurrence relations that generate the most commonly used orthogonal polynomials and their corresponding Gaussian quadrature formulas.
4.5 Gaussian Quadratures and Orthogonal Polynomials 151 Gauss-Legendre: W(x)=1 -1<x<1 (0+1)P+1=(2j+1)xP-jP-1 (4.5.10) Gauss-Chebyshev: W(x)=(1-x2)-1/2 -1<x<1 Ti+1 2xTi-Tj-1 (4.5.11)) Gauss-Laguerre: W(x)=xae-r0<x<∞ 令 (0+1)L9+1=(-x+2i+a+1)L9-(j+a)L9-1 (4.5.12) Gauss-Hermite: ⊙ RECIPES W(r)=e- -00<x<00 2 Hj+1=2xH1-2jH1-1 (4.5.13) 人 Press. Gauss-Jacobi: W(x)=(1-x)(1+x)9 -1<x<1 Progra OF SCIENTIFIC( GP4=4+eP-方P: (4.5.14) 61 where the coefficients cj,dj,ej,and fi are given by c3=2(0+1)0+a+3+1)(2j+a+3) d=(2i+a+3+1)(a2-32) (4.5.15) e5=(2j+a+)(2j+a+3+1)(2j+a+3+2) Numerical 10621 f)=2(j+a)0+)(2j+a+3+2) 431 We now give individual routines that calculate the abscissas and weights for Recipes these cases.First comes the most common set of abscissas and weights,those of (outside Gauss-Legendre.The routine,due to G.B.Rybicki,uses equation(4.5.9)in the North special form for the Gauss-Legendre case, 四,=(1-P以P (4.5.16 The routine also scales the range of integration from(x1,2)to(-1,1),and provides abscissas j and weights wj for the Gaussian formula (4.5.17) j=1
4.5 Gaussian Quadratures and Orthogonal Polynomials 151 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machinereadable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). Gauss-Legendre: W(x)=1 − 1 <x< 1 (j + 1)Pj+1 = (2j + 1)xPj − jPj−1 (4.5.10) Gauss-Chebyshev: W(x) = (1 − x2) −1/2 − 1 <x< 1 Tj+1 = 2xTj − Tj−1 (4.5.11) Gauss-Laguerre: W(x) = xαe−x 0 <x< ∞ (j + 1)Lα j+1 = (−x + 2j + α + 1)Lα j − (j + α)Lα j−1 (4.5.12) Gauss-Hermite: W(x) = e−x2 − ∞ <x< ∞ Hj+1 = 2xHj − 2jHj−1 (4.5.13) Gauss-Jacobi: W(x) = (1 − x) α(1 + x) β − 1 <x< 1 cjP(α,β) j+1 = (dj + ejx)P(α,β) j − fjP(α,β) j−1 (4.5.14) where the coefficients cj , dj , ej, and fj are given by cj = 2(j + 1)(j + α + β + 1)(2j + α + β) dj = (2j + α + β + 1)(α2 − β2) ej = (2j + α + β)(2j + α + β + 1)(2j + α + β + 2) fj = 2(j + α)(j + β)(2j + α + β + 2) (4.5.15) We now give individual routines that calculate the abscissas and weights for these cases. First comes the most common set of abscissas and weights, those of Gauss-Legendre. The routine, due to G.B. Rybicki, uses equation (4.5.9) in the special form for the Gauss-Legendre case, wj = 2 (1 − x2 j )[P N (xj )]2 (4.5.16) The routine also scales the range of integration from (x1, x2) to (−1, 1), and provides abscissas xj and weights wj for the Gaussian formula x2 x1 f(x)dx = N j=1 wjf(xj ) (4.5.17)