Calculates the zeros of a function using the secant method.

View versions (1)

Interface

#include <codecogs/maths/rootfinding/secant.h>

using namespace Maths::Rootfinding;

This is a root-finding algorithm which assumes a function to be approximately linear in the region of interest. Each improvement is taken as the point where the approximating line crosses the axis. The secant method retains only the most recent estimate, so the root does not necessarily remain bracketed.

When the algorithm does converge, its order of convergence is

\lim_{k \rightarrow \infty} |\epsilon_{k + 1}| \approx C |\epsilon|^{\phi}
(1)

where C is a constant and \phi is the golden ratio.

Let us now derive the actual recurrence relation used with this method.

f'(x_{n - 1}) \approx \frac {f(x_{n - 1}) - f(x_{n - 2})} {x_{n - 1} - x_{n - 2}}
(2)
f(x_n) \approx f(x_{n - 1}) + f'(x_{n - 1}) (x_n - x_{n - 1}) = 0
(3)
f(x_{n - 1}) + \frac {f(x_{n - 1}) - f(x_{n - 2})} {x_{n - 1} - x_{n - 2}} (x_n - x_{n - 1}) = 0
(4)

therefore

x_n = x_{n - 1} - \frac {f(x_{n - 1}) (x_{n - 1} - x_{n - 2})} {f(x_{n - 1}) - f(x_{n - 2})}
(5)

To give you a better idea on the way this method works, the following graph shows different iterations in the approximation process. Here is the associated list of pairs chosen at consecutive steps

(a_0, b_0) \quad (a_1, b_0) \quad (a_2, b_0)
(6)
1/secant-378.png

This algorithm finds the roots of the user-defined function f starting with an initial interval [x0, x1] and iterating the sequence above until either the accuracy eps is achieved or the maximum number of iterations maxit is exceeded.

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
  • MathWorld, http://mathworld.wolfram.com/SecantMethod.html

Example 1

#include <codecogs/maths/rootfinding/secant.h>

#include <iostream>
#include <iomanip>

// user-defined function
double f(double x) {
    return (x - 4) * (x + 5);
}

int main()  
{
  double x = Maths::RootFinding::secant(f, -2, 10);

  std::cout << "The calculated zero is X = " << std::setprecision(14) << x << std::endl;
  std::cout << "The associated ordinate value is Y = " << f(x) << std::endl;
  return 0;
}

Output:

The calculated zero is X = 3.9999998402552
The associated ordinate value is Y = -1.4377032269309e-006

Parameters

f
the user-defined function
x0
Default value = -1E+7
x1
Default value = 1E+7
eps
Default value = 1E-10
maxit
Default value = 1000
GPL Licence — free for non commercial use. See Licence details.