I have a set of numbers where I am randomly and independently selecting elements within a set . After a number of these random element selections I want to know the coverage of the elements in the set. Coverage being how many elements from the set have been selected at least once divided by the total number of elements in the set.
To restate this: what is the probability distribution of the different coverage values on a set after $X$ randomly, independently selected elements of the set?
x = m = nthen don’t I compute a probability ~1? Does that make any sense? Why would the probability of choosing 32 unique items from a set of 32 unique items when 32 items are chosen with replacement, be approximately equal to 1? I’m using the approximationS2(x,m) ≈ m^x/m!. – Shelby Moore III Jul 19 '18 at 07:41