Suppose we draw 2 cards from a standard 52 card deck with value 1 - 13 (from Ace to King). How would expected values and variance compare with or without replacement?
$E[X] = 14$ for both cases (linearity of expectation)
$Var(X) = E[X^2] - E[X]^2$ however this seems like it would take incredibly long to compute for all the possible sums, is this the right approach? Would the variances even be different?
Even if enumerating all possible combinations (which for just two cards it would be difficult to significantly improve upon), there are only $\binom{52}{2} = 1326$ possibilities, which is trivial for a computer. The variances are 28 and about 27.45 with and without replacement respectively.