Technology

Geometric Brownian Motion (GBM)

2025-05-06 07:12:00


The usual model for the time-evolution of an asset price S(t) is given by the geometric Brownian motion, represented by the following stochastic differential equation:


dS(t)=μS(t)dt+σS(t)dB(t)


Note that the coefficients μ and σ, representing the drift and volatility of the asset, respectively, are both constant in this model. In more sophisticated models they can be made to be functions of t, S(t) and other stochastic processes.


The solution S(t) can be found by the application of Ito's Lemma to the stochastic differential equation.


Dividing through by S(t) in the above equation leads to:


dS(t)S(t)=μdt+σdB(t)


Notice that the left hand side of this equation looks similar to the derivative of log S(t). Applying Ito's Lemma to log S(t) gives:


d(logS(t))=(logS(t))μS(t)dt+(logS(t))σS(t)dB(t)+12(logS(t))σ2S(t)2dt


This becomes:


d(logS(t))=μdt+σdB(t)12σ2dt=(μ12σ2)dt+σdB(t)


This is an Ito drift-diffusion process. It is a standard Brownian motion with a drift term. Since the above formula is simply shorthand for an integral formula, we can write this as:


log(S(t))log(S(0))=(μ12σ2)t+σB(t)


Finally, taking the exponential of this equation gives:


S(t)=S(0)exp((μ12σ2)t+σB(t))


This is the solution the stochastic differential equation. In fact it is one of the only analytical solutions that can be obtained from stochastic differential equations.



Reference: Geometric Brownian Motion


From https://www.quantstart.com/articles/Geometric-Brownian-Motion/

Leave a comment :