Solving SDE using Itô's lemma

808 Views Asked by At

I'm trying to solve stochastic differential equation: $$d X(t)=X(t) d t+d W(t)$$

Here, W(t) denotes a Brownian Motion. Comparing with Itô's lemma (with $f\left(W_{t}, t\right) = X(t)$), $$ d X(t)=\partial_{w} X(t) d W_{t}+\frac{1}{2} \partial_{w}^{2} X(t) d t+\partial_{t} X(t) d t $$ I get two equations

a)

$$ \partial_{w} X(t) = 1 $$ $$ \partial_{w} X(t) = 1 \Rightarrow X(t)= W + C(t) $$

b) $$ \frac{1}{2} \partial_{w}^{2} X(t) +\partial_{t} X(t) = X(t) $$ substituting result from part (a) we have $$ \frac{1}{2} \partial_{w}^{2} (W + C(t)) +\partial_{t} (W + C(t)) = W + C(t) $$ $$ C'(t) = W + C(t) $$ which can be solved as $$ C(t) = C_0e^t-W $$ The issue starts when I try to substitute this back $$ X(t)= W + C_0e^t-W $$ $$ X(0)= C_0e^0 $$ $$ X_0= C_0 $$ $$ X(t)= X_0e^t $$ Now equation (a) does not hold anymore, because $$\partial_{w} X(t)=\partial_{w} X_{0} e^{t}= 0$$ Anyone can point me what am I missing or what I'm solving wrong? Thanks.

1

There are 1 best solutions below

6
On BEST ANSWER

After your clarifying comment, I see the following problem with your approach: You assume that the solution can be written in the form $f(t,W_t)$, but for this particular SDE this is not the case. So you need to use a slightly different method.

You can still use the approach of matching coefficients, but you should start with $$X_t = \alpha(t)Y(t)=\alpha(t)\left[X_0 + \int_0^t \beta(s)dW_s\right],$$ where $\alpha$ and $\beta$ are deterministic functions of time.

Now, applying Ito's Lemma we obtain $$ dX_t=\alpha'(t)Y(t)dt+\alpha(t)\beta(t)dW(t)$$

Matching the coefficients we have $$ \alpha'(t)Y(y)=X(t) \\ \alpha(t)\beta(t)=1$$ From the first equation, we conclude that $\alpha(t)=e^t$, which implies that $\beta(t)=e^{-t}$. Thus, $X_t$ can be written as $$ X_t = e^t X_0 + e^t \int_0^t e^{-s}dW_s$$ As you can see X_t is not in the form of $f(t,W_t)$.


Alternatively, this equation can be solved by applying Ito's Lemma to $e^{-t}X_t$, where $f(t,x)=e^{-t}x$. Then write the resulting equation in the integral form and multiply both sides of it by $e^t$.