我正在尝试通过maxima中的代换来简化一个微分方程。然而,替换似乎并不起作用。
下面是我的代码:
depends (\rho,[t, r, \theta, z]); depends (V, [t, r, \theta, z]);
f_contin : diff (\rho, t) + diff (\rho*r*V[r], r)*(1/r) = 0;
base : diff (V[b]*r*\rho, r) = 0;
V_sub : V[r] = V[b] + \epsilon*V[r];
subst (V_sub, f_contin);
subst (base, %o6);最后一次替换不起作用。我在这里做错了什么?
为了清楚起见,我在这里添加了一个屏幕截图:

https://stackoverflow.com/questions/41207239
复制相似问题