I stumbled upon this problem and was unable to solve it. I tried to find a similar question on the forum but did not find a satisfying answer, feel free to point me to an existing answer if you find one.
Question:
I have $n$ (e.g. $190$) black balls and $m$ (e.g. $10$) white balls and I randomly spread them into $k$ (e.g. $20$) bags such that each bag has an equal number of balls (so $10$ per bag in the example). What is the expectation of the number of bags that will contain at least one white ball ?
For the random process used to put the balls in the bag, it could be seen as first ordering the balls, then random shuffling them such that all balls have equal probability to be at every positions, and then using the ordering to separate the balls in bags. So for example, after shuffling, putting the first 10 balls in one bag, then the next 10 balls in the next bag, etc.
You can use linearity of the expectation to calculate the expectation much more easily than for example calculating the joint distribution. If $X$ is the number of bags with at least one special ball, then
$$X = \sum_{i=1}^k {1}_i$$
Where ${1}_i$ is a variable taking the value 1 if bag $i$ has a special ball, and zero otherwise. Then $EX = k P(\mbox{ bag 1 has at least one special ball})$, since all the probabilities are the same.