An urn contains 15 Balls (5 white, 10 Black). Let's say we pick them one after the other without returning them. How many white balls are expected to have been drawn after 7 turns?
I can calculate it by hand with a tree model but is there a formula for this?
Hint: the linearity of expectations show us that
$$\Bbb E[W]=\sum_i\Bbb E[X_i]$$
where $W$ is the random variable that counts the total number of white balls, and each $X_i$ is the random variable that take value $1$ if the ball is white or zero if the ball is black for the $i$-nth pick.
The $X_i$ random variables are not independent, by example, if the first ball is white ($X_1=1$) the expectation of $X_2$ is different that if the first ball is black.
Then we use the total law of probability i.e.
$$\Pr[X_i=1]=\sum\Pr[X_i=1|X_{i-1}=a_{i-1},X_{i-2}=a_{i-2},...,X_1=a_1]\cdot\Pr[X_{i-1}=a_{i-1},X_{i-2}=a_{i-2},...,X_1=a_1]$$
where the sum ranges all combinations of $a_i$, where every $a_i\in\{0,1\}$, i.e. every ball can be white or black. This is just a bit of combinatorics. Check this answer that is similar to understand how to continue.