RegularChains[ChainTools]
IsZeroDimensional
check whether a regular chain is zero-dimensional
Calling Sequence
Parameters
Description
Examples
IsZeroDimensional(rc, R)
rc
-
regular chain of R
R
polynomial ring
The command IsZeroDimensional(rc, R) returns true if rc is zero-dimensional false otherwise.
This command is part of the RegularChains[ChainTools] package, so it can be used in the form IsZeroDimensional(..) only after executing the command with(RegularChains[ChainTools]). However, it can always be accessed through the long form of the command by using RegularChains[ChainTools][IsZeroDimensional](..).
with⁡RegularChains:
with⁡ChainTools:
R≔PolynomialRing⁡x,y,z
R≔polynomial_ring
pz≔z−1⁢z−2
py≔y2+z
px≔x+y+z
rc≔Empty⁡R
rc≔regular_chain
rc1≔Chain⁡pz,rc,R
rc1≔regular_chain
IsZeroDimensional⁡rc1,R
false
rc2≔Chain⁡pz,py,px,rc,R
rc2≔regular_chain
IsZeroDimensional⁡rc2,R
true
See Also
Chain
DahanSchostTransform
Dimension
Empty
IsStronglyNormalized
PolynomialRing
RegularChains
Download Help Document