I pick a number n, if you guess it, I pay you $n. What is the fair value of the game?

This is from Mark Joshi's classic book. The full question is:

"I pick a number n from 1 to 100. If you guess correctly, I pay you $n and zero otherwise. How much would you pay to play this game?"

Joshi offers a solution, but I am struggling with it. From what I understand, the person picking the number has incentive to pick lower numbers as this will result in lower payoffs. However, low numbers will likely be selected by the player so the number should not be too low. Joshi suggests the following as the expectation of the game:

$$\Big(\sum_{i=1}^{100}\frac{1}{i}\Big)^{-1}$$

Not sure if anyone could with the intuition on how the solution was obtained. I guess it arises as the initial person picking the number should pick with decaying probability going from 1 to 100?

Thanks


The intuition is that in an optimal strategy, the picker should be indifferent to what the guesser chooses.

Suppose we just take $n=3$ for simplicity. Suppose the picker chooses $1$ with probability $p_1$, chooses $2$ with probability $p_2$, and $3$ with probability $p_3$. The selection of $p_1, p_2, p_3$ constitutes the picker's strategy.

The indifference criterion means that $1p_1=2p_2=3p_3$. However, also $p_1+p_2+p_3=1$. To solve, plug in and get $$p_1+\frac{1}{2}p_1+\frac{1}{3}p_1=1$$ Hence, $p_1=(1+\frac{1}{2}+\frac{1}{3})^{-1}$. This is also the average amount that the guesser wins, regardless of which number guessed. This is also the expected value of the game.


Here is a rigorous justification for the answer. First, note that this is a zero-sum game - my gain is the negative of your loss. It's clear that I should never play a deterministic strategy - you can simply play adversarially by always avoiding my deterministic guess. Should you play deterministically? It's not clear yet, but if you are ever going to play a deterministic strategy, that strategy has to always play 1, since that minimizes my gain/your loss. Then let's think about randomized strategies - is there a randomized strategy that is better for you than always playing 1? A randomized strategy for a player is just a probability distribution according to which the player either picks or guesses the number. Let my strategy $P$ be $<p_1,...,p_{100}>$, where $p_i$ denotes the probability that I guess $i$. Now there is a result in game theory that says that in a 2-player zero-sum game, to calculate player A's optimal strategy, we can examine each of player B's deterministic strategies, calculate the payoff of A, and maximize the minimum of those payoffs. (another result is that in a 2-player zero-sum game, if both players play optimally, then they can publish their strategies and it would not affect the expected payoff, which is why I assume that both players know the other play's strategy). You have 100 deterministic strategies. If you always play 1, then my exp. payoff is $p_1$; if you always play 2, then my exp. payoff is $2p_2$; ...; if you always play $i$, then my exp. payoff is $ip_i$. Thus, I want to maximize the minimum among $p_1,2p_2,...,100p_{100}$, subject to $p_1+p_2+...+p_{100}=1$, and all $p_i\geq 0$. Clearly we should set them equal, and that gives $$p_k=\frac{1}{k}\frac{1}{\sum_{i=1}^{100}\frac{1}{i}}$$ The payoff is then $$\frac{1}{\sum_{i=1}^{100}\frac{1}{i}}$$ By the way, this is lower than 1, so you should not play deterministically.