RegularChains[ChainTools]
ExtendedNormalizedGcd
extended normalized GCD of two polynomials with respect to a regular chain
Calling Sequence
Parameters
Description
Examples
References
ExtendedNormalizedGcd(p1, p2, v, rc, R)
p1
-
polynomial of R
p2
v
variable of R
rc
regular chain of R
R
polynomial ring
The command ExtendedNormalizedGcd(p1, p2, v, rc, R) returns a list of pairs gi,ai,bi,rci where ai, bi, gi are polynomials of R and rci is a regular chain of R.
For each pair, the polynomial gi is a normalized GCD of p1 and p2 modulo the saturated ideal of rci.
For each pair, the polynomials ai, bi, gi satisfy ai⁢p1+bi⁢p2=gi modulo the saturated ideal of rci.
For each pair, the leading coefficient of the polynomial gi with respect to v is normalized (and thus regular) modulo the saturated ideal of rci.
The returned regular chains rci form a triangular decomposition of rc (in the sense of Kalkbrener).
The returned regular chains are strongly normalized.
Comparing to ExtendedRegularGcd, the output of ExtendedNormalizedGcd will look simpler in general when rc is zero-dimensional.
However, the output of ExtendedNormalizedGcd may be much larger and much more expensive to get than the one of ExtendedRegularGcd, when rc is not zero-dimensional.
rc must be strongly normalized.
v must be the common main variable of p1 and p2.
The initials of p1 and p2 must be regular with respect to rc.
This command is part of the RegularChains[ChainTools] package, so it can be used in the form ExtendedNormalizedGcd(..) 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][ExtendedNormalizedGcd](..).
with⁡RegularChains:with⁡ChainTools:
R≔PolynomialRing⁡x,y,z
R≔polynomial_ring
rc≔Chain⁡z2−z−1,Empty⁡R,R
rc≔regular_chain
p1≔y−z3
p2≔y3−z3
ExtendedNormalizedGcd⁡p1,p2,y,rc,R
9⁢y−9⁢z,6⁢y⁢z−9⁢y−3⁢z+6,−6⁢y⁢z+9⁢y−6⁢z+12,regular_chain
Moreno Maza, M. "On triangular decompositions of algebraic varieties" Technical Report 4/99, NAG, UK, Presented at the MEGA-2000 Conference, Bath, UK. Available at http://www.csd.uwo.ca/~moreno.
See Also
Chain
Empty
ExtendedRegularGcd
PolynomialRing
RegularChains
RegularGcd
Regularize
RegularizeInitial
Download Help Document