From Surf Wiki (app.surf) — the open knowledge base
Tricorn (mathematics)
Mandelbar Set
Mandelbar Set



In mathematics, the tricorn, sometimes called the Mandelbar set, is a fractal defined in a similar way to the Mandelbrot set, but using the mapping z \mapsto \bar{z}^2 + c instead of z \mapsto z^2 + c used for the Mandelbrot set. It was introduced by W. D. Crowe, R. Hasson, P. J. Rippon, and P. E. D. Strain-Clark. John Milnor found tricorn-like sets as a prototypical configuration in the parameter space of real cubic polynomials, and in various other families of rational maps.
The characteristic three-cornered shape created by this fractal repeats with variations at different scales, showing the same sort of self-similarity as the Mandelbrot set. In addition to smaller tricorns, smaller versions of the Mandelbrot set are also contained within the tricorn fractal.
Formal definition
The tricorn T is defined by a family of quadratic antiholomorphic polynomials
:f_c:\mathbb C\to\mathbb C
given by
:f_c: z\mapsto \bar{z}^2 + c,
where c is a complex parameter. For each c, one looks at the forward orbit :(0, f_c(0), f_c(f_c(0)), f_c(f_c(f_c(0))), \ldots) of the critical point 0 of the antiholomorphic polynomial p_c. In analogy with the Mandelbrot set, the tricorn is defined as the set of all parameters c for which the forward orbit of the critical point is bounded. This is equivalent to saying that the tricorn is the connectedness locus of the family of quadratic antiholomorphic polynomials; i.e. the set of all parameters c for which the Julia set J(f_c) is connected.
The higher degree analogues of the tricorn are known as the multicorns. These are the connectedness loci of the family of antiholomorphic polynomials f_c: z\mapsto \bar{z}^d + c.
Basic properties
- The tricorn is compact, and connected. In fact, Nakane modified Douady and Hubbard's proof of the connectedness of the Mandelbrot set to construct a dynamically defined real-analytic diffeomorphism from the exterior of the tricorn onto the exterior of the closed unit disc in the complex plane. One can define external parameter rays of the tricorn as the inverse images of radial lines under this diffeomorphism.
- Every hyperbolic component of the tricorn is simply connected.
- The boundary of every hyperbolic component of odd period of the tricorn contains real-analytic arcs consisting of quasi-conformally equivalent but conformally distinct parabolic parameters. Such an arc is called a parabolic arc of the tricorn. This is in stark contrast with the corresponding situation for the Mandelbrot set, where parabolic parameters of a given period are known to be isolated.
- The boundary of every odd period hyperbolic component consists only of parabolic parameters. More precisely, the boundary of every hyperbolic component of odd period of the tricorn is a simple closed curve consisting of exactly three parabolic cusp points as well as three parabolic arcs, each connecting two parabolic cusps.
- Every parabolic arc of period k intersects the boundary of a hyperbolic component of period 2k along an arc consisting of the set of parameters where the parabolic fixed point index is at least 1. In particular, every parabolic arc has, at both ends, an interval of positive length at which bifurcation from a hyperbolic component of odd period k to a hyperbolic component of period 2k occurs.
Image gallery of various zooms
Much like the Mandelbrot set, the tricorn has many complex and intricate designs. Due to their similarity, they share many features. However, in the tricorn such features appear to be squeezed and stretched along its boundary.
The following images are progressional zooms on a selected c value where c = 0.48 + 0.58i. The images are not stretched or altered, that is how they look on magnification.
Tricornx1.png|Starting zoom. The Tricorn as a whole. Tricornx6.png|6 times the original zoom. Many "extrusions" or "seahorses" along the upper "head" are being converged onto the "neck". Aptly named "Seahorse convergence valley". Tricornx20.png|20 times the original zoom. Closer look at one side of the "valley". The "seahorses" begin to take shape, they look to be distorted from the original "seahorses" along the Mandelbrots boundary. Tricornx40.png|40 times the original zoom. The seahorse can be fully seen now.
Implementation
The below pseudocode implementation hardcodes the complex operations for Z. Consider implementing complex number operations to allow for more dynamic and reusable code.
For each pixel (x, y) on the screen, do:
{
x = scaled x coordinate of pixel (scaled to lie in the Mandelbrot X scale (-2.5, 1))
y = scaled y coordinate of pixel (scaled to lie in the Mandelbrot Y scale (-1, 1))
zx = x; // zx represents the real part of z
zy = y; // zy represents the imaginary part of z
iteration = 0
max_iteration = 1000
while (zx * zx + zy * zy < 4 and iteration < max_iteration)
{
xtemp = zx * zx - zy * zy + x
zy = -2 * zx * zy + y
zx = xtemp
iteration = iteration + 1
}
if (iteration == max_iteration) // Belongs to the set
return inside_color;
return iteration * color; 15
}
Further topological properties
The tricorn is not path connected. Hubbard and Schleicher showed that there are hyperbolic components of odd period of the tricorn that cannot be connected to the hyperbolic component of period one by paths. A stronger statement to the effect that no two (non-real) odd period hyperbolic components of the tricorn can be connected by a path was proved by Inou and Mukherjee.
It is well known that every rational parameter ray of the Mandelbrot set lands at a single parameter. On the other hand, the rational parameter rays at odd-periodic (except period one) angles of the tricorn accumulate on arcs of positive length consisting of parabolic parameters. Moreover, unlike the Mandelbrot set, the dynamically natural straightening map from a baby tricorn to the original tricorn is discontinuous at infinitely many parameters.
References
References
- (1 January 1989). "On the structure of the Mandelbar set". Nonlinearity.
- Milnor, John. (1 January 1992). "Remarks on iterated cubic maps". Experimental Mathematics.
- (1 October 2003). "On multicorns and unicorns i: antiholomorphic dynamics, hyperbolic components and real cubic polynomials". International Journal of Bifurcation and Chaos.
- Nakane, Shizuo. (1 June 1993). "Connectedness of the tricorn". Ergodic Theory and Dynamical Systems.
- "Multicorns are not path connected".
- (1 May 2017). "On multicorns and unicorns II: bifurcations in spaces of antiholomorphic polynomials". Ergodic Theory and Dynamical Systems.
- (2025). "Schwarz reflections and the Tricorn". Annales de l'Institut Fourier.
- (2021). "Discontinuity of Straightening in Anti-holomorphic Dynamics: I". Transactions of the American Mathematical Society.
- (1993). "Fixed points of polynomial maps. Part II. Fixed point portraits". Annales Scientifiques de l'École Normale Supérieure.
- (1999). "Periodic Orbits, Externals Rays and the Mandelbrot Set: An Expository Account".
- (2015). "Non-landing parameter rays of the multicorns". Inventiones Mathematicae.
This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.
Ask Mako anything about Tricorn (mathematics) — get instant answers, deeper analysis, and related topics.
Research with MakoFree with your Surf account
Create a free account to save articles, ask Mako questions, and organize your research.
Sign up freeThis content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.
Report