One extra coin
Two gamblers sit across from each other. Player A has 6 fair coins. Player B has 5. They both flip all their coins at once. A wins if she gets strictly more heads than B.
How likely is that?
Try it. Watch the rate converge:
Drag the slider to change . Whether B has 1 coin or 12, A's win rate stubbornly sits at around 50%.
The symmetry trick
Computing directly requires summing over all possible head counts for both players. With and coins, that's a double sum of binomial coefficients — messy.
There's a faster approach. Set aside A's last coin. Now both players have exactly coins each. Compare their head counts. Three things can happen:
After both players flip their first coins:
: A has more heads than B
: A has the same number of heads as B
: A has fewer heads than B
By symmetry, . Both players have fair coins, so "A beats B" and "B beats A" are equally likely. Call this probability , and let .
Since the three events cover everything: .
The proof never computes or . It doesn't need to. The structure of the problem forces the answer to be 1/2 regardless of those values. Symmetry arguments let you skip the computation entirely.
Why this matters for interviews
This problem appears in nearly every quant finance interview prep book. Interviewers use it to test whether candidates reach for brute-force computation or pause to find structural shortcuts.
The lesson generalizes. Whenever a problem has a natural symmetry, exploiting it can collapse pages of algebra into a few lines.
The takeaway
When you see asymmetry in a problem (one player has more coins, one team is bigger), ask: "What if I remove the asymmetry?" Stripping down to the symmetric core often reveals a clean decomposition into cases. The algebra that looked scary cancels itself out. This technique shows up in independence arguments, conditional probability, and throughout competition mathematics.