NAG Library Routine Document
c05auf
(contfn_brent_interval)
1
Purpose
c05auf locates a simple zero of a continuous function from a given starting value. It uses a binary search to locate an interval containing a zero of the function, then Brent's method, which is a combination of nonlinear interpolation, linear extrapolation and bisection, to locate the zero precisely.
2
Specification
Fortran Interface
Integer, Intent (Inout) | :: |
iuser(*),
ifail | Real (Kind=nag_wp), External | :: |
f | Real (Kind=nag_wp), Intent (In) | :: |
h,
eps,
eta | Real (Kind=nag_wp), Intent (Inout) | :: |
x,
ruser(*) | Real (Kind=nag_wp), Intent (Out) | :: |
a,
b |
|
C Header Interface
#include nagmk26.h
void |
c05auf_ (
double *x,
const double *h,
const double *eps,
const double *eta,
double (NAG_CALL *f)(
const double *x,
Integer iuser[],
double ruser[]),
double *a,
double *b,
Integer iuser[],
double ruser[],
Integer *ifail) |
|
3
Description
c05auf attempts to locate an interval
containing a simple zero of the function
by a binary search starting from the initial point
and using repeated calls to
c05avf. If this search succeeds, then the zero is determined to a user-specified accuracy by a call to
c05ayf. The specifications of routines
c05avf and
c05ayf should be consulted for details of the methods used.
The approximation
to the zero
is determined so that at least one of the following criteria is satisfied:
(i) |
, |
(ii) |
. |
4
References
Brent R P (1973) Algorithms for Minimization Without Derivatives Prentice–Hall
5
Arguments
- 1: – Real (Kind=nag_wp)Input/Output
-
On entry: an initial approximation to the zero.
On exit: if
or
,
x is the final approximation to the zero.
If
,
x is likely to be a pole of
.
Otherwise,
x contains no useful information.
- 2: – Real (Kind=nag_wp)Input
-
On entry: a step length for use in the binary search for an interval containing the zero. The maximum interval searched is .
Constraint:
must be sufficiently large that on the computer.
- 3: – Real (Kind=nag_wp)Input
-
On entry: the termination tolerance on
(see
Section 3).
Constraint:
.
- 4: – Real (Kind=nag_wp)Input
-
On entry: a value such that if
,
is accepted as the zero.
eta may be specified as
(see
Section 7).
- 5: – real (Kind=nag_wp) Function, supplied by the user.External Procedure
-
f must evaluate the function
whose zero is to be determined.
The specification of
f is:
Fortran Interface
Real (Kind=nag_wp) | :: | f | Integer, Intent (Inout) | :: |
iuser(*) | Real (Kind=nag_wp), Intent (In) | :: |
x | Real (Kind=nag_wp), Intent (Inout) | :: |
ruser(*) |
|
C Header Interface
#include nagmk26.h
double |
f (
const double *x,
Integer iuser[],
double ruser[]) |
|
- 1: – Real (Kind=nag_wp)Input
-
On entry: the point at which the function must be evaluated.
- 2: – Integer arrayUser Workspace
- 3: – Real (Kind=nag_wp) arrayUser Workspace
-
f is called with the arguments
iuser and
ruser as supplied to
c05auf. You should use the arrays
iuser and
ruser to supply information to
f.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
c05auf 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
c05auf. If your code inadvertently
does return any NaNs or infinities,
c05auf is likely to produce unexpected results.
- 6: – Real (Kind=nag_wp)Output
- 7: – Real (Kind=nag_wp)Output
-
On exit: the lower and upper bounds respectively of the interval resulting from the binary search. If the zero is determined exactly such that or is determined so that at any stage in the calculation, on exit .
- 8: – Integer arrayUser Workspace
- 9: – Real (Kind=nag_wp) arrayUser Workspace
-
iuser and
ruser are not used by
c05auf, but are passed directly to
f and may be used to pass information to this routine.
- 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, .
Constraint: .
On entry, and .
Constraint: (to machine accuracy).
-
An interval containing the zero could not be found. Increasing
h and calling
c05auf again will increase the range searched for the zero. Decreasing
h and calling
c05auf again will refine the mesh used in the search for the zero.
-
Solution may be a pole rather than a zero.
-
The tolerance
eps has been set too small for the problem being solved. However, the value
x returned is a good approximation to the zero.
.
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
The levels of accuracy depend on the values of
eps and
eta. If full machine accuracy is required, they may be set very small, resulting in an exit with
, although this may involve many more iterations than a lesser accuracy. You are recommended to set
and to use
eps to control the accuracy, unless you have considerable knowledge of the size of
for values of
near the zero.
8
Parallelism and Performance
c05auf is not threaded in any implementation.
The time taken by
c05auf depends primarily on the time spent evaluating
f (see
Section 5). The accuracy of the initial approximation
x and the value of
h will have a somewhat unpredictable effect on the timing.
If it is important to determine an interval of relative length less than
containing the zero, or if
f is expensive to evaluate and the number of calls to
f is to be restricted, then use of
c05avf followed by
c05azf is recommended. Use of this combination is also recommended when the structure of the problem to be solved does not permit a simple
f to be written: the reverse communication facilities of these routines are more flexible than the direct communication of
f required by
c05auf.
If the iteration terminates with successful exit and
there is no guarantee that the value returned in
x corresponds to a simple zero and you should check whether it does.
One way to check this is to compute the derivative of
at the point
x, preferably analytically, or, if this is not possible, numerically, perhaps by using a central difference estimate. If
, then
x must correspond to a multiple zero of
rather than a simple zero.
10
Example
This example calculates an approximation to the zero of using a tolerance of starting from and using an initial search step .
10.1
Program Text
Program Text (c05aufe.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (c05aufe.r)