For this problem, I found a very complicated solution. Are there any easier methods? I am asking mainly because the final answer was what I intuitively guessed before solving the problem. It is also surprising that after so much work I get such an intuitive result.
Problem: John keeps rolling a standard six-sided dice until it comes up as a 6. What is the expected number of dice rolls?
My Solution: The probability that John rolls only once is $\frac{1}{6}$. The probability that John rolls twice is $\frac{5}{6}\cdot\frac{1}{6}$. The probability that John rolls three times is $\frac{5}{6}\cdot\frac{5}{6}\cdot\frac{1}{6}$. Seeing the pattern, the probability that John rolls $k$ times is $\frac{1}{6} \cdot \left(\frac{5}{6}\right)^{k-1}$. We verify this by adding all $k$ from $1$ onwards to $\infty$ and checking if that is $1$. This works because positive integers are the only number of times that John can roll. $$\sum_{n=1}^{\infty} \frac{1}{6} \cdot \left(\frac{5}{6}\right)^{i-1} = 1$$What we want is the sum of the arithmetico-geometric sequence $$\sum_{n=1}^{\infty} \frac{i}{6} \cdot \left(\frac{5}{6}\right)^{i-1} = \hspace{1mm}?$$To get a better idea of what this sequence is, we expand out a few terms. $1 \cdot \frac{1}{6} + 2 \cdot \frac{5}{6}\cdot\frac{1}{6} + 3 \cdot \frac{1}{6} \cdot \left(\frac{5}{6}\right)^{2} + \cdots$. Now we factor the initial term, $\frac{1}{6} \left(1 + 2 \cdot \frac{5}{6} + 3 \cdot \left(\frac{5}{6}\right)^{2} + \cdots \right)$. We let $S = 1 + 2 \cdot \frac{5}{6} + 3\left(\frac{5}{6}\right)^{2} + \cdots$. We can now use the trick for any geometric sequence on this sequence. $\frac{5}{6}S = \frac{5}{6} + 2\left( \frac{5}{6}\right)^2 + 3\left(\frac{5}{6}\right)^{3} + \cdots$. Subtracting the second equation from the first gives us $\frac{1}{6}S = 1 + \frac{5}{6} + \left(\frac{5}{6}\right)^2 + \left(\frac{5}{6}\right)^3 + \cdots$. This leads to $S = 36$. The expression we want is $\frac{S}{6} = \boxed{6}$
Edit: My question is different than the other one because I am asking for an explanation on why the answer is the intuitive one and if there are any better methods to solve while that question is only asking for the answer.