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.
19 lines
327 B
Plaintext
19 lines
327 B
Plaintext
2 years ago
|
import TestGame.Metadata
|
||
|
import Mathlib
|
||
|
|
||
|
-- -- INCORPORATED
|
||
|
-- example (A B : Prop) : (A → B) ↔ (¬ B → ¬A) := by
|
||
|
-- constructor
|
||
|
-- intro h nb
|
||
|
-- by_contra
|
||
|
-- have : B
|
||
|
-- apply h
|
||
|
-- assumption
|
||
|
-- contradiction
|
||
|
-- intro h a
|
||
|
-- by_contra
|
||
|
-- have : ¬ A
|
||
|
-- apply h
|
||
|
-- assumption
|
||
|
-- contradiction
|