Groebner
HilbertDimension
compute Hilbert Dimension
MaximalIndependentSet
compute maximal independent set
Calling Sequence
Parameters
Description
Examples
HilbertDimension(J, X, characteristic=p)
MaximalIndependentSet(J, X, characteristic=p)
J
-
a list or set of polynomials or a PolynomialIdeal
X
(optional) a list or set of variables, a ShortMonomialOrder, or a MonomialOrder
p
(optional) characteristic
The MaximalIndependentSet command computes a maximal set of (algebraically) independent variables U such that the intersection of J with the subring K[U] is empty. The number of elements in such a set is equal to the Hilbert dimension of the ideal, as well as the affine dimension of the corresponding variety.
In the case of skew polynomials, the dimension that is returned is that of the left ideal generated by J.
The variables of the system can be specified using an optional second argument X. If X is a ShortMonomialOrder then a Groebner basis of J with respect to X is computed. By default, X is the set of all indeterminates not appearing inside a RootOf or radical when J is a list or set, or PolynomialIdeals[IdealInfo][Variables](J) if J is an ideal.
The optional argument characteristic=p specifies the ring characteristic when J is a list or set. This option has no effect when J is a PolynomialIdeal or when X is a MonomialOrder.
The algorithm for HilbertDimension and MaximalIndependentSet uses the leading monomials of a total degree Groebner basis for J. To access this functionality directly (as part of a program), make J the list or set of leading monomials. The commands will detect this case and execute the algorithm with minimal overhead.
Note that the hilbertdim command is deprecated. It may not be supported in a future Maple release.
The ideal below is zero-dimensional, so the set of solutions are points in C[x,y,z]. The intersection of F with each variable is a univariate polynomial so there are no algebraically independent variables.
with⁡Groebner:
F≔x2−2⁢x⁢z+5,x⁢y2+y⁢z3,3⁢y2−8⁢z3
F≔x2−2⁢x⁢z+5,y⁢z3+x⁢y2,−8⁢z3+3⁢y2
HilbertDimension⁡F
0
map⁡UnivariatePolynomial,x,y,z,F
3⁢x12−64⁢x11+90⁢x10−960⁢x9+1125⁢x8−4800⁢x7+7500⁢x6−8000⁢x5+28125⁢x4+56250⁢x2+46875,729⁢y8+41472⁢y7+77760⁢y6+2764800⁢y4+32768000⁢y2,9⁢z9−96⁢z8+240⁢z6+1600⁢z3
MaximalIndependentSet⁡F
∅
The first two equations generate a curve in C[x,y,z]. All of the variables are algebraically independent.
HilbertDimension⁡F1..2
1
MaximalIndependentSet⁡F1..2
y
map⁡UnivariatePolynomial,x,y,z,F1..2
0,0,0
Over GF(2) the situation is different, z is algebraically independent so the ideal generates a "curve".
HilbertDimension⁡F,characteristic=2
map⁡UnivariatePolynomial,x,y,z,F,characteristic=2
x2+1,y2,0
MaximalIndependentSet⁡F,characteristic=2
z
See Also
Basis
HilbertSeries
IsZeroDimensional
PolynomialIdeals[HilbertDimension]
UnivariatePolynomial
Download Help Document