Problem is :
Let p and q be propositions. Using only the Truth Table, decide whether
p↔q does not imply p→¬qis True or False.
I try to explain :
Rule of inference "if the premises hold, then the conclusion holds."
Premise#1
Premise#2
...
Premise#n
(then) Conclusion
P→Q ,and Q→P then P→(Q)' (conclusion). It is not tautology , so "does not" should be True.
What I'm asking: Is my approach correct ? If not , then what is solution ?
Edited :
p q p↔q p→¬q (p↔q)→(p→¬q)
0 0 1 1 1
0 1 0 1 1
1 0 0 1 1
1 1 1 0 0
So, "imply" is FALSE making "does not imply" TRUE.