You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then, if the payoff in state is , and payoffs are discounted at rate , then the Bellman equation is,
$$
\rho \tilde{u}(t, x) = \tilde{c}(t, x) + \tilde{L}_1 \tilde{u}(t, x) + \partial_t \tilde{u}(t,x)
$$
With boundary values and for all
We can combine these to form the operator,
\begin{align}
\tilde{L} = \rho - \tilde{L_1}
\end{align}
and the boundary condition operator (using the for "evaluated at"),
\begin{align}
\tilde{B} = \begin{bmatrix}
\partial_x \Big|{x=x^{\min},t}\
\partial_x \Big|{x=x^{\max},t}
\end{bmatrix}
\end{align}
which leads to the PDE,
$$
\partial_t \tilde{u}(t,x) = \tilde{L}_t \tilde{u}(t,x) - \tilde{c}(t,x)
$$
and boundary conditions at every ,
$$
\tilde{B} \tilde{u}(t,x) = \begin{bmatrix} 0 \ 0 \end{bmatrix}
$$
Example Functions
As a numerical example, start with something like
Note, that this keeps for all . Hence, we know the correct upwind direction.
for
Discretization
Do a discretization of the operator subject to the , using the standard technique (and knowing that the positive drift ensures we can use a single upwind direction). the value function is then , an operator is , and a vector of payoffs . This leads to the following system of ODEs,
$$
\partial_t u(t) = L(t) u(t) - c(t)
$$
The stationary solution, at a is the solution to the linear system,
$$
u(T) = L(T) \backslash c(T)
$$
Given this solution, we can solve for the transition dynamics by going back in time from the initial condition.