Skip to content
Surf Wiki
Save to docs
general/fractals

From Surf Wiki (app.surf) — the open knowledge base

Tricorn (mathematics)

Mandelbar Set

Tricorn (mathematics)

Mandelbar Set

A tricorn, created on a computer in Kalles Fraktaler.
tricornZoom
Tricorn zoom onto mini-tricorn
Multicorns with the power going from 1 to 5

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.

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. (1 January 1989). "On the structure of the Mandelbar set". Nonlinearity.
  2. Milnor, John. (1 January 1992). "Remarks on iterated cubic maps". Experimental Mathematics.
  3. (1 October 2003). "On multicorns and unicorns i: antiholomorphic dynamics, hyperbolic components and real cubic polynomials". International Journal of Bifurcation and Chaos.
  4. Nakane, Shizuo. (1 June 1993). "Connectedness of the tricorn". Ergodic Theory and Dynamical Systems.
  5. "Multicorns are not path connected".
  6. (1 May 2017). "On multicorns and unicorns II: bifurcations in spaces of antiholomorphic polynomials". Ergodic Theory and Dynamical Systems.
  7. (2025). "Schwarz reflections and the Tricorn". Annales de l'Institut Fourier.
  8. (2021). "Discontinuity of Straightening in Anti-holomorphic Dynamics: I". Transactions of the American Mathematical Society.
  9. (1993). "Fixed points of polynomial maps. Part II. Fixed point portraits". Annales Scientifiques de l'École Normale Supérieure.
  10. (1999). "Periodic Orbits, Externals Rays and the Mandelbrot Set: An Expository Account".
  11. (2015). "Non-landing parameter rays of the multicorns". Inventiones Mathematicae.
Info: Wikipedia Source

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.

Want to explore this topic further?

Ask Mako anything about Tricorn (mathematics) — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This 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