Overview of the PolynomialIdeals:-IdealInfo Subpackage
Calling Sequence
Parameters
Description
Examples
Generators(J)
IdealInfo:-Generators(J)
IdealInfo:-Characteristic(J)
IdealInfo:-Variables(J)
IdealInfo:-Parameters(J)
IdealInfo:-NonVariables(J)
IdealInfo:-KnownGroebnerBases(J, X)
IdealInfo:-DefaultMonomialOrder(J, T, X)
J
-
polynomial ideal
T
(optional) type of monomial order
X
(optional) set of monomial order variables
The IdealInfo subpackage is a collection of simple procedures that return information about polynomial ideals. They are intended to serve as a programmer interface to the PolynomialIdeal data structure. For compatibility with future releases, it is strongly recommended that you use these commands instead of accessing the operands of the data structure directly.
The Generators, Characteristic, and Variables commands return the generators, ring characteristic, and ring variables, respectively. The Generators command is also aliased as PolynomialIdeals:-Generators.
The Parameters command returns the set of indeterminates appearing in the generators that are not ring variables. The NonVariables command returns the set of all indeterminates that appear inside a radical or RootOf.
The KnownGroebnerBases command outputs the set of monomial orders for which Groebner bases are stored. An optional second argument restricts the orders to a certain set of variables. To obtain the actual Groebner bases, use the Groebner:-Basis command.
The DefaultMonomialOrder command returns a monomial order for which a Groebner basis is stored or can be computed quickly. Optional arguments can specify both the type of monomial order (for example, 'plex') and the set of variables to use.
IdealInfo is a subpackage of the PolynomialIdeals package, and its various commands can be used in the form IdealInfo:-command(arguments) only after executing with(PolynomialIdeals). However, they can always be accessed through the long form of the command using PolynomialIdeals:-IdealInfo:-command(arguments).
with⁡PolynomialIdeals:
J≔x2−z,y2+2⁢sqrt⁡3−w,characteristic=5,variables=x,y
J≔y2+2⁢3+4⁢w,x2+4⁢z
lprint⁡J
POLYNOMIALIDEAL(y^2+2*(3+4*w)^(1/2),x^2+4*z,variables = {x, y},characteristic = 5,known_groebner_bases = (table([])))
Generators⁡J=IdealInfo:-Generators⁡J
y2+2⁢3+4⁢w,x2+4⁢z=y2+2⁢3+4⁢w,x2+4⁢z
IdealInfo:-Characteristic⁡J
5
IdealInfo:-Variables⁡J
x,y
IdealInfo:-Parameters⁡J
w,z
IdealInfo:-NonVariables⁡J
w
IdealInfo:-DefaultMonomialOrder⁡J
tdeg⁡y,x
Groebner:-Basis⁡J,plex⁡x,y
y2+2⁢3+4⁢w,x2+4⁢z
Groebner:-Basis⁡J,tdeg⁡x,y
IdealInfo:-KnownGroebnerBases⁡J
plex⁡x,y,tdeg⁡x,y,tdeg⁡y,x
POLYNOMIALIDEAL(y^2+2*(3+4*w)^(1/2),x^2+4*z,variables = {x, y},characteristic = 5,known_groebner_bases = (table([(tdeg(y,x))=[[1, x^2, x^2+4*z], [1, y^2, y^2+2*(3+4*w)^(1/2)]],(tdeg(x,y))=[[1, y^2, y^2+2*(3+4*w)^(1/2)], [1, x^2, x^2+4*z]],(plex(x,y))=[[1, y^2, y^2+2*(3+4*w)^(1/2)], [1, x^2, x^2+4*z]]])))
See Also
Groebner:-Basis
lprint
MonomialOrders
PolynomialIdeals
PolynomialIdeals:-PolynomialIdeal
Download Help Document