Computing expected value of a function along a Brownian Path

181 Views Asked by At

I have been reading a paper by Desmond J. Higham titled "An Algorithmic Introduction to Numerical Simulation of Stochastic Differential Equations." Here is the link:

https://epubs.siam.org/doi/pdf/10.1137/S0036144500378302

Suppose $W(t) , t \geq 0$ is a Brownian motion. The author wants to evaluate the function $u\big(W(t)\big) = \exp\big(t + \frac{1}{2}W(t)\big)$ along $1000$ discretized Brownian paths. He writes some MATLAB code which I 'm clear with. He then wishes to compare the mean of the discretised paths with the expected value of $u\big(W(t)\big).$

On page $528,$ fourth line from the last, he mentions that the expected value of $u\big(W(t)\big)$ is $\exp (9t/8).$ I'm not clear as to how he got this. Any help highly appreciated.

2

There are 2 best solutions below

4
On BEST ANSWER

By Ito you get $$ X_t=F(t,W_t)=\exp(t+\frac12W_t) \\ \implies dX_t=(F_t+\frac12F_{ww})dt+F_wdW_t =(X_t+\frac12\frac1{2^2}X_t)dt+\frac12X_tdW_t $$ and the expectation of $X$ follows the equation $$\newcommand{\E}{\mathbb{E}} d\E(X_t)=\frac98\E(X_t)dt\implies \E(X_t)=e^{\frac98t}. $$

0
On

Write $$E[\exp\big(t + \frac{1}{2}W(t)\big)]=e^{t} \cdot E[\exp\big( \frac{1}{2}W(t)\big)]$$ at this point remember the fact that $W(t)$ is a centered Gaussian r.v. with variance equal to $t$, and use the moment generating function to obtain $$=e^t\cdot e^{1/2 \cdot (1/2)^2 \cdot t}=e^{9t/8 }$$