I'm having trouble with understanding a combinatorics question, and wanted to develop some intuition for these kinds of problems. The question is as follows:
There is a basket of 10 oranges and 9 apples. You randomly choose 6 fruits (without replacement). What is the probability that you choose at least 4 oranges?
Solution: Let Q=size of sample space, and P=size of event space. Q = The total number of choices you can make = ${19}\choose{6}$. P = The number of ways you can choose at least 5 oranges, which is ${{10}\choose{4} } {9\choose 2}+ {10\choose5}{9\choose1} + {10\choose6}{9\choose0} $. The probability is P/Q.
I understand this solution and can see why it is the right answer. However, I had an alternative way of thinking about this question: First you choose 4 oranges from a pool of 10, giving you ${10\choose 4} $. Then you choose your remaining 2 fruits from the fifteen fruits you have left, i.e. ${15\choose2} $.
By this logic, P= ${10\choose4}{15\choose2} $
Now, I know that this definitely is a wrong answer, but I don't know why that is the case. Why is this an invalid way to think about the problem? I know that the answer is too large, but I can't come up with an argument that disproves my own faulty thinking.
Any help in understanding this would be appreciated.
Thanks!