Usage Notes
Zeros of a Polynomial
A polynomial function of degree n can be expressed as follows:
p(z) = anzn + an-1 zn-1 + … + a1z + a0
where an  0. The function imsl_f_zeros_poly finds zeros of a polynomial with real coefficients using the Jenkins-Traub method.
Zeros of a Function
The function imsl_f_zeros_function finds the real zeros of a real, continuous, univariate function. It uses a meta-algorithm based on partitioning the interval using a low-discrepancy sequence and a combination of Müller’s method and Brent’s method. This algorithm can find roots without requiring the user to bracket the root in an interval over which the function changes sign, as required by Brent’s method, or give good guesses for the roots, as required by Müller’s method.
The function imsl_f_zero_univariate finds a real zero of a real, continuous, univariate function. It uses an algorithm attributed to Dr. Fred T. Krogh, JPL, 1972. Tests have shown this algorithm to require fewer function evaluations, on average, than a number of other algorithms for finding a zero of a continuous function.
Root of System of Equations
A system of equations can be stated as follows:
fi(x) = 0,  for  i = 1, 2, …, n
where x  n, and fi : n  .The function imsl_f_zeros_sys_eqn uses a modified hybrid method due to M.J.D. Powell to find the zero of a system of nonlinear equations.