Back to Explorer

References & Algorithms

Mandelbro is built on decades of research in fractal mathematics and computational optimization. These are the algorithms, publications, and techniques that make real-time deep zoom possible in the browser.

  1. The Mandelbrot set

    The set of complex numbers c for which the iteration z_{n+1} = z_n² + c (starting from z₀ = 0) does not diverge. First visualized by Benoit Mandelbrot in 1980, its boundary is a fractal of Hausdorff dimension 2.

  2. Interior orbits & cycle detection

    When the reference point stays in the set, Brent-style cycle detection spots repetition in the orbit (checked on double-precision samples) so the BigFloat loop can stop early; the orbit is then tiled to full length for workers.

  3. Arbitrary precision & pixel scale

    Below about 10⁻¹³ viewport height in the complex plane, adjacent pixels differ by less than IEEE doubles can represent; the app switches pipelines and uses BigFloat for the reference orbit with controlled truncation.