c05axf attempts to locate a zero of a continuous function using a continuation method based on a secant iteration. It uses reverse communication for evaluating the function.
The routine may be called by the names c05axf or nagf_roots_contfn_cntin_rcomm.
3Description
c05axf uses a modified version of an algorithm given in Swift and Lindfield (1978) to compute a zero of a continuous function . The algorithm used is based on a continuation method in which a sequence of problems
are solved, where
(the value of is determined as the algorithm proceeds) and where is your initial estimate for the zero of . For each the current problem is solved by a robust secant iteration using the solution from earlier problems to compute an initial estimate.
You must supply an error tolerance tol. tol is used directly to control the accuracy of solution of the final problem ()
in the continuation method, and is used to control the accuracy in the intermediate problems
().
4References
Swift A and Lindfield G R (1978) Comparison of a continuation method for the numerical solution of a single nonlinear equation Comput. J.21 359–362
5Arguments
Note: this routine uses reverse communication. Its use involves an initial entry, intermediate exits and re-entries, and a final exit, as indicated by the argument ind. Between intermediate exits and re-entries, all arguments other thanfx must remain unchanged.
1: – Real (Kind=nag_wp)Input/Output
On initial entry: an initial approximation to the zero.
On intermediate exit:
the point at which must be evaluated before re-entry to the routine.
On final exit: the final approximation to the zero.
On intermediate re-entry: must contain for the current value of x.
3: – Real (Kind=nag_wp)Input
On initial entry: a value that controls the accuracy to which the zero is determined. tol is used in determining the convergence of the secant iteration used at each stage of the continuation process. It is used directly when solving the last problem ( in Section 3), and is used for the problem defined by , . Convergence to the accuracy specified by tol is not guaranteed, and so you are recommended to find the zero using at least two values for tol to check the accuracy obtained.
Constraint:
.
4: – IntegerInput
On initial entry: indicates the type of error test required, as follows. Solving the problem defined by , , involves computing a sequence of secant iterates . This sequence will be considered to have converged only if:
for ,
for ,
for ,
for some ; here is either tol or as discussed above. Note that there are other subsidiary conditions (not given here) which must also be satisfied before the secant iteration is considered to have converged.
Constraint:
, or .
5: – Real (Kind=nag_wp)Input
On initial entry: a factor for use in determining a significant approximation to the derivative of at , the initial value. A number of difference approximations to are calculated using
where and has the same sign as scal. A significance (cancellation) check is made on each difference approximation and the approximation is rejected if insignificant.
Suggested value:
, where is the machine precision returned by x02ajf.
Constraint:
must be sufficiently large that on the computer.
6: – Real (Kind=nag_wp) arrayCommunication Array
( contains the current , this value may be useful in the event of an error exit.)
On intermediate exit:
contains , or . The calling program must evaluate at x, storing the result in fx, and re-enter c05axf with all other arguments unchanged.
On final exit: contains .
Constraint:
on entry , , , or .
Note: any values you return to c05axf as part of the reverse communication procedure should not include floating-point NaN (Not a Number) or infinity values, since these are not handled by c05axf. If your code does inadvertently return any NaNs or infinities, c05axf is likely to produce unexpected results.
8: – IntegerInput/Output
On initial entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended since useful values can be provided in some output arguments even when on exit. When the value or is used it is essential to test the value of ifail on exit.
On final exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error 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: , or .
On entry, .
Constraint: .
On initial entry, .
Constraint: or .
On intermediate entry, .
Constraint: , or .
On entry, .
Constraint: (to machine accuracy).
Significant derivatives of cannot be computed. This can happen when is almost constant and nonzero, for any value of scal.
Current problem in the continuation sequence cannot be solved. Perhaps the original problem had no solution or the continuation path passes through a set of insoluble problems: consider refining the initial approximation to the zero. Alternatively, tol is too small, and the accuracy requirement is too stringent, or too large and the initial approximation too poor.
Continuation away from the initial point is not possible. This error exit will usually occur if the problem has not been properly posed or the error requirement is extremely stringent.
Final problem (with ) cannot be solved. It is likely that too much accuracy has been requested, or that the zero is at and .
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
The accuracy of the approximation to the zero depends on tol and ir. In general decreasing tol will give more accurate results. Care must be exercised when using the relative error criterion ().
If the zero is at , or if the initial value of x and the zero bracket the point , it is likely that an error exit with , or will occur.
It is possible to request too much or too little accuracy. Since it is not possible to achieve more than machine accuracy, a value of should not be input and may lead to an error exit with , or . For the reasons discussed under in Section 6,
tol should not be taken too large, say no larger than .
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
c05axf is not threaded in any implementation.
9Further Comments
For most problems, the time taken on each call to c05axf will be negligible compared with the time spent evaluating between calls to c05axf. However, the initial value of x and the choice of tol will clearly affect the timing. The closer that x is to the root, the less evaluations of required. The effect of the choice of tol will not be large, in general, unless tol is very small, in which case the timing will increase.
10Example
This example calculates a zero of with initial approximation , and and .