I am working on an HJB recently and wish to get a numerical result. Can NDSolve on Mathematica 12.2 handle this?
$$ V_t+(e^{-\sqrt{t}}+0.4e^{-2.5t}+0.01x)V_{x}+1.12e^{-2t}V_{xx}=\frac{1}{2}e^{-3t}\frac{V_x^2}{V_{xx}} $$
with boundary condition $V(t,0)=1$ and $V(t,\infty)=0$ where $V_t=\frac{\partial}{\partial t}V(t,x)$, $V_x=\frac{\partial}{\partial x}V(t,x)$ and $V_{xx}=\frac{\partial^2}{\partial x^2}V(t,x)$
I tried it on Mathematica with NDSolve and it suggests me to use Inactive but in this case I don't know how to. So I wonder here if Mathematica can actually handle with it. If can, how should I rewrite the equation?
Thanks for any help.
NEW EDIT 5/27 1:40 GMT+8:
Code I used:
prob = {D[v[t, x], t] + (E^(-Sqrt[t]) + 0.4*E^(-2.5*t) + 0.01*x)*
D[v[t, x], x] + 1.12*E^(-2*t)*D[v[t, x], x, x] -
0.5*E^(-3*t)*(D[v[t, x], x])^2/D[v[t, x], x, x] == 0,
v[t, 0] == 1, v[t, 1000] == 0}
NDSolve[prob, v, {t, 0, 20}, {x, 0, 20}]
And it turned out:
***Coefficient List: -((0.5 E^(-3 t) v$3459^2)/v$3460)+1.12 E^(-2 t) v$3460+v$3461+v$3459 \
(E^-Sqrt[t]+0.4 E^(-2.5 t)+0.01 x) is not a polynomial.
***NDSolve: The maximum derivative order of the nonlinear PDE coefficients
for Finite Element Method is larger than 1. It may help to rewrite the PDE in
inactive form.
That is all I got. The original text was not in English so I translated according to Mathematica documents.

NDSolve. Also, please add some background info if possible. – xzczd Jun 26 '21 at 00:55