The Twin Knights: Meeting in the Tournament
King Arthur holds a jousting tournament with 8 knights, all evenly matched. The tournament is a standard single-elimination bracket (like a tennis tournament): 8 knights are randomly seeded into the bracket, and they joust in pairs each round until one champion remains.
Among the 8 knights are the twin brothers Balin and Balan.
What is the probability that Balin and Balan meet each other in some match during the tournament?
(Assume each match is a 50-50 coin flip, and the bracket is fixed at the start — i.e., who plays whom in each round is determined by the initial random seeding.)
Answer: Twin Knights: Meeting in the Tournament
Key Idea / Intuition
The elegant trick is to avoid tracking the bracket structure round by round, and instead think about it from a symmetry/counting perspective. Among all possible pairs of knights, the tournament will produce exactly 7 matches in total (since each match eliminates one knight, and we need to eliminate 7). By symmetry, every pair of knights is equally likely to be the pair that meets in any given match slot. So the probability that Balin and Balan are one of those 7 matched pairs is simply .
This "all pairs equally likely" symmetry argument is the beautiful shortcut — no need to case-split on quarterfinals, semifinals, and finals.
Formal Proof / Solution
Setup. The bracket assigns 8 knights into 4 first-round pairs, then 2 semifinal pairs, then 1 final pair. The initial seeding is uniformly random.
Total matches. A single-elimination tournament with 8 players has exactly
Symmetry argument. Consider the following perspective: at the start, randomly order all 8 knights. The tournament bracket pairs them as:
- Round 1: positions
- Round 2 (semis): winners of those pairs meet
- Round 3 (final): last two meet
But here is the key insight. Since all knights are evenly matched (each match is 50-50), the 7 matches that actually occur correspond to 7 pairs of knights. By a symmetry argument, every pair of the original 8 knights is equally likely to appear as one of these 7 matched pairs.
Why? Think of it this way: label the 8 initial slots uniformly at random. The structure of who plays whom in later rounds is determined by earlier random coin flips, which (combined with the uniform initial seeding) treats all pairs symmetrically. No pair has any structural advantage over any other.
Counting. There are possible pairs. Exactly 7 of them will actually meet in the tournament. By symmetry, the probability that is among those 7 pairs is:
Sanity check via direct calculation. One can also compute round by round:
- Quarter-final: Balin is in some slot. Balan is equally likely to be in any of the 7 remaining slots, of which exactly 1 is Balin's quarter-final opponent.
- Semi-final: They must both win their QF (probability ), and their bracket must place them in the same semi (probability of the remaining 6 knights = Balan is among the 2 who face Balin's semi slot). Working this out carefully:
- Final: Similarly, .
Summing:
The symmetry argument gives the answer instantly; the round-by-round calculation confirms it.
Source: Fifty Challenging Problems in Probability with Solutions, Frederick Mosteller, Problem 17