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/T03_SumComm.lean

35 lines
410 B
Plaintext

import Mathlib.Algebra.BigOperators.Basic
import Mathlib
import TestGame.Metadata
set_option tactic.hygienic false
Game "TestGame"
World "Induction"
Level 1
Title "Simp"
Introduction
"
"
Statement
""
(n : ) : True := by
trivial
Tactics simp
-- Σ_i Σ_j ... = Σ_j Σ_i ...
-- rw [sum_comm]
example : ¬ ∀ (x : ), x ≥ 10 := by
push_neg
use 5
simp
¬ ∀ (...) ↔ ∃ (¬ ...)