JetDifferentialEquation(JB, D)ΒΆ
jet.spad line 3759 [edit on github]
JetDifferentialEquation provides the basic data structures and procedures for differential equations as needed in the geometric theory. Differential equation means here always a submanifold in the jet bundle. The concrete equations which define this submanifold are called system. In an object of the type JetDifferentialEquation much more than only the system is stored. D
denotes the class of functions allowed as equations. It is assumed that the simplify
procedure of D
returns only independent equations and a system with symbol in row echelon form.
- analyseSymbol: SparseEchelonMatrix(JB, D) -> Record(Rank: NonNegativeInteger, NumMultVar: NonNegativeInteger, Betas: List NonNegativeInteger)
analyseSymbol(symb)
computes the multiplicative variables of the symbolsymb
.
- coerce: % -> OutputForm
coerce(de)
transforms the differential equationde
to OutputForm.
- copy: % -> %
copy(De)
returns a copy of the equationDe
.
- dimension: (%, NonNegativeInteger) -> NonNegativeInteger
dimension(de, q)
computes the dimension of the differential equationde
as a submanifold of theq
-
th order jet bundle. The result is correct only, ifde
is simplified.
- display: % -> Void
display(de)
prints all information stored about the differential equationde
. This comprises the system ordered by the order of the equations, the Jacobi matrices separately for each order and the index of the independent variable with respect to which the equation was lastly differentiated (1 for not prolonged equations).
- extractSymbol: (%, Boolean) -> SparseEchelonMatrix(JB, D)
extractSymbol(de, solved?)
computes the symbol of the differential equationde
. Ifsolved?
istrue
, the row echelon form of the symbol is computed at once.
- insert: (List D, %) -> %
insert(sys, de)
adds the systemsys = 0
to the differential equationde
.
- jacobiMatrix: % -> List SparseEchelonMatrix(JB, D)
jacobiMatrix(De)
returns a list of Jacobi matrices sorted by the order of the equations.
- join: (%, %) -> %
join(de1, de2)
combinesde1
andde2
to a single differential equation.
- makeSystem: List D -> %
makeSystem(sys)
creates a differential equation from a system.
- order: % -> NonNegativeInteger
order(de)
yields the order of the differential equationde
.
- printSys: List D -> OutputForm
printSys(sys)
writes a list of functions as a vector of equations (with right hand side 0) and coerces the result to OutputForm.
- project: (%, NonNegativeInteger) -> %
project(de, q)
projects the differential equationde
of order higher thanq
into theq
-
th order jet bundle.
- prolong: % -> Record(SDe: %, IC: List D)
prolong(de)
prolongs the differential equationde
. Additionally the arising integrability conditions are returned.
- prolong: (%, NonNegativeInteger) -> Record(SDe: %, IC: List D)
prolong(de, q)
is likeprolong(de)
. However, only equations of lower order thanq
are prolonged.
- prolongMV: Record(Rank: NonNegativeInteger, NumMultVar: NonNegativeInteger, Betas: List NonNegativeInteger) -> Record(Rank: NonNegativeInteger, NumMultVar: NonNegativeInteger, Betas: List NonNegativeInteger)
prolongMV(mv)
calculates the number of multiplicative variables for the prolongation of an involutive symbol.
- prolongSymbol: SparseEchelonMatrix(JB, D) -> SparseEchelonMatrix(JB, D)
prolongSymbol(symb)
prolongs directly the symbolsymb
.
- retract: % -> List D
retract(de)
returns the system defining the differential equationde
.
- setSimpMode: NonNegativeInteger -> NonNegativeInteger
setSimpMode(i)
sets the flag controlling the used simplifications and returns the old value. Current values are:i = 0
->
No simplification modulo lower order equations.i = 1
->
Simplification modulo lower order equations. Default is 0.
- simplify: % -> Record(SDe: %, IC: List D)
simplify(de)
simplifies the equations of each order separately using the proceduresimplify
fromD
. Found integrability conditions are also returned separately.
- tableau: (SparseEchelonMatrix(JB, D), JetDifferential(JB, D)) -> SparseEchelonMatrix(JB, D)
tableau(symb, chi)
computes the tableau parametrized by a given one-form.
- tableau: (SparseEchelonMatrix(JB, D), List JetDifferential(JB, D)) -> SparseEchelonMatrix(JB, D)
tableau(symb, lchi)
computes the extended tableau parametrized by a given list of one-forms.