44

If one iterates the map $z \mapsto z^2 + c$ there is obviously a simple formula for the sequence one gets if $c=0$. Less obviously, there is also a simple formula when $c = -2$ (use the identity $2 \cos(2x) = (2\cos(x))^2 - 2)$. Are there any other values of $c$ for which one can solve this recurrence explicitly? (For all initial values of course: there are many trivial explicit solutions for special initial values, such as fixed points.)

Related links:
http://en.wikipedia.org/wiki/Mandelbrot_set (the points $c$ where 0 remains bounded under iteration of this map: this strongly suggests that there is no simple exact solution for general $c$).
http://en.wikipedia.org/wiki/Logistic_map (gives the explicit solutions above, after a change of variable)

Motivation: I once used the map with $c=-2$ in a lecture to show that one could prove limits exist even without a formula for the exact solution. A first year calculus student pointed out the non-obvious exact solution above, and I don't want to be caught out like this again.

YCor
  • 60,149

3 Answers3

38

No, there are no others.

Analytically, one can show that if a Julia set contains an analytic arc, it is in fact a straight line or a circle (up to conjugation). For the class $z^2+c$, $0$ and $-2$ are the only values where this occurs.

This does not quite imply that there are no closed-form solutions of the recurrence for any other value of $c$, but such a closed form would naturally describe a fractal. As far as I know, there are no "closed form" functions which directly have a fractal as one of its level set.

  • 6
    I guess it is unreasonable to expect a completely watertight answer since my question was a bit vague, but looking at the Julia sets does indeed seem to be the key point. I should have looked at http://en.wikipedia.org/wiki/Julia_set which also points out that 0 and -2 have special Julia sets. It seems I managed to pick at random the only non-zero real number that did not have the property I claimed. – Richard Borcherds Aug 09 '10 at 00:44
  • 7
    In the Pollard rho method for factoring the integer n, one iterates the map $n\to f(n)$, reducing modulo $n$, for an appropriate $f$, and calculates certain GCDs. It's common to use $f(n)=n^2+c$, and one has to avoid $c=0$ and $c=-2$, for reasons similar to those given in this thread. – Gerry Myerson Aug 09 '10 at 04:21
  • 10
  • The substitution $z=w+w^{-1}$ that conjugates $z\to z^2-2$ to $w\to w^2$ is the twice the "Zhukovsky function" of complex analysis (which was used for modeling airfoils). 2. The principle behind the Lucas-Lehmer test is an explicit formula for the $n$th iterate of $z\mapsto z^2-2$ that involves raising to the power $2^n.$ 3. There is an algebraic explanation of the special character of $c=2:$ the only monic quadratic polynomials that belong to a family of commuting polynomials of all natural degrees are $z^2$ and $z^2-2$ (for $z^2-2$, the family consists of rescaled Chebyshev polynomials).
  • – Victor Protsak Aug 09 '10 at 05:44
  • Sorry to contradict you, but there is no reason that a closed form soluiion of the shape $z_n=f(k^nZ_0) (with Z_0=g(z_0)) would "describe" a fractal. See my answer below... – Feldmann Denis Aug 27 '11 at 22:17