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

28 lines
506 B
Plaintext

2 years ago
import TestGame.Metadata
import Std.Tactic.RCases
import Mathlib.Tactic.Contrapose
Game "TestGame"
World "Contradiction"
Level 9
Title "Kontraposition"
Introduction
"
Im Gegensatz zum Widerspruch, wo
"
-- TODO: `even`/`odd` sind in Algebra.Parity. Not ported yet
-- Statement
-- "Ist n² ungerade, so ist auch n ungerade. Beweise durch Kontraposition."
-- (n : ) (h : odd n ^ 2) : odd n := by
-- revert h
-- contrapose
-- rw [not_odd]
-- intro
-- trivial (?)
Tactics contradiction