RegularChains
Intersect
compute the common solutions of a polynomial and a regular chain
Calling Sequence
Parameters
Description
Examples
References
Intersect(f, rc, R)
f
-
polynomial
rc
regular chain
R
polynomial ring
The command Intersect(f, rc, R) computes the common solutions of the polynomial f and the regular chain rc in the following sense. Let V be the hypersurface defined by f, that is, the solutions of the equation f = 0 . Let W be the quasi-component of rc. Then Intersect(f, rc, R) returns regular chains such that the union of their quasi-components contains the intersection of V and W, and this union is contained in the intersection of V and the Zariski closure of W. See ConstructibleSetTools for a definition of a quasi-component.
When the regular chain rc has dimension zero, Intersect(f, rc, R) computes exactly the intersection of V and W. This is also the case when W is a variety (that is a closed set for Zariski topology) or when rc has dimension one and f is regular w.r.t. the saturated ideal of rc. In all other cases, Intersect(f, rc, R) computes a superset of the intersection of V and W. However this superset is very close to this intersection.
In summary and in broad terms, Intersect(f, rc, R) computes a sharp approximation of the intersection of V and W by means of regular chains.
You can use the function Intersect to solve systems of equations incrementally, that is, one equation after the other. The example below illustrates this strategy.
Another way of understanding the Intersect command is to observe that it specializes the solutions of rc with the constraint f = 0 .
with⁡RegularChains:
with⁡ChainTools:
Define a ring of polynomials.
vars≔x,y,z:R≔PolynomialRing⁡vars:
Define a set of equations.
sys≔x2+y+z−1,x+y2+z−1,x+y+z2−1
sys≔x2+y+z−1,y2+x+z−1,z2+x+y−1
Define the empty regular chain.
rc≔Empty⁡R
rc≔regular_chain
Solve the first equation.
dec≔Intersect⁡sys1,rc,R;map⁡Equations,dec,R
dec≔regular_chain
x2+y+z−1
Solve the first and second equations.
dec≔seq⁡op⁡Intersect⁡sys2,rc,R,rc=dec;map⁡Equations,dec,R
dec≔regular_chain,regular_chain
x−y,y2+y+z−1,x+y−1,y2−y+z
Solve the three equations together.
dec≔seq⁡op⁡Intersect⁡sys3,rc,R,rc=dec;map⁡Equations,dec,R
dec≔regular_chain,regular_chain,regular_chain,regular_chain
x−z,y−z,z2+2⁢z−1,x,y,z−1,x−1,y,z,x,y−1,z
Moreno Maza, M. "On Triangular Decompositions of Algebraic Varieties." MEGA-2000 conference. Bath, UK, England.
See Also
ConstructibleSetTools
GeneralConstruct
Triangularize
Download Help Document