nag_zero_cont_func_brent (c05ayc) (PDF version)
c05 Chapter Contents
c05 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_zero_cont_func_brent (c05ayc)

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_zero_cont_func_brent (c05ayc) locates a simple zero of a continuous function in a given interval using Brent's method, which is a combination of nonlinear interpolation, linear extrapolation and bisection.

2  Specification

#include <nag.h>
#include <nagc05.h>
void  nag_zero_cont_func_brent (double a, double b, double eps, double eta,
double (*f)(double x, Nag_Comm *comm),
double *x, Nag_Comm *comm, NagError *fail)

3  Description

nag_zero_cont_func_brent (c05ayc) attempts to obtain an approximation to a simple zero of the function fx  given an initial interval a,b  such that fa × fb 0 .
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:     adoubleInput
On entry: a, the lower bound of the interval.
2:     bdoubleInput
On entry: b, the upper bound of the interval.
Constraint: ba .
3:     epsdoubleInput
On entry: the termination tolerance on x (see Section 3).
Constraint: eps>0.0 .
4:     etadoubleInput
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:     ffunction, supplied by the userExternal Function
f must evaluate the function f whose zero is to be determined.
The specification of f is:
double  f (double x, Nag_Comm *comm)
1:     xdoubleInput
On entry: the point at which the function must be evaluated.
2:     commNag_Comm *
Pointer to structure of type Nag_Comm; the following members are relevant to f.
userdouble *
iuserInteger *
pPointer 
The type Pointer will be void *. Before calling nag_zero_cont_func_brent (c05ayc) you may allocate memory and initialize these pointers with various quantities for use by f when called from nag_zero_cont_func_brent (c05ayc) (see Section 3.2.1.1 in the Essential Introduction).
6:     xdouble *Output
On exit: if fail.code= NE_NOERROR or NE_TOO_SMALL, x is the final approximation to the zero. If fail.code= NE_PROBABLE_POLE, x is likely to be a pole of fx. Otherwise, x contains no useful information.
7:     commNag_Comm *Communication Structure
The NAG communication argument (see Section 3.2.1.1 in the Essential Introduction).
8:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_FUNC_END_VAL
On entry, fa and fb have the same sign with neither equalling 0.0: fa=value and fb=value.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NE_PROBABLE_POLE
The function values in the interval a,b  might contain a pole rather than a zero. Reducing eps may help in distinguishing between a pole and a zero.
NE_REAL
On entry, eps=value.
Constraint: eps>0.0.
NE_REAL_2
On entry, a=value and b=value.
Constraint: ab.
NE_TOO_SMALL
No further improvement in the solution is possible. eps is too small: eps=value . The final value of x returned is an accurate approximation to the zero.

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 fail.code= NE_TOO_SMALL, 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

Not applicable.

9  Further Comments

The time taken by nag_zero_cont_func_brent (c05ayc) depends primarily on the time spent evaluating f (see Section 5).

10  Example

This example calculates an approximation to the zero of e-x - x  within the interval 0,1  using a tolerance of eps=1.0e−5.

10.1  Program Text

Program Text (c05ayce.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (c05ayce.r)


nag_zero_cont_func_brent (c05ayc) (PDF version)
c05 Chapter Contents
c05 Chapter Introduction
NAG Library Manual

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