[Math] Understanding Inverse Logic

logic

The original statement is, "If I am in Paris, then I am in France".
The inverse statement is, "If I am not in Paris, then I am not in France".

If $\lnot A = \lnot B =$ True, then $\lnot A \implies \lnot B$ = True.

If $\lnot A = \lnot B =$ False, then $\lnot A \implies \lnot B$ = True.

Here is where my misunderstanding occurs:

If $\lnot A =$ True and $\lnot B =$ False, then $\lnot A \implies \lnot B$ = True.

After all, the statement, "If I am not in Paris, then I am in France", is a logical statement: One can be somewhere else in France.

If $\lnot A =$ False and $\lnot B =$ True, then $\lnot A \implies \lnot B$ = False.

After all, the statement, "If I am in Paris, then I am in not France", is an illogical statement: If one is in Paris, then they must necessarily also be in France.

I would greatly appreciate it if someone could please take the time to clarify my misunderstanding.

Thank you.

Best Answer

I would like to show you this in truth tables, hopefully it resolves some of the confusion. Of course, you should read the other answers as well, Patrick Stevens answer I like personally.

The connective "$\Rightarrow$" is defined according to this truth table:

$$ \begin{array}{c|l|c|} P & \text{Q} & \text{P $\Rightarrow$ Q} \\ \hline T & T & T \\ T & F & F \\ F & T & T \\ F & F & T \end{array} $$ This should be in your book. As you can see, $P \Rightarrow Q$ is false only when $P$ is true and $Q$ is false, otherwise $P \Rightarrow Q$ is true.

For the contrapositive, we can draw the following table:

$$ \begin{array}{c|l|c|c} P & Q & \neg Q & \neg P & \neg Q \Rightarrow \neg P \\ \hline T & T & F & F & T \\ T & F & T & F & F\\ F & T & F & T & T\\ F & F & T & T & T \end{array} $$

As you can see, for any valuation of $P, Q$ (for any assignment of $T,F$ to $P,Q$), whenever $ P \Rightarrow Q$ is true, so is $\neg Q \Rightarrow \neg P $.

So as you can see, if $\neg Q$ is false, and $\neg P$ is true, then $\neg Q \Rightarrow \neg P$ is true, by the third line in the above table. This is exactly in line with what is says in your book.

For the converse (or inverse) , we have:

$$ \begin{array}{c|l|c|c} P & \text{Q} & \text{P $\Rightarrow$ Q} & Q \Rightarrow P \\ \hline T & T & T & T \\ T & F & F & T \\ F & T & T & F \\ F & F & T & T \end{array} $$

As you can see, they don't match for all valuations, in particular, if $P$ is true, and $Q$ is false, then one implication is true and the other isn't.

Finally: if $A$ is the statement "you are in Paris" and $B$ is the statement "you are in France" and you know $A \Rightarrow B$ is true, then if you are not in France, then you are not in Paris ($\neg B \Rightarrow \neg A$).

And of course, if you are not in Paris ($\neg A$ is true) then you could be on Mars for all we know. You are not necessarily in France.

EDIT: I would like to encourage you to look at more mathematical examples, similar to other peoples' examples in their answers, natural language is full of vague statements that are not always as clear cut as mathematical ones.

Related Question