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/Logic/L08_Or.lean

26 lines
488 B
Plaintext

2 years ago
import TestGame.Metadata
2 years ago
import Std.Tactic.RCases
import Mathlib.Tactic.LeftRight
--set_option tactic.hygienic false
2 years ago
Game "TestGame"
World "Logic"
2 years ago
Level 14
Title "Oder"
Introduction
"
2 years ago
Das logische ODER `A B` (`\\or`) funktioniert ein wenig anders als das UND.
2 years ago
2 years ago
Wenn das Goal ein `` ist kann man mit `left` oder `right` entscheiden,
welche Seite man beweisen möchte.
"
2 years ago
Statement "" (A B : Prop) (hA : A) : A (¬ B) := by
2 years ago
left
assumption
2 years ago
2 years ago
Tactics left right assumption