I'm studying newton's method for the equation $\cos(x) = x$ over $[0, \pi/2]$ and I'm asked to support the argument that given the values $x_0 = 0.78539816$, $x_1 = 0.73953613$, $x_2 = 0.73908518$ further iterations of the method will be convergent to the functions root.
I think I'm suppose to prove the 4 steps that are sufficient for convergence:
- Show that $f(0) \cdot f(\pi/2) < 0$. $\implies$ $f(0) \cdot f(\pi/2) = -\pi/2$.
- Show that $f'(x) \neq 0$ on $[0, \pi/2]$. $\implies$ $f'(x) = -\sin(x) - 1$, is it enough to say that $-\sin(x)$ only takes the value $1$ at $3\pi/2 + k \cdot 2\pi$ and that's never in the domain of $f(x)$?
- Show that $f''(x)$ does not change sign in $[0, \pi/2]$. $\implies$ $f''(x) = -\cos(x)$, range of $-\cos(x)$ on $[0, \pi/2]$ is only $[0, -1]$.
- A simple calculation like part 1.
I'm really struggling with parts 2 and 3. I don't know how to show this differently and I'm pretty sure it's wrong or at least insufficient.