/-
Copyright 2025 The Formal Conjectures Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/importFormalConjecturesUtil
Conjectures about the Mandelbrot and Multibrot sets
This file adds three conjectures about the Mandelbrot and Multibrot sets:
the MLC conjecture, stating that these sets are locally connected
the density of hyperbolicity conjecture, stating that parameters with attracting cycles are
dense in the Mandelbrot and Multibrot sets
the conjecture that the boundaries of these sets have zero area.
The first two conjectures are related in that the former implies the latter.
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.
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 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.
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.
We say that z : ℂ is part of an attracting cycle of period n of f : ℂ → ℂ if it is an
n-periodic point (i.e. f^[n] z = z), f^[n] is differentiable at z, ‖deriv f^[n] z‖ is
strictly less than one, and n > 0.
The density of hyperbolicity conjecture, stating that the set of all parameters c for which
fun z ↦ z ^ 2 + c has an attracting cycle is dense in the Mandelbrot set.
The density of hyperbolicity conjecture for Multibrot sets, stating that the set of all
parameters c for which fun z ↦ z ^ n + c has an attracting cycle is dense in multibrotSet n.
Note that we need to require 2 ≤ n because the conjecture is trivially false for n = 1.
The boundary of any Multibrot set is conjectured to have zero area.
Note that we don't need to exclude the trivial cases n = 0 and n = 1 because the conjecture
holds for them.