d01ja attempts to evaluate an integral over an n-dimensional sphere (n=2, 3, or 4), to a user-specified absolute or relative accuracy, by means of a modified Sag–Szekeres method. The method can handle singularities on the surface or at the centre of the sphere, and returns an error estimate.

Syntax

C#
public static void d01ja(
	D01..::..D01JA_F f,
	int ndim,
	double radius,
	double epsa,
	double epsr,
	int method,
	int icoord,
	out double result,
	out double esterr,
	out int nevals,
	out int ifail
)
Visual Basic
Public Shared Sub d01ja ( _
	f As D01..::..D01JA_F, _
	ndim As Integer, _
	radius As Double, _
	epsa As Double, _
	epsr As Double, _
	method As Integer, _
	icoord As Integer, _
	<OutAttribute> ByRef result As Double, _
	<OutAttribute> ByRef esterr As Double, _
	<OutAttribute> ByRef nevals As Integer, _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void d01ja(
	D01..::..D01JA_F^ f, 
	int ndim, 
	double radius, 
	double epsa, 
	double epsr, 
	int method, 
	int icoord, 
	[OutAttribute] double% result, 
	[OutAttribute] double% esterr, 
	[OutAttribute] int% nevals, 
	[OutAttribute] int% ifail
)
F#
static member d01ja : 
        f : D01..::..D01JA_F * 
        ndim : int * 
        radius : float * 
        epsa : float * 
        epsr : float * 
        method : int * 
        icoord : int * 
        result : float byref * 
        esterr : float byref * 
        nevals : int byref * 
        ifail : int byref -> unit 

Parameters

f
Type: NagLibrary..::..D01..::..D01JA_F
f must return the value of the integrand f at a given point.

A delegate of type D01JA_F.

ndim
Type: System..::..Int32
On entry: n, the dimension of the sphere.
Constraint: 2ndim4.
radius
Type: System..::..Double
On entry: α, the radius of the sphere.
Constraint: radius0.0.
epsa
Type: System..::..Double
On entry: the requested absolute tolerance. If epsa<0.0, its absolute value is used. See [Accuracy].
epsr
Type: System..::..Double
On entry: the requested relative tolerance.
epsr<0.0
Its absolute value is used.
epsr<10×machine precision
The latter value is used as epsr by the method. See [Accuracy].
method
Type: System..::..Int32
On entry: must specify the transformation to be used by the method. The choice depends on the behaviour of the integrand and on the required accuracy.
For well-behaved functions and functions with mild singularities on the surface of the sphere only:
method=1
Low accuracy required.
method=2
High accuracy required.
For functions with severe singularities on the surface of the sphere only:
method=3
Low accuracy required.
method=4
High accuracy required.
(in this case icoord must be set to icoord=2, and the function defined in special spherical coordinates).
For functions with a singularity at the centre of the sphere (and possibly with singularities on the surface as well):
method=5
Low accuracy required.
method=6
High accuracy required.
method=0 can be used as a default value and is equivalent to:
  • method=1 if epsr>10-6, and
  • method=2 if epsr10-6.
The distinction between low and high required accuracies, as mentioned above, depends also on the behaviour of the function. Roughly one may assume the critical value of epsa and epsr to be 10-6, but the critical value will be smaller for a well-behaved integrand and larger for an integrand with severe singularities.
Suggested value: method=0.
Constraint: method=0, 1, 2, 3, 4, 5 or 6.
If icoord=2, method=3 or 4
icoord
Type: System..::..Int32
On entry: must specify which kind of coordinates are used in f.
icoord=0
Cartesian coordinates xi, for i=1,2,,n.
icoord=1
Spherical coordinates (see [Spherical Polar Coordinates]): x[0]=ρ; x[i-1]=θi-1, for i=2,3,,n.
icoord=2,
Special spherical polar coordinates (see [Machine Dependencies]), with the additional transformation ρ=α-λ: x[0]=λ=α-ρ; x[i-1]=θi-1, for i=2,3,,n.
Constraint: icoord=0, 1 or 2.
If method=3 or 4, icoord=2
result
Type: System..::..Double%
On exit: the approximation to the integral I.
esterr
Type: System..::..Double%
On exit: an estimate of the modulus of the absolute error.
nevals
Type: System..::..Int32%
On exit: the number of function evaluations used.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

d01ja calculates an approximation to the n-dimensional integral
I=SFx1,,xndx1dxn,  2n4,
where S is the hypersphere
x12++xn2α<
(the integrand function may also be defined in spherical coordinates). The algorithm is based on the Sag–Szekeres method (see Sag and Szekeres (1964)), applying the product trapezoidal formula after a suitable radial transformation. An improved transformation technique is developed: depending on the behaviour of the function and on the required accuracy, different transformations can be used, some of which are ‘double exponential’, as defined by Takahasi and Mori (1974). The resulting technique allows the method to deal with integrand singularities on the surface or at the centre of the sphere. When the estimated error of the approximation with mesh size h is larger than the tolerated error, the trapezoidal formula with mesh size h/2 is calculated. A drawback of this method is the exponential growth of the number of function evaluations in the successive approximations (this number grows with a factor 2n). This introduces the restriction n4. Because the convergence rate of the successive approximations is normally better than linear, the error estimate is based on the linear extrapolation of the difference between the successive approximations (see Robinson and de Doncker (1981) and Roose and de Doncker (1981)). For further details of the algorithm, see Roose and de Doncker (1981).

References

Robinson I and de Doncker E (1981) Automatic computation of improper integrals over a bounded or unbounded planar region Computing 27 89–284
Roose D and de Doncker E (1981) Automatic integration over a sphere J. Comput. Appl. Math. 7 203–224
Sag T W and Szekeres G (1964) Numerical evaluation of high-dimensional integrals Math. Comput. 18 245–253
Takahasi H and Mori M (1974) Double Exponential Formulas for Numerical Integration 9 Publ. RIMS, Kyoto University 721–741

Error Indicators and Warnings

Note: d01ja may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
ifail=1
The required accuracy cannot be achieved within a limiting number of function evaluations (which is set by the method).
ifail=2
The required accuracy cannot be achieved because of round-off error.
ifail=3
The required accuracy cannot be achieved because the maximum accuracy with respect to the machine constants x02aj and x02am has been attained. If this maximum accuracy is rather low (compared with x02aj), the cause of the problem is a severe singularity on the boundary or at the centre of the sphere. If method=0, 1 or 2, then setting method=3 or 4 may help.
ifail=4
On entry,ndim<2 or ndim>4,
orradius<0.0,
ormethod0, 1, 2, 3, 4, 5 or 6,
oricoord0, 1 or 2,
oricoord=2 and method3 or 4,
ormethod=3 or 4 and icoord2.
No calculations have been performed. result and esterr are set to 0.0.
ifail=-9000
An error occured, see message report.
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

You can specify an absolute and/or a relative tolerance, setting epsa and epsr. The method attempts to calculate an approximation result such that
I-resultmaxepsa,epsr×I.
If 0ifail3, esterr returns an estimate of, but not necessarily a bound for, I-result.

Parallelism and Performance

None.

Further Comments

Timing

Timing depends on the integrand and the accuracy required.

Spherical Polar Coordinates

Cartesian coordinates are related to the spherical polar coordinates by:
x1=ρ.sinθ1sinθn-2.sinθn-1x2=ρ.sinθ1sinθn-2.cosθn-1x3=ρ.sinθ1cosθn-2xn=ρ.cosθ1
where 0<θi<π, for i=1,2,,n-2 and 0<θn-1<2π.

Machine Dependencies

As a consequence of the transformation technique, the severity of the singularities which can be handled by d01ja depends on the precision and range of real numbers on the machine. method=3 or 4 must be used when the singularity on the surface is ‘severe’ in view of the requested accuracy and machine precision. In practice one has to set method=3 or 4 if d01ja terminates with ifail=3 when called with method=0, 1 or 2.
When integrating a function with a severe singular behaviour on the surface of the sphere, the additional transformation ρ=α-λ helps to avoid the loss of significant figures due to round-off error in the calculation of the integration nodes which are very close to the surface. For these points, the value of λ can be computed more accurately than the value of ρ. Naturally, care must be taken that the function subprogram does not contain expressions of the form α-λ, which could cause a large round-off error in the calculation of the integrand at the boundary of the sphere.
Care should be taken to avoid underflow and/or overflow problems in the function subprogram, because some of the integration nodes used by d01ja may be very close to the surface or to the centre of the sphere.
Example:
  • suppose the function
    fρ=1-ρ2-0.7
    is to be integrated over the unit sphere, with method=3 or 4. Then icoord should be set to 2; the transformation ρ=1-λ gives fρ=2λ-λ2-0.7; and f could be coded thus:
Note that d01ja ensures that λ=x[0]>x02am, but underflow could occur in the computation of λ2.

Example

This example evaluates the integrals
S11-ρ2dx1dxn
where ρ=i=1nxi2, and S is the unit sphere of dimension n=2​ or ​4.
The exact values (to 12 decimal places) are 6.28318530718 and 13.1594725348.

Example program (C#): d01jae.cs

Example program results: d01jae.r

See Also