nevanlinna/Nevanlinna/stronglyMeromorphic.lean

22 lines
643 B
Plaintext
Raw Normal View History

2024-10-08 09:35:17 +02:00
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