Files
aristotle/Aristotle/Basic.lean
Stefan Kebekus 7eb9cf9772
Some checks failed
Lean Action CI / build (push) Has been cancelled
Create Release / Add Lean release tag (push) Has been cancelled
Working…
2025-10-25 07:07:57 +02:00

16 lines
527 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}
/-- Finite sums of meromorphic functions are meromorphic. -/
@[fun_prop]
theorem MeromorphicAt.sum {ι : Type*} {s : Finset ι} {f : ι 𝕜 E} {x : 𝕜}
(h : σ, MeromorphicAt (f σ) x) :
MeromorphicAt ( n s, f n) x := by
sorry