Hi snaider!
Following is the solution.
Let P[k] = Probability of taking a white ball from k-th basket
So, 1 - P[k] = Probability of taking no white ball from k-th basket
So,
P[k] = P{a white ball taken from (k-1)-th basket AND then a white ball taken from k-th basket} OR P{no white ball taken from (k-1)-th basket AND then a white ball taken from k-th basket}
So,
P[k] = (P{a white ball taken from (k-1)-th basket}*P'{white}) + (P{no white ball taken from (k-1)-th basket}*P"{white})
So,
P[k] = P[k-1]* {(w+1)/(w+1+b)} + (1 - P[k-1])*{w/(w+b+1)}
P[k] = (w + P[k-1])/(w+b+1), after simplification.
And, P[1] = (w)/(w+b).
So, P[2] = {w + (w)/(w+b)}/(w+b+1)
= (w)/(w+b)
and so on ...
So, P[n] = (w)/(w+b). : ANSWER.