Number | Statement | Line(s) Used | Reason | |
1 | B -> (K & M) | |||
2 | (B & M) -> (P = ~P) | |||
:. | ~B | |||
3 | B | Assumption for Indirect Proof | ||
4 | K & M | 1,3 | Modus Ponens | |
5 | M | 4 | Simplification | |
6 | B & M | 3, 5 | Conjunction | |
7 | P = ~P | 2, 6 | Modus Ponens | |
8 | (P -> ~P) & (~P -> P) | 7 | Material Equivalence | |
9 | P -> ~P | 8 | Simplification | |
10 | ~P v ~P | 9 | Material Implication | |
11 | ~P | 10 | Taulogy | |
12 | ~P -> P | 8 | Simplification | |
13 | ~~P v P | 12 | Material Implication | |
14 | P v P | 13 | Double Negation | |
15 | P | 14 | Taulogy | |
16 | P & ~P | 15, 11 | Conjunction | |
17 | ~B | 3 - 16 | Indirect Proof |