The Mandelbrot Set

Explore the beauty, complexity, and cultural impact of the Mandelbrot set—a fractal icon at the intersection of math, art, and chaos theory.

Funky Si's Blog
The Mandelbrot Set

Explore the beauty, complexity, and cultural impact of the Mandelbrot set—a fractal icon at the intersection of math, art, and chaos theory.

Funky Si's Blog

wavy iteration bands that just touch each other, for hybrid quadratic Julia set where the c value varies during iteration (e.g. looping several values).

calculation inner loop snippet:

```
vec2 C1 = C;
C = c[iteration % count];
vec2 origin = C1 + vec2(100.0, 0.0);
float o = length(origin);
float e = (1.0 + 2.0 * o) / 2.0;
float r = sqrt(e * e - o * o + o) + e;
if (length(z - origin) > r) break; // escaped
z = cSqr(z) + C;
```

#JuliaSet #hybrid #EscapeTime #fractals #MathArt #CreativeCoding #GLSL #ComplexDynamics #maths

don't ask me how I derived r, I forgot to save my workings from a couple of years ago

tune 100+0i to taste (may break when small)

hmm, i think the wavy escape equipotentials are from the escape circle not being centered on the middle of the shape at each stage... forgot to make notes on my derivation, so need to reverse engineer my equations in the source code to figure out how i did it. the inflected julia sets use (z-cn)^2+cn with cn typically getting larger and larger in magnitude but polynomial uses just z^2+c'n with a few small c'n in a loop, so converting might not be trivial... #InflectorGadget #maths #ComplexDynamics

inspired by tavis' deep field #nebulabrot #DeepZoom images on #fractal #fractals forums, I did a little shader that for each c in the complement of the #MandelbrotSet M, colours according to how often z <- z^2 + c hits a given small target disc , weighted by derivative (as a proxy for point density).

it looks as though the hit sources are distributed everywhere near the boundary of M, which i think i can prove for target discs outside a sufficiently large esape circle, but i'm not sure how for discs nearer M. intuitively, by the time any cell pair in binary decomposition of exterior escapes, it covers an annulus with radii R, R^2, so any disc outside R will be hit by some region in every cell pair.

#math #maths #proof #ComplexDynamics

A couple of nice posts by Claude Heiland-Allen:

“Deep Zoom Theory And Practice” [2021] (https://mathr.co.uk/blog/2021-05-14_deep_zoom_theory_and_practice.html).

“Deep Zoom Theory And Practice (Again)” [2022] (https://mathr.co.uk/blog/2022-02-21_deep_zoom_theory_and_practice_again.html).

#JuliaSet #ComplexDynamics #Iterators #Mathematics #Maths

Deep zoom theory and practice :: mathr

Perturbation and rescaling for efficient rendering of fractal images.

I’ve been fascinated by the #MandelbrotSet and #Fractals since my college days 😍:

“The Quest To Decode The Mandelbrot Set, Math’s Famed Fractal”, Quanta (https://www.quantamagazine.org/the-quest-to-decode-the-mandelbrot-set-maths-famed-fractal-20240126/).

On HN: https://news.ycombinator.com/item?id=39145513

#JuliaSet #ComplexDynamics #Iterators #Mathematics #Maths

The Quest to Decode the Mandelbrot Set, Math’s Famed Fractal | Quanta Magazine

For decades, a small group of mathematicians has patiently unraveled the mystery of what was once math’s most popular picture. Their story shows how technology transforms even the most abstract mathematical landscapes.

Quanta Magazine

Figured out how to plot wakes implicitly.

Given a wake with parameter ray angles $s_-, s_+$, for each pixel $c$ in the image trace the dynamic rays at those angles towards the Julia set: if and only if they land together, then $c$ is in the wake.

An application of Theorem 2.5 from https://arxiv.org/abs/1709.09869 "A survey on MLC, Rigidity and related topics" by Anna Miriam Benini.

Previously I had been tracing the two parameter rays into a polygonal boundary and filling that using rasterization, to do: benchmark and compare the two methods in various scenarios.

#MandelbrotSet #JuliaSet #fractal #maths #ComplexDynamics #ExternalRays

A survey on MLC, Rigidity and related topics

The famous MLC Conjecture states that the Mandelbrot set is locally connected, and it is considered by many to be the central conjecture in one-dimensional complex dynamics. Among others, it implies density of hyperbolicity in the quadratic family $\{z^2+c\}_{c\in\mathbb{C}}$. We describe recent advances on MLC and the relations between MLC, the Density of Hyperbolicity Conjecture, the Rigidity Conjecture, the No Invariant Line Fields Conjecture, and the Triviality of Fibers Conjecture. We treat families of unicritical polynomials and rational maps as well as the exponential family and families of transcendental maps with finitely many singular values.