Bunuel
N is called a sweet number if the sum of its digits is an even number. How many four-digit numbers, with distinct digits, are sweet numbers?
A. 2160
B. 2376
C. 3672
D. 4200
E. 4500
Interesting question!
N is 4 digit sweet number whose sum of its digit is an even number with distinct digits.
When that will be possible.
1st when all are even. e+e+e+e=even
2nd when all are odd. o+o+o+o = even
3rd when 2 even and 2 odd = e+o+e+o..... (total of 6 cases) (eeoo, eoeo, eooe, ooee, oeoe, oeeo) you can count this with factorial method as well \(\frac{4!}{2!2!}\)
you see in 3rd case there are 3 cases which are starting with even and 3 are starting with odd.
now lets start calculating.
1st - when all are even. e+e+e+e=even_ + _ + _ + _ = Even
remember here at first digit place "0" is not possible.
so out of those 5 (0,2,4,6,8) at first place 4 (2,4,6,8) digits are possible.
Total cases = 4*4*3*2 = 962nd - 2nd when all are odd. o+o+o+o = even Here,
Total cases = 5*4*3*2 = 120
3rd when 2 even and 2 odd = e+o+e+o..... (total of 6 cases)
i - 3 cases which are starting with even
Total cases = 3*(4*4*5*4) = 960
ii - 3 are starting with odd.
Total cases = 3*(5*4*5*4) = 1200
Therefore total cases combining all possible counts = 96+120+960+1200 = 2376
Answer is B.