NAG Library Routine Document
D01UAF
1 Purpose
D01UAF computes an estimate of the definite integral of a function of known analytical form, using a Gaussian quadrature formula with a specified number of abscissae. Formulae are provided for a finite interval (Gauss–Legendre), a semi-infinite interval (Gauss–Laguerre, rational Gauss), and an infinite interval (Gauss–Hermite).
2 Specification
INTEGER |
KEY, N, IUSER(*), IFAIL |
REAL (KIND=nag_wp) |
A, B, DINEST, RUSER(*) |
EXTERNAL |
F |
|
3 Description
3.1 General
D01UAF evaluates an estimate of the definite integral of a function
, over a finite or infinite range, by
-point Gaussian quadrature (see
Davis and Rabinowitz (1975),
Fröberg (1970),
Ralston (1965) or
Stroud and Secrest (1966)). The integral is approximated by a summation of the product of a set of weights and a set of function evaluations at a corresponding set of abscissae
. For adjusted weights, the function values correspond to the values of the integrand
, and hence the sum will be
where the
are called the weights, and the
the abscissae. A selection of values of
is available. (See
Section 5.)
Where applicable, normal weights may instead be used, in which case the corresponding weight function
is factored out of the integrand as
and hence the sum will be
where the normal weights
are computed internally.
D01UAF uses a vectorized subroutine
F to supply abscissae to the user and to subsequently receive function evaluations. If adjusted weights are used, the values of the integrand
must be returned for all supplied abscissae
. If normal weights are used, the values of the normalized integrand
must be returned.
3.2 Both Limits Finite
The Gauss–Legendre weights and abscissae are used, and the formula is exact for any function of the form:
The formula is appropriate for functions which can be well approximated by such a polynomial over
. It is inappropriate for functions with algebraic singularities at one or both ends of the interval, such as
on
.
3.3 One Limit Infinite
Two quadrature formulae are available for these integrals.
(a) |
The Gauss–Laguerre formula is exact for any function of the form:
This formula is appropriate for functions decaying exponentially at infinity; the parameter should be chosen if possible to match the decay rate of the function.
If the adjusted weights are selected, the complete integrand should be provided through F.
If the normal form is selected, the contribution of is accounted for internally, and F should only return , where .
If is supplied, the interval of integration will be . Otherwise if is supplied, the interval of integration will be . |
(b) |
The rational Gauss formula is exact for any function of the form:
This formula is likely to be more accurate for functions having only an inverse power rate of decay for large . Here the choice of a suitable value of may be more difficult; unfortunately a poor choice of can make a large difference to the accuracy of the computed integral.
Only the adjusted form of the rational Gauss formula is available, and as such, the complete integrand must be supplied in F.
If , the interval of integration will be . Otherwise if , the interval of integration will be . |
3.4 Both Limits Infinite
The Gauss–Hermite weights and abscissae are used, and the formula is exact for any function of the form:
where
. Again, for general functions not of this exact form, the parameter
should be chosen to match if possible the decay rate at
.
If the adjusted weights are selected, the complete integrand
should be provided through
F.
If the normal form is selected, the contribution of
is accounted for internally, and
F should only return
, where
.
4 References
Davis P J and Rabinowitz P (1975) Methods of Numerical Integration Academic Press
Fröberg C E (1970) Introduction to Numerical Analysis Addison–Wesley
Ralston A (1965) A First Course in Numerical Analysis pp. 87–90 McGraw–Hill
Stroud A H and Secrest D (1966) Gaussian Quadrature Formulas Prentice–Hall
5 Parameters
- 1: KEY – INTEGERInput
On entry: indicates the quadrature formula.
- Gauss–Legendre quadrature on a finite interval, using normal weights.
- Gauss–Laguerre quadrature on a semi-infinite interval, using normal weights.
- Gauss–Laguerre quadrature on a semi-infinite interval, using adjusted weights.
- Gauss–Hermite quadrature on an infinite interval, using normal weights.
- Gauss–Hermite quadrature on an infinite interval, using adjusted weights.
- Rational Gauss quadrature on a semi-infinite interval, using adjusted weights.
Constraint:
, , , , or .
- 2: A – REAL (KIND=nag_wp)Input
- 3: B – REAL (KIND=nag_wp)Input
On entry: the quantities
and
as described in the appropriate subsection of
Section 3.
Constraints:
- Rational Gauss: ;
- Gauss–Laguerre: ;
- Gauss–Hermite: .
- 4: N – INTEGERInput
-
On entry: , the number of abscissae to be used.
Constraint:
,
,
,
,
,
,
,
,
,
,
,
,
,
,
or
.
If the soft fail option is used, the answer is evaluated for the largest valid value of
N less than the requested value.
- 5: F – SUBROUTINE, supplied by the user.External Procedure
F must return the value of the integrand
, or the normalized integrand
, at a specified point.
The specification of
F is:
INTEGER |
NX, IFLAG, IUSER(*) |
REAL (KIND=nag_wp) |
X(NX), FV(NX), RUSER(*) |
|
- 1: X(NX) – REAL (KIND=nag_wp) arrayInput
-
On entry: the abscissae,
, for at which function values are required.
- 2: NX – INTEGERInput
On entry: , the number of abscissae.
- 3: FV(NX) – REAL (KIND=nag_wp) arrayOutput
On exit: if adjusted weights are used, the values of the integrand
.
, for
.
Otherwise the values of the normalized integrand using the normal weights. for all .
- 4: IFLAG – INTEGERInput/Output
On entry: .
On exit: set if you wish to force an immediate exit from D01UAF with
.
- 5: IUSER() – INTEGER arrayUser Workspace
- 6: RUSER() – REAL (KIND=nag_wp) arrayUser Workspace
-
F is called with the parameters
IUSER and
RUSER as supplied to D01UAF. You are free to use the arrays
IUSER and
RUSER to supply information to
F as an alternative to using COMMON global variables.
F must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which D01UAF is called. Parameters denoted as
Input must
not be changed by this procedure.
Some points to bear in mind when coding
F are mentioned in
Section 7.
- 6: DINEST – REAL (KIND=nag_wp)Output
On exit: the estimate of the definite integral.
- 7: IUSER() – INTEGER arrayUser Workspace
- 8: RUSER() – REAL (KIND=nag_wp) arrayUser Workspace
-
IUSER and
RUSER are not used by D01UAF, but are passed directly to
F and may be used to pass information to this routine as an alternative to using COMMON global variables.
- 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, because for this routine the values of the output parameters may be useful even if
on exit, 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).
Note: D01UAF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
The -point rule is not among those stored.
On entry: .
-rule used: .
-
Underflow occurred in calculation of normal weights.
Reduce
N or use adjusted weights:
.
-
No nonzero weights were generated for the provided parameters.
-
On entry, .
Constraint: , , , , or .
The value of
A and/or
B is invalid for the chosen
KEY. Either:
-
The value of A and/or B is invalid for Gauss–Hermite quadrature.
On entry, .
On entry, and .
Constraint: .
-
The value of A and/or B is invalid for Gauss–Laguerre quadrature.
On entry, .
On entry, and .
Constraint: .
-
The value of A and/or B is invalid for rational Gauss quadrature.
On entry, .
On entry, and .
Constraint: .
-
On entry, .
Constraint: .
-
Exit requested from
F with
.
7 Accuracy
The accuracy depends on the behaviour of the integrand, and on the number of abscissae used. No tests are carried out in D01UAF to estimate the accuracy of the result. If such an estimate is required, the routine may be called more than once, with a different number of abscissae each time, and the answers compared. It is to be expected that for sufficiently smooth functions a larger number of abscissae will give improved accuracy.
Alternatively, the range of integration may be subdivided, the integral estimated separately for each sub-interval, and the sum of these estimates compared with the estimate over the whole range.
The coding of
F may also have a bearing on the accuracy. For example, if a high-order Gauss–Laguerre formula is used, and the integrand is of the form
it is possible that the exponential term may underflow for some large abscissae. Depending on the machine, this may produce an error, or simply be assumed to be zero. In any case, it would be better to evaluate the expression with
Another situation requiring care is exemplified by
The integrand here assumes very large values; for example, when , the peak value exceeds . Now, if the machine holds floating point numbers to an accuracy of significant decimal digits, we could not expect such terms to cancel in the summation leaving an answer of much less than (the weights being of order unity); that is, instead of zero we obtain a rather large answer through rounding error. Such situations are characterised by great variability in the answers returned by formulae with different values of .
In general, you should be aware of the order of magnitude of the integrand, and should judge the answer in that light.
The time taken by D01UAF depends on the complexity of the expression for the integrand and on the number of abscissae required.
9 Example
This example evaluates the integrals
by Gauss–Legendre quadrature;
by rational Gauss quadrature with
;
by Gauss–Laguerre quadrature with
; and
by Gauss–Hermite quadrature with
and
.
The formulae with and are used in each case. Both adjusted and normal weights are used for Gauss–Laguerre and Gauss–Hermite quadrature.
9.1 Program Text
Program Text (d01uafe.f90)
9.2 Program Data
None.
9.3 Program Results
Program Results (d01uafe.r)