File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -522,6 +522,11 @@ public theorem potential_continuous : Continuous (potential d) := by
522522 · exact continuousAt_fill_coe ((Continuous.potential s).comp₂
523523 continuous_id continuous_coe).continuousAt
524524
525+ @ [simp, bound] public lemma potential_le_one {c : 𝕊} : potential d c ≤ 1 := by
526+ induction c using OnePoint.rec
527+ · simp only [potential, fill_inf, zero_le_one]
528+ · simp only [potential, fill_coe, (superF d).potential_le_one]
529+
525530public theorem potential_lt_one {c : 𝕊} : potential d c < 1 ↔ c ∈ multibrotExt d := by
526531 set s := superF d
527532 induction c using OnePoint.rec
@@ -545,6 +550,12 @@ public theorem potential_eq_zero {c : 𝕊} : potential d c = 0 ↔ c = (∞ :
545550 · simp only [potential, fill_inf]
546551 · simp only [potential, fill_coe, (superF d).potential_eq_zero_of_onePreimage]
547552
553+ public theorem potential_eq_one {c : ℂ} : potential d c = 1 ↔ c ∈ multibrot d := by
554+ contrapose
555+ simp only [← multibrotExt_coe, ← potential_lt_one]
556+ have le : potential d c ≤ 1 := by bound
557+ grind
558+
548559/-!
549560## Dynamical space bottcher facts
550561-/
You can’t perform that action at this time.
0 commit comments