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


deg, mindeg

deg(poly,var)
:: poly の, 変数 var に関する最高次数.
mindeg(poly,var)
:: poly の, 変数 var に関する最低次数.
return
自然数
poly
多項式
var
不定元
[0] deg((x+y+z)^10,x);
10
[1] deg((x+y+z)^10,w);
0
[75] mindeg(x^2+3*x*y,x);
1


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