We are in a warehouse. Inside there are picking areas constituted of picking lanes.
Every lane has the same size and the same amount of P positions where objects are stored. We have here L lanes.
Now we want to operate batch picking in these areas. A given batch needs to go to p positions of the lanes (equiproblably).
When p is given, how to determinate how many lanes are needed to go through ?
Edit (in hope to clarify) : The problem is equivalent to the following one :
- L colors
- P balls per color
- All the balls are in a bag
- We pick randomly p balls : how many different colors do we obtain ?
In meantime, I have tried to formalize the result like this (but I don't know if it is correct) :
A serie ci, where ci is the amount of colors for i picked balls.
c0 = 0
c1 = 1 = c0 + (L - c0) / L
c2 = c1 + (L - c1) / L
c3 = c2 + (L - c2) / L
...
ci+1 = ci + (L - ci) / L
So: ci+1 = 1 + ci (L - 1) / L