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

Online Help

All Products    Maple    MapleSim


LinearFunctionalSystems

  

PolynomialSolution

  

return the polynomial solution of a linear functional system of equations

 

Calling Sequence

Parameters

Description

Examples

References

Calling Sequence

PolynomialSolution(sys, vars, opts)

PolynomialSolution(A, b, x, case, opts)

PolynomialSolution(A, x, case, opts)

Parameters

sys

-

list of equations; linear functional system

vars

-

list of function variables such as [y1(x), y2(x), ...]; variables to solve for

A

-

Matrix with rational elements

b

-

Vector with rational elements

x

-

independent variable

case

-

name indicating the case of the system; one of 'differential', 'difference', or 'qdifference'

opts

-

optional arguments of the form 'keyword'=value, where keyword is method or degree

Description

• 

The PolynomialSolution command returns the polynomial solutions of the given linear functional system of equations with polynomial coefficients. If such a solution does not exist, then the empty list  is returned. If the degree of polynomial solutions cannot be bound then FAIL is returned. In this case the problem could be further specified by providing additional equations and/or by fixing the degree bound in advance using the degree option.

  

The system parameter is entered either in list form (a list of equations sys and a list of function variables vars to solve for), or in matrix form (matrix A, vector b, and the independent variable x, where the vector b is optional).

  

The matrix form specifies the system Lyx=Ayx+b, where L is the operator (either differential, difference, or q-difference), yx is the vector of the functions to solve for, A is a rational matrix, and b is a rational vector (right-hand side).

  

For the matrix form of the calling sequence, the case of the system must be specified as one of 'differential', 'difference', or 'qdifference'. If b is not specified, the system is assumed to be homogeneous.

• 

This function computes the matrix recurrence system corresponding to the given system. This matrix recurrence system is represented by its explicit matrix (the matrix n by n*m, where n is the order of the system, with the leading and trailing matrix of size n by n). Then, this function triangularizes the trailing matrix by using LinearFunctionalSystems[MatrixTriangularization] in order to bound the polynomial solution degree and then builds such a solution.

• 

The solution is the list of polynomials in x corresponding to vars. This solution involves arbitrary constants of the form _c1, _c2, etc.

• 

The optional arguments are method and degree.

• 

'method'='quasimodular' or 'ordinary'

  

This option indicates the method of EG-eliminations to use.  The default is ordinary.

• 

'degree'=n

  

This option sets the upper bound of the degree of polynomial solutions to be found.

  

If the number of linear independent equations of the system is less than the number of the function variables then the degree of polynomial solutions cannot be bound and FAIL is returned. In this case it is possible either to specify the bound using option of the form 'degree'=n or to extend the system by additional equations, in particular giving the desirable value of some of the function variables (see example).

• 

The error conditions associated with this function are the same as those which are generated by LinearFunctionalSystems[Properties].

• 

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

Examples

withLinearFunctionalSystems:

sysdiffy1x,xy2x,diffy2x,xy3xy4x,diffy3x,xy5x,diffy4x,x2y1x2xy2xy5x,diffy5x,xx2y1x2xy3xy6x,diffy6x,xx2y2x+2y3x:

varsy1x,y2x,y3x,y4x,y5x,y6x:

PolynomialSolutionsys,vars

x_c3+_c2,_c3,x2_c3x_c2+_c1,x2_c3+x_c2_c1,2x_c3_c2,x3_c3+x2_c22x_c12_c3

(1)

sysx+3x+6x+1x+5xy1x+1x1x+2x+3x+6x+1y1xxx6+11x5+41x4+65x3+50x236y2x+6x+2x+3x+6x+1xy4x,x+6x+2y2x+1x2y2x,x+6x+1x+5xy3x+1+x+6x+1x1y1xxx5+7x4+11x3+4x25x+6y2xy3xx+6x+1x+5x+x+6x+1x3x+3y4x,x+6y4x+1+x2y2xx+6y4x:

varsy1x,y2x,y3x,y4x:

PolynomialSolutionsys,vars

0,0,_c1,0

(2)

sysxdiffy1x,x2y1xy2x:

varsy1x,y2x:

solPolynomialSolutionsys,vars

solFAIL

(3)

PolynomialSolutionsys,vars,degree=3

x3_c4+x2_c3x_c2+_c1,x3_c4+x_c22_c1

(4)

sysopsys,y2x=x3:

PolynomialSolutionsys,vars

x3+x2_c1,x3

(5)

References

  

Abramov, S. A. "EG-Eliminations." Journal of Difference Equations and Applications, (1999): 393-433.

See Also

LinearFunctionalSystems[MatrixTriangularization]

LinearFunctionalSystems[Properties]

LinearFunctionalSystems[RationalSolution]