2

Here is what i have so far

By definition an integer is called odd if there exist an integer k such that n=2k+1 so if n and m are any two odd integers the product of those two integers is odd.

I dont know is this is the correct way of proving that mn is odd.

pjs36
  • 17,979

1 Answers1

1

Let $m$ and $n$ be two odd numbers. By the definition of odd, there exists integers $k$ and $l$ such that $m=2k+1$ and $n=2l+1$. We see that $mn=(2k+1)(2l+1)=(4kl+2k+2l)+1$. By the definition of even, $4kl+2k+2l$ is an even integer, so $mn$ is odd.

  • According to the definition you recalled, your last sentence is not the right way to prove that $mn$ is odd. Instead, write $$mn=2(2kl+k+l)+1.$$ – Anne Bauval Dec 11 '23 at 16:55