Overview - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Overview of the RegularChains:-ParametricSystemTools Subpackage

 

Calling Sequence

Description

List of RegularChains:-ParametricSystemTools Subpackage Commands

Examples

References

Calling Sequence

RegularChains:-ParametricSystemTools:-command(arguments)

command(arguments)

Description

• 

The RegularChains:-ParametricSystemTools subpackage is a collection of commands to solve polynomial systems with parameters.

• 

These functions can be used to understand the properties of the solution set of a polynomial system F which depends on parameters. For example, you can answer questions such as: for which values of the parameters does F have solutions? finitely many solutions? N solutions, for a given N?

• 

The functions in this subpackage can be divided into two groups. The functions for solving a parametric polynomial system F with coefficients in an arbitrary field are based on the concept of a comprehensive triangular decomposition (CTD). The functions for solving a parametric polynomial system with coefficients in a real field are based on the algorithm DISCOVERER developed by Bican Xia. We next introduce the functions related to CTD and DISCOVERER successively.

List of RegularChains:-ParametricSystemTools Subpackage Commands

  

The following is a list of available commands.

BelongsTo

BorderPolynomial

CoefficientsInParameters

ComplexRootClassification

ComprehensiveTriangularize

DefiningSet

DiscriminantSequence

DiscriminantSet

PreComprehensiveTriangularize

RealComprehensiveTriangularize

RealRootClassification

Specialize

Examples

withRegularChains:

withChainTools:

withConstructibleSetTools:

withSemiAlgebraicSetTools:

withParametricSystemTools:

Comprehensive Triangular Decomposition

• 

In broad terms, a CTD of a parametric polynomial system F provides a finite partition P of the parameter space into regions, so that above each region the geometry (number of irreducible components together with their dimensions and degrees) of the solution set of F is the same at each parameter value. In addition, for each region C of the partition P, a CTD provides an associated (finite) set of regular chains S such that for each parameter value u in C the regular chains evaluated at u form a triangular decomposition (into regular chains) of the specialized system Fu.

• 

A CTD of the parametric polynomial system F does not need any assumptions on F or on the field of its coefficients. The computation of a CTD essentially proceeds in two steps. First, compute the set of all regular chains that are associated with the regions of the partition P. This first step is called pre-comprehensive triangular decomposition. Then, the partition P is computed.

• 

Consider a simple example with a polynomial system F with two parameters u and v. You can answer questions such as: when does F have solutions? finitely many solutions? N solutions, for a given N? When you declare the polynomial ring, you do not specify yet which variables are regarded as parameters. This will be done during the function calls, which allows more flexibility.

RPolynomialRingx,y,u,v

Rpolynomial_ring

(1)
  

The input polynomial system F consists of two equations.

Fuxvy,x2+y21

Fuxvy,x2+y21

(2)
  

Below, one computes a (traditional) triangular decomposition of the system F.

decTriangularizeF,R,output=lazard

decregular_chain,regular_chain,regular_chain,regular_chain

(3)

mapInfo,dec,R

uxyv,u2+v2y2u2,x1,y,u,x+1,y,u,x2+y21,u,v

(4)

opmapInfo,dec,R

uxyv,u2+v2y2u2,x1,y,u,x+1,y,u,x2+y21,u,v

(5)
  

Without additional computations, the questions above cannot be answered completely from this decomposition. For instance, it is not clear for which values of u,v the system F has solutions. This question can be answered by means of the Projection function from the RegularChains:-ConstructibleSetTools subpackage. More precisely, it can project the variety onto the parameter space, the parameters being the last two variables in the polynomial ring. Note that this projection is not a variety in general. So, the returned type must be a constructible set, which is given here by four regular systems.

csProjectionF,2,R;RepresentingRegularSystemscs,R

csconstructible_set

regular_system,regular_system,regular_system

(6)

Infocs,R

,u,u2+v2,u,1,u,v,1

(7)
  

One obtains 4 cells in the parameter space. Clearly, this representation can be made simpler. To do so, as seen before, one can use the command MakePairwiseDisjoint.

csMakePairwiseDisjointcs,R;RepresentingRegularSystemscs,R

csconstructible_set

regular_system,regular_system

(8)

Infocs,R

u,1,,u,u2+v2

(9)
  

Now a clear answer has been reached. The system F has solutions if and only if u=0 or uu2+v20. Now, consider the next question: when does F have finitely many solutions? Different tools are available in this subpackage to answer that question. First, you can compute a CTD of F using the ComprehensiveTriangularize command.

ctdComprehensiveTriangularizeF,2,R

ctdregular_chain,regular_chain,regular_chain,regular_chain,constructible_set,1,constructible_set,2,3,constructible_set,2,3,4

(10)
  

One retrieves the triangular decomposition (see below) together with some additional information. The three constructible sets above form a partition of the projection of the solution set of F onto the parameter space such that above each part (or cell, or region), the solution set of F is given by the regular chains whose indices appear in the list associated with that cell. Hence, when u=v=0, the solutions of F are given by the last three regular chains in ctd1. In this case, there are infinitely many solutions (because of the fourth regular chain). The other two cases do not involve this fourth regular chain, and they lead to finitely many solutions, actually 2. Note that each of the first two cells is given just by one regular system; the last one is given by two.

mapInfo,ctd1,R

uxyv,u2+v2y2u2,x1,y,u,x+1,y,u,x2+y21,u,v

(11)

lcsseqctd2i1,i=1..nopsctd2

lcsconstructible_set,constructible_set,constructible_set

(12)

mapRepresentingRegularSystems,lcs,R

regular_system,regular_system,regular_system

(13)

mapInfo,lcs,R

,u,u2+v2,u,v,u,v,1

(14)
  

A more direct, but less detailed, answer to this question can be obtained by using the DiscriminantSet command. The output is the set of the parameter values at which the system F has infinitely many solutions or no solutions. This is again a constructible set.

dsDiscriminantSetF,2,R:Infods,R

u,v,1,u2+v2,v

(15)
  

Observe that you can compute the set of the parameter values at which F has finitely many solutions just by computing the set theoretical difference of two constructible sets, cs and ds. One retrieves the result that you could read from the CTD: the input system F has finitely many solutions if and only if one of these three conditions holds:

  

(1) u=0 and v0

  

(2) uu2+v20

  

(3) v=0 and u0

fsDifferencecs,ds,R:Infofs,R

u,v,,u,u2+v2,v,v,u

(16)
• 

Consider now a second example where the goal is to avoid bad specializations. Indeed, comprehensive triangular decompositions have a motivation other than counting solutions depending on parameters. This other feature can be stated as follows: above each cell in the parameter space, each regular chain in the associated triangular decomposition must be well-behaved under specialization. This concept is made more precise later. Consider a polynomial system F in two unknowns, x and y, and one parameter, s, over the complex field.

RPolynomialRingx,y,s;Fsy+1x,sx+1y

Rpolynomial_ring

Fsy+1x,sx+1y

(17)
  

Start by computing a (traditional) triangular decomposition of F.

tdTriangularizeF,R,output=lazard:mapEquations,td,R

y+1xs,y2+ys,x+1,y+1,s

(18)
  

It is clear from the above decomposition that s can be replaced by any complex number, producing two triangular sets. Hence, any specialization of s gives rise to solutions of F. This is confirmed by the following computation. Indeed, the complement of the projection of the variety of F on the s-axis is empty!

esComplementProjectionF,1,R,R:IsEmptyes,R

true

(19)
  

However, when you specialize the regular chain rc1=td1 at s=0, you do not obtain a regular chain anymore. Indeed, the initial of the first polynomial is not regular (that is, a zero-divisor) modulo the second polynomial. One checks this fact below.

rc1td1:rc2td2:p1evalEquationsrc1,R1,s=0

p1y+1x

(20)

p2evalEquationsrc1,R2,s=0;IsRegularInitialp1,R,Chainp2,EmptyR,R,R

p2y2+y

false

(21)
  

This situation is avoided by a CTD, since it detects that the regular chain rc1 does not specialize well at s=0.  The command DefiningSet computes, for a regular chain rc, the parameter values at which rc specializes to a regular chain, with the same rank (main variables and main degrees) as the input regular chain. The above computation shows that rc1 does not specialize well at s=0. It also shows that rc2 specializes well only at s=0, which is obvious since s is a polynomial of this regular chain.

ds1DefiningSetrc1,1,R:Infods1,R

,s

(22)

ds2DefiningSetrc2,1,R:Infods2,R

s,1

(23)
  

Below a CTD of F is computed. This produces three regular chains and two cells in the parameter space, given by constructible sets.

ctdComprehensiveTriangularizeF,1,R

ctdregular_chain,regular_chain,regular_chain,constructible_set,3,2,constructible_set,1

(24)
  

Two of these regular chains are the ones that you obtained before. The new regular chain (the third one) is there to handle the case s=0 without introducing non-regular chains.

mapInfo,ctd1,R

y+1xs,y2+ys,x+1,y+1,s,x,y,s

(25)
  

The cell s=0 is associated with the two regular chains admitting s as an equation (that is, the second and third). The cell s0 is associated with the first regular chain, which is the regular chain from the output of Triangularize above, rc1.

  

The command below displays this association: the first set tells you that the first constructible set corresponds to the case where s=0 and there are no parameters, and the second set tells you that the second constructible set corresponds to the case where s is a parameter.

mapInfo,seqctd2i1,i=1..nopsctd2,R

s,1,,s

(26)
  

Finally, if you are only interested in the regular chains that appear in a CTD (and not the cells), then the command PreComprehensiveTriangularize should be used.

pctdPreComprehensiveTriangularizeF,1,R:mapInfo,pctd,R

y+1xs,y2+ys,x+1,y+1,s,x,y,s

(27)
  

It is worth noticing that this last command does not compute the cell partition, which can save a significant amount of running time for large examples.

Mathematical Definitions

  

For precise definitions of the terms comprehensive triangular decomposition (CTD), pre-comprehensive triangular decomposition, discriminant set, and defining set, refer to the documentation of the commands ComprehensiveTriangularize, PreComprehensiveTriangularize, DiscriminantSet, and DefiningSet, respectively.

Real Root Classification

• 

If a semi-algebraic system (SAS) contains parameters, it is called a parametric SAS. For a parametric SAS and a prescribed non-negative integer n, the command RealRootClassification computes the conditions on the parameters such that the system has exactly n distinct real solutions.

• 

For a defined polynomial ring R and a SAS given by polynomial lists F, N, P, and H, we specify by the fifth argument, d, that the last d unknowns of R are viewed as parameters, and by the sixth argument, n, that we would compute the conditions for the system to have exactly n distinct real solutions. The polynomial lists F, N, P, and H successively define the equations, the non-negative inequalities, the positive inequalities and the inequations. For example,

withRegularChains:

withParametricSystemTools:

withSemiAlgebraicSetTools:

RPolynomialRingx,a,b,c

Rpolynomial_ring

(28)

Fax2+bx+c;N;Px;Ha

Fax2+bx+c

N

Px

Ha

(29)

rrcRealRootClassificationF,N,P,H,3,2,R

rrcregular_semi_algebraic_set,border_polynomial

(30)
  

The output is a list of regular semi-algebraic sets (LRSAS) and a border polynomial object (BP); they are equivalent to some logic formula. More precisely, the LRSAS gives necessary and sufficient conditions for the input SAS to have the prescribed number of real solutions, provided that the condition encode by BP holds.

• 

The role of the border polynomial is to exclude some degenerate cases which can be handled later with further computations (more on this below).

• 

The first command below shows the contents of BP: this is actually a list of polynomials and the logical condition encoded by BP is that none of those polynomials should be zero. The other commands extract the information representing the LRSAS and display the logical condition encoded by it.

  

In first approximation, a regular semi-algebraic set (RSAS) is a subset of the real solutions of a regular chain. More precisely, a RSAS is encoded by three pieces of data: a quantifier-free formula (QFF), a regular chain (RC) and a list of lists of indices (LLI). This encoding is called a parametric box (PB). The QFF part of it specifies the conditions of the variables which are not algebraic in RC, whereas RC and LLI specify the conditions of the variables which are algebraic in RC.

• 

In our example, RC and LLI are empty (which is often the case); therefore the conditions encoded by the PB is just the conditions encoded by the QFF, which can be shown by the command DisplayQuantifierFreeFormula. To summarize, the answer to our particular question is:  provided that BP holds, the input SAS has exactly 2 distinct positive real solutions if and only QFF holds.

bprrc2

bpborder_polynomial

(31)

Infobp,R

a,b,c,4ac+b2

(32)

rsasrrc11

rsasregular_semi_algebraic_set

(33)

pbRepresentingBoxrsas,R

pbparametric_box

(34)

qffRepresentingQuantifierFreeFormulapb

qffquantifier_free_formula

(35)

rcRepresentingChainrsas,R

rcregular_chain

(36)

Equationsrc,R

(37)

lliRepresentingRootIndexpb

lli

(38)
  

Recall that the border polynomial (BP) is a list of polynomials such that the union of all hypersurfaces defined by each polynomial contains all the abnormal parameter values of the input parametric SAS. For the above example, the border polynomial is c,a,4acb2. It's obvious that the number of distinct non-zero solutions changes if a4acb2c=0. Note that one can use the RegularChains:-Info command to view the contents of a BP.

• 

One might want to go further in analyzing the number of real solutions of the input SAS, that is, one might want to figure out what's happening when a parameter value cancels BP. This is very simple: it suffices to add the product of the polynomials in BP to the list of equations when calling RealRootClassification (or to add the polynomials in BP one by one to the equations of the system and call RealRootClassification accordingly).

  

Recall that, in our example, we are investigating the cases where the input system has 2 distinct positive real solutions. When we add the 4acb2 to it, we obtain no RSAS part in the output of RealRootClassification. This means that it cannot happen that the equation aX2+bX+c=0 has 2 distinct positive real solutions, when its discriminant is zero. This is obvious, of course!

rrc1RealRootClassification4acb2,opF,N,P,H,3,2,R

rrc1,border_polynomial

(39)

bp1rrc12

bp1border_polynomial

(40)

Infobp1,R

b,a

(41)
  

The above output means: provided cb0, the new system never admits two distinct positive real solutions. The cases where one of the parameters a, b, or c could be investigated similarly.

References

  

Chen, C.; Golubitsky, O.; Lemaire, F.; Moreno Maza, M.; and Pan, W. "Comprehensive Triangular Decomposition." Proc. CASC 2007, LNCS Vol. 4770: 73-101. Springer, 2007.

  

Montes, A. "A new algorithm for discussing Groebner bases with parameters." J. Symb. Comp., Vol. 33 No. 2 (2002): 183-208.

  

Wang, D. M. "Computing triangular systems and regular systems." J. Symb. Comp., Vol. 30 No. 2 (2000): 221-236.

  

Weispfenning, V. "Comprehensive Groebner bases". J. Symb. Comp., Vol. 14 (1992): 1-29.

  

Yang, L. and Xia, B. "Real solution classifications of parametric semi-algebraic systems." Algorithmic Algebra and Logic -- Proceedings of the A3L 2005, pp. 281-289. Edited by A. Dolzmann, A. Seidl, and T. Sturm. Norderstedt: Herstellung und Verlag, 2005.

  

Yang, L.; Hou, X.; and Xia, B. "A complete algorithm for automated discovering of a class of inequality-type theorems." Science China, F. Vol. 44 (2001): 33-49.

See Also

module

RegularChains

RegularChains:-ConstructibleSetTools

RegularChains:-SemiAlgebraicSetTools

RootFinding:-Parametric

UsingPackages