LinearFunctionalSystems
Properties
return the basic properties of the system
Calling Sequence
Parameters
Description
Examples
Properties(sys, vars)
Properties(A, b, x, case)
Properties(A, x, case)
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'
The Properties function returns the basic properties of the specified linear functional system of equations with polynomial coefficients. A test for the correctness of the input is also performed.
The result returned by this function is a table that contains the different properties of the given system. The table has the following indices (where applicable):
'method' - either 'quasimodular' if the quasimodular
version of the EG-algorithm is invoked or 'ordinary'
if the ordinary version is invoked
'input' - either 'lists' for list input type or 'matrices'
for matrix input type
'case' - 'differential', 'difference', or 'qdifference'
'order' - order of the system
'var' - independent variable
'q_par' - name of the parameter q in the q-difference case
extracted from the given system, or it's value in case
the parameter is a number
'system' - system in list form
'functions' - functions to be solved for
'fnames' - names of the functions to be solved for
'shifts' - shifts of function variables in the difference case
'qshifts' - q-shifts of function variables in the q-difference case
'mat' - matrix of the matrix input form
'vec' - vector of the matrix input form
'matdenom' - list of denominators of the rows of the
matrix for the matrix input form
The error conditions associated with Properties are the following:
1. At least two arguments must be specified.
2. For the matrix input type:
(a) the matrix must be square
(b) the number of arguments is at most four
(c) if the number of arguments is three, the third
argument must specify the case of the system
(d) the second argument must be a name for the
3-argument case, and a vector for the 4-argument case
(e) vector and matrix sizes must be the same
(f) if the number of arguments is four, the third
argument must be a name specifying the independent
variable, the fourth argument must specify the
case of the system
3. For the list input type:
(a) the number of arguments is two
(b) the first argument must be a list of equations,
the second argument must be a list of functions
to be solved for
(c) the independent variable must be specified only once
(d) the system must be linear
(e) the number of equations must be equal to
the number of functions to be solved for
4. The functions to be solved for must appear in equations.
5. There exist unknown function names.
6. There exist extra independent variables in the system.
7. The type of the system is not supported.
This function is part of the LinearFunctionalSystems package, and so it can be used in the form Properties(..) 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[Properties](..).
with⁡LinearFunctionalSystems:
sys≔diff⁡y1⁡x,x⁢−1+x2+6+2⁢x⁢y1⁡x+6⁢y3⁡x−6⁢y4⁡x=0,diff⁡y2⁡x,x⋅2⁢x⁢1+x22−4+x⁢y2⁡x⁢1+x22+4⁢y3⁡x⁢1+x22=−4⁢x2−4+x⁢1+x2,diff⁡y3⁡x,x⁢1+x2⋅2⁢x−4+3⁢x⁢1+x2⁢y2⁡x+4⁢1+x2⁢y3⁡x=−4+3⁢x,diff⁡y4⁡x,x⁢1+x2⁢x2−1⋅2⁢x−1+x2⋅2⁢x⁢−7+x2−2⁢x⁢y1⁡x−y2⁡x⁢4+3⁢x⁢1+x2⁢x2−1+y3⁡x⁢6⁢x+2⁢x2−2⁢1+x2⋅2−y4⁡x⋅6⁢1+x2⋅2⁢x=−4+3⁢x⁢x2−1
sys≔ⅆⅆxy1⁡x⁢x2−1+6+2⁢x⁢y1⁡x+6⁢y3⁡x−6⁢y4⁡x=0,2⁢ⅆⅆxy2⁡x⁢x⁢x2+12−4+x⁢y2⁡x⁢x2+12+4⁢y3⁡x⁢x2+12=−4⁢x2−4+x⁢x2+1,2⁢ⅆⅆxy3⁡x⁢x2+1⁢x−4+3⁢x⁢x2+1⁢y2⁡x+4⁢x2+1⁢y3⁡x=−4−3⁢x,2⁢ⅆⅆxy4⁡x⁢x2+1⁢x2−1⁢x−2⁢x2+1⁢x⁢x2−2⁢x−7⁢y1⁡x−y2⁡x⁢4+3⁢x⁢x2+1⁢x2−1+2⁢y3⁡x⁢2⁢x2+6⁢x−2⁢x2+1−12⁢y4⁡x⁢x2+1⁢x=−4+3⁢x⁢x2−1
vars≔y1⁡x,y2⁡x,y3⁡x,y4⁡x:
props≔Properties⁡sys,vars
props≔table⁡order=1,case=differential,var=x,system0=ⅆⅆxy1⁡x⁢x2+2⁢y1⁡x⁢x−ⅆⅆxy1⁡x+6⁢y1⁡x+6⁢y3⁡x−6⁢y4⁡x,2⁢ⅆⅆxy2⁡x⁢x5−y2⁡x⁢x5−4⁢y2⁡x⁢x4+4⁢y3⁡x⁢x4+4⁢ⅆⅆxy2⁡x⁢x3−2⁢y2⁡x⁢x3−8⁢y2⁡x⁢x2+8⁢y3⁡x⁢x2+2⁢ⅆⅆxy2⁡x⁢x−y2⁡x⁢x−4⁢y2⁡x+4⁢y3⁡x,−3⁢y2⁡x⁢x3+2⁢ⅆⅆxy3⁡x⁢x3−4⁢y2⁡x⁢x2+4⁢y3⁡x⁢x2−3⁢y2⁡x⁢x+2⁢ⅆⅆxy3⁡x⁢x−4⁢y2⁡x+4⁢y3⁡x,−3⁢y2⁡x⁢x5+2⁢ⅆⅆxy4⁡x⁢x5−2⁢y1⁡x⁢x5−4⁢y2⁡x⁢x4+4⁢y1⁡x⁢x4+4⁢y3⁡x⁢x4+12⁢y1⁡x⁢x3+12⁢y3⁡x⁢x3−12⁢y4⁡x⁢x3+4⁢y1⁡x⁢x2+3⁢y2⁡x⁢x−2⁢ⅆⅆxy4⁡x⁢x+14⁢y1⁡x⁢x+12⁢y3⁡x⁢x−12⁢y4⁡x⁢x+4⁢y2⁡x−4⁢y3⁡x,functions=y1⁡x,y2⁡x,y3⁡x,y4⁡x,f_names=y1,y2,y3,y4,system=ⅆⅆxy1⁡x⁢x2+2⁢y1⁡x⁢x−ⅆⅆxy1⁡x+6⁢y1⁡x+6⁢y3⁡x−6⁢y4⁡x,2⁢ⅆⅆxy2⁡x⁢x5−y2⁡x⁢x5−4⁢y2⁡x⁢x4+4⁢y3⁡x⁢x4+4⁢ⅆⅆxy2⁡x⁢x3−2⁢y2⁡x⁢x3−8⁢y2⁡x⁢x2+8⁢y3⁡x⁢x2+x3+2⁢ⅆⅆxy2⁡x⁢x−y2⁡x⁢x+8⁢x2−4⁢y2⁡x+4⁢y3⁡x+x+4,−3⁢y2⁡x⁢x3+2⁢ⅆⅆxy3⁡x⁢x3−4⁢y2⁡x⁢x2+4⁢y3⁡x⁢x2−3⁢y2⁡x⁢x+2⁢ⅆⅆxy3⁡x⁢x−4⁢y2⁡x+4⁢y3⁡x+3⁢x+4,−3⁢y2⁡x⁢x5+2⁢ⅆⅆxy4⁡x⁢x5−2⁢y1⁡x⁢x5−4⁢y2⁡x⁢x4+4⁢y1⁡x⁢x4+4⁢y3⁡x⁢x4+12⁢y1⁡x⁢x3+12⁢y3⁡x⁢x3−12⁢y4⁡x⁢x3+4⁢y1⁡x⁢x2+3⁢x3+3⁢y2⁡x⁢x−2⁢ⅆⅆxy4⁡x⁢x+14⁢y1⁡x⁢x+12⁢y3⁡x⁢x−12⁢y4⁡x⁢x+4⁢x2+4⁢y2⁡x−4⁢y3⁡x−3⁢x−4,method=ordinary,q_par=__q,input=lists
indices⁡props
order,case,var,system0,functions,f_names,system,method,q_par,input
See Also
LinearFunctionalSystems[PolynomialSolution]
LinearFunctionalSystems[RationalSolution]
LinearFunctionalSystems[UniversalDenominator]
Download Help Document