I have implemented the regula falsi method. I am trying to modify it so it becomes the secant method. A pdf I read mentioned that it is essentially the same with just one change. Future guesses for my 'm' value should have a slightly different formula, instead of:

m = a - f(a) * ( (b-a)/( f(b)-f(a) ) );

it should be:

m = a - f(a) * ( (m-a)/( f(m)-f(a) ) );

but unfortunately it doesn't work (It never finds the root). What should I fix to get this into the secant method?

source code as follows:

#include <stdio.h>
#include <math.h>


void
secant(double a, double b, double e, double (*f)(double), int maxiter ) {
  double m, fm, fa, fb;
  int i;

  fa=(*f)(a);
  fb=(*f)(b);

  m = a - fa * ( (b-a)/( fb - fa ) );

  fm=(*f)(m);


   for(i=0; i<maxiter; i++) {
    if ( fabs(fm) <= e ) {                               
      printf("f(%f) = %f\n", m, fm);
      return;
    } else if ((fa*fm) < 0) {
      b=m;
      fb=fm;
    } else {
      a=m;
      fa=fm;
    }

     // the guess below works for regula falsi method:   
     // m = a - fa * ( (b-a)/(fb - fa)); 

     //this was supposed to be the change to turn this into the secant method 
     m = a - fa * ( (m-a)/(fm - fa) ); 

     fm=(*f)(m);
  }
}

int main(){
secant(1,4,0.0001,sin,500);
return 0;
}

Thanks in advance

EDIT: Ok after playing around with pen and paper I finally got it it wasnt a simple change as I initially thought:

void secant(double a, double b, double e, double (*f)(double), int maxiter ) {
  double m, fm, fa, fb;
  int i;
  fa=(*f)(a);
  fb=(*f)(b);

   for(i=0; i<maxiter; i++) {
     m = a - fa * ( (b-a)/(fb - fa) );
     fm=(*f)(m);
     if ( fabs(fm) <= e ) {                               
        printf("f(%f)=%f, iter: %d\n", m,fm,i);
         return;
     }
     a=b;
     b=m;
     fa=fb;
     fb=fm;
  }
}
link|improve this question
"doesn't work"? Could you be more specific? Does the program crash, does it not converge, does it converge too slowly, is there a limit cycle, or does it shoot off to infinity? Or does something else happen... – Autopulated Jun 9 '11 at 18:24
Oops. I clarified just now that it doesnt find the root of the function – qwerrax Jun 9 '11 at 18:27
feedback

2 Answers

up vote 1 down vote accepted

It's easier for the secant method to not find the root. Are you sure it should find it?

For testing, here is an example: http://www.mathcs.emory.edu/ccs/ccs315/ccs315/node18.html (example 4.7) You'd want to run that example ( f(x)=x^6-x-1 , x0=1 x1=2, root x=1.347)

link|improve this answer
thanks, just tested it and secant method takes 6 iterations, whereas the initial regula falsi method took 1360 so i guess it works as advertised – qwerrax Jun 10 '11 at 14:50
feedback

Either the PDF is wrong or you misunderstood it. Without reading the PDF it is impossible to say which or explain further. When I explain both methods, I say that the difference between regula falsi and secant method is the rule for updating a and b.

Compute the first two iterations of the secant method by hand. Then modify your program to print the values of a, b and m at every iteration (or use a debugger). That should give you a hint of what is happening.

On your example, the secant method should converge in a few iterations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.