Given a population of $n$ black and $m$ green balls, the expected number of black balls in a random sample of $r$ balls can be calculated as follows
We define a random variable $X_k$ taking values 1 or according as the $k$-th element in the sample is black or not. Then $P(X_k = 1) = \frac{n}{n+m}$ and the expected number of black balls in a random sample of $r$ balls is $\frac{nr}{n+m}$. This is the answer given in Feller's Book (Vol 1). The reason given by Feller is "For reasons of symmetry".
But I am not convinced by this approach. How can we assume a constant probability $P(X_k = 1) = \frac{n}{n+m}$ ? The sampling process is without replacement and probability of success changes in every trial. I don't understand what is meant by "For reasons of symmetry".
The following seems to be a more rigorous argument.
I think you agree that $P(X_1 = 1) = \frac{n}{n+m}$.
Then \begin{align}P(X_2=1) &= P(X_2=1 \mid X_1=1)P(X_1=1) + P(X_2=1 \mid X_1=0)P(X_1=0) \\ &{= \frac{n-1}{n+m-1} \cdot \frac{n}{n+m} + \frac{n}{n+m-1} \cdot \frac{m}{n+m}} \\ &= \frac{n}{n+m}, \end{align}
if you simplify the expression on the second line. If you feel like it, you can show that $P(X_k=1) = \frac{n}{n+m}$ for all $1 \leq k \leq r$ similarly, by induction (d.k.o's answer is the induction step).