There are total of $n$ balls, $r$ of which are red and the rest are black. When they are divided equally and randomly among $k$ buckets, I'm trying to find the probability that at least one bucket has a majority of red balls, assuming that $r$ is such that it is possible to get a majority in a bucket, i.e. $r > \frac{n}{2k}$.
Example: There are $100$ balls, $7$ of which are red and the rest are black. When they are divided into $10$ equal buckets, I'm trying to calculate the probability that at least one bucket have a MAJORITY of red balls, i.e. at least one bucket should have minimum of $6$ red balls.
I have tried different ways of breaking down the problem into combinations and probability problem. I tried calculating the combination the red balls can be arranged and then calculating the probability, but I'm not sure if I am going in the right direction. Any help is appreciated.
What about considering one bucket as a binomial distribution, so that for the red balls $R - Bin(s, r, \frac{1}{k})$ for $s\in \{0,..,r\}$ and black balls $B - Bin (t, n-r, \frac{1}{k})$ for $t \in \{0,..,n-r\}$
The the probability that the number of red balls is greater than the number of black balls for given $t$ is $P(s>t)=\sum_{s=t+1}^{r} \; ^rC_s \; \left( \frac{1}{k} \right)^s \left(1-\frac{1}{k}\right)^{r-s}$
And the complete probability measured over all t is:
$P(red > black) = {\sum_{t=0}^{n-r}} \; ^{n-r}C_t \; \left( \frac{1}{k} \right)^t \left(1-\frac{1}{k}\right)^{n-r-t} P(s>t) $
Sorry I don't know how to extend this multinomially to all buckets at the mom.