Zulip Chat Archive
Stream: new members
Topic: Reverse sum order
Emma R. Hasson (Jul 05 2022 at 20:08):
Still working with sums- I think I'm supposed to use finset.sum_sigma here, but I'm not sure how to apply it.
example (f : ℝ → ℝ → ℝ) (s t : finset ℝ) :
∑ x in s, ∑ y in t, f x y = ∑ y in t, ∑ x in s, f x y :=
begin
sorry
end
Ruben Van de Velde (Jul 05 2022 at 20:12):
I think you want sum_comm, not sum_sigma
Ruben Van de Velde (Jul 05 2022 at 20:13):
sum_sigma is about a sum over a sigma/disjoint union type
Last updated: Dec 20 2023 at 11:08 UTC