A fixed point iteration formula for $2x^3-4x^2+x+1=0$ can be derived: $$x_{r+1}=4x_r^2-2x_r^3-1$$
Starting with the initial value of 2:
$$x_0=2$$ $$x_1=-1$$ $$x_2=5$$ $$x_3=-151$$ $$x_4=6977105$$
Instead of converging to the root the sequence diverges.
However, the formula seems to work for 1.5.
Why does the sequence converge for 1.5 but diverge for 2?


Observe from graph that if you will start from $x_0=2$, $4x^2-2x^3-1|_{x=2}<0$ and for all other iteration you can observe that you will go down and down on the graph of $4x^2-2x^3-1$. Hence iteration scheme will diverge.