Consider the following "game" with two players:
Two players take turns drawing marbles out of a jar, without replacement. The jar starts with some number of red, blue, and white marbles. If a player draws a red marble or a blue marble, they draw again; otherwise the other player draws a marble. The "game" ends when the jar is empty.
I am interested in the random variable $R_{r,b,w}$, which represents the number of red marbles that the first player ends up with, when the jar starts with $r$ red marbles, $b$ blue marbles, and $w$ white marbles. In particular, I am interested in the probability distribution and expected value of $R_{r,b,w}$.
By considering the first marble that the first player draws, I have found the following recursive relationship between the variables: \begin{align} P(R_{r,b,w}=x) &= \frac{w}{r+b+w} P(R_{r,b,w-1}=r-x)\\ &+ \frac{b}{r+b+w} P(R_{r,b-1,w}=x)\\ &+ \frac{r}{r+b+w} P(R_{r-1,b,w}=x-1), \end{align} where $P(R_{a,b,c}=y)=0$ if either $a,b,$ or $c$ is negative, or $y$ is negative.
I've been using this recursion, along with induction, to calculate the distribution for $R_{r,b,w}$, for various values of $r$, $b$, and $w$.
For example, to calculate the distribution for $R_{r,b,2}$, for all possible $r$ and $b$, I first calculated it for the first few values of $r$ ($r=0,1,2$, for instance), made a guess for what it would be for general $r$, then used induction to prove it.
If anyone's curious, I have come up with: \begin{align} P(R_{a,b,1}=x) &= \frac{1}{a+1}\\ P(R_{a,b,2}=x) &= \frac{2(x+1)}{(a+1)(a+2)} \end{align} (The $x$ is understood to be from $0$ to $a$, since the probability is $0$ otherwise, and I didn't want to write the piecewise form.)
I also calculated the expectation of $R_{a,b,1}$ to be $a/2$, while the expectation of $R_{a,b,2}$ is $\frac{2}{3}a$.
1) Is there an easier or more elegant way of calculating the probability distributions of these random variables? It's a lot of (tedious) work calculating the different probabilities.
2) Is there an easier or more elegant way of calculating the expectation of these random variables?
3) Is there an easy way to prove (or disprove) that $R_{r,b,w}$ is independent of $b$ (in other words, that $R_{r,b,w} = R_{r,0,w}$ for all possible $r$ and $w$)?