We want to compute the root of $$f(x) = x^3-2x-5$$
Since $f(1.5)<0, f(2.5)>0$ the root must be within the interval $[1.5,2.5]$.
1) An intuitive iterative function would be $\phi(x) = 0.5 \cdot (x^3-5)$, that defines the iterative procedure:
$$x_{n+1} = 0.5 \cdot (x^3_n - 5)$$ but, it is not right because within the interval $[1.5, 2.5]$ there is $|\phi'(x)|>1$.
2) Another iterative function is $\phi(x) = (2x_n + 5)^{1/3}$, that defines the iterative procedure:
$$x_{n+1} = (2x_n+5)^{1/3}$$ and is ok because $1/6 < \phi'(x) < 0.15$. The procedure converges.
My questions:
- I don't understand what are the passages that bring to consider those iterative functions $\phi(x)$?
please, can you hep me? Thanks!