Documentation

FormalConjectures.Wikipedia.MLC

Local connectivity of the Mandelbrot and Multibrot sets #

References:

def multibrotSet (n : ) :

The Multibrot set of power n is the set of all parameters c : ℂ for which 0 does not escape to infinity under repeated application of z ↦ z ^ n + c.

Equations
Instances For
    @[reducible, inline]

    The Mandelbrot set is the special case of the multibrot set for n = 2. In other words, it is the set of all parameters c : ℂ for which 0 does not escape to infinity under repeated application of z ↦ z ^ 2 + c.

    Equations
    Instances For
      theorem multibrotSet_eq {n : } (hn : 2 n) :
      multibrotSet n = {c : | ∀ (k : ), (fun (z : ) => z ^ n + c)^[k] 0 2 ^ (n - 1)⁻¹}

      The multibrotSet n is equivalently the set of all parameters c for which the orbit of 0 under z ↦ z ^ n + c does not leave the closed disk of radius 2 ^ (n - 1)⁻¹ around the origin.

      theorem mandelbrotSet_eq :
      mandelbrotSet = {c : | ∀ (k : ), (fun (z : ) => z ^ 2 + c)^[k] 0 2}

      The mandelbrot set is equivalently the set of all parameters c for which the orbit of 0 under z ↦ z ^ 2 + c does not leave the closed disk of radius two around the origin.

      The MLC conjecture, stating that the mandelbrot set is locally connected.

      A stronger version of the MLC conjecture, stating that all multibrots are locally connected. Note that we don't need to require 2 ≤ n because the conjecture holds in the trivial cases n = 0 and n = 1 too.