For $P \rightarrow Q$, the truth table looks like this:
- True P, true Q: true
- True P, false Q: false
- False P, true Q: true
- False P, false Q: true
Since this is the first time for me to study this, I'm trying to understand it using a concrete example. Let's say $P$ is "I kicked the ball" and $Q$ is "the ball moved". Then the truth table above translates to:
- Does "I kicked the ball" and "the ball moved" support the if-then? Yes.
- Does "I kicked the ball" and "the ball did not move" support the if-then? No.
- Does "I didn't kick the ball" and "the ball moved" support the if-then? Well, at least it doesn't contradict it - so yes.
- Does "I didn't kick the ball" and "the ball did not move" support the if-then? Well, at least it doesn't contradict it - so yes.
Is my understanding correct?