Geometric Brownian motion¶
Geometric Brownian motion (GBM) is the standard baseline model for an equity price: it produces lognormal prices and normally distributed log-returns. It is simple enough to solve in closed form and is the starting point for Black–Scholes, Monte Carlo, and binomial-tree limits.
Model definition¶
Under a chosen measure (\(\mathbb{P}\) or \(\mathbb{Q}\)), GBM assumes
with constant volatility \(\sigma>0\). Under risk-neutral pricing (no dividends), \(\mu=r\); with continuous dividend yield \(q\), \(\mu=r-q\).
Solving the SDE with Itô¶
Set \(X_t=\ln S_t\). Applying Itô’s lemma to \(X_t\) gives
Using \((dW_t)^2=dt\) and \((dS_t)^2 = (\sigma S_t)^2 dt\), we obtain
Integrating from \(0\) to \(t\),
so
Distributional consequences¶
Because \(W_t\sim\mathcal N(0,t)\),
- \(\ln S_t\) is normal:
[ \ln S_t \sim \mathcal N!\left(\ln S_0 + \left(\mu - \tfrac{1}{2}\sigma^2\right)t,\; \sigma^2 t\right). ]
- \(S_t\) is lognormal.
Moments (useful sanity checks):
Conditional distribution (key for simulation): for \(0\le s<t\),
independent of the past given \(S_s\).
Financial interpretation: returns vs log-returns¶
In finance we describe performance via returns.
- The simple return over \([0,T]\) is
- The log-return is
Log-returns correspond to continuous compounding and have a key additivity property: for a partition \(0=t_0<t_1<\dots<t_n=T\),
Under GBM,
Appendix A: Continuous compounding and log-returns (derivation)¶
This appendix explains why log-returns are the natural “continuously compounded” quantity.
From discrete to continuous compounding¶
A rate \(R\) compounded once over \([0,T]\) gives \(S_T=S_0(1+R)\). If it compounds \(n\) times per year with nominal rate \(R\),
As \(n\to\infty\), this converges to continuous compounding:
Taking logs,
which motivates using log-returns as the additive quantity.
Simple returns vs log-returns¶
For small returns, \(\ln(1+x)\approx x\), so simple and log-returns are close when moves are small. For large moves, log-returns behave better analytically and in aggregation.
Time additivity of log-returns¶
For any \(a<b<c\),
This additivity is why models often work in log space.
Distribution of log-returns under GBM¶
From the explicit GBM solution,
so it is normal with variance \(\sigma^2 T\). Annualized variance over \([0,T]\) is \(\sigma^2\).
Takeaways¶
- GBM implies lognormal prices and normal log-returns.
- Under pricing (risk-neutral) dynamics, the drift is \(r\) (or \(r-q\)).
- The explicit solution makes simulation straightforward and underpins both Black–Scholes and Monte Carlo.
Where to go next¶
- Plug \(\mu=r\) into the GBM distribution to derive the Black–Scholes formula.
- Use the conditional distribution to build a Monte Carlo pricer.