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.
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}. $$