An urn contains $7$ white and $13$ black balls. We draw a ball from an urn, put it back and add $2$ additional balls of the same color (as the one we have just drawn and put back). We repeat this $10$ times (so the numbers of balls change throughout the whole experiment). What is the probability that the $10$th drawn ball is black?
I think it should be $13/20$. Basically, I think that no matter how many times the experiment is repeated, the probability of picking up the black ball at the end is $13/20$. I was trying induction but got stuck.
Direct computation shows that this is true for one round of the game, regardless of the starting configuration. (and for any "shift" where, in your problem, the "shift" is $3$).
Inductively, suppose we have shown that the probability is unchanged for $n-1$ rounds of the game (regardless of the starting configuration).
Now suppose we start with $w$ White and $b$ Black (denoting that by $(w,b)$). On round two we either have $(w+3,b)$ with probability $\frac w{b+w}$ or $(w,b+3)$ with probability $\frac b{b+w}$. By the inductive hypothesis the probability is then unchanged for at least the next $n-1$ rounds.
Of course, if you are in state $(w+3,b)$ the (new) probability of drawing a black ball is $\frac b{b+w+3}$ and if you are in state $(w,b+3)$ it is $\frac {b+3}{b+w+3}$.
Thus the probability on the $n^{th}$ round of the original game is $$\frac w{b+w}\times \frac b{b+w+3}+\frac b{b+w}\times \frac {b+3}{w+b+3}=\frac {b(b+w+3)}{(b+w)(b+w+3)}=\frac b{b+w}$$
as desired.
(To be sure, the $3$ is incidental as well. As the computation makes clear, we could replace it with any natural number).
The comments suggest that the logic of this argument is unclear, so let me elaborate. I am inductively supposing that we know the desired claim for any starting configuration of White and Black balls for $n-1$ rounds. I then take the desired configuration and look at the second round. To be sure, the probability will have changed depending on the first draw. Inductively, though, I know that the new probability will be constant for the next $n-1$ rounds. So it suffices to consider the two possible branch paths, weighted by the probability of being on one or the other. Of course, the probability of being on the "White" branch is $\frac w{b+w}$ and the new probability of drawing black along that branch is $\frac b{b+w+3}$. That explains the first term of my sum. The second term, corresponding to the "Black" branch, is entirely similar.