Order Statistics and Extremes
2 min read
"What's the expected largest of five draws?" — questions about maxima, minima, and ranks form their own genre, and they all yield to one opening move: work with the CDF of the extreme, not its density.
The CDF trick
For iid draws with CDF :
Everything else follows. The max-of-two-dice question from the practice bank was this with ; the general recipe is identical for any distribution.
Uniforms: the clean benchmark
For iid Uniform draws, the -th smallest has expectation
— the points split the interval into statistically identical gaps, each of expected length . So the expected max of 4 uniforms is ; the expected minimum is . This spacings symmetry is the same argument that placed the first ace at position — one idea, many costumes. Exponentials have their own beautiful version: the minimum of exponentials is exponential with summed rates (the first of many alarms rings at the combined rate), and of unit exponentials is — the harmonic number from the series lesson.
Records: how often is a new maximum set?
Watching iid draws arrive, the -th is a record (beats all before it) with probability — by symmetry, each of the first is equally likely to be the largest. So expected records among draws is : about 5 records in 100 draws, 7 in 1,000. Records are logarithmically rare — the crisp probabilistic answer to why "all-time highs" cluster early in any series and why a new "best backtest ever" among thousands tried means very little (selection over trials inflates the best by roughly the max-of- machinery above).
Extremes and quoting
Two desk-shaped consequences:
- Expected max grows slowly. For normals, : the worst of 252 trading days is only ~3.3σ if returns were normal — observed worst days are far worse, which is the fat-tails lesson quantified through extremes. Extreme value theory (Gumbel/Fréchet limits) formalizes this; for interviews, the scaling plus the caveat is enough.
- Winner's-curse sizing: the highest of noisy estimates overshoots the truth by roughly the expected max of the noise — the game-theory lesson's auction shading, now with a formula behind it.
The interview version
"Five uniform random numbers on [0,1]. Expected value of the largest? The second largest? P(largest > 0.9)?" — , , and . Three answers, two tools (spacings, CDF-power), ten seconds each. Then the standard escalation: "you see the values one at a time and must stop on one — how does the max help you?" — and you're back at the secretary problem, which is order statistics plus optimal stopping. The genre is small; these tools cover it.