I have the following combinatorial problem: Let's assume we have $N$ balls: $W$ white, and $B$ black balls ($N = B + W$).
Step 1: The first thing we do is to randomly divide these $N$ balls into $K$ bins, each bin having $n = \frac{N}{K}$ balls. Dividing the balls into the bins is of course done without replacement.
Step2: Now, once the balls are divided among the bins, we select randomly one ball from each bin (i.e., we draw $k$ balls, one from each bin, at random).
Now, the question is - what is the probability that all picked balls are black? Let's call this event $E$.
I tried to look around the forum for some suggestions, but I didn't find this type of question. I found that one: Constrained combinatorial question: 2 types of balls divided into k groups with limits, which gave me some hints but wasn't yet what I am looking for.
This is my thinking:
I computed all possible ways to split the balls as: $${N \choose n }\cdot {N-n \choose n} \cdot {N-2n \choose n}\cdot \ldots \cdot {N-(K-1)n \choose n} = \frac{N!}{2n!}$$ I skip bin $K$ since in my opinion there is only one way to put $n$ balls there - and these are the $n$ remaining balls. However, my concern here is that the variable $K$ got canceled in this equation, and I wonder whether that's ok?
Now, Step 2 can happen with a non-zero probability only if at least $1$ black ball is in each bin. The hypergeometric distribution allows me to "formulate the probability of $s$ successes (i.e., random draws, for which the object drawn has a specified feature) in $m$ draws, without replacement, from a population of size $M$ that contains exactly $S$ objects with that feature, where each draw is either a success or a failure". So I thought I can use this in Step 1 when I am randomly assigning balls to bins. The success would be putting to a bin a black ball. So using the notation for my black and white balls, such probability is defined as $$Pr(X = x) = \frac{{B \choose x}{N - x \choose n -x}}{N \choose n}.$$ And I thought that then a probability that a bin contains at least 1 black ball would be expressed as the sum $$Pr(\text{at least 1 black ball in the bin}) = \sum_{x=1}^{n} \frac{{B \choose x}{N - x \choose n -x}}{N \choose n}.$$ And since we have $K$ bins I would have to take it to the power of $K$. So the probability that each bin contains at least 1 black ball would be: $$ \left(\sum_{x=1}^{n} \frac{{B \choose x}{N - x \choose n -x}}{N \choose n} \right)^K$$
And once the split is done in such a way, the only thing left is - the probability that I will pick a black ball from each bin and this one I don't know how to define.
So overall, my thinking is that the probability of event $E$ would be defined as: $$Pr[E] = \frac{\text{number of combinations that I pick all blacks under the condition that each bin has at least 1 black one}}{\text{number of all possible splits and paths I can pick}}$$
I would be very grateful if someone can help me a bit since I feel like I'm swimming around the solution but can't get there. Is my general consideration correct, am I'm missing something? Any help welcome! Many thanks in advance!