I am trying to think of when using forward difference approximation to $$f'(x) = \frac{f(x+\delta) - f(x)}{\delta}$$ in Newton's root finding method of $$f(x_{n+1})=x_n-\frac{f(x_n)}{f'(x_n)}$$ is beneficial.
Substituting gives $$f(x_{n+1})=x_n-\frac{\delta}{f(x_n+\delta) - f(x_n)}f(x_n).$$ My initial thought is that this will work better for functions that have steep derivatives, so it will limit $f'(x)$ from blowing up.
Another follow up question is that why setting $\delta=\epsilon_M^{1/2}$ is a sensible thing to do? Is it because this guarantees that errors will dampen at each iteration.
Could someone please nudge me in the right direction.
You want $\delta$ to be small in order for the approximation to $f'$ be better. On the other hand, the subtraction $f(x+\delta)-f(\delta)$ kills precision, which means that we want $|f(x+\delta)-f(x)|\gg\epsilon$. With the choice $\delta=\sqrt{\epsilon}$, we have $|f(x+\delta)-f(x)|\approx \sqrt\epsilon|f'(x)|$. Without knowning more about $f$, we should assume that both $f(x)$ and $f'(x)$ are both of "reasonable" order of magnitude. Hence $|f(x+\delta)-f(x)|\approx\sqrt\epsilon|f(x)|$, which means that we lose only about half of the available precision.