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/Negation/L02_Contra.lean

29 lines
490 B
Plaintext

2 years ago
import TestGame.Metadata
import Std.Tactic.RCases
import Mathlib.Tactic.LeftRight
import TestGame.ToBePorted
2 years ago
Game "TestGame"
World "Contradiction"
Level 2
Title "Ad absurdum"
2 years ago
Introduction
"
Ähnlich siehts aus, wenn man Annahmen hat, die direkte Negierung voneinander sind,
also `(h : A)` und `(g : ¬ A)`. (`\\not`)
"
Statement
"Ein Widerspruch impliziert alles."
(n : ) (h : even n) (g : ¬ (even n)) : n = 128 := by
2 years ago
contradiction
Conclusion
"
"
Tactics contradiction