A jar contains 17 red balls and 22 blue balls. How many ways are there to choose, without replacement, 8 balls from this jar.
I have two answers, but they both seem right to me. Could some explain which one is the wrong answer and why?
Since we choose 8 balls, it means that we are choose a combination of balls from each color. I can sum up the different ways to calculate the different amounts through distributed counting. $\sum_{k=0}^8 \left({17 \choose k} + {22 \choose 8-k}\right)$
Another way to look at this is the pool the balls together. I know there are 39 balls in total, so I choose the combinations to pick 8 balls from 39. ${39 \choose 8}$
Which logic makes more sense?