Last active
August 29, 2015 14:26
-
-
Save cmstead/1ab28f1e30f9d6d43218 to your computer and use it in GitHub Desktop.
Proof that P && !P (apenantology) is always false
This file contains 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
//I propose an apenantology can be represented as P && !P such that this expression is always false | |
//Proof | |
P || !P // Tautology, always true | |
=> !(P || !P) // Inverse of tautological statement, always false | |
=> !P && P // Distributive property of && | |
=> P && !P // Commutitive property of && | |
=> P && !P <=> false | |
QED |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment