You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lean4game/server/testgame/TestGame/Levels/Induction/L06_SumComm.lean

26 lines
380 B
Plaintext

2 years ago
import Mathlib.Algebra.BigOperators.Basic
import Mathlib
import TestGame.Metadata
set_option tactic.hygienic false
open BigOperators
Game "TestGame"
World "Induction"
Level 6
Title "Summe vertauschen"
Introduction
"
"
Statement
""
(n m : ) : ∑ i : Fin n, ∑ j : Fin m, (i : ) * j =
∑ j : Fin m, ∑ i : Fin n, (i : ) * j := by
rw [Finset.sum_comm]