(no title)
CiaranMcNulty | 2 years ago
There are N-1 red balls out of 99 remaining, so the probability the next ball is red is (N-1/99).
The possible values of N are evenly distributed [1...100] (we discount the N=0 case because we drew a red ball)
The total probability that the next ball is red is the sum of the individual probabilities divided by cases:
P = SUM[1...100](n-1/99) / 100 = SUM[1...100](n-1) / 99 * 100 = SUM[0...99](n) / 99 * 100 = 4950 / 9900 = 5.0
So red or green are equally likely
jcl|2 years ago
3PS|2 years ago
> The possible values of N are evenly distributed [1...100] (we discount the N=0 case because we drew a red ball)
These probabilities over N are not actually even anymore; the fact that you drew a red ball means that higher values of N are more likely.