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

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : OreTools/Consequences

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

Calling Sequence

MinimalEquation(M, n, A)

ReducedSystem(M, ns, A)

Parameters

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.

Description

• 

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 Ly 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.

Examples

withOreTools:

withOreToolsConsequences:

ASetOreRingx,differential

AUnivariateOreRingx,differential

(1)

MMatrix0,0,1,0,1,0,1,0,0

M001010100

(2)

ReducedSystemM,1,3,A

0110,1,1,3,2

(3)

MinimalEquationM,1,A

OrePoly−1,0,1

(4)

MinimalEquationM,2,A

OrePoly−1,1

(5)

ASetOreRingn,shift

AUnivariateOreRingn,shift

(6)

MMatrix1,1nn+12,n,1,1,n2+2n1nn+1,n,1,1,0,1,0,n+1,0,0,n+1n

M11nn+12n11n2+2n1nn+1n−11010n+100n+1n

(7)

ReducedSystemM,1,2,A

010n4+6n3+13n2+14n+4nn2+3n+2n+22n4+11n3+21n2+17n+4nn2+3n+2n+23n2+6n+2n2n4+5n3+9n2+7n+22−1n3+3n2+n2nn2+2n+1,1,1,2,3

(8)

See Also

OreTools

OreTools/OreAlgebra

OreTools/OrePoly