Given a regular dice game in which each side has an equal probability of $1/6$, you roll the dice. If you get an even number, you roll two dice now and if the sum of the new values is again even, you roll three dice now and this continues until you get an odd sum. This odd sum is your score. What's your average score per turn?
This problem really confuses me as I've been learning probability. What if you continuously get even sums?
These type of questions can usually be tackled using recursion. In this case consider the following:
As Peter well pointed out, the probability of rolling an odd sum is always $\frac{1}{2}$, and you have probability 1 of the game ending at some point. So let's say that $E$ is the expected value of the game, while $E_{n}$ is the expected value of the game given that your starting turn is throwing $n$ dice. First time rolling, game will finish if you roll an odd number. This happens with probability $\frac{1}{2}$ and $\mathbb{E}(\text{result}|\text{roll was odd})=3$, while with probability $\frac{1}{2}$ we will roll an even number and now the expected result will be the expected result of a game with two dice (what we called $E_{2}$).
So we write down the following:
$$E = \frac{1}{2}.3+\frac{1}{2}.E_{2}$$
Next step is to work out $E_{2}$, which following our reasoning (you can run the cases), renders:
$$E_{2} = \frac{1}{2}.7+\frac{1}{2}.E_{3}$$
which we can replace in our previous expression for $E$ resulting in: $$E = \frac{1}{2}.3+\frac{1}{2}.\frac{1}{2}.7+\frac{1}{2}.\frac{1}{2}.E_{3}$$
It's easy to see from here that:
$$E = \frac{1}{2}.3+\sum_{n=2}^{\infty}\frac{\mathbb{E}\left( \text{sum of n dice}|\text{sum is odd}\right)}{2^{n}}$$
Now I haven't found an analytical solution for this, but upon running the cases it looks as if for $n\geq2$, $\mathbb{E}\left( \text{sum of n dice}|\text{sum is odd}\right)=3.5n$
Now, if this is true then the answer would be:
$$E = \frac{1}{2}.3+3.5\sum_{n=2}^{\infty}\frac{n}{2^{n}}$$ $$E = \frac{27}{4}$$