This Week's Fiddler: July 17, 2026

Posted on July 17, 2026

Problem

Congratulations to Fiddler Nation for making it to the semifinals of the World Cup! All four teams that made it this far are equally matched in that they each possess the same total amount of “energy.” In advance of each semifinal game, teams must independently decide how much of their energy to allocate to the match; all remaining energy goes toward the finals. The team that spends more energy in any given game will win. The semifinals and finals occur so close in time that teams can’t recuperate any of their energy in between.

You’ve heard that the managers for the other three teams are abysmal and have no idea how to allocate their teams’ energy. Each of the other managers will independently pick a random percentage between 0 and 100 and allocate that portion of their team’s energy to the semifinal game; the rest of that team’s energy will go toward the final.

Since you’re the cleverest manager of the bunch, you can choose an optimal strategy that will maximize Fiddler Nation’s probability of winning the World Cup. What is this optimal probability?

Main Solution

Let Fiddler Nation allocate a fraction \(x\) of its energy to the semifinal and \(1-x\) to the final. To win the World Cup, we must win both the semifinal and the final.

In the semifinal, our opponent is an "abysmal" manager who picks a random fraction \(X \sim U(0, 1)\). We win the semifinal if \(x > X\), which happens with probability \(x\).

If we win, we face the winner of the other semifinal in the final. Both teams in the other semifinal were abysmal, picking \(Y_1, Y_2 \sim U(0, 1)\) respectively. The winner of that match used an amount of energy \(W = \max(Y_1, Y_2)\) and thus has \(1-W\) energy remaining for the final. The CDF of \(W\) is \(P(W \le w) = w^2\), so the CDF of the remaining energy \(R = 1-W\) is:

\[ F_R(r) = P(1-W \le r) = P(W \ge 1-r) = 1 - (1-r)^2 = 2r - r^2. \]

We win the final if our remaining energy \(1-x\) is greater than the opponent's remaining energy \(R\). Since the other semifinal is independent of ours, the total probability of winning is:

\[ P(x) = P(X < x) \cdot P(R < 1-x) = x \cdot (2(1-x) - (1-x)^2) = x(1-x^2) = x - x^3. \]

To maximize this, we take the derivative and set it to zero: \(1 - 3x^2 = 0\), which gives \(x = 1/\sqrt{3}\). The optimal probability is:

\[ P = \frac{1}{\sqrt{3}} \left(1 - \frac{1}{3}\right) = \frac{2}{3\sqrt{3}} \approx 0.3849. \]

Answer: \(\displaystyle\boxed{\frac{2}{3\sqrt{3}}}\), approximately \(0.3849\).

This Week's Extra Credit

Fiddler Nation is in the quarterfinals. Eight teams total. Each abysmal manager picks a random percentage of their remaining energy for each match. FN must draw up its strategy \((x, y, z)\) in advance, where \(x+y+z=1\).

Extra Credit Solution

For Fiddler Nation to win, it must win three consecutive matches. Let our allocations be \(x, y, z\).

  1. Quarterfinal: Opponent spent \(X_{QF} \sim U(0, 1)\). \(P(\text{win QF}) = x\).
  2. Semifinal: Opponent won their QF. They spent \(M = \max(U_1, U_2)\) in QF and thus had \(1-M\) left. Crucially, they now spend a random fraction \(U_3\) of that remaining energy: \(X_{SF} = U_3(1-M)\). To find the CDF \(F_{SF}(s)\), we integrate: \[ F_{SF}(s) = \int_0^1 P(U_3(1-m) \le s) 2m \, dm = \int_0^{1-s} \frac{s}{1-m} 2m \, dm + \int_{1-s}^1 2m \, dm \] The first term evaluates to \(2s(s - 1 - \ln s)\) and the second to \(2s - s^2\). Adding them yields \(F_{SF}(s) = s^2 - 2s \ln s\). (The \(\ln s\) appears because the managers only spend a fraction of their remaining energy, rather than the whole thing as in the main problem's final).
  3. Final: Opponent won their QF and SF. To find the distribution of their remaining energy \(Z\), we first find the joint PDF of a QF winner's SF allocation (\(X\)) and Final allocation (\(Z\)). Since their total remaining energy after QF (\(X+Z\)) has density \(2(1-(x+z))\), and they pick a random fraction for SF, the joint density is \(f(x, z) = \frac{2(1-x-z)}{x+z}\).

    A team wins the SF if their \(X\) is greater than their opponent's. The CDF of \(Z\) for the winner of the SF is: \[ F_Z(z) = 4 \int_0^z \int_0^{1-z'} \frac{1-x-z'}{x+z'} (x^2 - 2x \ln x) \, dx \, dz' \] This double integral represents the probability that a team has \(Z \le z\) and that they were the one who spent more energy in the SF match. (The factor of 4 comes from the two possible winners and the factor of 2 in the joint density). We evaluated this numerically to find the optimal strategy.

The total winning probability is \(P = x \cdot (y^2 - 2y \ln y) \cdot F_Z(z)\). Numerically optimizing this yields:

\[ x \approx 0.5197, \quad y \approx 0.2296, \quad z \approx 0.2507. \]

Extra credit answer: approximately \(\boxed{0.2816}\).

Interactive: World Cup Strategy

Adjust your energy allocation to see your probability of winning. Note: the sliders for the Extra Credit will automatically balance so that \(x+y+z=100\%\).

Main Problem (Semifinals)

Final allocation: 42.3%

Win Probability: 38.49%

Extra Credit (Quarterfinals)

Final allocation (\(z\)): 25.0%

Win Probability: 28.16%

More Fiddlers: Previous | Next

Back to blog