Go to the first, previous, next, last section, table of contents.


odiff_rat_solve

odiff_rat_solve(LL,Dn,N,V)
:: 与えられた線型微分方程式系の分母が Dn, 分子が N 次以下の多項式であるような解を求める.
return
リスト
LL
リスト
Dn
有理式
N
整数
V
リスト
[333] odiff_rat_solve([[[x,[1]],[1,[0]]]],x,1,[x]);
[(_8)/(x),[_8]]

[361] odiff_rat_solve([x*(1-x)*dx^2+(1-3*x)*dx-1],1-x,2,[x]);
[(_180)/(-x+1),[_180]]

[350] D = odiff_op_appell4(0,0,3,0,[x,y])$
[351] odiff_rat_solve(D,x^2,2,[x,y]);
[(_118*x^2-_114*y*x+1/2*_114*y^2+_114*y)/(x^2),[_114,_118]]


Go to the first, previous, next, last section, table of contents.