Zulip Chat Archive
Stream: new members
Topic: infinite series
liu (Feb 10 2025 at 07:49):
屏幕截图 2025-02-10 155434.png
I'm formalizing the stem of this problem, but I don't know how to handle the infinity.
Yaël Dillies (Feb 10 2025 at 07:53):
Infinite sums are docs#tsum
liu (Feb 10 2025 at 11:56):
What does this equation mean?
HasSum f a = Filter.Tendsto (fun (s : Finset β) => ∑ b ∈ s, f b) Filter.atTop (nhds a)
liu (Feb 10 2025 at 12:21):
I can't understand this equation.Can anyone give me an example?
HasSum f a = Filter.Tendsto (fun (s : Finset β) => ∑ b ∈ s, f b) Filter.atTop (nhds a)
Yaël Dillies (Feb 10 2025 at 12:35):
This is not an equation, it's a definition. HasSum f a
means that
Yaël Dillies (Feb 10 2025 at 12:36):
Please stop double-posting. I keep on having to move your posts around
liu (Feb 10 2025 at 12:37):
I'm sorry. Can these be combined?
liu (Feb 10 2025 at 12:57):
So how to use theHasSum f a
correctly?This is my false ideal
import Mathlib
example(n:ℕ )(h1:fun n=> n/(n^4+n)):HasSum f 3/8:=by sorry
Last updated: May 02 2025 at 03:31 UTC