Files
aristotle/Aristotle/Basic.lean
Stefan Kebekus b3f99c37f2
Some checks failed
Lean Action CI / build (push) Has been cancelled
Update Basic.lean
2025-10-27 15:27:06 +01:00

27 lines
884 B
Lean4
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Mathlib.Analysis.Meromorphic.Basic
import Mathlib.Analysis.Meromorphic.Order
open MeromorphicOn Metric Real Set Classical
variable
{𝕜 : Type*} [NontriviallyNormedField 𝕜] [CompleteSpace 𝕜]
/-- Derivatives of meromorphic functions are meromorphic. -/
@[fun_prop]
theorem meromorphicAt_deriv {f : 𝕜 𝕜} {x : 𝕜}
(h : MeromorphicAt f x) (h₁ : h.order ) :
MeromorphicAt (deriv f) x := by
obtain g, h₁g, h₂g, h₃ := h.order_ne_top_iff.1 h₁
lift h.order to using h₁ with n hn
have : (n : WithTop ).untop₀ = n := by
sorry
simp_all [this]
have : deriv f =[nhdsWithin x {x}] deriv (fun z (z - x) ^ n * g z) := by
sorry
have : deriv f =[nhdsWithin x {x}] fun z n * (z - x) ^ (n - 1) * g z + (z - x) ^ n * deriv g z := by
sorry
apply MeromorphicAt.congr _ this.symm
sorry