Prediction Intervals Versus Confidence Intervals
Two different ranges a regression can report that are often confused: a confidence interval bounds where the true average relationship lies, while a prediction interval — always wider — bounds where one new, individual observation is likely to actually fall.
Prerequisites: Confidence Intervals, The Classical Linear Regression Assumptions
A model predicts tomorrow's expected return from a factor at 0.5%. Ask "how confident are we in that 0.5% average," and you get one kind of range. Ask "how far might tomorrow's actual return land from that 0.5%," and you get a much wider one — the actual outcome on any single day is far noisier than the average tendency the model has estimated. These are genuinely different questions with genuinely different answers, and conflating them is one of the most common errors in reading a regression's output: a narrow confidence interval does not mean tomorrow's return will land close to the forecast.
An analogy: the average commute versus tomorrow's commute
A transit analyst can estimate, with fairly tight precision, that the average commute time on a given route is 32 minutes — with enough historical data, that average is pinned down quite precisely, maybe to within a minute either way. But that tells you almost nothing about how long your commute will take tomorrow: traffic, weather, and one-off delays mean any single day's commute could easily run anywhere from 20 to 50 minutes, even though the long-run average really is close to 32. The tight estimate of the average and the wide range for any one day's actual experience are both correct, simultaneously — they're answering different questions, and mixing them up leads to false confidence about what tomorrow actually holds.
The mechanics, one symbol at a time
For a regression prediction at a new point , both intervals are centered on the same point estimate , but their widths differ. The confidence interval for the average response reflects only the uncertainty in estimating the regression line itself:
which shrinks toward zero as the sample size grows — with enough data, you can pin down the average relationship almost exactly. The prediction interval for one new individual observation adds the leftover, irreducible noise around that average, , which never shrinks no matter how much data you collect:
In plain English: the only difference between the two formulas is that extra "+1" inside the square root for the prediction interval, representing the individual data point's own random scatter around the line — a source of uncertainty that more data can never eliminate, because it isn't about estimating the average better, it's about the fact that any one observation genuinely varies around that average by a random amount.
Worked example 1: a factor return forecast with a huge sample
A regression of daily returns on a factor, fit on 2,000 days, predicts at a particular factor level, with , close together and standard error terms giving a confidence interval of , i.e., roughly $0.45 to $0.55 per $100 invested — tightly pinned down, because makes the term almost vanish. But the residual standard deviation of daily returns around the fitted line, , is large — say 1.2 percentage points. The prediction interval is approximately , or roughly to — more than 20 times wider than the confidence interval, because tomorrow's individual return is dominated by day-to-day noise the model was never going to explain away, no matter how much historical data it was trained on.
Worked example 2: extending both intervals out to an unusual value
Suppose a second forecast is made at a factor value far from the historical average — an unusually extreme reading. The term in both formulas grows, widening both intervals somewhat, but the confidence interval still stays comparatively narrow (maybe to , versus to near the average) because it's still only tracking uncertainty about the average line's position. The prediction interval, by contrast, remains dominated by the same large term regardless — widening only modestly to something like to . The lesson holds at extreme just as it does near the average: the confidence interval reflects how well you know the line; the prediction interval reflects how much any individual point can deviate from that line, and that deviation stays large everywhere.
Picture two shaded bands around the fitted line in a plot like this one: a thin band hugging the line (the confidence interval) and a much wider band enclosing almost all of the actual scattered points (the prediction interval) — the gap between the two bands is the day-to-day noise no amount of data shrinks away.
What this means in practice
Confidence intervals matter when the question is about the model itself — is a factor's average effect reliably positive, is a fair-value estimate well-pinned-down. Prediction intervals matter when the question is about an actual future outcome — how much could tomorrow's P&L on a single position realistically deviate from its expected value, which is the relevant range for setting stop-losses or sizing risk. Reporting a confidence interval when a decision actually depends on individual-outcome risk is a common way to understate real uncertainty and get blindsided by normal, expected day-to-day variation.
A confidence interval bounds the uncertainty in the average relationship a regression estimates, and shrinks toward zero with more data. A prediction interval bounds where one new individual observation is likely to land, and stays wide — often dramatically wider — because it must include the data's own irreducible scatter around the average, a source of uncertainty no amount of additional data can remove.
The classic mistake is reporting a tight confidence interval and treating it as if it describes how much an actual future outcome might vary — for instance, quoting a narrow confidence band on a return forecast as if it were the plausible range for tomorrow's actual return. A large sample can make a confidence interval arbitrarily narrow while the prediction interval, governed by the data's inherent noise rather than sample size, stays wide regardless. Always check which of the two questions is actually being asked before reading off a range.
Related concepts
Practice in interviews
Further reading
- Kutner, Nachtsheim, Neter & Li, Applied Linear Statistical Models, ch. 2
- Wasserman, All of Statistics, ch. 13