2

"Show by indirect proof that if 5n + 3 is an even number then n is an odd number"

How could this be solved? I guess I'm in the right track but I don't know how to conclude.

  • 1
    Hints: even + odd = odd, even x odd = even –  Aug 19 '14 at 03:58
  • So, n= 2k + 1 , then, 5n + 3 = 5(2k + 1) + 3 = 10k + 5 + 3, Am I right? –  Aug 19 '14 at 04:01
  • $10k+5+3=10k+8$ – EPS Aug 19 '14 at 04:02
  • 1
    Yeah $10k+8$ is even for all $k$ – hanugm Aug 19 '14 at 04:03
  • Are you familiar with the idea of "contrapositive"? I.e. showing "if A then B" by showing "if not B, then not A"? – Elliott Aug 19 '14 at 04:10
  • @Elliot Yes, Indeed. That means that while the contrapositive is proven, then, the original proposition is proven. In this case I should prove that $[\sim q \to \sim p ]$ where $\sim q$ would be "n is an even number" –  Aug 19 '14 at 04:15

4 Answers4

2

The proposition we want to prove is: "$5n + 3$ even $\implies$ $n$ odd".

This is equivalent to the contrapositive statement, "$n$ not odd $\implies$ $5n + 3$ not even". Since an integer is either odd or even, it is equivalent to saying "$n$ even $\implies$ $5n + 3$ odd.

If a number is even, then any integer multiple of it must be even. That is to say, $n$ even $\implies$ $5n$ even.

Furthermore, if a number is even, then adding an odd number to it necessarily makes the result odd. That is to say, $5n$ even $\implies$ $5n + 3$ odd.

Hence, we have $n$ even $\implies$ $5n$ even $\implies$ $5n + 3$ odd. By proving the contrapositive statement, we have indirectly proved that $5n + 3$ even $\implies$ $n$ odd.

Yiyuan Lee
  • 14,435
1

Every integer is either even or odd. An even integer is an integer divisible by 2.

If $n$ is even then $5n$ is also even, for it is divisible by 2. But since 3 is not divisible by 2, so that $5n+3$ is not divisible by 2, and hence $5n+3$ is an odd integer, qed.

Yes
  • 20,719
0

Without resorting to the use of modulo arithmetic...

As $5n+3$ is divisible by $2$, so too is $5n+3-4n-4$

That is $n-1$ is divisible by $2$

So $n-1=2k$ for some integer $k$

Yielding $n=2k+1$, which shows $n$ is an odd number.

Done !

-1

An even number is divisible by $2$, so we can describe an even number as $2k$.

Then \[ 5n+3=2k \] \[ 5n=2k-3 \] \[ n=\frac{2k-3}{5} \]

$2k$ is even so $2k-3$ is odd and an odd number divided by $5$ is still an odd number.

Hence, when $5n+3$ is an even number, $n$ is an odd number.

k170
  • 9,045