The Set is S={1,2,3,.....,25}. We have to count the number of subsets of size 5 such that each has atleast one Odd number in it.
Method 1:
Count = (Total Subsets of size 5) - (Total subsets having all even numbers)
$$ = \binom {25} {5} - \binom {12} {5}
= 53130 - 792 = 52338$$
Method 2:
Consider the 5 element subsets as 5 distinct boxes, each can be filled with one number.
1st box can be filled by any of the 13 Odd numbers. 2nd by the remaining 24. 3rd by remaining 23. 4th by remaining 22. 5th by remaining 21. $$\text{Total} = 13 \times{24} \times{23} \times{22} \times{21}=3315312$$
Why am I getting two answers? Which method is flawed and how?