Could anyone provide and explain some drawbacks and benefits of the method of false position against say newtons method.
I know one of benefits is that it doesn't require the derivative and one of the cons is that one of the interval definitions can get stuck (Incomes the Illinois method to save the day). However I wondered if there were any more?
Thanks!
Too long for a comment:
Regula falsi might be interpreted as computing a convex combination of the interval endpoints at each iteration. The pure method uses the inverse function values as weights, $$ c=\frac{|f(a)|^{-1}\,a+|f(b)|^{-1}\,b}{|f(a)|^{-1}+|f(b)|^{-1}} $$ so that the endpoint with the smaller function value gets more weight. Because of $f(a)f(b)<0$, this can be rewritten in the usual way.
The Illinois and other variants modify these weights according to the iteration history $$ c=\frac{u\,|f(a)|^{-1}\,a+v\,|f(b)|^{-1}\,b}{u\,|f(a)|^{-1}+v\,|f(b)|^{-1}} $$ so that the weight of the unmodified side is increased in each step, drawing the midpoint in its direction and thus eventually over the root that is (too) slowly approximated by the changing side of the interval.
Brents method, in contrast and among other things, performs explicit detection of stalling and inserts a bisection step to move also the other interval end.