I'm attempting to work out a problem of the form $a = bx + cx^2 + O(x^3)$, where I need to solve for $x$. To be honest, I don't really know how to work this out. Someone suggested that it can be done recursively, by writing
$x = \frac{a}{b} -\frac{c}{b}x^2 - O(x^3)$, squaring this and inserting it into the original equation. In that way, I could solve it recursively, was the idea. I've tried working this out on paper but without any success. It's based on solving this problem:

If someone could give me a hint as to how this is done, I'd be very grateful. Oh, and it might be relevant for the solution: both $z$ and $\lambda^3n$ are small; close to zero.