=> Gemipedia Entry: The Mandelbrot Set
=> The Mandelbrot Set Image
The Mandelbrot set is the set of all complex c such that iterating z -> z^2+c does not go to infinity (starting with z=0).
The basic algorithm is:
iterations were completed.
will go to infinity.
Zero is the critical point of z^2+c, that is, a point where d/dz (z^2+c) = 0. If you replace z^2+c with a different function, the starting value will have to be modified. E.g. for z->z^2+z+c, the critical point is given by 2z+1=0, so start with z=-1/2. In some cases, there may be multiple critical values, so they all should be tested.
Critical points are important because by a result of Fatou: every attracting cycle for a polynomial or rational function attracts at least one critical point. Thus, testing the critical point shows if there is any stable attractive cycle. See also:
Note: you can precompute the first Mandelbrot iteration by starting withcz=c instead of z=0, since 0^2+c=c.
The Mandelbrot set lies within |c|<=2. If |z| exceeds 2, the z sequence diverges.
Proof:
If |z|>2 then |z^2+c| >= |z^2|-|c| > 2|z|-|c| If |z|>=|c|, then 2|z|-|c| > |z| So, if |z|>2 and |z|>=c, |z^2+c|>|z|, so the sequence is increasing. (It takes a bit more work to prove it is unbounded and diverges.) Also, note that z1=c, so if |c|>2, the sequence diverges.
Ewing and Schober computed an area estimate using 240,000 terms of the Laurent series. The result is 1.7274... However, the Laurent series converges very slowly, so this is a poor estimate. A project to measure the area via counting pixels on a very dense grid shows an area around 1.5066 Hill and Fisher used distance estimation techniques to rigorously bound the area and found the area is between 1.503 and 1.5701.
61 (1992), pp. 59-72.
Numerische Mathematik, .
Most of what you could want to know is in Branner's article in Chaos and Fractals: The Mathematics Behind the Computer Graphics.
Note that the Mandelbrot set in general is not strictly self-similar; the tiny copies of the Mandelbrot set are all slightly different, mainly because of the thin threads connecting them to the main body of the Mandelbrot set. However, the Mandelbrot set is quasi-self-similar. The Mandelbrot set is self-similar under magnification in neighborhoods of Misiurewicz points, however (e.g. -.1011+.9563i). The Mandelbrot set is conjectured to be self-similar around generalized Feigenbaum points (e.g. -1.401155 or -.1528+1.0397i), in the sense of converging to a limit set.
The "external angles" of the Mandelbrot set (see Douady and Hubbard or brief sketch in "Beauty of Fractals") induce a Fibonacci partition onto it.
The boundary of the Mandelbrot set and the Julia set of a generic c in M have Hausdorff dimension 2 and have topological dimension 1. The proof is based on the study of the bifurcation of parabolic periodic points. (Since the boundary has empty interior, the topological dimension is less than 2, and thus is 1.) Reference:
The Mandelbrot set is simply connected. This follows from a theorem of Douady and Hubbard that there is a conformal isomorphism from the complement of the Mandelbrot set to the complement of the unit disk. (In other words, all equipotential curves are simple closed curves.) It is conjectured that the Mandelbrot set is locally connected, and thus pathwise connected, but this is currently unproved.
Connected: X is connected if there are no proper closed subsets A and B of X such that A union B = X, but A intersect B is empty. I.e. X is connected if it is a single piece.
Simply connected: X is simply connected if it is connected and every closed curve in X can be deformed in X to some constant closed curve. I.e. X is simply connected if it has no holes.
Locally connected: X is locally connected if for every point p in X, for every open set U containing p, there is an open set V containing p and contained in the connected component of p in U. I.e. X is locally connected if every connected component of every open subset is open in X.
Arcwise (or path) connected: X is arcwise connected if every two points in X are joined by an arc in X.
(The definitions are from Encyclopedic Dictionary of Mathematics.)
text/gemini; lang=en
This content has been proxied by September (3851b).