NAG Library Routine Document
D01BCF
1 Purpose
D01BCF returns the weights (normal or adjusted) and abscissae for a Gaussian integration rule with a specified number of abscissae. Six different types of Gauss rule are allowed.
2 Specification
INTEGER |
ITYPE, N, IFAIL |
REAL (KIND=nag_wp) |
A, B, C, D, WEIGHT(N), ABSCIS(N) |
|
3 Description
D01BCF returns the weights
and abscissae
for use in the summation
which approximates a definite integral (see
Davis and Rabinowitz (1975) or
Stroud and Secrest (1966)). The following types are provided:
(a) |
Gauss–Legendre
Constraint:
. |
(b) |
Gauss–Jacobi
normal weights:
adjusted weights:
Constraint:
, , . |
(c) |
Exponential Gauss
normal weights:
adjusted weights:
Constraint:
, . |
(d) |
Gauss–Laguerre
normal weights:
adjusted weights:
Constraint:
, . |
(e) |
Gauss–Hermite
normal weights:
adjusted weights:
Constraint:
, . |
(f) |
Rational Gauss
normal weights:
adjusted weights:
Constraint:
, , . |
In the above formulae, stands for any polynomial of degree or less in .
The method used to calculate the abscissae involves finding the eigenvalues of the appropriate tridiagonal matrix (see
Golub and Welsch (1969)). The weights are then determined by the formula
where
is the
th orthogonal polynomial with respect to the weight function over the appropriate interval.
The weights and abscissae produced by D01BCF may be passed to
D01FBF, which will evaluate the summations in one or more dimensions.
4 References
Davis P J and Rabinowitz P (1975) Methods of Numerical Integration Academic Press
Golub G H and Welsch J H (1969) Calculation of Gauss quadrature rules Math. Comput. 23 221–230
Stroud A H and Secrest D (1966) Gaussian Quadrature Formulas Prentice–Hall
5 Parameters
- 1: ITYPE – INTEGERInput
On entry: indicates the type of quadrature rule.
- Gauss–Legendre, with normal weights.
- Gauss–Jacobi, with normal weights.
- Gauss–Jacobi, with adjusted weights.
- Exponential Gauss, with normal weights.
- Exponential Gauss, with adjusted weights.
- Gauss–Laguerre, with normal weights.
- Gauss–Laguerre, with adjusted weights.
- Gauss–Hermite, with normal weights.
- Gauss–Hermite, with adjusted weights.
- Rational Gauss, with normal weights.
- Rational Gauss, with adjusted weights.
Constraint:
, , , , , , , , , or .
- 2: A – REAL (KIND=nag_wp)Input
- 3: B – REAL (KIND=nag_wp)Input
- 4: C – REAL (KIND=nag_wp)Input
- 5: D – REAL (KIND=nag_wp)Input
On entry: the parameters
,
,
and
which occur in the quadrature formulae.
C is not used if
;
D is not used unless
,
,
or
. For some rules
C and
D must not be too large (see
Section 6).
- 6: N – INTEGERInput
On entry:
, the number of weights and abscissae to be returned. If
or
and
, an odd value of
N may raise problems (see
).
Constraint:
.
- 7: WEIGHT(N) – REAL (KIND=nag_wp) arrayOutput
- 8: ABSCIS(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the
N abscissae.
- 9: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
The algorithm for computing eigenvalues of a tridiagonal matrix has failed to obtain convergence. If the soft fail option is used, the values of the weights and abscissae on return are indeterminate.
On entry, | , |
or | , |
or | . |
If the soft fail option is used, weights and abscissae are returned as zero.
A,
B,
C or
D is not in the allowed range:
- if , ;
- if , or or or ;
- if , or ;
- if , or or ;
- if , or or ;
- if , or or .
Here
is the (machine-dependent) largest integer value such that
can be computed without overflow (see the
Users' Note for your implementation for
S14AAF).
If the soft fail option is used, weights and abscissae are returned as zero.
One or more of the weights are larger than
, the largest floating point number on this machine.
is given by the function
X02ALF. If the soft fail option is used, the overflowing weights are returned as
. Possible solutions are to use a smaller value of
N; or, if using adjusted weights, to change to normal weights.
One or more of the weights are too small to be distinguished from zero on this machine. If the soft fail option is used, the underflowing weights are returned as zero, which may be a usable approximation. Possible solutions are to use a smaller value of
N; or, if using normal weights, to change to adjusted weights.
Exponential Gauss or Gauss–Hermite adjusted weights with
N odd and
. Theoretically, in these cases:
- for , the central adjusted weight is infinite, and the exact function is zero at the central abscissa.
- for , the central adjusted weight is zero, and the exact function is infinite at the central abscissa.
In either case, the contribution of the central abscissa to the summation is indeterminate.
In practice, the central weight may not have overflowed or underflowed, if there is sufficient rounding error in the value of the central abscissa.
If the soft fail option is used, the weights and abscissa returned may be usable; you must be particularly careful not to ‘round’ the central abscissa to its true value without simultaneously ‘rounding’ the central weight to zero or as appropriate, or the summation will suffer. It would be preferable to use normal weights, if possible.
Note: remember that, when switching from normal weights to adjusted weights or vice versa, redefinition of is involved.
7 Accuracy
The accuracy depends mainly on , with increasing loss of accuracy for larger values of . Typically, one or two decimal digits may be lost from machine accuracy with , and three or four decimal digits may be lost for .
The major portion of the time is taken up during the calculation of the eigenvalues of the appropriate tridiagonal matrix, where the time is roughly proportional to .
9 Example
This example returns the abscissae and (adjusted) weights for the seven-point Gauss–Laguerre formula.
9.1 Program Text
Program Text (d01bcfe.f90)
9.2 Program Data
None.
9.3 Program Results
Program Results (d01bcfe.r)