|
DE1 notes 2022 page65
Example: Classify and reduce to normal form the PDE
$$
y u_{x x}+u_{y y}=0, \text { for } y>0
$$
$a c-b^2=y$ so the equation is elliptic when $y>0$.
The characteristic equation is
$$
y\left(y^{\prime}\right)^2+1=0
$$
that is
$$
y^{1 / 2} y^{\prime}= \pm i
$$
so integrating
$$
2 y^{3 / 2} \mp 3 i x=\text { const. }
$$
So take as variables $\zeta=2 y^{3 / 2} ; \eta=3 x$. Making the substitution, we find that
$$
3 \zeta\left(u_{\zeta \zeta}+u_{\eta \eta}\right)+u_\zeta=0,
$$but $\zeta \neq 0$ so the normal form is
$$
u_{\zeta \zeta}+u_{\eta \eta}=-\frac{u_\zeta}{3 \zeta}
$$
详细计算一下红色部分:
使用DSolveChangeVariables将$x,y$换为$\zeta,\eta$
- DSolveChangeVariables[Inactive[DSolve][y (u^(2,0))[x,y]+(u^(0,2))[x,y]==0,u,{x,y}],u,{ζ,η},{ζ==2y^(3/2),η==3x}]//FullSimplify
复制代码 Mathematica输出
$\text{DSolve}\left[\frac{u^{(1,0)}(\zeta ,\eta )+3 \zeta \left(u^{(0,2)}(\zeta ,\eta )+u^{(2,0)}(\zeta ,\eta )\right)}{\sqrt[3]{\zeta }}=0,u,\{\zeta ,\eta \}\right]$
分子,用普通数学符号写出:$u_\zeta+3 \zeta\left(u_{\zeta \zeta}+u_{\eta \eta}\right)=0$
又见
Tricomi equation canonical form and solution
Characteristic curves for second-order Tricomi equation |
|