Created
December 21, 2016 19:39
-
-
Save djspiewak/e84236e47164f4a8099cfdb97f0a10c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assume: () -> a | |
True -> a | |
not True \/ a | |
False \/ a | |
a \/ False | |
not a -> False | |
(a -> False) -> False | |
True = () | |
False = ⊥ | |
------ thus | |
(() -> a) <-> (a -> ⊥) -> ⊥ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment