The filled lemniscates decrease
ProvedMandelbrot.mandelbrot_lemniscate_antitoneWrite and , the -th filled lemniscate. Then : the lemniscates decrease.
Why it is true. The content is the escape lemma. For one has by induction, so if then
So once the orbit of the critical point passes modulus it strictly increases and never returns; contrapositively, forces . At the statement is trivial because .
What it is for. Mandelbrot.mandelbrot_escape_criterion identifies the Mandelbrot set with . Each is compact (for ) and preconnected, but an intersection of preconnected sets is not preconnected in general — the family has to be nested. This statement supplies that, and together with compactness it is what lets the nested-continuum argument apply.
Note , so the family is decreasing from the start but only becomes bounded at , where .
import Mathlib import Definitions.Def_mandelbrot_sets open Topology Set Function Filter Bornology Metric MeasureTheory
namespace Mandelbrot
theorem mandelbrot_lemniscate_antitone (k : ℕ) :
{c : ℂ | ‖(fun z ↦ z ^ 2 + c)^[k + 1] 0‖ ≤ 2} ⊆
{c : ℂ | ‖(fun z ↦ z ^ 2 + c)^[k] 0‖ ≤ 2} := by sorry
end Mandelbrot