1. (L & M) v ~L Premise
2. ~(L & M) --> ~M Premise
// show L <--> M
3. L --> (L & M) 1, Material Implication (MImpl)
4. M --> (L & M) 2, Modus Tollens (MT)
5. L --> M 3, Simplification (SIMP)
6. M --> L 4, SIMP
7. L <--> M 5,6 Material Equivalence (MEquiv)
DONE
Number | Statement | Line(s) Used | Reason |
1 | ( L & M ) v ~L | ||
2 | ~(L & M) -> ~M | ||
:. | L <--> M | ||
3 | (L v ~L) & (M v ~L) | 1 | Distribution |
4 | M v ~L | 3 | Simplification |
5 | ~L v M | 4 | Commutation |
6 | L -> M | 5 | Material Implication |
7 | (L & M) v ~M | 2 | Material Implication |
8 | (L v ~M) & (M v ~M) | 7 | Distribution |
9 | L v ~M | 8 | Simplification |
10 | ~M v L | 9 | Commutation |
11 | M -> L | 10 | Material Implication |
12 | (L -> M) & (M -> L) | 6,11 | Conjunction |
13 | L <--> M | 12 | Material Equivalence |