SUppose an urn contains $r$ red balls and $b$ blue balls. Each time a ball is drawn, it is returened along with $m$ additional balls of the same colour. Let $X_k$ be the number of red balls in $k$ draws from the urn. Find $E(X_2)$
My attempt : I think conditional expectation will be the best approach so I started with $$E(X_k) = E(E(X_k|Y))$$ where $X_k=$ # red colour in $k$ draws and $Y=1$ if at $k-1$ we get a red color and $Y=0$ if its blue. Bu I dont know how to proceed further.

By definition $$E[X_2]=0\cdot P(X_2=0)+1\cdot P(X_2=1)+2P(X_2=2).$$ The probability that $X_2=1$ can be split up in the probability of first drawing blue and then red, and vice versa. Then we obtain: $$E[X_2]=1\cdot\left(\frac{r}{b+r}\frac{b}{r+m+b}+\frac{b}{b+r}\frac{r}{b+m+r}\right)+2\cdot\frac{r}{b+r}\frac{r+m}{r+m+b}$$ that is, $$E[X_2]=\frac{2br+2r^2+2rm}{(b+r)(r+m+b)}=\frac{2r}{b+r}$$