RegularChains
MatrixCombine
equiprojectable decomposition of a list of regular chains
Calling Sequence
Parameters
Description
Examples
MatrixCombine(lrc, R)
MatrixCombine(lrc, R, lm)
R
-
polynomial ring
lrc
list of regular chains of R
lm
list of matrices with coefficients in R
The function call MatrixCombine(lrc, R, lm) returns the equiprojectable decomposition of the variety given by lrc, and the corresponding combined matrices.
The variety encoded by lrc is the union of the regular zero sets of the regular chains of lrc.
It is assumed that every regular chain in lrc is zero-dimensional and strongly normalized, and that all matrices in lm have the same format.
It is also assumed that lrc and lm have the same number of elements.
This command is part of the RegularChains package, so it can be used in the form MatrixCombine(..) only after executing the command with(RegularChains). However, it can always be accessed through the long form of the command by using RegularChains[MatrixCombine](..).
with⁡RegularChains:with⁡ChainTools:
Consider a polynomial ring with three variables
R≔PolynomialRing⁡x,y,z:
rc≔Empty⁡R:
Consider the following four regular chains of R
rc1≔Chain⁡z,y,x−1,rc,R:
rc2≔Chain⁡z,y−1,x,rc,R:
rc3≔Chain⁡z−1,y,x,rc,R:
rc4≔Chain⁡z2+2⁢z−1,y−z,x−z,rc,R:
Consider the following four matrices over R
m1≔Matrix⁡x+y−z,x−y+1,x−2⁢y+1,x−2+z
m1≔x+y−zx−y+1x−2⁢y+1x−2+z
m2≔Matrix⁡x−z−1,x+z−2,x−3+y,x+y+z−1
m2≔x−z−1x−2+zx−3+yx+y+z−1
m3≔Matrix⁡x−y−1,x+y−2⁢z,x+y−z−3,x+y+z−2
m3≔x−y−1x+y−2⁢zx+y−z−3x+y+z−2
m4≔Matrix⁡x−z−y+1,x+2⁢z−2⁢y,x+y−z+1,x+y−z−1
m4≔x−z−y+1x+2⁢z−2⁢yx+y−z+1x+y−z−1
We view each matrix as a result obtained modulo the corresponding regular chain in the given order. We combine these four results as follows
clr≔MatrixCombine⁡rc1,rc2,rc3,rc4,R,m1,m2,m3,m4
clr≔−2⁢y+1−4⁢y+2−4⁢y+2y−1,regular_chain,−12⁢z2−2⁢z+32−32⁢z2−2⁢z+32−3⁢z2−5⁢z+4−z22−12,regular_chain
The four cases cannot be combined into a single one. In fact, we obtained the following two cases
rc1≔clr12;Equations⁡rc1,R
rc1≔regular_chain
x+y−1,y2−y,z
rc2≔clr22;Equations⁡rc2,R
rc2≔regular_chain
2⁢x+z2−1,2⁢y+z2−1,z3+z2−3⁢z+1
The two ideals generated by rc1 and rc2 are obviously relatively prime (no common roots in z) so the Chinese Remaindering Theorem applies. However, if we try to recombine them, we create a polynomial in y with a zero-divisor as initial. This is forbidden by the properties of a regular chain.
See Also
Equations
EquiprojectableDecomposition
ExtendedRegularGcd
Matrix
PolynomialRing
Triangularize
Download Help Document