hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_quad_1d_fin_well (d01ah)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_quad_1d_fin_well (d01ah) computes a definite integral over a finite range to a specified relative accuracy using a method described by Patterson.

Syntax

[result, npts, relerr, ifail] = d01ah(a, b, epsr, f, nlimit)
[result, npts, relerr, ifail] = nag_quad_1d_fin_well(a, b, epsr, f, nlimit)

Description

nag_quad_1d_fin_well (d01ah) computes a definite integral of the form
abfxdx.  
The method uses as its basis a family of interlacing high precision rules (see Patterson (1968)) using 1, 3, 7, 15, 31, 63, 127 and 255 nodes. Initially the family is applied in sequence to the integrand. When two successive rules differ relatively by less than the required relative accuracy, the last rule used is taken as the value of the integral and the operation is regarded as successful. If all rules in the family have been applied unsuccessfully, subdivision is invoked. The subdivision strategy is as follows. The interval under scrutiny is divided into two sub-intervals (not always equal). The basic family is then applied to the first sub-interval. If the required accuracy is not obtained, the interval is stored for future examination (see ifail=2) and the second sub-interval is examined. Should the basic family again be unsuccessful, then the sub-interval is further subdivided and the whole process repeated. Successful integrations are accumulated as the partial value of the integral. When all possible successful integrations have been completed, those previously unsuccessful sub-intervals placed in store are examined.
A large number of refinements are incorporated to improve the performance. Some of these are:
(a) The rate of convergence of the basic family is monitored and used to make a decision to abort and subdivide before the full sequence has been applied.
(b) The ε-algorithm is applied to the basic results in an attempt to increase the convergence rate. See Wynn (1956).
(c) An attempt is made to detect sharp end point peaks and singularities in each sub-interval and to apply appropriate transformations to smooth the integrand. This consideration is also used to select interval sizes in the subdivision process.
(d) The relative accuracy sought in each sub-interval is adjusted in accordance with its likely contribution to the total integral.
(e) Random transformations of the integrand are applied to improve reliability in some instances.

References

Patterson T N L (1968) The Optimum addition of points to quadrature formulae Math. Comput. 22 847–856
Wynn P (1956) On a device for computing the emSn transformation Math. Tables Aids Comput. 10 91–96

Parameters

Compulsory Input Parameters

1:     a – double scalar
a, the lower limit of integration.
2:     b – double scalar
b, the upper limit of integration. It is not necessary that a<b.
3:     epsr – double scalar
The relative accuracy required.
Constraint: epsr>0.0.
4:     f – function handle or string containing name of m-file
f must return the value of the integrand f at a given point.
[result] = f(x)

Input Parameters

1:     x – double scalar
The point at which the integrand f must be evaluated.

Output Parameters

1:     result – double scalar
The value of the integrand at x
5:     nlimit int64int32nag_int scalar
A limit to the number of function evaluations. If nlimit0, the function uses a default limit of 10000.

Optional Input Parameters

None.

Output Parameters

1:     result – double scalar
The value of the definite interval.
2:     npts int64int32nag_int scalar
The number of function evaluations used in the calculation of the integral.
3:     relerr – double scalar
A rough estimate of the relative error achieved.
4:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Note: nag_quad_1d_fin_well (d01ah) may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the function:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

W  ifail=1
The integral has not converged to the accuracy requested. It may be worthwhile to try increasing nlimit.
W  ifail=2
Too many unsuccessful levels of subdivision have been invoked.
   ifail=3
On entry,epsr0.0.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.
When ifail=1 or 2 a result may be obtained by continuing without further subdivision, but this is likely to be inaccurate.

Accuracy

The relative accuracy required is specified by you in the variable epsr. The function will terminate whenever the relative accuracy specified by epsr is judged to have been reached.
If on exit, ifail=0, then it is most likely that the result is correct to the specified accuracy. If, on exit, ifail=1 or 2, then it is likely that the specified accuracy has not been reached.
relerr is a rough estimate of the relative error achieved. It is a by-product of the computation and is not used to effect the termination of the function. The outcome of the integration must be judged by the value of ifail.

Further Comments

The time taken by nag_quad_1d_fin_well (d01ah) depends on the complexity of the integrand and the accuracy required.

Example

This example evaluates the integral to a requested relative accuracy of 10-5 
0141+x2 dx=π.  
function d01ah_example


fprintf('d01ah example results\n\n');

a = 0;
b = 1;
epsr = 1e-5;
nlimit = int64(0);

[result, npts, relerr, ifail] = d01ah(...
                                      a, b, epsr, @fcn, nlimit);

fprintf('Integral                       =  %9.5f\n\n', result);
fprintf('Estimated relative error       =  %10.2e\n\n', relerr);
fprintf('Number of function evaluations =  %4d\n', npts);



function f = fcn(x)
  f = 4/(1+x^2);
d01ah example results

Integral                       =    3.14159

Estimated relative error       =    5.85e-09

Number of function evaluations =    15

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015