Proof by contradiction proves a statement by proving that the statement cannot be untrue. If a statement is FALSE, can we still use proof by contradiction? For example, here is a statement:
Let $m$ and $n$ be inegers. If $2m+n$ is even, then $m$ and $n$ are both odd.
This statement is obviously false. If $m=1$ and $n=2$, then $2m+n=4$ is even, but $n$ is not odd in this case. Have I already proved a statement by giving a counter-example? Can we use proof by contradiction in this case?
Prove by contradiction: Let $p$ be "$2m+n$ is even" and $q$ be "$m$ and $n$ are both odd". Since we want to prove that $p\implies q$ is TRUE, we assume that $p$ is TRUE and $q$ is FALSE. Thus, $m$ and $n$ cannot both be odd.
- $m$ and $n$ are both even: $m=2k$ and $n=2j$. $2m+n=4k+2j=2(2k+j)$ is even.
- $m$ is odd and $n$ is even: $m=2k+1$ and $n=2j$. $2m+n=4k+2+2j=2(2k+1+j)$ is even.
- $m$ is even and $n$ is odd: $m=2k$ and $n=2j+1$. $2m+n=4k+2j+1$ is odd, which is a contradiction.
A contradiction occurs. Therefore the statement is FALSE.
I THINK I'M WRONG.