3

Can this be proved directly?

If $mn$ is odd, then both $m$ and $n$ are odd.

My homework is telling me to prove this directly, but I believe a direct proof doesn't exist. Obviously this is an easy proof by contrapositive.

Bill Dubuque
  • 272,048
ddd
  • 135

2 Answers2

6

By Division Algorithm, if we divide $m$ and $n$ by $2$, we have $m=2p+r$ and $n=2q+s$ with $0\leq r,s <2$. Then $r$ and $s$ are $0$ or $1$, so $rs = 0$ or $1$. Then $mn = (2p+r)(2q+s) = 2(2pr +ps+qr) + rs$. Since $mn$ is odd, $rs$=1. So neither $r$ nor $s$ is $0$. Therefore $r=s=1$ and so $m$ and $n$ are odd.

  • 2
    I don't really know what the setter of the OP's homework meant by "prove directly", but how are you "proving directly" that $rs = 1$ implies neither $r$ nor $s$ is $0$? – Rob Arthan Sep 02 '16 at 23:02
  • 1
    If $rs=1$, then $r$ and $s$ are both units in the ring $Z$. Since they're positive, they're both equal to one. – B. Goddard Sep 02 '16 at 23:27
  • 1
    @B.Goddard That method presumably depends on a lemma that $,0,$ is not a unit (in a nonzero ring), which probably doesn't count as "direct" (i.e. hiding the indirect part in a lemma does not eliminate it). – Bill Dubuque Sep 03 '16 at 14:06
1

If by contrapositive you mean contradiction you can simply state:

Every multiple of 2 is divisible by 2.

If you mean that you can only work with odd numbers I'd consider the fundamental theorem of arithmetic. With this you can notice that multiplication carries over the original prime factors thus yielding an odd number.

Lorenzo
  • 319