[Math] Moment generating function of the stochastic integral $\int_0^t \alpha_s \, dW_s$

brownian motionprobability theorystochastic-integrals

Question: Let:
$$
Y_t=\int_0^t\alpha_s \, dW_s
$$
where $\alpha_t$ is a deterministic, continuous integrand and $W_t$ is a P Brownian motion. Calculate the moment generating function of $Y$.

I can solve this question using the fact that $Y$ is a stochastic integral and is therefore normal, then just finding the mgf as you normally would for any normal rv. But how would you go about proving that $Y$ is normal by finding the mgf? I'm getting confused with how to manipulate the integral in the exponential term.

Cheers

Best Answer

If we apply Itô's formula to the function

$$f(x) := \exp(\lambda x)$$

and the Itô process $(Y_t)_{t \geq 0}$, then we find

$$e^{\lambda Y_t}-1 = \lambda \int_0^t e^{\lambda Y_s} \alpha_s \, dW_s + \frac{\lambda^2}{2} \int_0^t e^{\lambda Y_s} \alpha^2(s) \, ds.$$

Since the first term on the right-hand side is a martingale, we get for $\phi_{\lambda}(t):= \mathbb{E}e^{\lambda Y_t}$

$$\phi_{\lambda}(t) -1 = \frac{\lambda^2}{2} \int_0^t \phi_{\lambda}(s) \alpha^2(s) \, ds.$$

This ordinary differential equation can be solved explicitely,

$$\mathbb{E}e^{\lambda Y_t} = \phi_{\lambda}(t) = \exp \left( \frac{\lambda^2}{2} \int_0^t \alpha(s)^2 \, ds \right).$$

This proves that $Y_t$ is normal with mean $0$ and variance $\int_0^t \alpha(s)^2 \, ds$.

Edit As @NateEldredge pointed out, we have to ensure that $(e^{\lambda Y_s})_{s \geq 0}$ is suitable integrable; for a proof that this is indeed the case see e.g. René L. Schilling/Lothar Partzsch: Brownian motion - An introduction to stochastic processes, Chapter 18 (2nd edition) or my other answer.

Related Question