This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
-- import Adam.Metadata
-- import Adam.ToBePorted
-- import Adam.Options.MathlibPart
-- set_option tactic.hygienic false
-- Game "Adam"
-- World "Sum"
-- Level 2
-- Title "endliche Summe"
-- Introduction
-- "
-- n^3 + 2n ist durch 3 teilbar für alle ganzen Zahlen n
-- "
-- Statement
-- "n^3 + 2n ist durch 3 teilbar für alle ganzen Zahlen n"
-- (n : ℤ) : 3 ∣ n^3 + 2*n := by
-- induction n
-- induction a
-- norm_cast
-- change 3 ∣ (Nat.succ n : ℤ) ^ 3 + 2 * (Nat.succ n : ℤ)