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.
|
|
|
|
import TestGame.Metadata
|
|
|
|
|
import Std.Tactic.RCases
|
|
|
|
|
import Mathlib.Tactic.LeftRight
|
|
|
|
|
|
|
|
|
|
import TestGame.ToBePorted
|
|
|
|
|
|
|
|
|
|
Game "TestGame"
|
|
|
|
|
World "Proposition"
|
|
|
|
|
Level 9
|
|
|
|
|
|
|
|
|
|
Title "Widerspruch"
|
|
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
|
"
|
|
|
|
|
Auftritt dritter Querulant.
|
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
Statement ""
|
|
|
|
|
(n : ℕ) (h : n = 10) (g : n ≠ 10) : n = 42 := by
|
|
|
|
|
Hint "**Du** Wieder ein Widerspruch in den Annahmen?
|
|
|
|
|
|
|
|
|
|
**Robo** Ich sehe, du hast langsam den Dreh raus."
|
|
|
|
|
contradiction
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Conclusion
|
|
|
|
|
"
|
|
|
|
|
**Robo** Gut gemacht. Bei dieser Frage ist auch ein bisschen offensichtlicher,
|
|
|
|
|
worin der Widerspruch besteht: Die Annahme `n ≠ 10` ist genau die Negation von `n = 10`.
|
|
|
|
|
Man muss `≠` immer als `¬(· = ·)` lesen.
|
|
|
|
|
"
|
|
|
|
|
|
|
|
|
|
NewTactic contradiction
|
|
|
|
|
DisabledTactic tauto
|