If c and d are integers, is c even?
(1) c(d + 1) is even
(2) (c + 2)(d + 4) is even
My approach:
From (1): there are 3 cases:
A. c is even and (d + 1) is even
B. c is even and (d + 1) is odd
C. c is odd and (d + 1) is even
----> insufficient
From (2): 3 cases:
A. both (c + 2) and (d + 4) are even
B. (c + 2) is even and (d + 4) is odd
C. (c + 2) is odd and (d + 4) is even
-----> insufficient
From (1) and (2):
c(d + 1) is even ---> cd + c = 2n (k is an integer) (**)
(c + 2)(d + 4) is even ---> cd + 4c + 2d + 8 = 2m (*)
(*) - (**): 3c + 2(d + 4) = 2(m - n)
---> c = [2(m - n) - 2(d + 4)]/3
-----> insufficient
I chose E but the OA is C.
Could you explain how to combine (1) and (2) can make c even by algebraic approach? (not by picking numbers)
Thanks in advance!