| Title: | Trying to eradicate Mandelbrot Bulbous via Maps and novel fractals on complex space |
| Author: | Vincenzo Manto |
| Date: | |
| Link: | https://vincenzomanto.github.io/Fracta |
| Keywords: | mathFractalsComplex Dynamics |
Trying to eradicate Mandelbrot Bulbous via Maps and novel fractals on complex space
Standard polynomial maps of the form $z_{n+1} = z_n^d + c$ invariably manifest structural cardioids or localized bulbous branch points within their parameter spaces. This paper explores alternative algebraic architectures that systematically suppress standard Mandelbrot-like morphology. We introduce three novel families of complex dynamical systems: parameter-variable transcendental tetration, rational maps bound by invariant imaginary poles, and non-holomorphic parameter-warped systems. Numerical experiments verify that these formulations disrupt classical boundary accumulation, yielding highly geometric, non-biomorphic filamentary networks and sharp phase-space fractures.
Trying to eradicate Mandelbrot Bulbous via Maps and novel fractals on complex space
Abstract
The theory of complex dynamical systems has always centered on the study of the quadratic mapping family:
The parameter plane of this map, also called the Mandelbrot set, is distinguished by the central hyperbolic element—the cardioid—and the unlimited distribution of bifurcating circle elements. Even upon the extension of the degree of polynomials (, for ), the biomorphic structure remains consistent, only changing the number of lobes into .
Such recurrence is not desired for researchers who want to have a totally different class of topologically distinct structures (and for me too). In order to avoid such structural recurrence, it becomes necessary to change the algebraic mechanics of this map. The present paper explores the impact of displacement of the parameter from a simple translation factor into the denominator, transcendental base, and anti-holomorphic functions.
The Mathematical Formulation and its Taxonomy
In order to systematically escape classical boundary geometry, we define three architectural strategies for map composition.
Class A: Parameter-Variable Quadratic Tetration

Whereas classically one uses a fixed transcendental base (as in ), we use an architecture where the parameter is the variable base itself:
Using the complex logarithm through Euler’s formula, the above system may be expressed as:
The shifting nature of the structure demands that the physics of the iteration space be entirely altered according to the spatial coordinates of each pixel. The principal branch cut of at the negative real axis produces immediate directional discontinuity and changes the nature of the system greatly depending on which quadrant the coordinate falls into.
Class B: Rational Maps with Fixed Imaginary Poles


Cardioid boundaries arise due to the gradual accumulation of global stability boundaries as moves away from the center in polynomial maps. However, by introducing explicit and invariant poles to the denominator of the map, we may introduce regions of definitive infinite divergence. Consider the system:
In this formula, the parameter acts as a universal multiplier, while the denominator creates two absolute poles at:
When the orbit approaches the vicinity of these imaginary poles, the next iteration gets a violent push towards infinity. The topology of such poles substitutes the usual central cardioid by an array of perfectly bounded, hyper-geometric basins of attraction.
Class C: Asymmetric Warping of Anti-Holomorphic Parameter Spaces

The well-known anti-holomorphic maps which use the complex conjugation (for example, the Tricorn ) produce three-fold real cusps caused by non-analitycity of the reflection operation. We break up this inherent symmetry by applying the non-linear transcendental transform to the parameter vector before its feeding to the anti-holomorphic loop:
As a result, the reflection mechanism becomes asymmetric because the parameter space gets warped before being passed to the anti-holomorphic process.
Experiments
The proposed dynamical systems have been analyzed via an escape-time algorithm implemented over discretized sectors of the complex plane .
Resolution: 800 x 800 pixels
Maximum Iterations (N): 50
Divergence Threshold (R): 2.0
Structural analysis of
Upon initialization at the critical point, the parameter-dependent tetration map produces an extremely asymmetric structure. Contrary to common biomorphs, there exist two major macro-structural elements in this system:
- Logarithmic Cut: The logarithmic wedge cut creates an abrupt, linear opening in the left hemisphere along the negative real axis. This structural element corresponds to the discontinuity of the complex argument and opens up the chaotic boundary layer into a deterministic V-shaped zone of divergence.
- Linear Filamentation: The rounded bulb-like structures which characterize polynomials are substituted with highly frequent needle-like filaments directed along the positive real axis.
Basin Analysis of the Map
The presence of fixed poles completely changes the nature of the parameter space from organic shapes to crystal-like forms.
Theorem on Boundary Rectification: Due to the denominator approaching zero for , the map operates as a high-frequency spatial filter. There are no self-similar filaments of the chaotic boundary; rather, there are regularly arranged circles of stability matrices, whose sizes decrease according to a geometric sequence defined by the ratio of the fixed poles.
Graphically, the system forms perfectly symmetrical and very readable arrangements of geometrically nesting circles. The chaotic filamentation characteristic of the Mandelbrot structure is completely eliminated, with crystal-like borders formed between the periodic orbits and divergent areas.
Architectural Comparison
To quantify how effectively these alternative formulations eliminate biomorphic cardioids, we contrast their structural features against classical systems below:
| Mapping Category | Representative Equation | Boundary Geometry Style | Primary Divergence Driver |
|---|---|---|---|
| Classical Polynomial | Biomorphic Cardioids & Bulbs | Polynomial Magnitude Growth | |
| Parameter-Variable Tetration | Asymmetric Wedges & Needles | Complex Logarithm Phase Jumps | |
| Rational Fixed-Pole | Crystalline Nested Circles | Pole Trajectory Intersection | |
| Parameter-Warped Anti-Holomorphic | Asymmetric Spiral Avulsions | Non-Analytic Phase Reflection |
Thus…
The experiments conducted in this paper prove that the “Mandelbrot bulb”, which is considered an inevitable component of any fractal picture, is an artificial construct created by a very particular class of linear translation polynomials. Replacing the parameters with transcendental exponents or placing them below fixed poles allows the geometry to be liberated from its biomorphical form.
In the future, the proofs of the convergence radius for and multi-frequency wave grids created by multiplying trigonometric functions and polynomial vectors of higher degree, like the family , will be researched further.
You can explore the maps described in this article using the following Fracta playground: https://vincenzomanto.github.io/Fracta
Appendix: Code Snippets
ENGINE PIXEL
FORMULA z**4+c
C_VAL 0.83j
X_RANGE -1.5 1.5
Y_RANGE -1.5 1.5
RES 500
ITER 50
COLORMAP twilight_shifted
RENDER
ENGINE PIXEL
FORMULA np.conj(z)**2 + np.log(c)
X_RANGE -2 2.0
Y_RANGE -2.0 2.0
RES 800
ITER 35
COLORMAP plasma
RENDER
ENGINE PIXEL
FORMULA np.conj(z)**2 + np.exp(c)
X_RANGE -2 2.0
Y_RANGE -2.0 2.0
RES 800
ITER 35
COLORMAP plasma
RENDER
ENGINE PIXEL
FORMULA 1.0 / (z**2 + c)
X_RANGE -1.5 1.5
Y_RANGE -1.5 1.5
RES 800
ITER 40
COLORMAP plasma
RENDER
ENGINE PIXEL
FORMULA c / (z**2 + 1)
X_RANGE -1.5 1.5
Y_RANGE -1.5 1.5
RES 800
ITER 40
COLORMAP plasma
RENDER
ENGINE PIXEL
FORMULA c ** (z**2)
X_RANGE -1.5 1.5
Y_RANGE -1.5 1.5
RES 800
ITER 40
COLORMAP plasma
RENDER