Let $f(x)=\frac{1}{5}x^5+\frac{1}{3}x^3+x-1$
- Show that $f$ has only one zero $r$ in interval $(0,1)$
- To find approximation of $r$ we apply Newton's method $x_{n+1}=x_n-\frac{f(x_n)}{f'(x_n)}$. Show that for every $x_0\in(0,1)$ this method converges.
- Show that order of convergence is exactly quadratic
First one is trivial, but I don't know how to solve second and third. For second I was trying to show that error $|x_{n+1}-r|=e_{n+1}=e_n-\frac{f(x_n)}{f'(x_n)}$ is approaching $0$ when $n$ approaches $+\infty$ but it didn't lead me to anywhere.
Also showing the third seems very complicated. Can anybody help?