如何化简微分方程组
mathematica吧
全部回复
仅看楼主
level 3
WUSHIBAO1026 楼主
C0 e'[t] == i1[t] + L C0 i1''[t] + M C0 i2''[t] + R C0 i1'[t]
M C0 i1''[t] + L C0 i2''[t] + i2[t] - C0 v[t] == 0
方程是如上面。
目标是化简成一个只有 v[t]和e[t]变量的式子。
2019年11月16日 12点11分 1
吧务
level 15
解关于i1和i2的微分方程组啊:
DSolve[{C0 e'[t] == i1[t] + L C0 i1''[t] + M C0 i2''[t] + R C0 i1'[t],
M C0 i1''[t] + L C0 i2''[t] + i2[t] - C0 v[t] == 0}, {i1, i2}, t]
当然了,结果很繁。
2019年12月07日 12点12分 2
1