The Student's t Distribution
What the bell curve turns into when you have to estimate the spread from the same small sample you are testing. Fatter tails, wider intervals, and a much better model for daily returns than the normal.
Prerequisites: The Normal Distribution, Standard Deviation
Here is a problem that shows up on every trading desk. A strategy has run for two weeks and made money on average. Is that real, or is it luck? The textbook move is to count how many standard deviations the average sits above zero. But you do not know the strategy's true standard deviation — you have to estimate it from the same fourteen numbers. You are dividing an uncertain thing by another uncertain thing, and the usual bell-curve answer quietly assumes the denominator is known exactly. It isn't. Ignore that and you will call flukes significant.
The analogy: a ruler you also had to measure
Imagine measuring a table with a tape measure, and you are confident the table is 210 centimetres. Now imagine the tape itself was cut by hand and might be a few percent short or long — and the only way to check it is to measure the same table again. Every measurement now carries two uncertainties: the reading, and the ruler.
Sometimes the wobbly ruler runs short, which makes the table look longer than it is. Because you divide by the ruler's length, a small ruler produces a big answer, and small rulers happen often enough to matter. That is precisely why the resulting distribution has fatter tails than the bell curve: extreme results are manufactured not just by extreme data, but by accidentally small estimates of the spread.
William Gosset worked this out in 1908 while testing barley at Guinness, and published under the pen name "Student" because his employer would not let him use his own.
Writing it down
Take observations from a normal population. Write for the sample average, for the sample standard deviation (the usual formula, dividing by ), and for the unknown true mean you are testing against. Form
In words: how far the sample average sits from the hypothesised mean, measured in units of its own estimated standard error. If you replaced with the true standard deviation , this would be a standard normal. Because is itself random, it follows the t distribution instead.
The t distribution has exactly one shape parameter, written (Greek "nu") and called the degrees of freedom. Here : one observation's worth of information was spent estimating the mean, so only independent pieces are left to estimate the spread. Its density is
In words: the height of the curve falls off as a power of , not as . That single difference is everything. The normal's tail dies exponentially; the t's tail dies polynomially, which is far slower, so genuinely extreme values keep real probability.
Worked example 1: does this desk actually make money?
Ten trading days of P&L, in thousands of dollars:
Step 1 — the average. They sum to 70, so .
Step 2 — the deviations and their squares. Subtracting 7 from each gives . Squaring: , which sum to 862.
Step 3 — the sample standard deviation. Divide by : , so .
Step 4 — the standard error. .
Step 5 — the interval. With degrees of freedom, the 95 percent two-sided t multiplier is 2.262 (from a t table). The interval is
The lower end lands exactly on zero. You cannot claim the desk is profitable.
Now do it wrong. Use the normal multiplier 1.96 instead: . That interval excludes zero, and you would have reported a statistically significant edge. Same data, opposite conclusion, and the only difference was pretending you knew the volatility.
Worked example 2: how much fatter is "fat"?
Suppose daily returns have a standard deviation of 1 percent, and you want the odds of a single 6 percent down-day.
Under a normal. Six percent is 6 standard deviations. The normal probability of a 6-sigma move in one direction is . Invert it: one day in about one billion, or once every four million years.
Under a t with . A t distribution has variance , which here is , so its standard deviation is . To make it match a 1 percent daily volatility you scale it down by that factor, which means a 6 percent move corresponds to on the raw t scale. The tail probability past 8.49 for four degrees of freedom is .
Invert that: one day in about 1,890, which at 252 trading days a year is once every seven and a half years.
One billion years versus seven years, from the same volatility. That gap is why risk desks that model returns as normal are repeatedly surprised, and why the t is a standard drop-in replacement for the normal in Value at Risk (VaR) work.
Use the explorer below to see the curve the t is converging toward. Drag the coverage band out to 2 and 3 standard deviations and read off the percentages — those are the normal-tail numbers the t always beats.
What this means in practice
- Any small-sample claim. Backtest Sharpe over one quarter, a pilot A/B test, an execution-cost study on forty fills — use the t multiplier, not 1.96. The correction is largest exactly where people are most tempted to over-claim.
- A better return model. Fitting a t to daily equity returns typically lands somewhere around to . Those tails are what let you size a stop or a VaR limit that survives contact with reality.
- A warning about . With two or fewer degrees of freedom the variance is infinite; with one (the Cauchy) even the mean does not exist, and sample averages never settle down. If your fitted comes out near 2, standard risk arithmetic based on variance stops meaning anything.
- Regression output. Every coefficient t-statistic your regression package prints is this exact construction, with equal to observations minus fitted parameters. See Degrees of Freedom.
The t distribution is what the normal becomes when the denominator is estimated rather than known. Its one parameter, the degrees of freedom , controls how much extra tail you are charged for that ignorance. Small means wide intervals and fat tails; as grows past about 30, t and normal are practically the same curve.
The classic confusion is that "t is the small-sample normal". The sample size is incidental — what actually drives the t is that is random. Two consequences people get wrong. First, if you genuinely know (rare, but it happens in simulation), you use the normal no matter how tiny is. Second, and more damaging in finance: a large sample fixes the estimation problem but does not make returns thin-tailed. If daily returns really are t-distributed with , collecting ten more years of data does not turn them normal — it just measures the fat tail more precisely.
Related concepts
Practice in interviews
Further reading
- Wasserman, All of Statistics (ch. 9)
- Casella & Berger, Statistical Inference (ch. 5)
- Gosset ("Student"), The Probable Error of a Mean, Biometrika 1908