You toss a fair die three times. What is the expected value of the largest of the three outcomes?
My approach is the following:
calculate the probability of outcome when $\max=6$, which is
$$P(\text{at least one $6$ of the three rolls}) = 1 - P(\text{no }6) = 1 - (5/6)^3$$
and then calculate the probability of outcome when $\max=5$, which is
$$P(\text{at least one $5$ of the three rolls & $5$ is max}) = 1 - P(\text{no $5$ & $5$ is max}) = 1 - (4/6)^3.$$
I wonder if this approach is right.