I want to calculate the expected value and variance for the random variable $$X = \text{number of balls which were never drawn}$$ when drawing from $10$t times from $10$ different balls with putbacks.
To calculate the expected value and variance I wanted to first find a closed formula for the probability distribution of $X$ on the numbers $(0-9)$. I tried to reduce it to a product of binomial distributions without success.
How can this problem be modeled? Is there another way to calculate the expected value or variance?
If you use indicator random variables you can calculate expectation and variance without getting a pmf.
$$\text{Let } I_i = \begin{cases} 1: & \text{ball $i$ is never drawn} \\ 0: &\text{ball $i$ is drawn} \end{cases} \\ \mathsf E[I_i] = P(I_i = 1) = P(\text{ball $i$ is never drawn}) = .9^{10} \\ \mathsf E[X] = \mathsf E[I_0 + I_1 + \cdots + I_9] = 10\left(.9^{10}\right)$$
$$\mathrm{Var}(I_i) = P(I_i=1)(1-P(I_i=1)) = .9^{10}\left(1-.9^{10}\right) \\ \forall \ i \ne j, \ \mathrm{Cov}(I_i,I_j) = .8^{10}-(.9^{10})^2 \\ \mathrm{Var}(X) = \mathrm{Var}(I_0 + I_1 + \cdots I_9) = \sum_{i=0}^9\mathrm{Var}(I_i) + \sum_{i\ne j}\mathrm{Cov}(I_i,I_j) \\ =10(.9^{10})(1-.9^{10}) + 90(.8^{10}-.9^{20})$$
Reference: https://en.wikipedia.org/wiki/Indicator_function#Mean%2C_variance_and_covariance