Imagine that there are 10 black balls and 20 white balls in an urn. Two balls are removed at random from the urn. The second ball removed is recolored, such that it matches the color of the first ball, then we put the balls back into the urn and repeat this process indefinitely. What is the probability that all the balls in the urn turn black?
My approach is to model this problem similar to gambler's ruin problem. We start with 20 white balls and we should find out the probability that we reach the absorbing state of 0. We have three possibilities after every trial, to stay in the same state(no change in the number of white balls of urn after the trial), one white ball less(we go to the state i-1), on white ball more(we go to the state i+1). P varies at each trial and only depends on the current state. Is this method feasible? or should I look for variants of Polya urns?
It is a pure gambler's ruin problem. While there are balls of each colour in the urn, with probability $\frac{1}{2}$ the number of black decreases by $1$, and with probability $\frac{1}{2}$ it increases by $1$. The ties are irrelevant.