proof - Logic deduction with Fitch system -
i working through logic , found difficulty can't solve,
how can proof premise p=>q, ¬q=>¬p?
thank you
using fitch system:
- p=>q............premise
- .| ¬q............assumption
- .|.| p............assumption
- .|.| q............implication elimination: 1,3
- .|.| ¬q............reiteration: 2
- .| p=>¬q............implication introduction: 5
- .| ¬p............negation introduction: 1,6
- ¬q=>¬p............implication introduction: 7
not neat layout, each 'indentation' represents sub-proofs done of assumptions.
Comments
Post a Comment