The Mandelbrot set is a particularly interesting fractal that has become popular far outside of mathematics both for its aesthetic appeal and its complicated structure, arising from a simple definition. This is largely due to the efforts of Benoit Mandelbrot and others, who worked hard to communicate this area of mathematics to the general public.
Mathematically, the Mandelbrot set is defined as the connectedness locus of the family
An equivalent way of defining is as the set of parameters for which the critical point does not tend to infinity. That is,
Mandelbrot studied the parameter space of quadratic polynomials in an article which appeared in 1980.Benoit Mandelbrot, Fractal aspects of the iteration of for complex , Annals NY Acad. Sci. 357, 249/259 The mathematical study of the Mandelbrot set really began with work by the mathematicians Adrien Douady and John H. Hubbard,Adrien Douady and John H. Hubbard, Etude dynamique des polynômes complexes, Prépublications mathémathiques d'Orsay 2/4 (1984 / 1985) who established many fundamental properties of , and named the set in honor of Mandelbrot.
The work of Douady and Hubbard coincided with a huge increase in interest in complex dynamics, and the study of the Mandelbrot set has been a centerpiece of this field ever since. It would be futile to attempt to make a list of all the mathematicians who have contributed to our understanding of this set since then, but such a list would certainly include Mikhail Lyubich, Curt McMullen, John Milnor, Mitsuhiro Shishikura and Jean-Christophe Yoccoz.
The intersection of with the real axis is precisely the interval . The parameters along this interval can be put in one-to-one correspondence with those of the real logistic family,
Douady and Hubbard have shown that the Mandelbrot set is connected. In fact, they constructed an explicit conformal isomorphism between the complement of the Mandelbrot set and the complement of the closed unit disk.
(Mandelbrot had originally conjectured that the Mandelbrot set is disconnected, but it turns out that this conjecture was based on computer pictures generated by programs which are unable to detect the thin filaments connecting different parts of . Upon further experiments, he revised his conjecture, deciding that should be connected.)
The dynamical formula for the uniformisation of the complement of the Mandelbrot set, arising from Douady and Hubbard's proof of the connectedness of , gives rise to external rays of the Mandelbrot set. These rays can be used to study the Mandelbrot set in combinatorial terms, and form the backbone of the Yoccoz parapuzzle.
The boundary of the Mandelbrot set is exactly the bifurcation locus of the quadratic family; that is, the set of parameters for which the dynamics changes abruptly under small changes of It can be constructed as the limit set of a sequence of plane algebraic curves, the Mandelbrot curves, of the general type known as polynomial lemniscates. The Mandelbrot curves are defined by setting p0=z, pn=pn-12+z, and then interpreting the set of points |pn(z)|=1 in the complex plane as a curve in the real Cartesian plane of degree 2n+1 in x and y.
Upon looking at a picture of the Mandelbrot set, one immediately notices the large cardioid-shaped region in the center. This main cardioid is the region of parameters for which has an attracting fixed point. It consists of all parameters of the form
To the left of the main cardioid, attached to it at the point , a circular-shaped bulb is visible. This bulb consists of those parameters for which has an attracting cycle of period 2. This set of parameters is an actual circle, namely that of radius around -1.
There are many other bulbs attached to the main cardioid: for every rational number , with p and q coprime, there is such a bulb attached at the parameter :
This bulb is called the -bulb of the Mandelbrot set. It consists of parameters which have an attracting cycle of period and combinatorial rotation number . More precisely, the periodic Fatou components containing the attracting cycle all touch at a common point (commonly called the -fixed point). If we label these components in counterclockwise orientation, then maps the component to the component .
The change of behavior occurring at is known as a bifurcation: the attracting fixed point "collides" with a repelling period -cycle. As we pass through the bifurcation parameter into the -bulb, the attracting fixed point turns into a repelling fixed point (the -fixed point), and the period -cycle becomes attracting.
It is conjectured that these are the only interior regions of . This problem, known as density of hyperbolicity, may be the most important open problem in the field of complex dynamics. Hypothetical non-hyperbolic components of the Mandelbrot set are often referred to as "queer" components.
For real quadratic polynomials, this question was answered positively in the 1990s independently by Lyubich and by Graczyk and Świątek. (Note that hyperbolic components intersecting the real axis correspond exactly to periodic windows in the Feigenbaum diagram. So this result states that such windows exist near every parameter in the diagram.)
Not every hyperbolic component can be reached by a sequence of direct bifurcations from the main cardioid of the Mandelbrot set. However, such a component can be reached by a sequence of direct bifurcations from the main cardioid of a little Mandelbrot copy (see below).
The celebrated work of Yoccoz established local connectivity of the Mandelbrot set at all finitely-renormalizable parameters; that is, roughly speaking those which are contained only in finitely many small Mandelbrot copies. Since then, local connectivity has been proved at many other points of , but the full conjecture is still open.
In the Blum-Shub-Smale model of real computation, the Mandelbrot set is not computable, but its complement is computably enumerable. However, many simple objects (e.g., the graph of exponentiation) are also not computable in the BBS model. At present it is unknown whether the Mandelbrot set is computable in models of real computation based on computable analysis, which correspond more closely to the intuitive notion of "plotting the set by a computer". Hertling has shown that the Mandelbrot set is computable in this model if the hyperbolicity conjecture is true.
This principle is exploited in virtually all deep results on the Mandelbrot set. For example, Shishikura proves that, for a dense set of parameters in the boundary of the Mandelbrot set, the Julia set has Hausdorff dimension two, and then transfers this information to the parameter plane. Similarly, Yoccoz first proves the local connectivity of Julia sets, before establishing it for the Mandelbrot set at the corresponding parameters. Adrien Douady phrases this principle as
Plough in the dynamical plane, and harvest in parameter space.
A period -limb will have "antennas" at the top of its limb. We can thus determine the period of a given bulb by counting these antennas.
The connectedness loci of the unicritical polynomial families for are often called Multibrot sets.
For general families of holomorphic functions, the boundary of the Mandelbrot set generalizes to the bifurcation locus, which is a natural object to study even when the connectedness locus is not useful.
It is also possible to consider similar constructions in the study of non-analytic mappings. Of particular interest is the tricorn, the connectedness locus of the anti-holomorphic family
If this is the case, we know that the midpoint does not belong to the Mandelbrot set, and we color our pixel white. Otherwise, we keep iterating for a certain (large, but fixed) number of steps, after which we decide that our parameter is "probably" in the Mandelbrot set, or at least very close to it, and color the pixel black.
In pseudocode, this algorithm would look as follows.
For each pixel on the screen do:
{
x = x0 = x co-ordinate of pixel
y = y0 = y co-ordinate of pixel
x2 = x*x
y2 = y*y
iteration = 0
maxiteration = 1000
while ( x2 + y2 < (2*2) AND iteration < maxiteration ) {
y = 2*x*y + y0
x = x2 - y2 + x0
x2 = x*x
y2 = y*y
iteration = iteration + 1
}
if ( iteration == maxiteration )
colour = black
else
colour = iteration
}
As a result, the algorithm does not behave stably under small perturbations, and will generally not detect small features of the Mandelbrot set. It is precisely this property which led Mandelbrot to conjecture that is disconnected.
A common way around this problem, which also results in more aesthetically pleasing pictures, is to color any pixel whose midpoint is determined to be an escaping parameter according to the number of iterations it requires to escape. Since parameters closer to the Mandelbrot set will take longer to escape, this method will make the connections between different parts of the Mandelbrot set visible.
In other words, provided that the maximal number of iterations is sufficiently high, one obtains a picture of the Mandelbrot set with the following properties:
To prevent having to do huge numbers of iterations for other points in the set, one can do "periodicity checking"—which means check if a point reached in iterating a pixel has been reached before. If so, the pixel cannot diverge, and must be in the set.
Mandelbrot Animation1.gif is an animation showing increasing levels of detail (warning, large file). Although it does not start from a view of the whole set, towards the end it clearly shows the recursive nature of the fractal at all scales when a shape similar to the whole comes into view.
St. Lois filmmaker Bill Boll has produced a DVD called 'The Amazing Mandelbrot Set' containing several high-quality deep zooms of the Mandelbrot set, along with a tutorial.
The Australian band GangGajang has a song Time (and the Mandelbrot set) where the term Mandelbrot set is used liberally in the lyrics.
The American singer Jonathan Coulton has a song titled Mandelbrot Set on his EP Where Tradition Meets Tomorrow about the history of the Mandelbrot set, and of Benoit Mandelbrot himself.
Blue Man Group's first album Audio features tracks titled "Mandelgroove", "Opening Mandelbrot", and "Klein Mandelbrot". The album was nominated for a Grammy in 2000. Also, a hidden track on their second album, The Complex, is entitled Mandelbrot No. 4.
Conjunt de Mandelbrot | Mandelbrotova množina | Mandelbrot-Menge | Conjunto de Mandelbrot | Ensemble de Mandelbrot | 만델브로 집합 | Mandelbrot mengið | Insieme di Mandelbrot | Mandelbrot-halmaz | Mandelbrotverzameling | マンデルブロ集合 | Mandelbrotmengden | zbiór Mandelbrota | Conjunto de Mandelbrot | Множество Мандельброта | Mandelbrotmängden
This article is licensed under the GNU Free Documentation License.
It uses material from the
"Mandelbrot set".
Home Page • arts • business • computers • games • health • hospitals • home • kids & teens • news • physicians • recreation• reference • regional • science • shopping • society • sports • world