Update meromorphicOn.lean

This commit is contained in:
Stefan Kebekus 2024-11-15 12:16:41 +01:00
parent 8bff0c782b
commit b6014409de
1 changed files with 25 additions and 0 deletions

View File

@ -9,6 +9,31 @@ import Nevanlinna.mathlibAddOn
open scoped Interval Topology
open Real Filter MeasureTheory intervalIntegral
theorem MeromorphicOn.open_of_order_eq_top
{f : }
{U : Set }
(h₁f : MeromorphicOn f U) :
IsOpen { u : U | (h₁f u.1 u.2).order = } := by
apply isOpen_iff_forall_mem_open.mpr
intro z hz
simp at hz
rw [MeromorphicAt.order_eq_top_iff] at hz
rw [eventually_nhdsWithin_iff] at hz
rw [eventually_nhds_iff] at hz
obtain ⟨t', h₁t', h₂t', h₃t'⟩ := hz
let t :=
have : t ⊆ { u : U | (h₁f u.1 u.2).order = } := by
sorry
rw [← eventually_eventually_nhds] at hz
sorry
theorem MeromorphicOn.order_ne_top
{f : }
{U : Set }