Question: I have a typical $m$ balls in $n$ bins question, where I'm trying to find the expected number of balls in each bin. Each ball is independently placed into one of the n bins, so there is a $\frac1n$ chance for each bin.
My Guess: I believe that the expected value should be something like $\frac mn$, but I'm not sure how to prove it.
I started by using an indicator random variable $X_i$ = the event in which the $i$-th ball is in a bin.
$X_i = 1$ with probability $\frac 1n$ OR $0$ with probability $1-\frac 1n$.
E(number of balls in each bin) = $E(X_1)+E(X_2)+ ... + E(X_m) = m\cdot E(X_i) = \frac mn$
But I think that the proof doesn't seem correct, can anyone explain where I went wrong (if I did go wrong)?
Thanks!