NAG Library Routine Document
d01gcf
(md_numth)
1
Purpose
d01gcf calculates an approximation to a definite integral in up to dimensions, using the Korobov–Conroy number theoretic method.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
ndim,
npts,
nrand,
itrans | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), External | :: |
f | Real (Kind=nag_wp), Intent (Inout) | :: |
vk(ndim) | Real (Kind=nag_wp), Intent (Out) | :: |
res,
err | External | :: |
region |
|
C Header Interface
#include nagmk26.h
void |
d01gcf_ (
const Integer *ndim,
double (NAG_CALL *f)(
const Integer *ndim,
const double x[]),
void (NAG_CALL *region)(
const Integer *ndim,
const double x[],
const Integer *j,
double *c,
double *d),
const Integer *npts,
double vk[],
const Integer *nrand,
const Integer *itrans,
double *res,
double *err,
Integer *ifail) |
|
3
Description
d01gcf calculates an approximation to the integral
using the Korobov–Conroy number theoretic method (see
Korobov (1957),
Korobov (1963) and
Conroy (1967)). The region of integration defined in
(1) is such that generally
and
may be functions of
, for
, with
and
constants. The integral is first of all transformed to an integral over the
-cube
by the change of variables
The method then uses as its basis the number theoretic formula for the
-cube,
:
where
denotes the fractional part of
,
are the so-called optimal coefficients,
is the error, and
is a prime integer. (It is strictly only necessary that
be relatively prime to all
and is in fact chosen to be even for some cases in
Conroy (1967).) The method makes use of properties of the Fourier expansion of
which is assumed to have some degree of periodicity. Depending on the choice of
the contributions from certain groups of Fourier coefficients are eliminated from the error,
. Korobov shows that
can be chosen so that the error satisfies
where
and
are real numbers depending on the convergence rate of the Fourier series,
is a constant depending on
, and
is a constant depending on
and
. There are a number of procedures for calculating these optimal coefficients. Korobov imposes the constraint that
and gives a procedure for calculating the argument,
, to satisfy the optimal conditions.
In this routine the periodisation is achieved by the simple transformation
More sophisticated periodisation procedures are available but in practice the degree of periodisation does not appear to be a critical requirement of the method.
An easily calculable error estimate is not available apart from repetition with an increasing sequence of values of
which can yield erratic results. The difficulties have been studied by
Cranley and Patterson (1976) who have proposed a Monte–Carlo error estimate arising from converting
(2) into a stochastic integration rule by the inclusion of a random origin shift which leaves the form of the error
(3) unchanged; i.e., in the formula
(2),
is replaced by
, for
, where each
, is uniformly distributed over
. Computing the integral for each of a sequence of random vectors
allows a ‘standard error’ to be estimated.
This routine provides built-in sets of optimal coefficients, corresponding to six different values of
. Alternatively, the optimal coefficients may be supplied by you. Routines
d01gyf and
d01gzf compute the optimal coefficients for the cases where
is a prime number or
is a product of two primes, respectively.
4
References
Conroy H (1967) Molecular Shroedinger equation VIII. A new method for evaluting multi-dimensional integrals J. Chem. Phys. 47 5307–5318
Cranley R and Patterson T N L (1976) Randomisation of number theoretic methods for mulitple integration SIAM J. Numer. Anal. 13 904–914
Korobov N M (1957) The approximate calculation of multiple integrals using number theoretic methods Dokl. Acad. Nauk SSSR 115 1062–1065
Korobov N M (1963) Number Theoretic Methods in Approximate Analysis Fizmatgiz, Moscow
5
Arguments
- 1: – IntegerInput
-
On entry: , the number of dimensions of the integral.
Constraint:
.
- 2: – real (Kind=nag_wp) Function, supplied by the user.External Procedure
-
f must return the value of the integrand
at a given point.
The specification of
f is:
Fortran Interface
Real (Kind=nag_wp) | :: | f | Integer, Intent (In) | :: |
ndim | Real (Kind=nag_wp), Intent (In) | :: |
x(ndim) |
|
C Header Interface
#include nagmk26.h
double |
f (
const Integer *ndim,
const double x[]) |
|
- 1: – IntegerInput
-
On entry: , the number of dimensions of the integral.
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry: the coordinates of the point at which the integrand must be evaluated.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d01gcf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: f should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
d01gcf. If your code inadvertently
does return any NaNs or infinities,
d01gcf is likely to produce unexpected results.
- 3: – Subroutine, supplied by the user.External Procedure
-
region must evaluate the limits of integration in any dimension.
The specification of
region is:
Fortran Interface
Integer, Intent (In) | :: |
ndim,
j | Real (Kind=nag_wp), Intent (In) | :: |
x(ndim) | Real (Kind=nag_wp), Intent (Out) | :: |
c,
d |
|
C Header Interface
#include nagmk26.h
void |
region (
const Integer *ndim,
const double x[],
const Integer *j,
double *c,
double *d) |
|
- 1: – IntegerInput
-
On entry: , the number of dimensions of the integral.
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry: contain the current values of the first variables, which may be used if necessary in calculating and .
- 3: – IntegerInput
-
On entry: the index for which the limits of the range of integration are required.
- 4: – Real (Kind=nag_wp)Output
-
On exit: the lower limit of the range of .
- 5: – Real (Kind=nag_wp)Output
-
On exit: the upper limit of the range of .
region must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
d01gcf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: region should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
d01gcf. If your code inadvertently
does return any NaNs or infinities,
d01gcf is likely to produce unexpected results.
- 4: – IntegerInput
-
On entry: the Korobov rule to be used. There are two alternatives depending on the value of
npts.
(i) |
.
In this case one of six preset rules is chosen using , , , , or points depending on the respective value of npts being , , , , or . |
(ii) |
.
npts is the number of actual points to be used with corresponding optimal coefficients supplied in the array vk. |
Constraint:
.
- 5: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: if
,
vk must contain the
optimal coefficients (which may be calculated using
d01gyf or
d01gzf).
If
,
vk need not be set.
On exit: if
,
vk is unchanged.
If
,
vk contains the
optimal coefficients used by the preset rule.
- 6: – IntegerInput
-
On entry: the number of random samples to be generated in the error estimation (generally a small value, say to , is sufficient). The total number of integrand evaluations will be .
Constraint:
.
- 7: – IntegerInput
-
On entry: indicates whether the periodising transformation is to be used.
- The transformation is to be used.
- The transformation is to be suppressed (to cover cases where the integrand may already be periodic or where you want to specify a particular transformation in the definition of f).
Suggested value:
.
- 8: – Real (Kind=nag_wp)Output
-
On exit: the approximation to the integral .
- 9: – Real (Kind=nag_wp)Output
-
On exit: the standard error as computed from
nrand sample values. If
,
err contains zero.
- 10: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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:
-
On entry, | , |
or | . |
-
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
An estimate of the absolute standard error is given by the value, on exit, of
err.
8
Parallelism and Performance
d01gcf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The time taken by d01gcf will be approximately proportional to , where is the number of points used.
The exact values of
res and
err on return will depend (within statistical limits) on the sequence of random numbers generated within
d01gcf by calls to
g05saf. Separate runs will produce identical answers.
10
Example
This example calculates the integral
10.1
Program Text
Program Text (d01gcfe.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (d01gcfe.r)