I have a statistical problem related to taking samples of liquid with microparticles in it. I have a solution of let’s say 1000 microparticles in 1 mL of water (large amount of this solution). The particles do not aggregate and are randomly distributed in the sample. I will take several small (1-2 µL) random samples from this solution. I’m aiming at having one particle in the sample but obviously only a part of the samples will have one particle.
The average amount of particles in the sample is very easy to calculate based on concentration and volume but what is not easy for me, is the distribution of number of particles in the samples. I’d like to achieve the maximum probability of having one particle/sample.
How is this distribution calculated? I guess we are talking about discrete probability distribution.
I’m very grateful for any help.
I would start with a simpler problem - suppose you have ideal $U(0,1)$ random number generator, you want to sample $N$ numbers and wondering how many of them ($n$) will fit interval with length $l$ and what distribution would they follow.
If we denote probability to be in the interval with
$$ p = l $$
and probability to be out of interval
$$ q = 1-p = 1-l $$
then you'll get binomial distribution with PMF
$$ PMF(N, n|l) = {N\choose n} l^n(1-l)^{N-n} $$
Mean value would be $Nl$ which obviously consistent with $U(0,1)$ behavior. If you're looking at most probable number of samples in the interval, you shall look into mode of the distribution, which is either $floor((N+1)l)$ or $ceil((N+1)l)-1$. In your case
$$ l = \frac{v}{V} $$ where $v$ is sample size, $V$ is whole volume size.
$$ N = \rho V $$ where $\rho$ is concentration. Hope it helps...