Last active
December 31, 2015 01:18
-
-
Save jdiez17/7912759 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
P1: A => B ^ C | |
P2: B => ¬D | |
P3: C => D | |
P4: (added by Proof by Contradiction) A | |
Conclusion: false (proof by contradiction) | |
Assertion Justification | |
------------------------------ | |
A P4 | |
A => B ^ C P1 | |
B ^ C 1, 2, modus ponens | |
B 3, simplification | |
B => ¬D P2 | |
¬D 4, 5, modus ponens | |
C 3, simplification | |
C => D P3 | |
D 7, 8, modus ponens | |
D ^ ¬D 6, 9, addition | |
false 10, rewrite, QED |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment