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


odiff_poly_solve

odiff_poly_solve(LL,N,V)
:: 与えられた線型微分方程式系の N 次以下の多項式解を求める.
return
リスト
LL
リスト
N
整数
V
リスト
[297] odiff_poly_solve([[[x,[1,0]],[-1,[0,0]]],[[y,[0,1]],[-1,[0,0]]]],5,[x,y]);
[_4*y*x,[_4]]

[298] odiff_poly_solve([[[x,[1,0]],[-2,[0,0]]],[[y,[0,1]],[-2,[0,0]]]],5,[x,y]);
[_33*y^2*x^2,[_33]]

[356] odiff_poly_solve([x*dx+y*dy-3,dx+dy],4,[x,y]);
[-_126*x^3+3*_126*y*x^2-3*_126*y^2*x+_126*y^3,[_126]]


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