GroebnerLex 命令
CAS 语法
- GroebnerLex( <List of Polynomials> )
-
计算多项式列表关于变量字典序的 Gröbner 基(也称为 lex , plex 或 纯字典 序)。
GroebnerLex({x^3-y-2,x^2+y+1})
得出 {\( y^{3} + 4 y^{2} + 7 y + 5, x - y^{2} - 3 y - 3 \)}。
- GroebnerLex( <List of Polynomials>, <List of Variables> )
-
计算多项式列表关于给定变量字典序的 Gröbner 基(也称为 lex , plex 或 纯字典 序)。
GroebnerLex({x^3-y-2,x^2+y+1},{y,x})
得出 {\( -x^{3} - x^{2} + 1, -y - x^{2} - 1 \)}。
|
参见 GroebnerDegRevLex 和 GroebnerLexDeg 命令。 |