1つの変数で多項式の次数を計算するには、hipow
関数を使用できます。複数の変数を持つ多項式については
(%i) p1 : 3*x^5 + x^2 + 1$
(%i) hipow(p1,x);
(%o) 5
、あなたはlistofvars
関数によって返された変数の上にhipow
をマッピングして、結果のリストの最大値を取ることができます。
(%i) p2 : 4*y^8 - 3*x^5 + x^2 + 1$
(%i) degree(p) := if integerp(p) then 0 else
lmax(map (lambda([u], hipow(p,u)),listofvars(p)))$
(%i) degree(p1);
(%o) 5
(%i) degree(p2);
(%o) 8
(%i) degree(1);
(%o) 0
coeff
機能はとても一つの変数多項式の係数のリストを生成するために、coeff(p,x,n)
所与、x^n
の係数を返し、我々はリストに係数を保存し、Xの累乗を反復することができます。
(%i) coeffs1(p,x) := block([l], l : [],
for i from 0 thru hipow(p,x)
do (l : cons(coeff(p,x,i),l)), l)$
(%i) coeffs1(p1,x);
(%o) [3, 0, 0, 1, 0, 1]
そして、複数の変数、listofvars
オーバーマップcoeffs1
に多項式の係数のリストを生成します。
(%i) coeffs(p) := map(lambda([u], coeffs1(p, u)), listofvars(p))$
(%i) coeffs(p2);
(%o) [[- 3, 0, 0, 1, 0, 4 y^8 + 1],
[4, 0, 0, 0, 0, 0, 0, 0, - 3 x^5 + x^2 + 1]]
あなたの学位はmax-hipowですが、max-monomial degreeはありません。後者は、例えば次数(x^2 * y-x)= 3を与えることができる。 –