Proof of Mark Ransom's Answer
Let's use numbers easier to think about (at least for me!):
- 10 items
- delete 3 of them
First time through the loop we will assume that the first three items get deleted -- here's what the probabilities look like:
- first item: 3 / 10 = 30%
- second item: 2 / 9 = 22%
- third item: 1 / 8 = 12%
- fourth item: 0 / 7 = 0 %
- fifth item: 0 / 6 = 0 %
- sixth item: 0 / 5 = 0 %
- seventh item: 0 / 4 = 0 %
- eighth item: 0 / 3 = 0 %
- ninth item: 0 / 2 = 0 %
- tenth item: 0 / 1 = 0 %
As you can see, once it hits zero, it stays at zero. But what if nothing is getting deleted?
- first item: 3 / 10 = 30%
- second item: 3 / 9 = 33%
- third item: 3 / 8 = 38%
- fourth item: 3 / 7 = 43%
- fifth item: 3 / 6 = 50%
- sixth item: 3 / 5 = 60%
- seventh item: 3 / 4 = 75%
- eighth item: 3 / 3 = 100%
- ninth item: 2 / 2 = 100%
- tenth item: 1 / 1 = 100%
So even though the probability varies per line, overall you get the results you are looking for. I went a step further and coded a test in Python for one million iterations as a final proof to myself -- remove seven items from a list of 100:
# python 3.2
from __future__ import division
from stats import mean # http://pypi.python.org/pypi/stats
import random
counts = dict()
for i in range(100):
counts[i] = 0
removed_failed = 0
for _ in range(1000000):
to_remove = 7
from_list = list(range(100))
removed = 0
while from_list:
current = from_list.pop()
probability = to_remove / (len(from_list) + 1)
if random.random() < probability:
removed += 1
to_remove -= 1
counts[current] += 1
if removed != 7:
removed_failed += 1
print(counts[0], counts[1], counts[2], '...',
counts[49], counts[50], counts[51], '...',
counts[97], counts[98], counts[99])
print("remove failed: ", removed_failed)
print("min: ", min(counts.values()))
print("max: ", max(counts.values()))
print("mean: ", mean(counts.values()))
and here's the results from one of the several times I ran it (they were all similar):
70125 69667 70081 ... 70038 70085 70121 ... 70047 70040 70170
remove failed: 0
min: 69332
max: 70599
mean: 70000.0
A final note: Python's random.random() is [0.0, 1.0) (doesn't include 1.0 as a possibility).