Expected max value of up to 3 dice roles

probability

You may toss a fair dice up to 3 times. You are trying to maximize the value of the final dice roll. What is the expected value of your last dice roll?

I'm not sure how to approach this. I think intuitively, I think it's 4.5 (because 3 dice rolls, so expected value at 1.5, 3, and 4.5) but I'm not sure. I thought maybe it would be similar to this question about expected max value of 3 dice but I couldn't put it together.

Best Answer

The optimal strategy when you have a choice to select an independant random variable $Y$, after seeing a random variable $X$, with the goal to maximize the expected value, is take $Y$ if $X<\mathbb{E}[Y]$, and otherwise take $X$. If we let $Z$ denote the final value after doing this, we have that $$\mathbb{E}[Z]=\mathbb{E}[XI(X\ge \mathbb{E}[Y])]+\mathbb{P}(X<\mathbb{E}[Y])\mathbb{E}[Y]. $$

We have that the expected value of a single dice roll is $3.5$. Using the above we, we compute the expected return of atmost two dice roles is $$\frac{1}{6}(4+5+6)+\frac{3}{6}3.5=4.25$$

Thus, when deciding whether to keep the first roll, or to try with the other two dice, its optimal to keep it if its greater than $4.5$. Thus the result for three rolls is $$\frac{1}{6}(5+6)+\frac{4}{6}4.25=4.66...$$

Related Question