Skip to content

Commit f739c18

Browse files
committed
Two more multibrot potential lemmas
1 parent 06dd6e0 commit f739c18

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Ray/Multibrot/Basic.lean

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
525530
public 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
-/

0 commit comments

Comments
 (0)