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

Online Help

All Products    Maple    MapleSim


SolveTools

  

PolynomialSystem

  

solve polynomial system of equations

 

Calling Sequence

Parameters

Options

Description

Examples

Calling Sequence

PolynomialSystem(eqns, vars, notzero, options)

Parameters

eqns

-

list or set; system of equations

vars

-

(optional) list or set; variables for which to solve. The default is indets(eqns).

notzero

-

(optional) set; expressions for solutions not to be returned

options

-

(optional) equation(s) of the form keyword = value

Options

• 

backsubstitute = true or false

  

The default is true.  If false, a triangular set will be returned.  This can be much more compact than a solution that has been backsubstituted. Not compatible with domain=real or engine values other than groebner and triade.

• 

engine = one of: default, groebner, traditional, triade, backsolve

  

Specify the method to use in solving.  If not specified, engine=default is used.

• 

domain = one of: absolute, parametric, real

  

Specify the domain over which to solve. The default is absolute.

• 

explicit = true or false

  

The default is false. If true, explicit, radical values for the roots are given where possible. Not compatible with backsubstitute=false.

• 

maxsols = a non-negative integer or infinity

  

Specify the number of solutions to return. The default is infinity.

• 

preprocess = true or false

  

If true, (the default) a series of simple preprocessors will be applied to the system to remove denominators of rational polynomial inputs, remove trivial equations, and remove simple linear equations before it is sent to the main polynomial solver.

• 

preservelabels = true or false

  

The default is false. If true, labels will not be stripped from RootOfs.

• 

tryhard = true or false

  

The default is true. If false, the engine will fail with an error if it determines that the solution will take a long time to compute.

Description

• 

The PolynomialSystem command solves a system of polynomial or rational equations, eqns, with respect to specified variables, vars. It is primarily intended for use on systems with more than one equation in more than one variable.  For a single equation or one variable, solve is preferred.  For linear equations, SolveTools[Linear] is preferred.

• 

If notzero is specified, the PolynomialSystem command tries to not return solutions that make the given expressions zero. However, implicit solutions or parametric solutions that represent many solutions will still be returned unless all the solutions they represent cause the notzero equations to be zero. See the examples below.

• 

By default the PolynomialSystem command uses a series of heuristics to choose the best engine with which to solve a system. Specifying engine=default will force this behavior.

  

Specifying engine=triade will use the Triangularize command of the RegularChains package to split the system.

  

Specifying engine=groebner will use the Basis command of the Groebner package to split the system.  Depending on the number of solutions a tdeg basis and a RationalUnivariateRepresentation will be computed instead of a plex basis.

  

Currently, the groebner and triade engines do not fully support polynomials with non-rational constants in the coefficients (such as radicals, RootOfs, or transcendental constants).

  

Specifying engine= traditional will use Maple library commands such as gcd, factor, and evala together with pseudo-subresultant computations to split the equations and find solutions efficiently.  This method may also call into the Groebner package if it cannot otherwise find solutions.

• 

Specifying engine= backsolve will choose a method that will do as little work as possible on a system that is already in a regular triangular form.

• 

If vars is given as a list, the triade and groebner engines will attempt to use the variable ordering in the list. That is, if there are fewer equations than variables, the solutions will be given with earlier variables specified in terms of later variables. Otherwise, if vars is a set, a good ordering will be chosen.

• 

The domain option specifies the domain of the solution. By default the polynomials are solved over the algebraic closure of the coefficient field, C&conjugate0;a1,,am where ai are the symbols in the equations that are not variables.  It should be noted that the solution returned will not be valid for every possible specialization of the ai symbols. Specifying domain=absolute will force this behavior.

  

Specifying domain=real will return only real solutions to the equations.  This option is honored only when the system of equations has finitely many complex solutions.  Complex solutions may be returned for positive dimensional systems.

  

Specifying domain=parametric will also compute solutions over C&conjugate0;a1,,am but it will, with each solution, return a proviso inequality, that is, an inequality that must be satisfied by a substitution on the parameters for that substitution to lead to a valid solution.  Currently the parametric domain can not compute solutions with proviso for systems with an infinite number of solutions (positive dimensional systems) and attempting to solve such systems will result in an error.

Examples

withSolveTools:

PolynomialSystemx2+y,xy32,x,y,maxsols=1

x=1,y=−1

(1)

PolynomialSystemx3+yx3,xyx32,x,y,y+1

PolynomialSystemyx2+1,y+x21,x,y

x=1,y=0,x=−1,y=0

(2)

PolynomialSystemyx2+1,y+x21,x,y,x1

x=−1,y=0

(3)

PolynomialSystemyx2+1,y+x21,x,y,engine=groebner,backsubstitute=false

y,x1,,y,x+1,

(4)

PolynomialSystemyx2+1,y+x21,x,y,engine=groebner

x=1,y=0,x=−1,y=0

(5)

PolynomialSystemy3+1,y+x21,x,y,domain=real

x=RootOf_Z22,−1.414214135..−1.41421318,y=−1,x=RootOf_Z22,1.41421318..1.414214135,y=−1

(6)

PolynomialSystemy3+1,y+x21,x,y,engine=traditional

x=RootOf_Z22,y=−1,x=RootOf_Z4_Z2+1,y=RootOf_Z4_Z2+12+1

(7)

PolynomialSystemy3+1,y+x21,x,y,engine=traditional,explicit=true

x=2,y=−1,x=2,y=−1,x=2+2I32,y=12I32,x=2+2I32,y=12I32,x=22I32,y=12+I32,x=22I32,y=12+I32

(8)

PolynomialSystemx2x,ty1,zy,x,y,z,domain=parametric

x=0,y=1t,z=y,t0,x=1,y=1t,z=y,t0

(9)

The notzero optional argument cannot remove partial solutions:

PolynomialSystemz+x,xy,x2y2,x,z,x1

x=y,z=y

(10)

PolynomialSystemx22,y22,x,y,xsqrt2

x=RootOf_Z22,label=_L3,y=RootOf_Z22,label=_L4

(11)

notzero can remove whole components of parameterize solutions or individual RootOf branches of explicit solutions

PolynomialSystemz+x,x2y2,x,z,xy

x=y,z=y

(12)

PolynomialSystemx22,y22,x,y,xsqrt2,explicit

x=2,y=2,x=2,y=2

(13)

See Also

Groebner

RegularChains

solve

SolveTools

SolveTools[Linear]