Books · The Fiddler: Solutions
Chapter 31
How Much Does Game 1 Matter?
You and an evenly matched opponent begin a best-of-seven series: each game is an independent coin flip, and the first to four wins takes it. How much does Game swing your chances, that is, what is your probability of winning the series after winning Game minus your probability after losing it?
The Fiddler, Zach Wissner-Gross, October 31, 2025(original post)
Solution
Game changes the outcome of the series only when the other six games split evenly, three apiece; in every other case the series is already decided the same way regardless of Game . So the swing equals the probability that the remaining six games are a – tie:
The computation
Encode the series as a recursion: is your chance of taking it when you still need wins and the opponent needs , each game a coin flip. The swing is your series-win probability after winning Game minus after losing it.
from functools import lru_cache
from fractions import Fraction as F
@lru_cache(None)
def win(a, b): # prob you win; you need a more wins, opp needs b
if a == 0: return F(1)
if b == 0: return F(0)
return (win(a-1, b) + win(a, b-1)) / 2
print(win(3, 4) - win(4, 3)) # 5/16 (after winning vs losing Game 1)
Extra Credit
For a much longer series, first to wins (a best-of-), what is the Game swing for large ?
Solution
The same argument holds: Game decides the series exactly when the other games split each, so the swing is By the central binomial estimate with , A single game’s influence fades only like : at the swing is still about .
The computation
The swing is exactly the probability the other coin flips tie apiece, a central-binomial probability; compute it for growing and watch it track .
from math import comb, sqrt, pi
for N in (4, 100, 1000):
print(N, comb(2*N-2, N-1)/4**(N-1), 1/sqrt(pi*N))