I'm trying to find a solution to this problem but I'm having a hard time thinking through how to solve it:
You have one bag with $N$ balls, each being red or white.
You draw some number of balls, each time replacing the ball with a red ball. IE both red and white balls are always replaced with red balls regardless of the color drawn.
How do you solve for an expected number of red/white balls?
Example: $100$ balls, $70$ red and $30$ white. You draw $15$ balls. How many red balls do you expect to draw?
It would be pretty straightforward if the balls were replace with their own color, but I'm stumped here.
Ideally I'd love to have something I could punch into a cell formula in Google Sheets, but if that's not possible then I'd be happy to have any kind of explanation.
Let's say you have $N$ balls, $W$ of which are white, and you draw (and replace with red) $m$ times. You want to know the expected number of white balls drawn.
This is the sum over $1 \leq k \leq m$ of the expected number of white balls drawn in the $k$-th round, namely the probability that the $k$-th draw is a white ball.
Now let us imagine the modified procedure. When you draw a red ball, you put it back in the bag. When you draw a white ball, you paint it in red and then put it back in the bag.
Thus in the $k$-th round, you get a white ball if and only if the ball is originally white and has never been drawn out in the previous $k - 1$ rounds.
The probability that the ball is originally white is $\frac WN$. The probability that this ball has never been drawn before is $(1 - \frac1N)^{k - 1}$.
Thus the probability that you draw a white ball in the $k$-th round is equal to $\frac W N \cdot (1 - \frac 1N)^{k - 1}$.
Taking the sum over $1 \leq k \leq m$, we get that the expected number of white balls drawn in $m$ rounds is equal to $W(1 - (1 - \frac 1N)^m)$.