There are $n$ players playing the following game:
- There is a $\$1$ entry fee for each of the $n$ players.
- There are $m$ teams in a Sports League (say NFL for example). Each week, each of the $n$ players chooses one of the $m$ teams in the league. Different players can choose the same team if they wish.
- A player gets through to the next round if their team wins, otherwise, they're out.
- A player can't choose a team who they have already chosen previously.
- This process continues until there is either one player left or there are no players left and the process repeats itself from the start.
What is the optimal strategy for this game? What strategy maximises your return? To make things easier, we can assume we possess the probabilities of each team $j$ winning in week $i$ and that they are independent for all $i, j$.
Intuitively, I feel like the following are important:
- Choosing a team whose future expected value is poor. As in, if a "bad" team is playing "one of the worst" teams, then it may be a good idea to choose this team this week while they have a decent chance of winning.
- Going against the grain. A lot of players will likely pick the same teams (with good chance of progressing), but it may be good to go against the grain. If you have a unique pick, then there is a chance (probably slim) of scooping the pot that week. Even if you don't scoop it, you now have the team remaining that the majority of people chose that week, which will give you a low owned pick in the future.
- The strategy will depend on $n$ a fair bit, as this will likely dictate how long the process continues for, and if we'll ever "need" to take a big gamble and choose the bad teams
For one entry, you can maximize the overall survival probability by solving a minimum sum linear assignment problem in a bipartite graph with a left node for each team $i$, a right node for each week $j$, and an arc $(i,j)$ if team $i$ plays in week $j$. The overall survival probability to be maximized is a product of win probabilities, but you can transform to minimization of a linear function by taking each arc weight to be the negative log of the win probability. Explicitly, the problem is to minimize $$-\sum_{i,j} \log(p_{ij}) x_{ij}$$ subject to \begin{align} \sum_j x_{ij} &\le 1 &&\text{for all $i$} \\ \sum_i x_{ij} &= 1 &&\text{for all $j$} \\ x_{ij} &\in \{0,1\} &&\text{for all $i$ and $j$} \end{align}
For an optimal strategy with multiple entries, see Surviving a National Football League Survivor Pool (2017) by David Bergman and Jason Imbrogno.