This commit is contained in:
Stefan Kebekus 2024-10-08 09:35:17 +02:00
parent 9498d9f203
commit 67b78ad72d
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import Mathlib.Analysis.Analytic.Meromorphic
import Nevanlinna.analyticAt
def StronglyMeromorphicAt
(f : )
(z₀ : ) :=
(∀ᶠ (z : ) in nhds z₀, f z = 0) (∃ (n : ), ∃ g : , (AnalyticAt g z₀) ∧ (g z₀ ≠ 0) ∧ (∀ᶠ (z : ) in nhds z₀, f z = (z - z₀) ^ n • g z))
def MeromorphicAt.makeStronglyMeromorphic
{f : }
{z₀ : }
(hf : MeromorphicAt f z₀) :
:= by
exact 0
theorem makeStronglyMeromorphic
{f : }
{z₀ : }
(hf : MeromorphicAt f z₀) :
StronglyMeromorphicAt hf.makeStronglyMeromorphic z₀ := by
sorry