import Mathlib.Algebra.BigOperators.Basic import Mathlib import TestGame.Metadata set_option tactic.hygienic false Game "TestGame" World "Nat2" Level 1 Title "Summe" Introduction " " Statement "Zeige $\\sum_{i=0}^{n} i = \\frac{n \\cdot {n+1}}{2}$" (n : ℕ) : 2 * (∑ i : Fin (n+1), ↑i) = n * (n + 1) := by induction' n with n hn simp sorry -- done in Lean3. Tactics intro constructor assumption