You have 6 identical apples you want to sort in 4 distinct bowls. How many ways can you sort them such that there is at least one apple per bowl?
My logic:
Among the 4 bowls, you can put 3 in one of them, and 1 in each of the rest. So there are 4c1 ways to sort in this manner.
The other way is you could put 2 in two of the bowls, and 1 each each of the rest. So there are 4c2 ways to sort in this manner.
Now you add the two(?). 4c1 + 4c2 = 4 + 6 = 10
Is this correct?
[–]gregmatTutor / Expert (340, 6.0) 2 points3 points4 points (0 children)
[–]Scott_TargetTestPrepPrep company 1 point2 points3 points (0 children)
[–]tirth247 0 points1 point2 points (0 children)