Why is the bailout value of the Mandelbrot set 2?

4.4k Views Asked by At

For the past few days I've been studying the Mandelbrot set, and many say that if the iterations of a point stay within a magnitude of 2, the point converges. A very natural question of "why is the bailout value 2?" came to me. Is there a proof that the value will diverge if the iterations do not stay within the bailout value of 2?

1

There are 1 best solutions below

5
On BEST ANSWER

First assume that $|c| \le 2$. Let $f(z) = z^2 + c$ and assume that $|z_n| = 2+a$, where $a > 0$. Then $$ |z_{n+1}| =|f(z_n)| = |z_n^2 + c| \ge |z_n|^2 - |c| \ge |z_n|^2 - 2 = (2+a)^2-2 = 2+2a+a^2 > 2+2a. $$ By induction $|z_{n+k}| > 2+ak \to \infty$ as $k\to\infty$, so $z_n$ escapes to infinity.

If $|c| > 2$, a similar analysis shows that $z_n \to \infty$ so we don't even have to consider such values of $c$.