NAG FL Interface
c02abf (poly_​real_​fpml)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

c02abf finds all the roots of a real polynomial equation, using a fourth-order convergent modification of Laguerre's method.

2 Specification

Fortran Interface
Subroutine c02abf ( a, n, itmax, polish, z, berr, cond, conv, ifail)
Integer, Intent (In) :: n, itmax, polish
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: conv(n)
Real (Kind=nag_wp), Intent (In) :: a(0:n)
Real (Kind=nag_wp), Intent (Out) :: berr(n), cond(n)
Complex (Kind=nag_wp), Intent (Out) :: z(n)
C Header Interface
#include <nag.h>
void  c02abf_ (const double a[], const Integer *n, const Integer *itmax, const Integer *polish, Complex z[], double berr[], double cond[], Integer conv[], Integer *ifail)
The routine may be called by the names c02abf or nagf_zeros_poly_real_fpml.

3 Description

c02abf attempts to find all the roots of the nth degree real polynomial equation
P(z) = a0zn + a1zn-1 + a2zn-2 + + an-1 z + an = 0 .  
The roots are located using a modified form of Laguerre's method, as implemented by Cameron (2018).
c02abf is a wrapper around the corresponding complex routine c02aaf.
The relative backward error of a root approximation zj is given by
η(zj) = |P(zj)| α(zj) ,  
where α is the perturbed polynomial
α(z) = k=0 n (3.8k+1) |an-k| |z|k .  
A root approximation is deemed to have converged if η(zj)2​ ​× machine precision, at which point updates of that root cease. If the stopping criterion holds, then the computed root is the exact root of a polynomial whose coefficients are no more perturbed than the floating-point computation of P(zj).
The condition number of each root is also computed, as a measure of sensitivity to changes in the coefficients of the polynomial. It is given by
κ(zj) = α(zj) |zj| |P(zj)| .  
Root approximations can be further refined with optional 'polishing' processes. A simple polishing process is provided that carries out a single iteration of Newton's method, which proves quick yet often effective. Alternatively, a compensated polishing process from Cameron and O'Neill (2019) can be applied. This iterative method combines the implicit deflation of the modified Laguerre method, with the accuracy of evaluating polynomials and their derivatives using the compensated Horner's method from Graillat et al. (2005). Compensated polishing yields approximations with a limiting accuracy as if computed in twice the working precision.
It is recommended that you read Section 9.1 for advice on selecting an appropriate polishing process.

4 References

Bini D A (1996) Numerical computation of polynomial zeros by means of Aberth's method Numerical Algorithms 13 179–200 Springer US
Cameron T R (2018) An effective implementation of a modified Laguerre method for the roots of a polynomial Numerical Algorithms Springer US https://doi.org/10.1007/s11075-018-0641-9
Cameron T R and O'Neill A (2019) On a compensated polishing technique for polynomial root solvers To be published
Graillat S, Louvet N, and Langlois P (2005) Compensated Horner scheme Technical Report Université de Perpignan Via Domitia
Petković M, Ilić S, and Tričković S (1997) A family of simultaneous zero-finding methods Computers & Mathematics with Applications (Volume 34) 10 49–59 https://doi.org/10.1016/S0898-1221(97)00206-X
Wilkinson J H (1959) The evaluation of the zeros of ill-conditioned polynomials. Part I Numerische Mathematik (Volume 1) 1 150–166 Springer-Verlag

5 Arguments

1: a(0:n) Real (Kind=nag_wp) array Input
On entry: a(i) must contain the coefficient of zn-i, for i=0,1,,n.
Constraint: a(0)0.0.
2: n Integer Input
On entry: n, the degree of the polynomial.
Constraint: n1.
3: itmax Integer Input
On entry: the maximum number of iterations to be performed.
Suggested value: itmax=30.
Constraint: itmax1.
4: polish Integer Input
On entry: specifies the polishing technique used to refine root approximations.
polish=0
No polishing.
polish=1
Single iteration of Newton's method.
polish=2
Iterative refinement using the compensated Horner's method.
See also Section 9.1.
Suggested value: polish=1.
Constraint: polish=0, 1 or 2.
5: z(n) Complex (Kind=nag_wp) array Output
On exit: z(j) holds the approximation of the root zj, for j=1,2,,n.
6: berr(n) Real (Kind=nag_wp) array Output
On exit: berr(j) holds the relative backward error, η(zj), for j=1,2,,n.
7: cond(n) Real (Kind=nag_wp) array Output
On exit: cond(j) holds the condition number, κ(zj), for j=1,2,,n.
8: conv(n) Integer array Output
On exit: conv(j) indicates the convergence status of the root approximation, zj, for j=1,2,,n.
conv(j)0
Successfully converged after conv(j) iterations.
conv(j)=−1
Failed to converge after itmax iterations.
conv(j)=−2
Overflow was encountered.
Note: if polish=2, conv refers to convergence in the compensated polishing process.
9: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. 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, the real variable a(0)=0.0.
ifail=2
On entry, n=value.
Constraint: n1.
ifail=3
On entry, itmax=value.
Constraint: itmax1.
ifail=4
On entry, polish=value.
Constraint: polish=0, 1 or 2.
ifail=5
Convergence has failed for at least one root approximation.
Check conv and consider increasing itmax.
ifail=6
c02abf encountered overflow during at least one root approximation.
Check conv and consider scaling the polynomial (see Section 9.2).
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

All roots are evaluated as accurately as possible, but because of the inherent nature of the problem complete accuracy cannot be guaranteed.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
c02abf is not threaded in any implementation.

9 Further Comments

9.1 Selecting a Polishing Process

The choice of polishing technique ultimately depends on two factors: how well conditioned the problem is, and a preference between run time and accuracy. For a detailed analysis of the polishing techniques, see Cameron and O'Neill (2019).
Well-conditioned Problems
Simple polishing is effective in reducing the error in approximations of well-conditioned roots, doing so with a negligible increase in run time. Compensated polishing has comparable accuracy, but it is approximately ten times slower than when using simple polishing.
Simple polishing (polish=1) is recommended for well-conditioned problems.
Ill-conditioned Problems
There is a dramatic difference in accuracy between the two polishing techniques for ill-conditioned polynomials. Unpolished approximations are inaccurate and simple polishing often proves ineffective. However, compensated polishing is able to reduce errors by several orders of magnitude.
Compensated polishing (polish=2) is highly recommended for ill-conditioned problems.

9.2 Scaling the Polynomial

c02abf attempts to avoid overflow conditions where possible. However, if the routine fails with ifail=6, such conditions could not be avoided for the given polynomial. Use conv to identify the roots for which overflow occurred, as other approximations may still have succeeded.
Extremely large and/or small coefficients are likely to be the cause of overflow failures. In such cases, you are recommended to scale the independent variable (z) so that the disparity between the largest and smallest coefficient in magnitude is reduced. That is, use the routine to locate the zeros of the polynomial sP(cz) for some suitable values of c and s. For example, if the original polynomial was P(z)=2−100i+2100z20, then choosing c=2−10 and s=2100, for instance, would yield the scaled polynomial i+z20, which is well-behaved relative to overflow and has zeros which are 210 times those of P(z).

10 Example

The example program for c02abf demonstrates two problems, given in the subroutines ex1_basic and ex2_polishing. (Note that by default, the second example is switched off because the results may be machine dependent. Edit the program in the obvious way to switch it on.)
Example 1: Basic Problem
This example finds the roots of the polynomial
a0 z6 + a1 z5 + a2 z4 + a3 z3 + a4 z2 + a5 z+a6 = 0 ,  
where a0=3.5 , a1=1.0 , a2=-7.0 , a3=12.5 , a4=2.5 , a5=-17.0 and a6=32.5 .
Example 2: Polishing Processes
This example finds the roots of a polynomial of the form
(z-1) (z-2) (z-n) = 0 ,  
first proposed by Wilkinson (1959) as an example of polynomials with ill-conditioned roots, that are sensitive to small changes in the coefficients. A polishing mode is demonstrated with n=10, and the maximum forward and relative backward errors of the approximations displayed.

10.1 Program Text

Program Text (c02abfe.f90)

10.2 Program Data

Program Data (c02abfe.d)

10.3 Program Results

Program Results (c02abfe.r)