NAG Library Routine Document

c05auf  (contfn_brent_interval)

 Contents

    1  Purpose
    7  Accuracy

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
Subroutine c05auf ( x, h, eps, eta, f, a, b, iuser, ruser, ifail)
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 a,b  containing a simple zero of the function fx  by a binary search starting from the initial point x=x  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 x to the zero α is determined so that at least one of the following criteria is satisfied:
(i) x-α eps ,
(ii) fxeta .

4
References

Brent R P (1973) Algorithms for Minimization Without Derivatives Prentice–Hall

5
Arguments

1:     x – Real (Kind=nag_wp)Input/Output
On entry: an initial approximation to the zero.
On exit: if ifail=0 or 4, x is the final approximation to the zero.
If ifail=3, x is likely to be a pole of fx.
Otherwise, x contains no useful information.
2:     h – 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 x-256.0×h,x+256.0×h .
Constraint: h  must be sufficiently large that x+hx  on the computer.
3:     eps – Real (Kind=nag_wp)Input
On entry: the termination tolerance on x (see Section 3).
Constraint: eps>0.0 .
4:     eta – Real (Kind=nag_wp)Input
On entry: a value such that if fxeta , x is accepted as the zero. eta may be specified as 0.0 (see Section 7).
5:     f – real (Kind=nag_wp) Function, supplied by the user.External Procedure
f must evaluate the function f whose zero is to be determined.
The specification of f is:
Fortran Interface
Function f ( x, iuser, ruser)
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:     x – Real (Kind=nag_wp)Input
On entry: the point at which the function must be evaluated.
2:     iuser* – Integer arrayUser Workspace
3:     ruser* – 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:     a – Real (Kind=nag_wp)Output
7:     b – 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 fx=0.0  or is determined so that fxeta  at any stage in the calculation, on exit a=b=x .
8:     iuser* – Integer arrayUser Workspace
9:     ruser* – 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:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. 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 -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, eps=value.
Constraint: eps>0.0.
On entry, x=value and h=value.
Constraint: x+hx (to machine accuracy).
ifail=2
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.
ifail=3
Solution may be a pole rather than a zero.
ifail=4
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. eps=value.
ifail=-99
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.
ifail=-399
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.
ifail=-999
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 ifail=4, although this may involve many more iterations than a lesser accuracy. You are recommended to set eta=0.0  and to use eps to control the accuracy, unless you have considerable knowledge of the size of fx  for values of x near the zero.

8
Parallelism and Performance

c05auf is not threaded in any implementation.

9
Further Comments

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 2×eps 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 a=b=x  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 f at the point x, preferably analytically, or, if this is not possible, numerically, perhaps by using a central difference estimate. If fx=0.0 , then x must correspond to a multiple zero of f rather than a simple zero.

10
Example

This example calculates an approximation to the zero of x-e-x  using a tolerance of eps=1.0E−5 starting from x=1.0  and using an initial search step h=0.1 .

10.1
Program Text

Program Text (c05aufe.f90)

10.2
Program Data

None.

10.3
Program Results

Program Results (c05aufe.r)

© The Numerical Algorithms Group Ltd, Oxford, UK. 2017