OreTools[Consequences]
MinimalEquation
construct minimal equation (y1-consequence) for a given system and a given function
ReducedSystem
reduce a given system with respect to a given subset of its undetermined functions
Calling Sequence
Parameters
Description
Examples
MinimalEquation(M, n, A)
ReducedSystem(M, ns, A)
M
-
Matrix of a given system
n
a positive integer - index of the undetermined function with respect to which the minimal equation is to be constructed
ns
set of positive integers - indices of the undetermined functions with respect to which the system is to be reduced
A
Ore algebra; to define an Ore algebra, use the SetOreRing function.
The MinimalEquation constructs minimal equation (y1-consequence) for the given system corresponding to the matrix M and Ore algebra A and a given function with the index n of its undetermined functions. The minimal equation is a scalar equation whose solution is the component of some solution of the given system corresponding to the given function. The output is OrePoly L, such that L⁢y is the y1-consequence, i.e. the minimal equation such that its solution is the n-th element of some solution of the given system.
The ReducedSystem reduces the given system corresponding to the matrix M and Ore algebra A with respect to a given subset ns of its undetermined functions. The reduced system is a system which contains the given subset of the undetermined functions of the given system among its undetermined functions and components of its closed form solution corresponding to the given subset are components of some solution of the given system. It addresses the following problem: given a subset of the components of solutions to be found and an appropriate class of functions, find all solutions whose specified components are in the given class (more precisely we are interested in computing those components only). For example, given a differential system, find all the rational functions that are first and second components of a solution of the system. The output is R,s, where R is the matrix of the reduced system and s is the set of pairs, the first element of each is the index out of ns and the second one is the index of the same undetermined function in the reduced system.
with⁡OreTools:
with⁡OreToolsConsequences:
A≔SetOreRing⁡x,differential
A≔UnivariateOreRing⁡x,differential
M≔Matrix⁡0,0,1,0,1,0,1,0,0
M≔001010100
ReducedSystem⁡M,1,3,A
0110,1,1,3,2
MinimalEquation⁡M,1,A
OrePoly⁡−1,0,1
MinimalEquation⁡M,2,A
OrePoly⁡−1,1
A≔SetOreRing⁡n,shift
A≔UnivariateOreRing⁡n,shift
M≔Matrix⁡1,−1n⁢n+12,−n,1,1,n2+2⁢n−1n⁢n+1,n,−1,1,0,1,0,n+1,0,0,n+1n
M≔1−1n⁢n+12−n11n2+2⁢n−1n⁢n+1n−11010n+100n+1n
ReducedSystem⁡M,1,2,A
010−n4+6⁢n3+13⁢n2+14⁢n+4n⁢n2+3⁢n+2⁢n+22⁢n4+11⁢n3+21⁢n2+17⁢n+4n⁢n2+3⁢n+2⁢n+23⁢n2+6⁢n+2n2⁢n4+5⁢n3+9⁢n2+7⁢n+22−1n3+3⁢n2+n−2n⁢n2+2⁢n+1,1,1,2,3
See Also
OreTools
OreTools/OreAlgebra
OreTools/OrePoly
Download Help Document