DEtools
Xgauge
transforms a given generator of a one-parameter Lie group to the indicated "gauge"
Calling Sequence
Parameters
Description
Examples
Xgauge([xi,eta], y(x), xi=expr)
Xgauge([xi,eta], y(x), eta=expr)
Xgauge([xi,eta], y(x), xi=expr1, eta=expr2)
[xi, eta]
-
list of the coefficients of the symmetry generator (infinitesimals)
y(x)
'dependent variable'; it can be any indeterminate function of one variable
xi=expr
(optional) equation having xi or _xi on the left hand side and any algebraic expression on the right hand side
eta=expr
(optional) equation having eta or _eta on the left hand side and any algebraic expression on the right hand side
The Xgauge command receives a list of a pair of infinitesimals of a one-parameter Lie group, the dependent variable y(x), and optionally the "gauge" in the form of ξ=expr or η=expr. It returns the given infinitesimals "gauged" to satisfy the indication received. If no gauge is given, the command returns the given generator rewritten in the most general form by introducing an arbitrary function.
This command also works with dynamical symmetries, in which case the ODE assumed to be invariant under the given infinitesimals is also required as an argument. The right hand side of the given nth order ODE is then used to replace the nth order derivatives of the dependent variable appearing in the infinitesimal generator.
This function is part of the DEtools package, and so it can be used in the form Xgauge(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[Xgauge](..).
with⁡DEtools:
X≔x,x+y
The general first order ODE invariant under X
ODE≔equinv⁡X,y⁡x
ODE≔ⅆⅆxy⁡x=ln⁡x+f__1⁡−x⁢ln⁡x−y⁡xx
symtest⁡X,ODE
0
X rewritten in the gauge xi=0
Xgauge⁡X,y⁡x,ξ=0
0,−_y1⁢x+x+y
If the ODE is given, its right hand side is used to replace the highest derivative (in this example the ODE is of first order).
`X_xi=0`≔Xgauge⁡X,ODE,ξ=0
X_xi=0≔0,y+−f__1⁡−x⁢ln⁡x−yx−ln⁡x+1⁢x
So, the above is just the original symmetry X rewritten in the gauge xi=0. Let's test this result.
symtest⁡`X_xi=0`,ODE
The general form in which X above can be rewritten is as follows:
X
x,x+y
X_general≔Xgauge⁡X,ODE
X_general≔_F2⁡x,y,y+−f__1⁡−x⁢ln⁡x−yx−ln⁡x+1⁢x+_F2⁡x,y⁢f__1⁡−x⁢ln⁡x−yx+_F2⁡x,y⁢ln⁡x
where _F2(x, y) is an arbitrary function of its arguments, introduced by Xgauge. This result can be tested as well.
symtest⁡X_general,ODE
See Also
dsolve,Lie
eta_k
infgen
PDEtools
symgen
Xchange
Xcommutator
Download Help Document