Random Walks, Brownian Motion, and Why Everything Scales with √t
3 min read
If you retain one quantitative fact from this entire library, make it this: randomness accumulates with the square root of time. Nearly every scaling rule in finance is this one fact wearing different clothes.
The simple random walk
Let where each is with probability . Then
The variance calculation is one line — variances of independent steps add — but the consequence is deep: after 100 steps, the walk is typically about from the origin, not and not . The walk does wander (contrary to the intuition "it averages out"), but slowly (contrary to the intuition "randomness compounds like growth").
Interview staples that are just this fact:
- Daily vol to annual vol: multiply by . A 1% daily-vol stock has annual vol. (And the reverse: annual 32% ⇒ daily 2%.)
- "How far will the price wander in 4 hours vs 1 hour?" — twice as far, not four times.
- Why doubling your holding period does not double your risk-adjusted return: mean P&L scales with , noise with , so Sharpe scales with .
Brownian motion
Shrink the step size and time interval together (steps of size every ) and the walk converges to Brownian motion : continuous paths with independent, normal increments,
The defining weirdness: over a tiny interval , the move has magnitude , which is enormous relative to . Consequently is not negligible — the source of the extra term in Itô's lemma and ultimately of option time-decay. You don't need stochastic calculus fluency for trading interviews, but you should be able to say: "squared Brownian increments are order , so second derivatives enter the drift — that's why gamma and theta are linked."
Asset prices are modeled as geometric Brownian motion,
meaning returns, not prices, are the random walk — prices stay positive and the distribution of is lognormal.
Two classic results you should know cold
Reflection / first passage. For a driftless walk, the probability of hitting a level before another follows from the martingale argument (see the gambler's-ruin pattern): starting at between barriers at and , . Clean, and constantly reused.
Expected time to exit. From the same setup, the expected time to hit either barrier is steps — maximized in the middle, quadratic in the distance. The law in reverse: to wander a distance takes order time.
The interview version
"A stock is at 100 with 2% daily vol. Make me a market on where it'll be in a month." The machinery: monthly vol , so a 1-standard-deviation band is roughly . Quote around that, widen for fat tails, and you've demonstrated the entire toolkit — vol scaling, normal quantiles, and market-making in one answer.
The failure mode to avoid: scaling risk linearly with time. It's the most common quantitative error in interviews, and the correction is usually the entire point of the question.