Conditional statement is represented as $p\to q$. Its truth table is given as:
$$ \begin {array}{|c|c|c|} \hline p & q & p\to q\\ \hline T&T&T\\\hline T&F&F\\\hline F&T&T\\\hline F&F&T\\\hline \hline \end{array}$$
As an explanation, my textbook gave the following example:
- If $x$ is an odd integer, then $4$ divides $x^2-1$.
- If $x$ is an odd integer, then $4$ does not divide $x^2-1$.
- If $x$ is not an odd integer, then $4$ divides $x^2-1$.
- If $x$ is not an odd integer, then $4$ does not divide $x^2-1$.
It says that (2) is false, while others are true, because in all the three statements, the conclusion is a fact.
I don't see how (3) is true. $4$ does not divide $x^2-1$ when $x$ is even. What am I missing?