I have forgotten
my Password

Or login with:

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

Secant

viewed 3584 times and licensed 95 times
Calculates the zeros of a function using the secant method.
Controller: CodeCogs

Interface

C++

Secant

 
doublesecantdouble(*f)(double)[function pointer]
doublex0 = -1E+7
doublex1 = 1E+7
doubleeps = 1E-10
intmaxit = 1000 )
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 where C is a constant and \inline \phi is the golden ratio.

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

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

MISSING IMAGE!

1/secant-378.png cannot be found in /users/1/secant-378.png. Please contact the submission author.

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

fthe user-defined function
x0Default value = -1E+7
x1Default value = 1E+7
epsDefault value = 1E-10
maxitDefault value = 1000

Authors

Lucian Bentea (August 2005)
Source Code

Source code is available when you agree to a GP Licence or buy a Commercial Licence.

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