18.9k views
5 votes
If x and y are odd Integers, then xy is odd

2 Answers

4 votes

Yes, this statement is true. If x and y are both odd integers, then both x and y are of the form 2n + 1 for some integer n. The product of two odd numbers is still odd because (2n + 1)(2m + 1) = 4nm + 2(n + m) + 1, which is an odd integer.

User Nesh
by
7.2k points
3 votes

Answer: True

Some examples would be

3*5 = 15

7*9 = 63

11*11 = 121

The template is odd*odd = odd.

----------

Here is the proof as to why this is the case.

x = 2k+1 where k is some integer

y = 2m+1 where m is some integer

Both x and y are odd since we added 1 to an even number.

Multiply out x and y

xy = (2k+1)*(2m+1)

xy = 2k(2m+1) + 1*(2m+1)

xy = 4km+2k + 2m+1

xy = 2*(2km+k+m) + 1

xy = 2n + 1 where n = 2km+k+m is an integer

The result is of the form 2*(integer)+1 which is odd. This concludes the proof.

User Chris Graham
by
7.7k points