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

Online Help

All Products    Maple    MapleSim


RegularChains[AlgebraicGeometryTools]

  

RegularChainBranches

  

compute the PuiseuxSeries solution of a regular chain

 

Calling Sequence

Parameters

Description

Examples

References

Compatibility

Calling Sequence

RegularChainBranches(rc, R, L)

RegularChainBranches(rc, R, L, V, coeff_opt, acc_opt)

Parameters

R

-

polynomial ring

rc

-

regular chain of R

L

-

list of polynomials of R

V

-

(optional) variable to be used in the result

coeff_opt

-

(optional) equation of the form coefficient = complex or coefficient = real (default: complex)

acc_opt

-

(optional) equation of the form accuracies = list_of_integers

Description

• 

The command RegularChainBranches(rc, R, L) returns the Puiseux series solutions of the regular chain rc around each of the roots of the polynomials in L.

• 

The returned Puiseux series are actually truncated at a precision which is high enough to separate the different branches associated with the same root of a polynomial in L.

• 

It is assumed that the coefficient field of R is the field of rational numbers.

• 

It is assumed that rc is a one-dimensional strongly normalized regular chain.

• 

This implies that every initial of a polynomial f in rc is either constant or univariate in a variable, say v, of R which is not algebraic w.r.t. rc.

• 

It is assumed that the polynomials in L are univariate in that variable v. Moreover, it is assumed that every root of a polynomial in L is a root of the initial of a polynomial in rc.

• 

Finally, it is assumed that V is an unassigned variable name.

• 

The output of the command RegularChainBranches(rc, R, L) is a list of tuples. Each tuple is a Puiseux series solution of rc (associated with a root of the initial of a polynomial in rc) using an auxiliary variable to represent each Puiseux series as a pair of two polynomials; the first polynomial in such a pair is of a power of a variable (which is V if it is specified, otherwise T) and the second polynomial is univariate in that same variable.

• 

In each Puiseux series solution of rc, each variable of R is given as a Puiseux series and all those Puiseux series share the same first polynomial in their representation; therefore, this polynomial appears only once as the first item in the tuple encoding this Puiseux series solution of rc.

• 

If the option coefficient=real is present, then only the Puiseux series solutions with real coefficients are returned. Note those real Puiseux solutions are independent of the precision which is used in the returned truncated Puiseux series. In other words, the underlying algorithm guarantees that the returned Puiseux solutions represent all the real branches.

• 

The accuracies option is for advanced users. If the option accuracies = L is present, where L is a list of integers, then L needs to have the same number of entries as the number of polynomials in rc. The effect is that the number of terms used for the ith polynomial in rc is L[i]. Any value used must comply with a certain set of requirements set out in the paper by Alvandi, Chen, and Moreno Maza listed in the References section.

  

If the accuracies option is not present, then a default value is computed. This value complies with the requirements listed in the paper.

• 

This command is part of the RegularChains[AlgebraicGeometryTools] package, so it can be used in the form RegularChainBranches(..) only after executing the command with(RegularChains[AlgebraicGeometryTools]). However, it can always be accessed through the long form of the command by using RegularChains[AlgebraicGeometryTools][RegularChainBranches](..).

Examples

withRegularChains:withChainTools:withAlgebraicGeometryTools:

RPolynomialRingx,y,z

Rpolynomial_ring

(1)

rcChainz2+y,xzy2,EmptyR,R

rcregular_chain

(2)

Displayrc,R

zxy2=0yz2=0z0

(3)

brRegularChainBranchesrc,R,z

brz=_T,y=_T2,x=_T3

(4)

rcChainy2z+y+1,z+2zx2+y+1x+1,EmptyR,R

rcregular_chain

(5)

Displayrc,R

z2+2zx2+y+1x+y+1=0zy2+y+1=0z0z2+2z0

(6)

RegularChainBranchesrc,R,z

z=_T0,y=_T01,x=1432_T05+11432_T04+5432_T035216_T02+112_T012,z=_T0,y=_T01,x=_T02_T02+4_T029_T054432

(7)

RegularChainBranchesrc,R,z+2

z=_T12,y=1216_T1411216_T13+427_T12+13_T1+1,x=38_T13+12_T12+_T11,z=_T12,y=1216_T14+11216_T135216_T12112_T112,x=98_T13+2_T12+4_T11

(8)

rcChainy32y3+y2+z5,z4x+y3y2,EmptyR,R

rcregular_chain

(9)

Displayrc,R

z4x+y3y2=0y3+y2+z5=0z40

(10)

brRegularChainBranchesrc,R,z

brz=_T22,y=_T25_T25+2RootOf_Z2+12,x=_T22_T220+6_T215RootOf_Z2+110_T21088,z=_T22,y=_T25_T252RootOf_Z2+12,x=_T22_T2206_T215RootOf_Z2+110_T21088,z=_T2,y=_T25+1,x=_T2112_T26_T2

(11)

brRegularChainBranchesrc,R,z,coefficient=real

brz=_T3,y=_T35+1,x=_T3112_T36_T3

(12)

References

  

Parisa Alvandi, Changbo Chen, Marc Moreno Maza "Computing the Limit Points of the Quasi-component of a Regular Chain in Dimension One." Computer Algebra in Scientific Computing (CASC), Lecture Notes in Computer Science - 8136, (2013): 30-45.

  

Parisa Alvandi, Masoud Ataei, Mahsa Kazemi, Marc Moreno Maza "On the Extended Hensel Construction and its application to the computation of real limit points." J. Symb. Comput. 98: 120-162 (2020)

Compatibility

• 

The RegularChains[AlgebraicGeometryTools][RegularChainBranches] command was introduced in Maple 2020.

• 

For more information on Maple 2020 changes, see Updates in Maple 2020.

See Also

Chain

Display

Empty

Equations

PolynomialRing

RegularChains