Constructing the solution to a linear backward SDE

probability theorystochastic-analysisstochastic-calculusstochastic-integralsstochastic-processes

For a linear backward stochastic differential equation (BSDE): for any given $\xi \in L^2(\mathscr{F}_T)$,
$$-dY_s = (a_s Y_s + b_s Z_s +c_s)ds-Z_sdB_s$$
Where $a_t,b_t,c_t \in L^2_\mathscr{F}(0,T;R)$, $a_t, b_t$ are bounded, with the terminal condition $Y_T = \xi$.

It is easy to check this BSDE has a unique solution (by the theorem of existence and uniqueness of BSDE). One way to find the solution is to use SDE:
$$dX_s = a_s X_s ds + b_s X_s dB_s$$
With $X_t = 1$. We then calculate $d(X_sY_s)$ which we wish is a martingale, so we can use the conditional expectation to find out $X_sY_s$.

Here comes the problem. When I calculate the $d(X_sY_s)$, the result shows it is not a martingale. The following is my step.

$$
\begin{align}
d(X_sY_s) &= X_sdY_s+Y_sdX_s + dX_sdY_s
\\
&=X_s[-(a_sY_s+b_sZ_s+c_s)ds+Z_sdB_s]+Y_S(a_sX_sds+b_sX_sdB_s)+dX_sdY_s
\end{align}
$$

Since we know $dX_sdY_s$ is a quadratic variation, we have:

$$d(X_sY_s) = X_sc_sds + X_sZ_sdB_s + b_sY_sX_sdB_s$$

I think there’s something wrong and I really have no idea about how to solve it.

Best Answer

Your application of Itô's lemma is correct; however, you may wish to consider a different process to solve this BSDE. To that end, set $$M_t = X_t Y_t - \int_0^t X_s c_s ds$$ By Itô's lemma, the dynamics of $X_t Y_t$ are given by: $$d(XY)_s = X_s c_s ds + X_s Z_s dB_s + b_s X_s Y_s dB_s$$ so that the dynamics of $M$ are given by $$dM_s = X_s Z_s dB_s + b_s X_s Y_s dB_s= X_s (Z_s +b_s Y_s)dB_s$$ This gives a local martingale starting at $M_0 = X_0 Y_0 = Y_0$. An application of the BDG inequality reveals that in fact $M_s$ is a uniformly integrable martingale on $[0,T]$, so that $$M_t = \mathbb{E}(M_T | \mathcal{F}_t) = \mathbb{E}\left(X_T \xi -\int_0^T X_s c_sds | \mathcal{F}_t\right)= \mathbb{E}\left(X_T \xi -\int_t^T X_s c_sds | \mathcal{F}_t\right) - \int_0^t X_s c_sds$$ From which it follows that $$X_t Y_t = \mathbb{E}\left(X_T \xi -\int_t^T X_s c_sds \,| \, \mathcal{F}_t\right)$$

Related Question