# | p | q | p ---> q |
1 | T | T | T |
2 | T | F | F |
3 | F | T | T |
4 | F | F | T |
I have a problem understanding implication when I have English sentences.
Let us assume p is (I study well) and q is (I can get A)
According to the truth table, these sentences are:
1
If I study well, then I can get A. True.
2
If I study well, then I cannot get A. False.
3
If I don't study well, then I can get A. True.
4
If I don't study well, I cannot get A. True.
Why the third sentence is True?