I have x
items and y <= x
special items. Out of these I pick z <= x
items. Given s
where 1 <= s <= y
, what is the probability that the z
items I picked contain s
special items?
The particular case I want to apply it to: I have 70 items, 14 are special. I pick 5 of them. What's the chance that 1 is special, 2 are special, etc... up to 5.
Update: If you're feeling up to it, see a more general problem here.