Day 5: Geometric Brownian Motion#
Today we keep with variations of the Brownian motion! Geometric Brownian Motion (GBM) is a widely used stochastic process in mathematical finance, economics, and other disciplines to model the dynamics of positive variables that evolve over time under uncertainty, such as stock prices, interest rates, and commodity prices. The advantage of modelling through this process lies in its universality, as it represents an attractor of more complex models that exhibit non-ergodic dynamics.
Definition#
The Geometric Brownian motion can be defined by the following Stochastic Differential Equation (SDE)
with initial condition \(X\_0 =x\_0>0\), and constant parameters \(\mu\in \mathbb{R}\), \(\sigma>0\). Here, \(W\_t\) denotes a standard Brownian motion.
In order to find its solution, let us set \(Y\_t = \ln(X\_t)\). Then, Ito’s formula implies
or equivalently
From this expression, we obtain the solution as follows:
Thus, for each \(t>0\), the variable \(\ln (X\_t)|X\_0\) (which will be denoted simply by \(\ln(X\_t)\)) follows a normal distribution –since it can be expressed as a scaled marginal of the Brownian motion plus a deterministic part. Using the properties of the standard Brownian Motion we can calculate its expectation and variance, and verify that
and consequently \(X\_t\) follows a Log-normal distribution.
🔔 Random Facts 🔔#
In 1952, Paul Samuelson and Robert Merton adapted the Wiener process into what we now recognise as Geometric Brownian Motion. Their modifications addressed the (so-called) shortcoming of the Bachelier’s model by ensuring that the process remains positive.
GBM serves as the foundation for the famous Black-Scholes-Merton model for option pricing.
The asymptotic properties of geometric Brownian motion (GBM) are determined by the quantity \(\mu− \frac{\sigma^2}{2}\):
\(\mu− \frac{\sigma^2}{2} > 0\): As \(t\) approaches infinity, \(X\_t\) approaches infinity with probability 1
\(\mu− \frac{\sigma^2}{2} < 0\): As \(t\) approaches infinity, \(X\_t\) approaches zero with probability 1
\(\mu− \frac{\sigma^2}{2} = 0\): As \(t\) approaches infinity, \(X\_t\) has no limit with probability 1
More to Read#
Samuelson, Paul A.. “Rational Theory of Warrant Pricing.” (2015).
Geometric Brownian Motion Python Notebook (part of my series of notes exploring concepts with Python)
Stojkoski, V.; Sandev, T.; Basnarkov, L.; Kocarev, L.; Metzler, R. Generalised Geometric Brownian Motion: Theory and Applications to Option Pricing. Entropy 2020, 22, 1432. https://doi.org/10.3390/e22121432
P.s. If you are curious about probability distributions visit the Advent Calendar 2023 ✨