Files
aristotle/Aristotle/Basic.lean
Stefan Kebekus 7a04938669
Some checks failed
Lean Action CI / build (push) Has been cancelled
Update Basic.lean
2025-10-26 06:38:18 +01:00

23 lines
702 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
open MeromorphicOn Metric Real Set Classical
variable
{𝕜 : Type*} [NontriviallyNormedField 𝕜]
{E : Type*} [NormedAddCommGroup E] [NormedSpace 𝕜 E]
{U : Set 𝕜} {f g : 𝕜 E} {a : WithTop E} {a₀ : E}
/-- Derivatives of meromorphic functions are meromorphic. -/
@[fun_prop]
theorem meromorphicAt_deriv {f : 𝕜 E} {x : 𝕜}
(h : MeromorphicAt f x) :
MeromorphicAt (deriv f) x := by
sorry
/-- Logarithmic derivatives of meromorphic functions are meromorphic. -/
@[fun_prop]
theorem MeromorphicAt.logDeriv {f : 𝕜 𝕜} {x : 𝕜}
(h : MeromorphicAt f x) :
MeromorphicAt (f⁻¹ * deriv f) x := by
sorry