Consider an urn which initially has w white balls and b black balls. Draw one of the balls in the urn at random, then put this ball back into the urn and add another ball to the urn of the same color of the one just drawn. Continue to draw and add balls in this manner indefinitely.
Show that in fact, the probability the n-th ball drawn is white is also $\frac{w}{w+b}$
Prob(Ball #1 is white) = $\frac{w}{w+b}$
Prob(Ball #2 is white) = $P( W_{2}| W_{1})P(W_{1}) + P(W_{2}| B_{1})P(B_{1})$ = $\frac{w+1}{w+b+1}$ $\frac{w}{w+b}$ + $\frac{w}{w+b+1}$ $\frac{b}{w+b}$ = $\frac{w}{w+b}$
How can I prove it for Ball #n without induction?
