2

instead of using Wikipedia's definition: $$ {d}(f(X_t,t)) = \frac{\partial f}{\partial t}(X_t,t)\,\mathrm{d}t + \frac{\partial f}{\partial x}(X_t,t) \, \mathrm{d}X_t + \frac{1}{2} \frac{\partial^2 f}{\partial x^2}(X_t,t)\sigma_t^2 \, \mathrm{d}t.$$

Can I write it like that:

$$ d(f(X_t,t)) = \frac{\partial f}{\partial Xt} \, \mathrm{d}Xt + \frac{1}{2} \frac{\partial^2 f}{\partial Xt^2} \, \mathrm{d}Xt^2$$

Thanks

Gryz
  • 29
  • 2
  • 1
    What do you think could be wrong with your expression $df = (\cdots) df + (\cdots) (df)^2$? –  Sep 01 '20 at 10:12
  • I edited the equation, sorry ! – Gryz Sep 01 '20 at 10:15
  • What about now ? is it correct to write Ito's lemma like that ? – Gryz Sep 01 '20 at 10:16
  • 1
    No, it's actually even more incorrect :) If a function depends on two variables then from standard calculus $df(x,y) = f_x dx + f_y dy$ where subscripts denote partial differentiation. Ito calculus is a generalization of this, and the correct expression is as given in for instance wiki. –  Sep 01 '20 at 10:20
  • I fixed it for the second time, I was rusty with LaTeX ;) – Gryz Sep 01 '20 at 10:22
  • 1
    Almost, you forgot the dependence on $t$, and if you include that you get the correct formula. –  Sep 01 '20 at 10:24
  • Xt is already dependent on t so why should I add a t term ? Wouldn't it be redundant ? – Gryz Sep 01 '20 at 10:26
  • To limit the number of comments, my last comment is: $X_t$'s dependence on $t$ is a special sort of dependence. Aside from that, let's go back to basic calculus and consider the function $f(t, X(t))$ where $X(t)$ is a deterministic function of $t$, for instance $f(t,X(t)) = t+ cos(t)$ with $X(t) = cos(t)$, what would be $df$? –  Sep 01 '20 at 10:32
  • You can’t: please check my answer to this question. – Bob Jansen Sep 01 '20 at 10:37
  • df = -sin(t) dXt + dt ?? – Gryz Sep 01 '20 at 10:43
  • 1
    If f is just a function of the stochastic process $X_t$, then yes, you don't need to write time derivative. This is the case when solving GBM SDE - $\ln X_t$. But if f is a function of t as well then you will need to add time derivative. This is the case when dealing with say Europrean call/put options. – Magic is in the chain Sep 01 '20 at 18:56

1 Answers1

7

Ito Lemma (as 'Taylor expansion'): For $X$ an Ito process and $f = f(t, x) ∈ C^{1,2}(\mathbb{R}^2)$ a deterministic function, the stochastic process $$Y_t = f(t,X_t)$$ is an Ito process and we have $$df (t,X_t) = \partial_tf(t,X_t)\,dt + \partial_xf(t,X_t)\,dX_t + \frac{1}{2} \partial_{xx}^2f(t,X_t)(dX_t)^2. $$

Note: Functions

$$g(t,x)= \partial_tf(t,x), $$

$$h(t,x) = \partial_xf(t,x), $$

$$k(t,x) = \partial_{xx}^2f(t,x) $$ are also deterministic. So:

$$df (t,X_t) = g(t,X_t)\,dt + h(t,X_t)\,dX_t + \frac{1}{2} k(t,X_t)(dX_t)^2. $$

ir7
  • 5,053
  • 12
  • 12