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

Online Help

All Products    Maple    MapleSim


PDEtools

  

InvariantTransformation

  

computes transformations reducing by k the number of independent variables of PDE systems admitting a given k-dimensional symmetry group

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

InvariantTransformation(S, DepVars, NewVars, 'options'='value')

Parameters

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 functions indicating the dependent variables of the problem

NewVars

-

optional - a function or a list of functions representing the new dependent variables

jetnotation = ...

-

(optional) can be false (default), jetvariables, jetvariableswithbrackets, jetnumbers or jetODE; to respectively return or not using the different jet notations available

<options> = ...

-

the optional arguments accepted by InvariantSolutions

Description

• 

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, InvariantTransformation command computes a transformation from the dependent and independent variables of the problem to variables that reduces the number of independent variables of PDESYS by one, or optionally by as many as indicated in the optional argument reduceinonego = n, where n is a positive integer; this option is valid when the first argument is a list of symmetries representing a multidimensional symmetry group.

• 

When there is only one dependent variable, DepVars and NewVars can be functions; otherwise they must be a list of functions representing dependent variables. If NewVars are not given, InvariantTransformation will generate a list of globals to represent them.

• 

By default, InvariantTransformation returns using function notation. It is sometimes convenient to have this output expressed in one of the jet notations available. For that purpose use ToJet or the optional argument jetnotation = ... where the right-hand-side is any of true, jetODE, jetvariables or withoutbrackets. For more information, see jet notations.

• 

Optionally you can also pass a list of invariants or a list of lists of invariants instead of lists of infinitesimals, using the optional argument invariants = .... You can also specify a simplifier, or the dependency of the solutions expected to be obtained using these transformations; all these options are the same ones explained in the help page for InvariantSolutions.

• 

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

withPDEtools&comma;InvariantTransformation&comma;ChangeSymmetry&comma;InfinitesimalGenerator

InvariantTransformation&comma;ChangeSymmetry&comma;InfinitesimalGenerator

(1)

Consider a PDE problem with two independent variables and one dependent variable, ux&comma;t, and consider the list of infinitesimals of a symmetry group.

S_&xi;x=x&comma;_&xi;t=1&comma;_&eta;u=u

S_&xi;x=x&comma;_&xi;t=1&comma;_&eta;u=u

(2)

In the input above you can also enter the symmetry S without labels for the infinitesimals, as in x&comma;1&comma;u, or use the corresponding infinitesimal generator

GInfinitesimalGeneratorS&comma;ux&comma;t

Gf&rarr;xxf&plus;tf&plus;uuf

(3)

A PDESYS is invariant under the transformations generated by G in that GPDESYS=0, where in this formula G represents the prolongation necessary to act on PDESYS (see InfinitesimalGenerator).

The transformation and its inverse, from the original variables t&comma;x&comma;ux&comma;t to new coordinates, say r&comma;s&comma;vr&comma;s, that reduces by one the number of independent variables of a PDE system invariant under G above is obtained via

InvariantTransformationS&comma;ux&comma;t&comma;vr&comma;s

r=lnx+t&comma;s=t&comma;vr&comma;s=ux&comma;tx,t=s&comma;x=&ExponentialE;r+s&comma;ux&comma;t=vr&comma;s&ExponentialE;r+s

(4)

where in the above you can equally pass G instead of S. To express this transformation using jet notation use

InvariantTransformationS&comma;ux&comma;t&comma;vr&comma;s&comma;jetnotation

r=lnx+t&comma;s=t&comma;v=ux,t=s&comma;u=v&ExponentialE;r+s&comma;x=&ExponentialE;r+s

(5)

InvariantTransformationS&comma;ux&comma;t&comma;vr&comma;s&comma;jetnotation=jetnumbers

jet notation: [1 = x, 2 = t, 3 = r, 4 = s]

________________________________

r=lnx+t&comma;s=t&comma;v=ux,t=s&comma;x=&ExponentialE;r+s&comma;u=v&ExponentialE;r+s

(6)

That this transformation reduces the number of independent variables of any PDE system invariant, under G above, is visible in the fact that it transforms the infinitesimals into 0&comma;1&comma;0; to verify this you can use ChangeSymmetry

TR,NewVars2,maplhs&comma;1

TR,NewVarst=s&comma;x=&ExponentialE;r+s&comma;ux&comma;t=vr&comma;s&ExponentialE;r+s,r&comma;s&comma;vr&comma;s

(7)

ChangeSymmetryTR&comma;S&comma;ux&comma;t&comma;NewVars

_&xi;r=0&comma;_&xi;s=1&comma;_&eta;v=0

(8)

So to this list of infinitesimals corresponds, written in terms of vr&comma;s, this infinitesimal generator

InfinitesimalGenerator&comma;vr&comma;s

f&rarr;sf

(9)

Any PDESYS invariant under G will also be invariant under the operator above, that is, PDESYS will be independent of s after you change variables in it using TR computed with SimilarityTransformation above.

If the new variables - here vr&comma;s - are not indicated, variables prefixed by the underscore _ to represent the new variables are introduced

InvariantTransformationS&comma;ux&comma;t

_t1=lnx+t&comma;_t2=t&comma;_u1_t1=ux&comma;tx,t=_t2&comma;x=&ExponentialE;_t1+_t2&comma;ux&comma;t=_u1_t1&ExponentialE;_t1+_t2

(10)

See Also

CanonicalCoordinates

ChangeSymmetry

InfinitesimalGenerator

Invariants

InvariantSolutions

PDEtools

SimilarityTransformation

SymmetryTransformation