RegularChains[ChainTools]
Chain
constructs regular chains
Calling Sequence
Parameters
Description
Examples
Chain(lp, rc, R)
lp
-
list of polynomials of R
rc
regular chain of R
R
polynomial ring
The command Chain(lp, rc, R) returns the regular chain obtained by extending rc with lp.
It is assumed that lp is a list of non-constant polynomials sorted in increasing main variable, and that any main variable of a polynomial in lp is strictly greater than any algebraic variable of rc.
It is also assumed that the polynomials of rc together with those of lp form a regular chain.
The function Chain allows the user to build a regular chain without performing any expensive check and without splitting or simplifying. On the contrary, the functions Construct and ListConstruct check their input completely. In addition, they simplify the input polynomials and they may also factorize some of them, leading to a list of regular chains (that is, a split) rather than a single one.
The function Chain is used by some algorithms where one tries to split the computations as little as possible. This is the case for the function EquiprojectableDecomposition.
This command is part of the RegularChains[ChainTools] package, so it can be used in the form Chain(..) 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][Chain](..).
with⁡RegularChains:
with⁡ChainTools:
R≔PolynomialRing⁡t,x,y,z
R≔polynomial_ring
pz≔z2+2⁢z+1
py≔z⁢y2+1
pt≔t⁢x+y+y+z
qy≔expand⁡3⁢z⁢py
qy≔3⁢y2⁢z2+3⁢z
qt≔expand⁡x+y2⁢pt
qt≔t⁢x3+3⁢t⁢x2⁢y+3⁢t⁢x⁢y2+t⁢y3+x2⁢y+x2⁢z+2⁢x⁢y2+2⁢x⁢y⁢z+y3+z⁢y2
rc≔Empty⁡R
rc≔regular_chain
rc1≔Chain⁡pz,qy,qt,rc,R
rc1≔regular_chain
Equations⁡rc1,R
x3+3⁢x2⁢y+3⁢x⁢y2+y3⁢t+y+z⁢x2+2⁢y2+2⁢z⁢y⁢x+y3+z⁢y2,3⁢z2⁢y2+3⁢z,z2+2⁢z+1
lrc≔ListConstruct⁡pz,qy,qt,rc,R
lrc≔regular_chain,regular_chain
map⁡Equations,lrc,R
t,y−1,z+1,x−1⁢t−2,y+1,z+1
See Also
ChainTools
Construct
Empty
Equations
ListConstruct
PolynomialRing
RegularChains
Download Help Document