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

Online Help

All Products    Maple    MapleSim


LinearFunctionalSystems

  

RegularSolution

  

return the regular solution of a linear system of differential equations

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

RegularSolution(sys, vars, opts)

RegularSolution(A, x, case, opts)

Parameters

sys

-

list of equations; linear differential system

vars

-

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

A

-

matrix with rational elements

x

-

independent variable

case

-

'differential'; indicates the case of the system

opts

-

(optional) expression of the form 'point'=p where p is a point at which the solution is to be found

Description

• 

The RegularSolution function returns the initial terms of the regular solutions of the specified linear differential system of equations with polynomial coefficients. If such a solution does not exist, then NULL is returned.

  

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 and the independent variable x).

  

The matrix form specifies the system Lyx=Ayx, where L is the differential operator, yx is the vector of the functions to solve for, and A is a rational matrix.

  

For the matrix form of the calling sequence, the case of the system must be specified as 'differential'.

• 

The regular solutions of the differential system around x=p are of the form xpλm=0kgmxplogxpm where λ is an algebraic number and the gmxp are Laurent series such that gmp0. Those solutions form a basis of all the solutions in a neighborhood of x=p whenever it is a regular singularity.

  

The function returns the solutions with the Laurent series involved (gmx) being represented as series expansions in x (or in x-p if the option 'point'=p is specified). The order term (for example Ox6) is the last term in the series. The function's output is the list of solutions in this form, corresponding to vars.

  

The solution involves arbitrary constants of the form _c1, _c2, etc.

• 

The solution has an attribute which is a table with the following indices:

'initial'      - the initial terms of solutions' components

'recurrence'   - the recurrences corresponding to solutions' components

'variable'     - the independent variable of the given system

'functions'    - the independent functions to solve for

'operators'    - the operators corresponding to solutions' components

'point'        - the point at which to find a solution

  

Note: This data is used by LinearFunctionalSystems[ExtendRegularSolution] in order to extend the number of computed initial terms.

• 

If the option 'point'=p is specified, the function first translates the system to the point p by a change of the independent variable. Then the function computes all possible λ involved in regular solutions. For each λ, initial terms of the involved Laurent series (gmx) are computed successively by the orders of logarithmic terms (starting from (log(x)^0) and ending by the moment the Laurent series corresponding to (log(x)^(k+1)) does not exist). In such a way computing those solutions is by reducing the problem to the search for Laurent series solutions of inhomogeneous systems with the same left hand side and with different Laurent right-hand sides. This problems are solved using the matrix recurrence systems corresponding to the given differential systems. The recurrence systems are different only in right hand side as well. The recurrence systems are regularized using LinearFunctionalSystems[MatrixTriangularization] in order to bound the number of the initial terms of the solution in such a way that the recurrences for the remaining terms' coefficients have an invertible leading matrix and then builds these initial terms. If the option 'point'=p is specified, the found solution is then transformed by the inverse change of variable.

• 

The error conditions associated with RegularSolution are the same as those which are generated by LinearFunctionalSystems[Properties] and the following:

1. Regular solutions are to be found only for homogeneous systems

2. Regular solutions are to be found only for differential systems

• 

This function is part of the LinearFunctionalSystems package, and so it can be used in the form RegularSolution(..) 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[RegularSolution](..).

Examples

withLinearFunctionalSystems:

sysx4diffy1x,`$`x,3+4x3diffy1x,`$`x,2+2x2diffy1x,x2y2xx3y2x=0,diffy2x,x=0

sysx4ⅆ3ⅆx3y1x+4x3ⅆ2ⅆx2y1x+2x2ⅆⅆxy1x2y2xx3y2x=0,ⅆⅆxy2x=0

(1)

varsy1x,y2x:

RegularSolutionsys,vars

lnx22_c13+Ox52+lnx_c1x+_c2+Ox3+_c3x+_c4+Ox,lnx2Ox72+lnxOx5+_c13+Ox3

(2)

AMatrix3,3,1x2x3,1x,1+x+x3x3,x,0,1+x3x,x2,1,1x

Ax2+1x31xx3+x+1x3x0x3+1xx2−11x

(3)

RegularSolutionA,x,differential

lnxx_c1+Ox2x_c2+Ox2,lnxx_c1+Ox2_c1+x_c2_c1+Ox2,lnxx_c1+Ox2+x_c2+Ox2

(4)

sysx3diffy1x,x1x2y1xx2y2x1+x+x3y3x=0,xdiffy2x,xx2y1x1+x3y3x=0,xdiffy3x,xx3y1x+xy2xy3x=0

sysx3ⅆⅆxy1xx2+1y1xx2y2xx3+x+1y3x=0,xⅆⅆxy2xx2y1xx3+1y3x=0,xⅆⅆxy3xx3y1x+y2xxy3x=0

(5)

varsy1x,y2x,y3x:

RegularSolutionsys,vars

lnxx_c1+Ox2x_c2+Ox2,lnxx_c1+Ox2_c1+x_c2_c1+Ox2,lnxx_c1+Ox2+x_c2+Ox2

(6)

RegularSolutionsys,vars,point=1

_c1+Ox1,_c2+Ox1,_c3+Ox1

(7)

See Also

LinearFunctionalSystems[ExtendRegularSolution]

LinearFunctionalSystems[LogarithmicSolution]

LinearFunctionalSystems[MatrixTriangularization]

LinearFunctionalSystems[PolynomialSolution]

LinearFunctionalSystems[Properties]

LinearFunctionalSystems[RationalSolution]

LinearFunctionalSystems[SeriesSolution]