I'm trying to solve $x^3+x-\epsilon = 0$ using the iteration method. From the equation, I have $x_{n+1} = (\epsilon-x_n)^{1/3}$. My question is how can I choose a reasonable $x_0$? When $\epsilon = 0$, the 3 roots of the equation are $0, i $ and $-i$. But I don't think any of them should be used as an initial guess.
Update:
As suggested in the answers, when $\epsilon$ is positive and approaches $0$, the real root of this function also approaches $0$. If we set $x_0 = 0$, then $x_1 = \epsilon^{1/3}$, $x_2 = (\epsilon-\epsilon^{1/3})^{1/3}$, etc. As $\epsilon\rightarrow0^+$, $x\rightarrow0$. It looks like $x$ becomes a function of $\epsilon$. How do we find the asymptotic expansion of this root? For the imaginary roots, should I repeat similar procedures?
You can use the exact roots of the unperturbed equation as initial guesses, and if your iteration is selected appropriately then you will have convergence to the corresponding root of the perturbed equation for small enough $\epsilon$.
In fact, starting with the solutions to the unperturbed problem is the normal thing to do in a "regular" perturbation problem like this (where the number of solutions is the same when $\epsilon=0$ as otherwise). Problems where that can't be done are called "singular".
It's worth trying the iteration that you proposed especially for $x_0=0$; something interesting happens.