‘Global’ convergence#

There are several options to modify the Newton-Raphson method in order to enhance the robustness of root finding, but the improvement in robustness has to be weighed against the computational expense.

We have to assume our initial guess is reasonable, so the goal is to ensure the solution doesn’t wander.

Trust region methods#

A newer method for root finding adapts the concept of trust regions from optimization. Essentially one defines a region around an interation where the function is trusted to behave like a quadratic. This region is updated (similar to backtracking) as the solution proceeds according to some criteria.