[Math] How to solve the SDE: $dX_t = aX_t dt + b \sqrt{X_t} dW_t$

brownian motionstochastic-calculusstochastic-differential-equationsstochastic-integralsstochastic-processes

I am struggling to solve the following SDE,
$$dX_t = aX_t dt + b \sqrt{X_t} dW_t$$
where $a$ and $b$ are constants, and $X_0$ is given.

I know to solve $dX_t = aX_t dt + b dW_t$ or $dX_t = a dt + b \sqrt{X_t} dW_t$, but when both $X_t$ and $\sqrt{X_t}$ are introduced, how can I solve it?

Best Answer

What you can do is the following.

Given $dX = a X dt + b \sqrt{X} dW$ (I have left off the subscript $t$ for ease of typing!), given some initial condition $X(0) = X_0$, the solution to this SDE is found by the following:

Multiply both sides $e^{-at}$ and you get:

$e^{-at} dX = a e^{-at} X dt + b e^{-at} \sqrt{X} dW$,

$e^{-at} dX - ae^{-at} Xdt = be^{-at} \sqrt{X} dW$,

$d[e^{-at} X(t)] = be^{-at} \sqrt{X} dW$

Integrating both sides on some interval, say $[0,t]$, we get:

$e^{-at} X(t) - X_0 = b \int_{0}^{t} e^{-as} \sqrt{X(s)} dW(s)$

You can now use this solution to compute the expectation value and variance.