|
Calling Sequence
|
|
IntegratingFactors(PDESYS, DepVars, _mu = ..., displayfunctionality = ..., jetnotation = ..., simplifier = ..., split = ...)
IntegratingFactorTest(Mu, PDESYS, DepVars)
|
|
Parameters
|
|
PDESYS
|
-
|
a system consisting of an equation or a list of equations involving partial and/or ordinary (possibly not) differential equations
|
Mu
|
-
|
a generalized integrating factor returned by IntegratingFactors
|
DepVars
|
-
|
optional - a specification of the unknown(s) in PDESYS
|
_mu = ...
|
-
|
optional - indicates the functional form of the generalized integrating factors
|
displayfunctionality = ...
|
-
|
optional - can be true (default) or false, to display the functionality on the left-hand-side of the mu[k] (generalized integrating factors) functions
|
jetnotation = ...
|
-
|
(optional) can be false (default), jetvariables, jetvariableswithbrackets, jetnumbers or jetODE; to respectively return or not using the different jet notations available
|
order
|
-
|
optional - indicates the maximum differential order of the derivatives entering the dependence of the integrating factors
|
simplifier = ...
|
-
|
optional - indicates the simplifier to be used instead of the default simplify/size
|
split = ...
|
-
|
optional - can be true (default) or false, to split the DE system to be solved in order to compute the J[k] functions
|
typeofintegratingfactor = ...
|
-
|
optional - can be polynomial or functionfield.
|
|
|
|
|
Description
|
|
•
|
Given a system consisting of N equations , , where the independent variables are , and the dependent variables are , with denoting the set of partial derivatives of , the generalized integrating factors are expressions such that = 0, so is a conserved current. These generalized integrating factors, also called characteristic functions of conserved currents (see reference [1]), coincide with the traditional integrating factors when there is only one independent variable, so that is a system of ODEs.
|
•
|
The command IntegratingFactors computes these generalized integrating factors. The command IntegratingFactorTest verifies the result for correctness.
|
•
|
Given the system the output of IntegratingFactors is as a sequence of lists, each one containing N , where , satisfying = 0.
|
•
|
The are computed constructing the PDE system they satisfy by applying Euler's operator to , then solving this system for the using pdsolve.
|
•
|
By default, the integrating factors are searched as functions depending on the derivatives of the unknowns of the system (specified as DepVars or automatically detected) up to the order d-1, where d is the highest order of derivatives entering PDESYS. This default can be changed by optionally passing the argument order = m, where m is a nonnegative integer.
|
•
|
By default, the conserved currents are searched as functions with no pre-specified form, just with the dependency explained in the previous paragraph. This default can be changed with the option typeofconservedcurrent = ... where the right-hand-side can be polynomial or functionfield, respectively indicating a conserved current of polynomial type, or of a functionfield type with the meaning explained in FunctionField.
|
•
|
By default, the functionality of , entering the left-hand-sides of each element in the returned lists, is displayed, the output is presented in functional notation instead of jet notation and is simplified with respect to its size. The PDE system solved to compute the is also split, when that is possible, before being tackled. All these defaults can be changed by passing the optional arguments displayfunctionality = ..., jetnotation = ..., simplifier = ..., split = false.
|
•
|
It is also possible to directly specify the functionality expected for the using _mu = .... See the examples for a demonstration of the use of this parameter.
|
•
|
To avoid having to remember the optional keywords, if you type the keyword misspelled, or just a portion of it, a matching against the correct keywords is performed, and when there is only one match, the input is automatically corrected.
|
|
|
Examples
|
|
Consider the following PDE "system" consisting of a single pde
>
|
|
| (1) |
| (2) |
Two generalized integrating factors are
>
|
|
| (3) |
Note that is already the divergence of a function, so that a constant (the number 1 in the result above) is an integrating factor. To verify for correctness these integrating factors use
>
|
|
The conserved currents are related to the generalized integrating factors via Sigma mu[alpha, n] pde[n] = Divergence J[alpha] = 0. These are the J[alpha] corresponding to the mu[alpha] computed above; they depend on arbitrary functions
>
|
|
| (5) |
To verify these results use
>
|
|
An example where the integrating factor depends on an arbitrary function
>
|
|
| (7) |
>
|
|
| (8) |
For this example, integrating factors up to order 1, that is, depending at most on first order derivatives, are
>
|
|
| (9) |
which is in agreement with the general result obtained first. This is a related conserved current of order 1
>
|
|
| (10) |
Specifying directly the functionality expected also confirms that there is no non-trivial integrating factor depending only on and but there is one depending on an arbitrary function of , and
>
|
|
| (11) |
>
|
|
| (12) |
In various cases it is simpler, or of more use, to compute integrating factors of polynomial type, or with a mathematical function dependency on the field of functions of the input system. For these purposes use the option typeofintegratingfactor = ... where the right-hand-side can be polynomial or functionfield. For example, for , a polynomial integrating factor, presented without specializing the arbitrary constants (option split = false) is
>
|
|
| |
| (13) |
>
|
|
The following application of Euler's operator to shows that is already a divergence of a function
This is a conserved current with the same functionality of the last integrating factor computed and a verification of the result
>
|
|
| (16) |
>
|
|
|
|
References
|
|
|
[1] Olver, P.J. Applications of Lie Groups to Differential Equations. Graduate Texts in Mathematics. Springer-Verlag, 1993.
|
|
|
|