I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
COST (GBP)
this unit 2.98
sub units 0.00
+
0

Muller

Calculates the zeros of a function using Muller's method.
Controller: CodeCogs

Interface

C++

Muller

 
doublemullerdouble(*f)(double)[function pointer]
doublex0 = 0
doubled = 3
doubleeps = 1E-10
intmaxit = 1000 )
This method extends the idea of the secant method which works with a linear polynomial, to a quadratic polynomial. Given three previous estimates \inline z^{(k - 2)}, \inline z^{(k - 1)} and \inline z^{(k)}, for an unknown root, a new value is computed by where and

The values \inline q_k may yield too large changes for \inline z^{(k)} which possibly leads to another root and causes slow convergence. This can be circumvented by allowing a fixed maximum increase of \inline |q_k| from one iteration to another. Care must also be taken when computing \inline  P \left( z^{(k)} \right) which is necessary to compute \inline A_k, \inline B_k and \inline C_k. If an estimate of \inline \left| P \left( z^{(k)} \rigth) \right| indicates a value greater than the maximum possible number, we choose in place of the original relation, and repeat this until no overflow occurs. The algorithm stops whenever the actual value \inline  \left| P \left( z^{(k)} \rigth) \right| is smaller than the smallest value \inline \left| P(z_{min}) \right| until now and holds where \inline \epsilon is some small number depending on the computer accuracy. To avoid a lot of iterations where the above condition fails, we allow only a fixed maximum number of iterations.

Convergence for this method is superlinear. However, it is one of those methods that will converge to both real and complex roots from a real initial approximation.

This algorithm finds the roots of the user-defined function f starting with an initial guess x0 and iterating the sequence above until either the accuracy eps is achieved or the maximum number of iterations maxit is exceeded. Another required parameter is the bound on the error of the initial guess d.

References:

  • Jean-Pierre Moreau's Home Page, http://perso.wanadoo.fr/jean-pierre.moreau/
  • F.R. Ruckdeschel, "BASIC Scientific Subroutines", Vol. II, BYTE/McGRAWW-HILL, 1981
  • Wankere R. Mekwi, "Iterative Methods for Roots of Polynomials", Exeter College, University of Oxford

Example 1

#include <codecogs/maths/rootfinding/muller.h>
 
#include <iostream>
#include <iomanip>
 
// user-defined function
double f(double x) {
    return sin(x);
}
 
int main() 
{
  double x = Maths::RootFinding::muller(f, 4);
 
  std::cout << "The calculated zero is X = " << std::setprecision(15) << x << std::endl;
  std::cout << "The associated ordinate value is Y = " << f(x) << std::endl;
  return 0;
}
Output:
The calculated zero is X = 3.14159265358979
The associated ordinate value is Y = 1.22460635382238e-016

Parameters

fthe user-defined function
x0Default value = 0
dDefault value = 3
epsDefault value = 1E-10
maxitDefault value = 1000

Authors

Lucian Bentea (August 2005)
Source Code

Source code is available when you buy a Commercial licence.

Not a member, then Register with CodeCogs. Already a Member, then Login.