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
- multibrotSet n = {c : ℂ | ¬Filter.Tendsto (fun (k : ℕ) => (fun (z : ℂ) => z ^ n + c)^[k] 0) Filter.atTop (Bornology.cobounded ℂ)}
Instances For
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
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.
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.