RegularChains[ChainTools]
Cut
split a chain by a variable
Calling Sequence
Parameters
Description
Examples
Cut(v, rc, R)
v
-
variable of of R
rc
regular chain of R
R
polynomial ring
out_top
unevaluated name
out_pv
out_sub_rc
The command Cut(v, rc, R) returns alg_v,top,pv,sub_rc where alg_v is true if and only if v is an algebraic variable of rc, that is, if there exists a polynomial of rc with v as main variables.
Moreover, top is assigned to the list of polynomials of rc with main variable strictly greater than v, ordered by increasing main variable.
pv is assigned to the polynomial of rc with main variable v. If no such polynomial exists, pv is left unchanged.
sub_rc is the regular chain under the variable v, i.e. composed of the polynomials of rc with main variable strictly lower than v.
This command is part of the RegularChains[ChainTools] package, so it can be used in the form Cut(..) 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][Cut](..).
with⁡RegularChains:
R≔PolynomialRing⁡x,y,z
R≔polynomial_ring
with⁡ChainTools:
rc≔Empty⁡R
rc≔regular_chain
rc≔Chain⁡z+1,y+2,x+3,rc,R
res≔Cut⁡x,rc,R;Equations⁡res4,R
res≔true,,x+3,regular_chain
y+2,z+1
res≔Cut⁡y,rc,R;Equations⁡res4,R
res≔true,x+3,y+2,regular_chain
z+1
res≔Cut⁡z,rc,R;Equations⁡res4,R
res≔true,y+2,x+3,z+1,regular_chain
See Also
Chain
ChainTools
Empty
Equations
IsAlgebraic
Polynomial
PolynomialRing
RegularChains
Under
Upper
Download Help Document