I am trying to solve this problem
Consider the following one-dim. stochastic process
$$dX_t = b_t dt + \sigma_t dW_t$$ where $W$ is a one-dim. Brownian motion. The above SDE is well-defined. Consider a smooth and bounded function $g$, and put $$ Z_t := \exp(\int_0^t g(s,X_t)ds).$$ Calculate the stochastic differential $dZ$.
My answer:
Put $Y_t = \int_0^t g(s,X_t)ds$ . Then, it follow that $Z_t=e^{Y_t}$ , and from Ito formula, I have
$$dZ_t = Z_t(dY_t + \frac{1}{2}(dY_t)^2).$$
Thus, I want to know the stochastic differential $dY$.
If I can say that
$$dY_t=g(t,X_t)dt$$
then,
$$dZ_t = Z_t \bigl(g(t,X_t)dt + \frac{1}{2}(g(t,X_t)dt)^2 \bigl)$$
$$\Leftrightarrow dZ_t = Z_t g(t,X_t)dt .$$
follows.
My question:
I am not sure if I can say that $$dY_t=g(t,X_t)dt.$$
I suspect that my answer is too simple to be true. Where did I make a mistake?
However, I have no idea how I can compute $ f(t,x) = \int_0^t g(s,x)ds $ through Ito formula. What is $ \frac{\partial}{\partial t} \int_0^t g(s,x)ds $ and $ \frac{\partial}{\partial x} \int_0^t g(s,x)ds $? – David Khan May 26 '19 at 06:05