{
  "id": "7de30c64-6f81-5a34-9338-88ee806d8775",
  "slug": "geometric-brownian-motion",
  "term": "Geometric Brownian Motion",
  "aliases": [],
  "category": "Quantitative Finance",
  "category_slug": "quantitative-finance",
  "difficulty": "advanced",
  "definition": "Geometric Brownian Motion (GBM) is a continuous-time stochastic process in which the logarithm of the underlying variable follows a Brownian motion with drift, used extensively in mathematical finance as the standard model for the price evolution of stocks and other financial assets. It is the foundation of the Black-Scholes option pricing model and implies that asset prices are log-normally distributed and that percentage price changes are independent and identically distributed over non-overlapping time intervals.",
  "key_takeaways": [
    "GBM is defined by the stochastic differential equation (SDE) dS = μS dt + σS dW_t, where S is the asset price, μ is the drift (expected instantaneous return), σ is the volatility (instantaneous standard deviation of returns), and dW_t is a Wiener process increment—the model's key property is that percentage returns (not price levels) are normally distributed.",
    "Ito's lemma applied to GBM shows that if S follows dS = μS dt + σS dW_t, then ln(S) follows d(ln S) = (μ − σ²/2) dt + σ dW_t—a process with constant drift and volatility; this means log returns are normally distributed and prices are log-normally distributed, ensuring prices remain positive.",
    "The solution to the GBM SDE is S(t) = S(0) × exp[(μ − σ²/2)t + σ√t × Z], where Z is a standard normal random variable; this explicit solution enables Monte Carlo simulation of asset price paths and analytical derivation of option pricing formulas.",
    "GBM implies that successive price changes are independent (no serial correlation), that volatility is constant over time (contradicted by volatility clustering), and that extreme price moves follow thin-tailed log-normal distributions (contradicted by the fat tails observed in actual returns)—these limitations have motivated the development of more complex stochastic volatility and jump-diffusion models.",
    "The drift parameter μ enters option pricing only through risk-neutral adjustments: under risk-neutral measure, μ is replaced by the risk-free rate r, enabling option pricing without knowledge of investors' risk preferences—this risk-neutral pricing framework is the cornerstone of modern derivative pricing theory."
  ],
  "detailed_explanation": "Geometric Brownian Motion is the mathematical backbone of modern quantitative finance, providing the theoretical price process assumed by the Black-Scholes model, the vast majority of risk-neutral pricing frameworks, and the standard equity price simulation used in Monte Carlo-based derivatives pricing and risk management. Its dominance as a modeling choice reflects a combination of mathematical tractability, the non-negativity property that makes it appropriate for prices (unlike arithmetic Brownian motion, which can become negative), and historical inertia in an industry that has built enormous analytical infrastructure on its implications.\n\nThe formulation of GBM begins with the insight that it is more natural to model proportional (percentage) changes in asset prices than absolute changes. If we believe that a stock's daily returns are approximately independent, normally distributed, and proportional to the current price level (larger absolute moves when the stock is more expensive), then the appropriate continuous-time model is dS = μS dt + σS dW_t. The μS dt term represents the expected instantaneous price appreciation (drift), and the σS dW_t term represents random fluctuations proportional to the current price level. The proportionality to S in both terms is the defining feature that makes this 'geometric' (multiplicative) rather than 'arithmetic' (additive) Brownian motion.\n\nIto's lemma—the fundamental theorem of stochastic calculus—provides the tool for transforming the GBM SDE into the behavior of log prices. Applying Ito's lemma to f(S) = ln(S), where S follows dS = μS dt + σS dW_t, yields d(ln S) = (μ − σ²/2) dt + σ dW_t. This reveals that log prices follow a standard Brownian motion with constant drift (μ − σ²/2) and constant diffusion coefficient σ. The (μ − σ²/2) term—the log return drift being less than the arithmetic drift by exactly σ²/2—is a mathematical consequence of Jensen's inequality for the concave logarithm function and has important practical implications: the geometric mean return earned by an investor is always less than the arithmetic mean return, with the gap increasing with volatility. For σ = 20% annualized, the geometric mean exceeds arithmetic mean by 0.5 × (0.20)² = 2% annually.\n\nThe Black-Scholes model derives directly from GBM by noting that under the model's assumptions, the price of any derivative written on the asset must satisfy the Black-Scholes partial differential equation (PDE): ∂V/∂t + (1/2)σ²S²(∂²V/∂S²) + rS(∂V/∂S) − rV = 0. The critical insight enabling this derivation is that by continuously delta-hedging a short derivative position, one can create a riskless portfolio (the randomness from dW_t is eliminated by the hedge), which must earn the risk-free rate—leading to a PDE that determines the derivative price in terms of only r (risk-free rate) and σ (volatility), not μ (drift or risk preferences). This risk-neutral pricing principle is arguably the most important idea in 20th-century financial theory.\n\nThe empirical limitations of GBM are well-documented and have motivated four decades of model extensions. Constant volatility is contradicted by the volatility smile and skew observed in options markets and the GARCH clustering observed in historical returns. Independent increments are violated by momentum effects at short horizons and mean reversion at long horizons. Log-normality is contradicted by the fat tails and negative skewness of actual equity return distributions. Jump-diffusion models (Merton 1976, Kou 2002) add Poisson-distributed jump processes to capture sudden large moves. Stochastic volatility models (Heston 1993, SABR) allow σ to follow its own stochastic process, generating volatility smiles. Rough volatility models (Gatheral, Jaisson, Rosenbaum 2018) model the volatility process with fractional Brownian motion, better capturing the long-range dependence observed in realized volatility. Despite these advances, GBM remains the starting point for almost all financial modeling, with extensions treated as corrections to the base case.",
  "example": "A risk manager uses GBM to simulate 10,000 price paths for a $150 stock over 1 year to price an exotic option and assess its risk. GBM parameters: μ = 8% (annual drift), σ = 25% (annual volatility), r = 5% (risk-free rate for pricing). Using the risk-neutral framework, μ is replaced by r = 5% in the simulation. The terminal price distribution is: S(1) = $150 × exp[(0.05 − 0.5 × 0.25²) × 1 + 0.25 × √1 × Z] = $150 × exp[0.05 − 0.03125 + 0.25Z] = $150 × exp[0.01875 + 0.25Z], where Z is drawn from N(0,1). The mean terminal price is $150 × e^0.05 ≈ $157.69, and the 1st percentile (for VaR purposes, under the real-world measure with μ = 8%) is approximately $150 × exp[0.05625 + 0.25 × (−2.326)] = $150 × exp[−0.52525] = $150 × 0.591 = $88.65—a 40.9% decline. In practice, actual equity return distributions have fatter tails than this log-normal model implies, meaning the true 1st percentile loss is likely larger, motivating risk managers to apply stress scenarios and use complementary models beyond GBM.",
  "formula": "GBM SDE: dS = μS dt + σS dW_t; Solution: S(t) = S(0) × exp[(μ − σ²/2)t + σ√t × Z]; Log return: ln[S(t)/S(0)] ~ N[(μ − σ²/2)t, σ²t]",
  "formula_latex": null,
  "interactive_type": "model",
  "calculator_id": null,
  "related_terms": [
    "autocorrelation",
    "black-scholes-model",
    "brownian-motion",
    "delta",
    "equity",
    "fat-tails",
    "garch-model",
    "hedging",
    "itos-lemma",
    "jensens-inequality",
    "mean-reversion",
    "option",
    "option-pricing-model",
    "random-forest",
    "risk-adjusted-return"
  ],
  "backlinks": [
    "brownian-motion",
    "cross-sectional-momentum",
    "exotic-options",
    "fundamental-law-of-active-management",
    "garch-model",
    "hurst-exponent",
    "itos-lemma",
    "knock-in-option",
    "log-normal-distribution",
    "lookback-option",
    "martingale-measure",
    "monte-carlo-simulation",
    "option-pricing-model",
    "risk-neutral-pricing",
    "sharpe-ratio-annualized",
    "stochastic-process",
    "time-series-analysis"
  ],
  "cross_references": [
    "black-scholes-model",
    "brownian-motion",
    "delta",
    "equity",
    "fat-tails",
    "hedging",
    "itos-lemma",
    "jensens-inequality",
    "mean-reversion",
    "option",
    "option-pricing-model",
    "risk-free-rate",
    "risk-neutral-pricing",
    "skewness",
    "stochastic-process",
    "stock",
    "volatility",
    "volatility-smile"
  ],
  "tags": [
    "level:advanced",
    "cat:quantitative-finance"
  ],
  "asset_classes": [],
  "regulators": [],
  "see_also": [],
  "sources": [],
  "wordcount": 1152,
  "checksum": "1fc52b7fbe533972",
  "version": "2026.05.03",
  "license": "CC-BY-4.0",
  "updated_at": "2026-09-07T02:15:24+00:00",
  "_links": {
    "self": "https://hedgefund.wiki/api/v1/terms/geometric-brownian-motion",
    "jsonld": "https://hedgefund.wiki/api/v1/terms/geometric-brownian-motion?format=jsonld",
    "markdown": "https://hedgefund.wiki/api/v1/terms/geometric-brownian-motion?format=md",
    "graph": "https://hedgefund.wiki/api/v1/graph/geometric-brownian-motion",
    "category": "https://hedgefund.wiki/api/v1/categories/quantitative-finance",
    "schema": "https://hedgefund.wiki/schema/term.schema.json",
    "html": "https://hedgefund.wiki/#/terms/geometric-brownian-motion"
  }
}