{
  "id": "87abb0ed-e867-51a7-81c9-f532acd7ce78",
  "slug": "brownian-motion",
  "term": "Brownian Motion",
  "aliases": [],
  "category": "Quantitative Finance",
  "category_slug": "quantitative-finance",
  "difficulty": "advanced",
  "definition": "Brownian motion (also called a Wiener process) is a continuous-time stochastic process in which the change in value over any time interval is normally distributed with mean zero and variance equal to the length of the interval, with increments being independent. It is the mathematical foundation of modern options pricing, stochastic calculus, and the modeling of asset price dynamics in continuous time.",
  "key_takeaways": [
    "A standard Brownian motion W(t) has W(0) = 0, continuous paths, independent increments, and W(t) − W(s) ~ N(0, t−s) for any t > s.",
    "Geometric Brownian motion (GBM) — the log-price version — is the stochastic process underlying the Black-Scholes model and models asset prices as positive, continuously compounding with a drift (μ) and diffusion (σ) component.",
    "Brownian motion has quadratic variation equal to t (not zero, as for differentiable functions), which requires the use of Itô's lemma rather than ordinary calculus when applying functions to Brownian-motion-driven processes.",
    "The 'no-drift' martingale property — when μ=0, W(t) is a martingale, meaning E[W(t)|F_s] = W(s) — is foundational to risk-neutral pricing and the construction of hedging strategies.",
    "Real asset prices depart from pure GBM in important ways: fat tails (excess kurtosis), volatility clustering (GARCH effects), and mean reversion in some assets all indicate that Brownian motion is a first-order approximation, not a complete description of price dynamics."
  ],
  "detailed_explanation": "Standard Brownian motion, denoted W(t) or B(t), satisfies four conditions: (1) W(0) = 0; (2) the process has independent increments — changes over non-overlapping intervals are statistically independent; (3) increments are stationary — W(t) − W(s) depends only on t−s, not on s itself; and (4) W(t) − W(s) ~ N(0, t−s), meaning the increment is normally distributed with variance equal to the elapsed time. The resulting paths are continuous but nowhere differentiable — they exhibit infinitely jagged, fractal-like behavior at any time scale.\n\nIn finance, raw Brownian motion is rarely used directly. Instead, practitioners work with Geometric Brownian Motion (GBM), which models the log-price increment: dS = μS dt + σS dW, where μ is the drift (expected return), σ is the volatility, and dW is the Brownian increment. The solution to this SDE is: S(t) = S(0) × exp[(μ − σ²/2)t + σW(t)], ensuring prices remain positive. This is the direct basis for the Black-Scholes model (with μ replaced by the risk-free rate r under the risk-neutral measure Q) and for most closed-form derivatives pricing formulas.\n\nItô's lemma is the key tool for applying calculus to Brownian-motion-driven processes. Unlike ordinary calculus, where a Taylor expansion to first order is exact, Brownian paths have non-zero quadratic variation (∫₀ᵀ (dW)² = T), which means second-order terms in the Taylor expansion do not vanish. For a function f(t, S) of time and a GBM process S, Itô's lemma gives: df = (∂f/∂t + μS ∂f/∂S + ½σ²S² ∂²f/∂S²) dt + σS ∂f/∂S dW. Setting up a delta-hedged portfolio and applying Itô's lemma to the option price is precisely how Black and Scholes derived their famous PDE.\n\nExtensions to the basic Brownian framework include: mean-reverting Ornstein-Uhlenbeck processes (used for interest rate models like Vasicek); jump-diffusion models (Merton, 1976) that add a Poisson jump component to capture fat-tail events; stochastic volatility models (Heston, SABR) where σ itself follows a separate diffusion; and fractional Brownian motion (with Hurst exponent H ≠ 0.5) to model long-range dependence in asset returns. Each extension addresses a specific empirical deficiency of pure GBM while preserving the mathematical tractability of the Brownian framework.",
  "example": "Consider pricing a European call option using Black-Scholes. The underlying asset price S = $100, strike K = $100, time to expiration T = 1 year, risk-free rate r = 5%, volatility σ = 20%. Under GBM, S(T) = 100 × exp[(0.05 − 0.02)×1 + 0.20×W(1)] where W(1) ~ N(0,1). Applying the Black-Scholes formula (which analytically integrates the lognormal distribution implied by GBM), d1 = [ln(100/100) + (0.05 + 0.02)×1] / (0.20×1) = 0.35, d2 = 0.15, call price = 100×N(0.35) − 100×e^(−0.05)×N(0.15) ≈ $10.45. The entire derivation relies on Brownian motion's properties — specifically, the normality of log-returns and the Markov property that makes delta hedging feasible.",
  "formula": "Standard Brownian Motion: dW ~ N(0, dt)\nGeometric Brownian Motion: dS = μS dt + σS dW\nSolution: S(t) = S(0) × exp[(μ − σ²/2)t + σW(t)]\nItô's Lemma: df = (∂f/∂t + μS ∂f/∂S + ½σ²S² ∂²f/∂S²)dt + σS ∂f/∂S dW",
  "formula_latex": null,
  "interactive_type": "chart",
  "calculator_id": null,
  "related_terms": [
    "autoregressive-model",
    "basis",
    "black-scholes-model",
    "call-option",
    "cross-sectional-momentum",
    "delta",
    "geometric-brownian-motion",
    "hedging",
    "hurst-exponent",
    "interest-rate",
    "option",
    "random-walk",
    "risk-free-rate",
    "stochastic-process",
    "time-series-analysis"
  ],
  "backlinks": [
    "exotic-options",
    "geometric-brownian-motion",
    "hurst-exponent",
    "itos-lemma",
    "knock-in-option",
    "log-normal-distribution",
    "lookback-option",
    "martingale-measure",
    "monte-carlo-simulation",
    "monte-carlo-var",
    "option-pricing-model",
    "overfitting",
    "quantitative-analysis",
    "random-walk",
    "risk-neutral-pricing",
    "stochastic-process"
  ],
  "cross_references": [
    "basis",
    "black-scholes-model",
    "call-option",
    "delta",
    "geometric-brownian-motion",
    "hedging",
    "hurst-exponent",
    "interest-rate",
    "option",
    "risk-free-rate",
    "stochastic-process",
    "variance",
    "volatility"
  ],
  "tags": [
    "level:advanced",
    "cat:quantitative-finance"
  ],
  "asset_classes": [],
  "regulators": [],
  "see_also": [],
  "sources": [],
  "wordcount": 731,
  "checksum": "8bd0ecfc2a8ff570",
  "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/brownian-motion",
    "jsonld": "https://hedgefund.wiki/api/v1/terms/brownian-motion?format=jsonld",
    "markdown": "https://hedgefund.wiki/api/v1/terms/brownian-motion?format=md",
    "graph": "https://hedgefund.wiki/api/v1/graph/brownian-motion",
    "category": "https://hedgefund.wiki/api/v1/categories/quantitative-finance",
    "schema": "https://hedgefund.wiki/schema/term.schema.json",
    "html": "https://hedgefund.wiki/#/terms/brownian-motion"
  }
}