A bit of an oddball question.
I'm playing a game where I have a certain number of items, $n$ (in this case 9), and a certain action upgrades each item by one with a chance of $\rho$ (in this case, 33%). I'm trying to get all of the items to a target number of upgrades, $u$. Each item $i\in 0\ldots n$ also already has a certain number of upgrades, $u_i$.
I'm trying to calculate the expected number of upgrade actions $m$ (and the standard deviation from that expectation) that it should take to get them all to that threshold. Ideally, if possible, I'm also curious about finding the actual probability curve, too.
This started with me playing with Poisson statistics in my head. I know that the Poisson distribution is:
$$P(m) = \frac{\mu^m}{m!}e^{-\mu}$$
where $\mu$ is the average. I also know that, for any given item:
$$\mu_i=\frac{u-u_i}{\rho}$$
But the Poisson distribution has a key problem. It's nonzero for all numbers that could not actually reach $u$ upgrades. So I'm not sure if this is actually the correct approach at all.
...and I'm genuinely not sure where to go from here, when talking about all items considered together. Can anyone offer a pointer?