PDEtools
Invariants
computes the differential invariants associated to a given list of symmetries
Calling Sequence
Parameters
Description
Examples
Invariants(S, DepVars, order, 'options'='value')
S
-
the infinitesimals of a symmetry generator or the corresponding infinitesimal generator operator, or a list of n of them representing an n-dimensional group of symmetries
DepVars
a function or a list of them indicating the dependent variables of the problem
order
optional - indicates the order of the differential invariants required; default is 1
jetnotation = ...
(optional) can be true (default, the notation found in S), false, jetvariables, jetvariableswithbrackets, jetnumbers or jetODE; to respectively return or not using the different jet notations available
simplifier = ...
optional - indicates the simplifier to be used instead of the default simplify/size
Given a list with the infinitesimals of a symmetry generator or the corresponding infinitesimal generator operator, or a list of n of these lists or operators, possibly representing an n-dimensional symmetry group, Invariants returns a sequence of m mathematical expressions φk simultaneously invariant under all the Gj symmetry generators (1⁢≤⁢j⁢≤⁢n) related to the given n infinitesimals. The φk are a complete set of differential invariants, so they are functions of the independent and dependent variables of the problem (DepVars), as well as of their partial derivatives up to order (default is 1), and satisfy Gj⁡φk=0 for all j and k, where the number k depends on the problem.
Note that in the multidimensional case, depending on the form of the infinitesimals given, the problem may have no solution. Also the φk are all independent of each other and their number is unique, but one can still rewrite the φk in different ways, by combining invariants to construct equivalent but algebraically different invariants of the same order.
Optionally, a simplifier can be specified to be used instead of the default which is simplify/size. For that purpose use the optional argument simplifier = .... By default, the output of Invariants is in jet notation. You can change that also by passing the optional argument jetnotation = ... where the right-hand-side can be false or any of the jet notations available.
The invariants returned by Invariants can also be used as optional arguments for the group InvariantSolutions command when computing solutions to PDE systems.
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.
with⁡PDEtools:
Consider a PDE problem with two independent variables and one dependent variable, u⁡x,t, and consider the list of infinitesimals of a symmetry group.
S≔_ξx=x,_ξt=1,_ηu=u
In the input above you can also enter the symmetry S without labels for the infinitesimals, as in x,1,u, or use the corresponding infinitesimal generator, which prolonged to order 1 (that is, ready to act on functions depending on x, t, u and partial derivatives of u(x,t) of order 1 at most) is
G≔InfinitesimalGenerator⁡S,u⁡x,t,prolongation=1,expanded
G≔f→x⁢∂∂x⁢f+∂∂t⁢f+u⁢∂∂u⁢f+ut⁢∂∂ut⁢f
The invariants for this symmetry are
Φ≔Invariants⁡S,u⁡x,t
Φ≔ux,−ln⁡x+t,ux,utx
Therefore, applying G to each of the Phi you obtain zero:
G⁡Φ1
0
simplify⁡map⁡G,Φ
0,0,0,0
By default Invariants computes differential invariants of order 1, so that they depend on up to 1st order derivatives of u⁡x,t (see Φ above) - you can change that using the optional argument order
Invariants⁡S,u⁡x,t,2
ux,−ln⁡x+t,ux,utx,ux,t,ux,x⁢x,ut,tx
It is possible to request the output to be in function notation or jetnumbers notation instead of the default jetvariables jet notation, for that purpose use the optional argument jetnotation = ...
Invariants⁡S,u⁡x,t,2,jetnotation=false
−ln⁡x+t,u⁡x,tx,∂∂xu⁡x,t,∂∂tu⁡x,tx,∂2∂t∂xu⁡x,t,∂2∂x2u⁡x,t⁢x,∂2∂t2u⁡x,tx
Invariants⁡S,u⁡x,t,2,jetnotation=jetnumbers
−ln⁡x+t,ux,u1,u2x,u1,2,u1,1⁢x,u2,2x
Alternatively, you can switch back and forth between function notation and jet notation using FromJet and ToJet
ToJet⁡,u⁡x,t,jetnotation=jetnumbers
FromJet⁡,u⁡x,t
An example of a symmetry group of dimension greater than one for a problem with two independent and two dependent variables
DepVars≔u,v⁡x,t
DepVars≔u⁡x,t,v⁡x,t
So consider the following five lists of infinitesimals, each one associated to a different symmetry transformation of some PDE problem
L≔_ξx=0,_ξt=1,_ηu=0,_ηv=0,_ξx=0,_ξt=0,_ηu=1,_ηv=0,_ξx=1,_ξt=0,_ηu=2⁢t,_ηv=0,_ξx=t,_ξt=0,_ηu=t2+x,_ηv=0,_ξx=12⁢x+32⁢t2,_ξt=t,_ηu=t3+3⁢t⁢x,_ηv=−v
L≔_ξx=0,_ξt=1,_ηu=0,_ηv=0,_ξx=0,_ξt=0,_ηu=1,_ηv=0,_ξx=1,_ξt=0,_ηu=2⁢t,_ηv=0,_ξx=t,_ξt=0,_ηu=t2+x,_ηv=0,_ξx=x2+3⁢t22,_ξt=t,_ηu=t3+3⁢t⁢x,_ηv=−v
There are three expressions simultaneously invariant under each of the five symmetry generators associated to the infinitesimals in L above; these invariants are
Φ≔Invariants⁡L,DepVars
Φ≔vxv32,ux22−2⁢x+utv,ux⁢vx+vtv2
To verify this result, construct first the infinitesimal generators, associated to each of the infinitesimals in L, prolonged to order 1
G≔map⁡InfinitesimalGenerator,L,DepVars,prolongation=1
G≔f→add⁡ξxj⁢∂∂xj⁢f,j=1..2+add⁡ηum⁢∂∂um⁢f+ηum,x⁢∂∂umx⁢f+ηum,t⁢∂∂umt⁢f,m=1..2,f→add⁡ξxj⁢∂∂xj⁢f,j=1..2+add⁡ηum⁢∂∂um⁢f+ηum,x⁢∂∂umx⁢f+ηum,t⁢∂∂umt⁢f,m=1..2,f→add⁡ξxj⁢∂∂xj⁢f,j=1..2+add⁡ηum⁢∂∂um⁢f+ηum,x⁢∂∂umx⁢f+ηum,t⁢∂∂umt⁢f,m=1..2,f→add⁡ξxj⁢∂∂xj⁢f,j=1..2+add⁡ηum⁢∂∂um⁢f+ηum,x⁢∂∂umx⁢f+ηum,t⁢∂∂umt⁢f,m=1..2,f→add⁡ξxj⁢∂∂xj⁢f,j=1..2+add⁡ηum⁢∂∂um⁢f+ηum,x⁢∂∂umx⁢f+ηum,t⁢∂∂umt⁢f,m=1..2
Test them on the expressions in Phi (see map to map operators over lists of expressions)
forjto5doGj⁡Φ=simplify⁡map⁡Gj,Φenddo
G1⁡Φ=0,0,0
G2⁡Φ=0,0,0
G3⁡Φ=0,0,0
G4⁡Φ=0,0,0
G5⁡Φ=0,0,0
See Also
CharacteristicQInvariants
FromJet
InfinitesimalGenerator
InvariantSolutions
ToJet
Download Help Document