Introduction

Every investor faces the same trade-off: higher potential reward comes with higher risk. But how much extra return should you demand for taking on extra risk? The Capital Asset Pricing Model (CAPM) answers that question with a single equation and a single number.

The key number is beta (β\beta). It measures how sensitive an asset's returns are to the overall market. A stock with β=1\beta = 1 moves in lockstep with the market index. A stock with β=2\beta = 2 swings twice as hard — both up and down. A stock with β=0\beta = 0 is uncorrelated with market moves altogether.

CAPM then says: the fair expected return of any asset is exactly determined by its beta. Plot every asset with beta on the horizontal axis and expected return on the vertical, and they should all lie on one straight line — the Security Market Line (SML). Drift above the line and the market will bid the price up until you fall back; drift below it and rational investors will sell.

The model was developed independently by William Sharpe (1964) and John Lintner (1965), building on Harry Markowitz's portfolio theory. Sharpe received the Nobel Prize in Economics in 1990.

Try It: The Security Market Line

The chart below shows the Security Market Line and a set of sample assets. Each asset's position is determined by its beta (β\beta, horizontal axis) and its expected return (vertical axis).

<!-- {{c_chart_container}} -->
<div class="controls">
  <label>{{lbl_rf}} <span id="rfVal">2%</span>
    <input type="range" id="rf" min="0" max="8" step="0.5" value="2">
  </label>
  <label>{{lbl_mrp}} <span id="mrpVal">6%</span>
    <input type="range" id="mrp" min="2" max="12" step="0.5" value="6">
  </label>
</div>
<canvas id="sml" width="560" height="340"></canvas>
<div id="legend" class="legend"></div>
<div id="info" class="info"></div>
/* {{c_layout}} */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, sans-serif; color: #222; background: #fff; }
.controls { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin-bottom: .8rem; }
label { font-size: .85rem; color: #444; display: flex; flex-direction: column; gap: .15rem; }
label span { font-weight: 700; color: #1d3557; }
input[type=range] { width: 140px; accent-color: #1d3557; }
canvas { border: 1px solid #dde3ea; border-radius: 8px; max-width: 100%; display: block; }
.legend { display: flex; flex-wrap: wrap; gap: .4rem .8rem; margin-top: .5rem; font-size: .8rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.info { min-height: 1.2em; font-size: .82rem; color: #555; margin-top: .35rem; font-style: italic; }
// Code not found

Use the sliders to change the risk-free rate rfr_f and the market risk premium (rm−rf)(r_m - r_f). Watch how the entire line rotates — because beta is the only factor that separates one asset from another under CAPM. Assets sitting on the line are fairly priced; assets above it offer a positive alpha (excess return beyond what their risk justifies); assets below it are overpriced relative to their risk.

The Real Complexity

CAPM's elegance comes from strong assumptions. Relaxing any of them complicates the picture:

  • Homogeneous expectations: every investor holds the same beliefs about future returns and correlations. In practice, information is private and opinions differ wildly.
  • Frictionless markets: no taxes, no transaction costs, unlimited short-selling. Real portfolios pay taxes, face bid-ask spreads, and hit borrowing limits.
  • Single-period horizon: investors optimize over one identical time period. Real investors have different horizons, liquidity needs, and liability structures.
  • The market portfolio is observable: CAPM requires the true market portfolio of all risky assets — stocks, bonds, real estate, human capital. The S&P 500 is a rough proxy.

Empirically, the SML is flatter than predicted: low-beta stocks earn higher returns than CAPM says they should, and high-beta stocks earn less. Eugene Fama and Kenneth French (1992) showed that size and book-to-market ratios explain return differences far better than beta alone, spawning the Fama-French three-factor model and its descendants.

Yet CAPM remains the baseline. Its core insight — that only systematic risk (co-movement with the market) earns a premium, because idiosyncratic risk can be diversified away — survives every extension. Understanding CAPM is the entry point to all of modern asset pricing, from the Black-Scholes model to multi-factor models and beyond.

Where It Matters

Despite its imperfections, CAPM shapes how the financial world operates every day:

  • Cost of equity: companies use CAPM to estimate what return equity holders require. This feeds directly into the Weighted Average Cost of Capital (WACC) used to discount future cash flows in corporate valuation.
  • Capital budgeting: a project's hurdle rate is often set by its beta relative to the firm's existing assets — high-beta projects need a higher bar.
  • Portfolio performance: "alpha" — the vertical distance from the SML — is the standard measure of whether a fund manager added value beyond what the market risk alone would have produced.
  • Regulatory finance: utilities and regulated industries use CAPM to argue before regulators for an allowed rate of return on their equity.
  • Index funds and factor investing: the realization that alpha is scarce led directly to passive index investing, which now holds the majority of US equity assets.

Beta and CAPM also connect naturally to ideas from other fields: the security market line is a linear model, and fitting it from historical data is an instance of regression — the same mathematical tool that underlies linear regression everywhere in data science.

Conclusion

CAPM achieves something remarkable: it collapses the messy question of "how much return should I demand?" into a single number — beta — and a single line. Once you know how much a stock co-moves with the market, the model tells you its fair expected return. Everything else is alpha, and alpha is hard to find.

The model's assumptions are heroically simplified, and the data show the real SML is flatter than predicted. But the underlying logic — that only undiversifiable risk deserves compensation — is a lasting insight. Every refinement, from Fama-French to the APT, is an argument about which additional risks also deserve a premium, not a refutation of the core idea.

So the next time you see a stock's beta quoted alongside its price, remember: that number is doing something profound. It is placing the asset on a line that stretches from the safety of government bonds to the volatility of speculative growth — a line drawn by a simple model with deep mathematical roots.

Share this article

Pick a channel — or use your device's native share sheet.

Comments

Loading comments...

https://www.kipuhub.com/en/article/capm-beta/Content licensed under CC BY-NC 4.0.