Question:
For the cubic equation
$$x^3+x-\varepsilon = 0 \qquad \varepsilon \rightarrow 0$$
find the first three terms of the asymptotic expansion of the solutions.
Attempt:
I observed that a solution is $x=0$ when $\varepsilon = 0$, so I picked the starting point $x_0=0$.
I then rearranged the equation as $x = (\varepsilon - x)^{1/3}$, to give the recurrence relation
$$x_{n+1} = (\varepsilon - x_n)^{1/3}$$
Plugging it in, we get
\begin{align} x_0 & = 0 \\ x_1 & = \varepsilon^{1/3} \\ x_2 & = (\varepsilon - \varepsilon^{1/3})^{1/3} \sim \mathcal O(\varepsilon^{1/9}) \end{align}
and I am confused, because apparently future iterations are supposed to match previous iterations at the leading orders.
But in this case, I had $x_1 = \mathcal O(\varepsilon^{1/3})$ and $x_2 = \mathcal O(\varepsilon^{1/9})$.
What have I done wrong? Any hints are much appreciated. Please help T_T