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/Proposition/L05_Not.lean

23 lines
465 B
Plaintext

import TestGame.Metadata
Game "TestGame"
World "Proposition"
Level 5
Title "Not"
Introduction
"
Wenn eine Aussage `(A : Prop)` wahr oder falsch ist, dann ist die Umkehrung \"nicht $A$\",
geschrieben `¬A` (`\\not`), gegenteilig falsch oder wahr.
Da die Aussage `False` nie wahr ist, ist die Aussage `¬False` immer wahr, genau wie `True`.
"
Statement "Zeige dass die Aussage `¬False` immer wahr ist." : ¬False := by
trivial
Conclusion ""
Tactics trivial