So I have the polynomial $f(x)=8x^{4}-12x^{3}+6x^{2}-x$
And I was trying to find the convergence rate of the newton iteration when started close to the root r=0
My attempt:
Since $f'(r) \neq 0$ we have quadratic convergence with the convergence rate given $e_{i+1} \approx Me^{2}_{i}$
From Newton iteration I get that $x_{i+1}= \frac{6x^{2}_{i}}{6x_{i}-1}$ However I am not sure this is necessary..
So $f'(0)=-1$ and $f''(0)=0$ thus $M=0$ so the convergence rate is 0? is that possible?