CAPM — risk and return in one equation
▸ Pretest — guess, even if you don't know
A stock has β = 1.5 vs. the S&P 500. If the risk-free rate is 4% and the expected market return is 10%, what does CAPM say the expected return on the stock should be?
The economic story
The Capital Asset Pricing Model (Sharpe 1964, Lintner 1965, Mossin 1966 — sometimes called Sharpe-Lintner CAPM) gives the simplest "right answer" for what a stock's expected return should be:
In words: the expected return on stock equals the risk-free rate, plus beta times the market risk premium. Concrete: risk-free rate 4%, expected market return 10%, beta 1.5 → (the pretest).
Components, read aloud:
- — "the expected return on asset ": the return you'd get on average, per A1-00's notation
- — "r sub f", the risk-free rate: what you earn taking no risk at all (e.g., a 1-year Treasury yield)
- — the expected market return minus the risk-free rate: the market risk premium (also called the equity premium), the extra return the whole stock market pays for bearing its risk
- — "beta sub ", the asset's sensitivity to market moves: beta 1.5 means when the market moves 1%, this stock tends to move 1.5%
The logic: you should be compensated only for risk you can't diversify away.
Suppose you hold a well-diversified portfolio — many stocks across many industries. Each stock's idiosyncratic risk (risk specific to that one company, like Apple-specific news) cancels out against the others. Only the market risk — the part correlated with everything else — remains. So in equilibrium, the market only pays a risk premium for the un-diversifiable part. That part is exactly what beta measures.
Why this is beautiful (and why it's wrong)
Beautiful because it gives a clean prediction:
- A stock's expected return depends only on its beta.
- Two stocks with the same beta should have the same expected return, regardless of any other property (industry, size, valuation).
- High-beta stocks should outperform low-beta stocks by the market risk premium times the beta gap.
Wrong in practice:
- Empirically — in the actual data — low-beta stocks outperform what CAPM predicts (the "low-beta anomaly," Frazzini & Pedersen 2014).
- High-beta stocks underperform predictions.
- Stocks with the same beta but different sizes (small vs. large cap — cap is market capitalization, the company's total market value) have systematically different returns. Pure CAPM says this shouldn't happen.
Fama and French (1992) put a fork in single-factor CAPM. They showed that size and book-to-market — a company's accounting value divided by its market price; high means the stock is cheap — explain cross-sectional returns (the differences in return between stocks) better than beta alone. This is the launching point for multi-factor models (next several lessons in D2).
But CAPM is still the right baseline — every more-sophisticated model is a correction to it.
How to use CAPM in practice
Three practical applications:
1. Hurdle rate for evaluating a stock
A hurdle rate is the minimum return that makes holding a stock worthwhile. What return is reasonable to expect?
In words: expected return equals the risk-free rate plus beta times the market risk premium (MRP — the same from above, just abbreviated). With , MRP = 6%, : expected return .
If you believe the stock will return more than this, it's underpriced (positive alpha — return above what its market exposure explains). If less, overpriced.
2. Required return for capital budgeting
Companies use CAPM to set the discount rate — the rate used to shrink future cash into today's money — when computing a project's NPV (net present value, the total worth of a project's future cash flows in today's terms):
In words: for each future period , take that period's cash flow and divide it by once for every period you have to wait; the is A1-00's for-loop, adding those discounted amounts up. Concrete: 100 dollars arriving in 2 years, discounted at 10% per year, is worth dollars today.
Higher business risk means higher , which means a higher required return, which means a lower NPV for the same cash flows.
3. Decomposing strategy returns
Take a strategy's returns ("r sub s") and regress them on the market's returns — fit the straight-line regression from A2-06:
In words: the strategy's return equals alpha ( — the intercept, the return not explained by market exposure; this is your claimed edge), plus beta times the market's return, plus (epsilon — the leftover noise the fit doesn't explain). Then read the fitted numbers:
- with reasonable: real edge (subject to all our hypothesis-testing caveats).
- , : you're effectively holding the market.
- , : you're paying for leveraged market exposure (worse than buying SPY on margin).
The market risk premium — how big is it really?
The historical equity risk premium (US, 1928–present): roughly 5–6% per year. Globally and over longer windows: 3–5%.
This is the biggest single edge available to long-term investors. Compound 5% per year for 30 years and you have ~4.3× your money in real terms — that is, after inflation.
Forward-looking estimates (Damodaran, Asness, others) suggest the future MRP might be lower (3–4%) than historical (5–6%), because current valuations are high. Reasonable people disagree by 2–3 percentage points. The right answer is "use a range and stress-test."
Why CAPM isn't enough
Fama-French (1992) showed that:
- Size effect — small caps earned more than CAPM predicted in the historical data FF studied (though this premium has weakened substantially since publication).
- Value effect — high book-to-market ("value" — cheap relative to accounting worth) stocks earn ~5% per year more than CAPM predicts.
This led to the Fama-French 3-Factor model: market + size (SMB, "small minus big") + value (HML, "high minus low"). Later extended to 5 factors (adding profitability and investment quality). We'll meet each in subsequent lessons.
The pattern is: CAPM is a useful baseline. Real-world expected returns are explained by multiple factors. The whole field of "factor investing" / "smart beta" is built on this.
The most important practical takeaway
Always benchmark a strategy's return against the CAPM prediction, not against zero. Example: risk-free rate and a 12% market return, so MRP = 8%. A strategy earns 15% per year with . Its CAPM-required return is — so its alpha is −1%, despite the impressive-looking headline number. It's not generating edge; it's just leveraging beta inefficiently. Most retail strategies fall into this trap.
We'll see this rigorously in D4 (backtesting methodology) when we discuss benchmark choice.
Try it
Turn the CAPM equation into code:
Implement capm_expected_return(rf, beta, market_return) = rf + beta * (market_return - rf). Rates are decimals (0.04 = 4%). Sanity-check the edge cases: beta 0 should earn the risk-free rate, beta 1 should earn the market.
⧉ Review cardWhat is the CAPM equation?
⧉ Review cardWhat's the intuition for why CAPM uses beta as the only risk measure?
⧉ Review cardWhat is the historical US equity risk premium (MRP)?
⧉ Review cardWhat did Fama-French (1992) show was missing from CAPM?
⧉ Review cardWhat's the practical mistake CAPM helps you avoid?
Predict before the next lesson
Tomorrow we'll look at regression diagnostics — when does OLS (ordinary least squares, the standard line-fitting method from A2-06) lie to you? Predict:
- If two of your predictors are perfectly correlated, what happens to their estimated coefficients?
- What does a "fat-tailed" residual distribution (residuals — the leftover errors after the fit) imply about hypothesis tests on the regression?
◈ Calibration check
Could you compute a stock's CAPM-expected return given its beta and current rates?
1 = guessing · 5 = could teach it
⏻ End of lesson
Mark it read to book its 5 review cards into your deck.