The urn contains $1$ white ball and $1$ black ball. We make a sequence of $n$ draws according to the following scheme: we draw a ball, look at it, then return it to the urn and add another ball of the same color. For $j \in \{ 1, 2, . . . , n + 1 \}$, let $p_j$ denote the probability that after $n$ draws the urn contains exactly $j$ white balls. Prove that $p_j = \frac{1}{n + 1}$ for all $j$.
I came up with a recoursive equation describing the number of white balls after n draws.
- $\mathbb{P}_1(j,n) =$ probability that after $n$ draws we have $j$ white balls in the urn,
- $\mathbb{P}_2(b, n-1) =$ probability, that after $n-1$ draws we will draw a black ball from the urn.
The equation goes like this:
$$\mathbb{P}_1(j,n) = \mathbb{P}_2(b, n-1) \cdot \mathbb{P}_1(j,n-1) + \mathbb{P}_2(w, n-1) \cdot \mathbb{P}_1(j-1,n-1)$$
$$\mathbb{P}_1(j,n) = \frac{n-1+2-j}{n-1+2} \mathbb{P}_1(j,n-1) + \frac{j-1}{n-1+2} \mathbb{P}_1(j-1,n-1)$$
$$\mathbb{P}(j,n)_1 = \frac{n-j+1}{n+1} \mathbb{P}_1(j,n-1) + \frac{j-1}{n+1} \mathbb{P}_1(j-1,n-1)$$
Now I would like to substitute the assumed formula: $\mathbb{P}_1(j,n) = \frac{1}{n + 1}$ and check the result, but I can't since we have $\mathbb{P}_1(j-1,n-1)$ in the equation and I don't know how to evaluate that.
Anybody knows how to do that?