Preface:
Ever since I read the brilliant answer by Mike Spivey I have been on a mission for re-solving all my probability questions with it when possible. I tried solving the Coupon Collector problem using Recursion which the community assisted on another question of mine. Now, I think I have come close to completely understanding the way of using recursion. But.....
Question:
This is from Stochastic Processes by Sheldon Ross (Page 49, Question 1.14). The question is:
A fair die is continually rolled until an even number has appeared on 10 distinct rolls. Let $X_i$ denote the number of rolls that land on side $i$. Determine :
- $E[X_1]$
- $E[X_2]$
- PMF of $X_1$
- PMF of $X_2$
My Attempt: Building on my previous question, I begin:
Let $N$ denote the total number of throws (Random Variable) and let $Z_{i}$ denote the result of the $i^{th}$ throw. Then:
\begin{eqnarray*} E(X_{1}) & = & E\left(\sum_{i=1}^{N}1_{Z_{i}=1}\right)\\ & = & E\left[E\left(\sum_{i=1}^{N}1_{Z_{i}=1}|N\right)\right]\\ E(X_{1}|N) & = & E(1_{Z_{1}=1}+1_{Z_{2}=1}+\cdots+1_{z_{N}=1})\\ & = & \frac{N-10}{3}\\ E(X_{1}) & = & \frac{E(N)-10}{3} \end{eqnarray*}
To Find : $E(N)$
Let $W_{i}$ be the waiting time for the $i^{th}$ distinct roll of an even number. Then:
$$E(N)=\sum_{i=1}^{10}E(W_{i})$$
Now,
\begin{eqnarray*} E(W_{i}) & = & \frac{1}{2}(1)+\frac{1}{2}(1+E(W_{i}))\\ E(W_{i}) & = & 1+\frac{E(W_{i})}{2}\\ \implies E(W_{i}) & = & 2\\ \therefore E(N) & = & \sum_{i=1}^{10}2\\ & = & 20\\ \therefore E(X_{1}) & = & \frac{10}{3}\\ & & \blacksquare \end{eqnarray*}
The exact same procedure can be followed for $E(X_2)$ with the same answer. The answer matches the one given in the book. I am confused how to go from here to get the PMFs.
Note : If possible, please provide me an extension to this answer for finding the PMFs rather than a completely different method. The book has the answer at the back using a different method. I am not interested in an answer as much as I am interested in knowing how to continue this attempt to get the PMFs.