Maths Olympiad Prep

Library / /1372 of 1394

, 2018

Combinatorics Difficulty 6.3 National Olympiad Prove it United States

Problem:
You are the first lucky player to play in a slightly modified episode of Deal or No Deal! Initially, there are sixteen cases marked 11 through 1616. The dollar amounts in the cases are the powers of 22 from 21=22^{1} = 2 to 216=655362^{16} = 65536, in some random order. The game has eight turns. In each turn, you choose a case and claim it, without opening it. Afterwards, a random remaining case is opened and revealed to you, then removed from the game.
At the end of the game, all eight of your cases are revealed and you win all of the money inside them.
However, the hosts do not realize you have X-ray vision and can see the amount of money inside each case! What is the expected amount of money you will make, given that you play optimally?

Solution

Solution:
Firstly, note that it is always optimal for you to take the case with the largest amount of money. To prove this rigorously, consider a strategy where you don't - then change the first move where you deviate to taking the maximal case. This can only increase your return.

We calculate the probability f(n,k)f(n, k) that, if there are nn cases numbered 1,,n1, \cdots, n in increasing order of value, that you will take case kk in the course of play. We claim that f(n,k)=k1n1f(n, k) = \frac{k-1}{n-1} and prove this by induction on n/2n/2 (nn always even). The base case n=2n=2 is true because you will always take case 22 and leave case 11. Then, for the general nn, you will always take case nn (so f(n,n)=1f(n, n) = 1). Afterward, one case at random will be removed. When calculating f(n,k)f(n, k) there is a n1kn1\frac{n-1-k}{n-1} probability a case numbered greater than kk is removed, which inductively gives a probability f(n2,k)f(n-2, k). Also, there is a k1n1\frac{k-1}{n-1} probability a case numbered less than kk is removed, which inductively gives a probability f(n2,k1)f(n-2, k-1). We can compute
f(n,k)=n1kn1f(n2,k)+k1n1f(n2,k1)=n1kn1k1n3+k1n1k2n3=k1(n1)(n3)(n1k+k2)=k1n1 \begin{aligned} f(n, k) & = \frac{n-1-k}{n-1} f(n-2, k) + \frac{k-1}{n-1} f(n-2, k-1) \\ & = \frac{n-1-k}{n-1} \cdot \frac{k-1}{n-3} + \frac{k-1}{n-1} \frac{k-2}{n-3} \\ & = \frac{k-1}{(n-1)(n-3)}(n-1-k+k-2) \\ & = \frac{k-1}{n-1} \end{aligned}
as desired.

Finally, we must find i=116f(16,i)2i1\sum_{i=1}^{16} f(16, i) 2^{i-1}. Using standard procedures, we get
i=116f(16,i)2i1=i=115i152i=i=115i15(2172i+1)=115(15)(217)115(i=1152i+1)=217115(2174)=14217+415 \begin{aligned} \sum_{i=1}^{16} f(16, i) 2^{i-1} & = \sum_{i=1}^{15} \frac{i}{15} 2^{i} \\ & = \sum_{i=1}^{15} \frac{i}{15}\left(2^{17}-2^{i+1}\right) \\ & = \frac{1}{15}(15)\left(2^{17}\right)-\frac{1}{15}\left(\sum_{i=1}^{15} 2^{i+1}\right) \\ & = 2^{17} - \frac{1}{15}\left(2^{17}-4\right) \\ & = \frac{14 \cdot 2^{17} + 4}{15} \end{aligned}

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: MathNet, licensed CC-BY-4.0. Statement reproduced verbatim; metadata (topic, difficulty) added by this project.