I want to check if the solution to the following question is an application of the property $E[X + Y] = E[X] + E[Y]$.
The question:
What is the expected number of rolls needed to see all six sides of a fair die?
The solution: We find that as we continue to make rolls and as we continue to see new values, the probability of seeing a new value changes overtime, from 1 to $\frac{5}{6}$ to $\frac{4}{6}$ and so on until we get to $\frac{1}{6}$. By treating each roll as a Geometric Random Variable, we find that the expected value of each of these rolls is given by $\frac{1}{p}$, so for example after the first roll, the second roll's expected value would be $\frac{6}{5}$.
By adding up all these expectations, we find that the expected number of rolls needed to see all six sides of a fair die is 14.7
I'm asking because I'm having difficulty reconciling this solution with my understanding of the definition of expectation for discrete random variables, which is $E[X] = \Sigma xp(x)$.
Your linearity of expectation argument summing geometric random variables gives $$\frac{6}{6}+\frac{6}{5}+\frac{6}{4}+\frac{6}{3}+\frac{6}{2}+\frac{6}{1} = 14.7.$$
If instead you insisted on your $\sum x\, p(x)$ calculation, you could say the probability of first seeing the sixth face on the $x$th roll (with $x \ge 6$) is $$p(x)=\frac{6!\,S_2(x-1,5)}{6^x}$$ where $S_2(\,,\,)$ is a Stirling number of the second kind, since you want to have seen a total of five distinct faces after $x-1$ rolls, followed by seeing the final face on the $x$th roll. You would get an expectation of $$6\times\frac{720\times 1}{46656}+ 7\times\frac{720\times 15}{279936}+8\times\frac{720\times 140}{1679616}+9\times\frac{720\times 1050}{10077696}+\cdots$$ and this infinite sum also turns out to be $14.7$.