I have a few nonlinear functions that I am using Newton's method to solve and am mainly interested in computing the convergence rate (or lack there of) each:
- $x^2 = 0$
- $x^3 = 0$
- $x + x^3 = 0$
- $x + x^4 = 0$
Taking the first equation for example: $$x_{k+1} = x_k - \frac{x_k^2}{2x_k} = \frac{x_k}{2}$$ Now my textbook simply states $x_k$ converges to zero but only with a linear rate. Apparently this is obvious, but I don't see why. It also goes on to state: $$\lim_{x \to 0}\frac{|\nabla^2f(x)|}{|\nabla f(x)|} = \infty$$ which means a quadratic convergence is unbounded.
Can someone explain the test for convergence rate of Newton's method?
From my understanding it is the following:
- if $|x^{k+1} - x_*| \leq \gamma |x^{k} - x_*|$ then $\{x^k\}$ is said to converge to $x_*$ linearly
- if $|x^{k+1} - x_*| \leq c|x^{k} - x_*|^P$ then $\{x^k\}$ is said to converge to $x_*$ with rate at least P
Questions:
Are $\gamma$, $c$, and $P$ simply arbitrary constants?
Why is it obvious that equation 1 converges linearly? What about the others?
This response to a similar question seems to compute the multiplicity of the roots of each equation but divergence is never mentioned