Zulip Chat Archive
Stream: mathlib4
Topic: Difference between ∑ᶠ and ∑'
Colin Jones ⚛️ (Oct 12 2023 at 03:01):
What is the pragmatic difference between ∑ᶠ from Mathlib.Algebra.BigOperators.Finprod and ∑' from Mathlib.Topology.Algebra.InfiniteSum.Basic ?
Patrick Massot (Oct 12 2023 at 03:06):
You mean docs#finsum and docs#tsum, right?
Patrick Massot (Oct 12 2023 at 03:06):
The first one is pure algebra, it returns something non-zero only if the support of the summed function is finite. The second one incorporate topology and can return something non-zero even for function with infinite support.
Patrick Massot (Oct 12 2023 at 03:07):
See https://en.wikipedia.org/wiki/Convergent_series.
Colin Jones ⚛️ (Oct 12 2023 at 03:13):
Yes, those ones. Okay that makes sense, thank you
Last updated: Dec 20 2023 at 11:08 UTC