Zulip Chat Archive
Stream: mathlib4
Topic: finset.sum_smul
Xavier Roblot (Jan 19 2023 at 06:00):
In mathlib4#1665, the mathlib3 lemma finset.sum_smul
is automatically translated to Finset.sum_smul
which is correct. The statement is:
theorem Finset.sum_smul {f : ι → R} {s : Finset ι} {x : M} :
(∑ i in s, f i) • x = ∑ i in s, f i • x
But that causes a name clash since there is already a docs4#Finset.sum_smul declared in Mathlib.Algebra.BigOperators.Basic
and created by to_additive
. But this one should be called Finset.sum_nsmul
instead to align with the mathlib3 name.
So the way to fix that is to create another PR to fix names in Mathlib.Algebra.BigOperators.Basic
, I guess?
Ruben Van de Velde (Jan 19 2023 at 06:33):
Xavier Roblot (Jan 19 2023 at 11:43):
Last updated: Dec 20 2023 at 11:08 UTC