S_David said:
We have K balls in total, where each person pick up k balls, and then return them back to the box. So each person has the same set of balls to pick from them.
In this case, this is wrong.
I think what you mean and correct me if I'm wrong, is that you have K balls and everyone takes turns in picking the balls out, not that they all pick out the balls at once.
If they all pick them out at once, then there is no way they can pick out the same balls and the question is not even valid.
So let's assume that they take turns and they pick out the balls each turn for each person and the process is random in line with the assumptions of a binomial distribution. We assume that after the person has picked the balls, they put them back in and the whole thing starts again.
Then under this situation, you will need to calculate the probability of getting the specific number of balls taking into account that the balls are in fact the same. This should be done from first principles to clarify and not just using a distribution in ad-hoc manner.
So in terms of calculating the probability of getting a particular set of balls you need to calculate the following probability:
Let your balls be a,b,c and let A be the first ball, B the second, and C the third. Let X = (A = a) XOR (B = a) XOR (C = a), Y = (A = b) XOR (B = b) XOR (C = b) and Z = (A = c) XOR (B = c) XOR (C = c). Then you need to calculate the probability P(X AND Y AND Z).
Where the XOR is the symmetric difference which is given by (A XOR B) = (A\B) OR (B\A).
You can use the fact that A,B,C are not the same since picking up a ball and not replacing it until the round has finished will change what happens to later balls in the same round.
If you expand the probabilities then you should get a simpler expression which will give you the actual probability and you will have to use the Kolmogorov axioms at some point for calculating P(A OR B) and so on.
You could also do it with the binomial in the way that you calculate getting k balls out of K and then factoring in that you only get one type of permutation of your balls out of all permutations, but still account for getting them in any order. This would probably be easier to calculate in contrast with the raw probability calculation above.