Commit 2021-04-07 19:05 08aff2ca
View on Github →feat(algebra/big_operators/basic): edit finset.sum/prod_range_succ
(#6676)
- Change the RHS of the statement of
sum_range_succ
fromf n + ∑ x in range n, f x
to∑ x in range n, f x + f n
- Change the RHS of the statement of
prod_range_succ
fromf n * ∑ x in range n, f x
to∑ x in range n, f x * f n
The old versions of those lemmas are now calledsum_range_succ_comm
andprod_range_succ_comm
, respectively. See this conversation on Zulip.