So I'm having difficulty understanding a certain idea. Say I have a standard $52$ card deck (fairly shuffled, etc.) and I pull $5$ cards from it. We ask, what is the expected value of the number of aces in this hand.
Obviously we could indicator functions, so we can let $I_i$ denote the indicator function for the $i$th card and let $X = I_1 + \cdots + I_5$ denote the value we are trying to find. In essence we're trying to find $E(X)$. (Indicator function basically means $I_i = 1$ if the $i$th card is an ace and $I_i = 0$ if the $ith$ card is not an ace. So $X$ would count the number of aces.)
I know that expected value doesn't care about dependence, so in particular $E(X) = E(I_1) + \cdots E(I_5)$. And since each $I_i$ is an indicator function, letting $p_i$ be the probability that the $i$th card pulled is an ace, we get $E(X) = p_1 + \cdots + p_5$.
At this point, every solution I've seen says, "The chance of any particular card being an ace is $\frac{4}{52}$ and so you get $5 \cdot \frac{4}{52} = \frac{5}{13}$", but this is precisely where I have a problem. I don't understand how the chance of any card being chosen being an ace has probability $\frac{4}{52}$. I totally understand that the 1st card has probably $\frac{4}{52}$ and so $p_1 = \frac{4}{52}$, but after that, the 2nd card no longer has probability $\frac{4}{52}$ since it's dependent on the first card. If the first card is an ace, the chances becomes $\frac{3}{51}$, if the first card isn't an ace, the chances become $\frac{4}{51}$. In either case, we get something different than $\frac{4}{52}$.
The standard definition in this case makes perfect sense: $$E(X) = \sum_{x = 0}^4 x P(X = x) = \sum_{x = 0}^4 x \cdot \frac{\binom{4}{x} \binom{48}{5-x}}{\binom{52}{5}}$$ This is the birthday problem and obviously my brain is trying to work in this way, which is why it's having difficulty seeing the other way.
Can anyone help explain why there magically is no dependency when we look at it from the perspective of an indicator function, i.e. when $E(X) = \sum p_i$?