Tensor[ConformalKillingVectors] - calculate the conformal Killing vectors for a given metric
Calling Sequences
ConformalKillingVectors(g, options )
Parameters
g - a metric tensor on a manifold
options - any of the following keywords arguments: ansatz, unknowns, auxiliaryequations, coefficientvariables, parameters, output
Description
Examples
A vector field X is called a conformal Killing vector for the metric g if ℒX g = λ g, where ℒX denotes Lie differentiation with respect to X and λ is a function (proportional to the divergence of X ). If Xj= gjk Xk and ▿denotes covariant differentiation with respect to the given metric, then this equation can be written as 2▿(iXj) = λ gij . The Killing vectors of g are the solutions to this equation with λ =0. The set of all conformal Killing vectors forms a Lie algebra of vector fields.
The program ConformalKillingVectors generates the defining system of 1st order PDE for a conformal vector field and uses pdsolve to find the solutions to these PDE.
The command ConformalKillingVectors returns a sequence of two lists. The first list contains the non-trivial conformal Killing vectors and the second the Killing vectors. If there are no non-trivial conformal Killing vector fields then the first list is empty.
The keyword argument coefficientvariables = x1, x2, ... , xk allows the user to specify the coefficients functions in the conformal Killing vector Xas functions of the variables x1 , x2, ... , xk .
The exact form of the conformal Killing vector X can be specified with the keyword argument ansatz = X. For example, if the coordinates on the underlying manifold are x, y, z and X1, X2 are defined vectors, then one may solve for conformal Killing vectors of the form X = fy, zX1 + gy,zX2 . In this situation the unknown functions must be explicitly specified with the keyword argument unknowns, for example, unknowns = fy,z, gy,z.
When using the keyword argument ansatz, additional algebraic or differential conditions may be imposed upon the unknowns using the keyword argument auxiliaryequations = EqList. Here EqList is a list of the auxiliary equations to be added to the conformal Killing equations.
If the metric g depends upon a number of unspecified parameters (either constants or functions), then the keyword argument parameters= ParList,where ParList is the list of parameters, will invoke case-splitting with respect to these parameters. Special values of the parameters, where either the number or the explicit form of the conformal Killing vectors changes, are calculated.
With keyword argument output = pde, the defining partial differential equations for the conformal Killing vectors are returned. The option output = general returns the general conformal Killing vector in terms of a number of arbitrary constants _C1, _C2 ,... . The option output = list returns a list of vectors which form a basis for the solution space. The default value of this keyword argument is output = list.
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form ConformalKillingVectors(...) only after executing the commands with(DifferentialGeometry), with(Tensor) in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-ConformalKillingVectors(...).
with⁡DifferentialGeometry:with⁡Tensor:
Example 1.
We find the conformal Killing vectors for the Euclidean metric g in 3 dimensions.
DGsetup⁡x,y,z,M
frame name: M
g≔evalDG⁡dx&tdx+dy&tdy+dz&tdz
g:=dx⁢dx+dy⁢dy+dz⁢dz
There are a total of 10 conformal Killing vectors, 6 of which are Killing vectors.
C,K≔ConformalKillingVectors⁡g
C,K:=x⁢z⁢D_x+y⁢z⁢D_y+12⁢z2−12⁢x2−12⁢y2⁢D_z,x⁢y⁢D_x+−12⁢z2+12⁢y2−12⁢x2⁢D_y+y⁢z⁢D_z,x⁢D_x+y⁢D_y+z⁢D_z,−12⁢y2−12⁢z2+12⁢x2⁢D_x+x⁢y⁢D_y+x⁢z⁢D_z,D_y,D_x,−z⁢D_y+y⁢D_z,D_z,−z⁢D_x+x⁢D_z,−y⁢D_x+x⁢D_y
nops⁡C,nops⁡K
4,6
We can check this result by calculating the Lie derivative of the metric with respect to these vector fields (see LieDerivative) . We see that the vector fields C are conformal Killing tensors and that the vector fields K are Killing vectors.
LieDerivative⁡C,g
2⁢z⁢dx⁢dx+2⁢z⁢dy⁢dy+2⁢z⁢dz⁢dz,2⁢y⁢dx⁢dx+2⁢y⁢dy⁢dy+2⁢y⁢dz⁢dz,2⁢dx⁢dx+2⁢dy⁢dy+2⁢dz⁢dz,2⁢x⁢dx⁢dx+2⁢x⁢dy⁢dy+2⁢x⁢dz⁢dz
LieDerivative⁡K,g
0⁢dx⁢dx,0⁢dx⁢dx,0⁢dx⁢dx,0⁢dx⁢dx,0⁢dx⁢dx,0⁢dx⁢dx
We can use the LieAlgebraData command in the LieAlgebras package to calculate the structure equations for the Lie algebra Γ of conformal Killing vectors.
Gamma≔op⁡C,op⁡K
Γ:=x⁢z⁢D_x+y⁢z⁢D_y+12⁢z2−12⁢x2−12⁢y2⁢D_z,x⁢y⁢D_x+−12⁢z2+12⁢y2−12⁢x2⁢D_y+y⁢z⁢D_z,x⁢D_x+y⁢D_y+z⁢D_z,−12⁢y2−12⁢z2+12⁢x2⁢D_x+x⁢y⁢D_y+x⁢z⁢D_z,D_y,D_x,−z⁢D_y+y⁢D_z,D_z,−z⁢D_x+x⁢D_z,−y⁢D_x+x⁢D_y
LD≔LieAlgebras:-LieAlgebraData⁡Gamma,CVF
LD:=e1,e3=−e1,e1,e5=e7,e1,e6=e9,e1,e7=−e2,e1,e8=−e3,e1,e9=−e4,e2,e3=−e2,e2,e5=−e3,e2,e6=e10,e2,e7=e1,e2,e8=−e7,e2,e10=−e4,e3,e4=e4,e3,e5=−e5,e3,e6=−e6,e3,e8=−e8,e4,e5=−e10,e4,e6=−e3,e4,e8=−e9,e4,e9=e1,e4,e10=e2,e5,e7=e8,e5,e10=−e6,e6,e9=e8,e6,e10=e5,e7,e8=e5,e7,e9=e10,e7,e10=−e9,e8,e9=−e6,e9,e10=e7
This output shows, for example, that the Lie bracket of the first and third vector fields in Γ is minus the first vector field.
evalDG⁡LieBracket⁡Gamma1,Gamma3+Gamma1
0⁢D_x
The Lie algebra of conformal Killing vector fields is a simple Lie algebra, that is, it is indecomposable and semi-simple.
DGsetup⁡LD
Lie algebra: CVF
We check these properties using the Query command from the LieAlgebras package.
LieAlgebras:-Query⁡Indecomposable
true
LieAlgebras:-Query⁡Semisimple
Example 2.
We look for conformal Killing vector fields for the metric g, of the special form specified by the vector X.
X≔evalDG⁡a⁡x,y⁢D_x+b⁡x,y,z⁢D_y+c⁡x,y,z⁢D_z
X:=a⁡x,y⁢D_x+b⁡x,y,z⁢D_y+c⁡x,y,z⁢D_z
ConformalKillingVectors⁡g,ansatz=X,unknowns=a⁡x,y,b⁡x,y,z,c⁡x,y,z
x⁢D_x+y⁢D_y+z⁢D_z,x⁢y⁢D_x+−12⁢z2+12⁢y2−12⁢x2⁢D_y+y⁢z⁢D_z,D_z,−z⁢D_y+y⁢D_z,−y⁢D_x+x⁢D_y,D_y,D_x
Example 3.
We look for conformal Killing vector fields for the metric g which have constant divergence. These are also known as homothetic vector fields.
X≔evalDG⁡a⁡x,y,z⁢D_x+b⁡x,y,z⁢D_y+c⁡x,y,z⁢D_z
X:=a⁡x,y,z⁢D_x+b⁡x,y,z⁢D_y+c⁡x,y,z⁢D_z
div≔diff⁡a⁡x,y,z,x+diff⁡b⁡x,y,z,y+diff⁡c⁡x,y,z,z
div:=∂∂x⁢a⁡x,y,z+∂∂y⁢b⁡x,y,z+∂∂z⁢c⁡x,y,z
Eq≔diff⁡div,x=0,diff⁡div,y=0,diff⁡div,z=0
Eq:=∂2∂x2⁢a⁡x,y,z+∂2∂y⁢∂x⁢b⁡x,y,z+∂2∂z⁢∂x⁢c⁡x,y,z=0,∂2∂y⁢∂x⁢a⁡x,y,z+∂2∂y2⁢b⁡x,y,z+∂2∂z⁢∂y⁢c⁡x,y,z=0,∂2∂z⁢∂x⁢a⁡x,y,z+∂2∂z⁢∂y⁢b⁡x,y,z+∂2∂z2⁢c⁡x,y,z=0
ConformalKillingVectors⁡g,ansatz=X,unknowns=a⁡x,y,z,b⁡x,y,z,c⁡x,y,z,auxiliaryequations=Eq
x⁢D_x+y⁢D_y+z⁢D_z,−z⁢D_x+x⁢D_z,D_z,−z⁢D_y+y⁢D_z,−y⁢D_x+x⁢D_y,D_y,D_x
Example 4.
We find the general conformal Killing vector for the metric g, depending upon 10 constants.
ConformalKillingVectors⁡g,output=general
−12⁢_C4⁢y2+y⁢_C2⁢x−y⁢_C8−12⁢_C4⁢z2+z⁢_C1⁢x−z⁢_C7+12⁢_C4⁢x2+_C3⁢x+_C10⁢D_x+−12⁢_C2⁢z2+z⁢y⁢_C1−z⁢_C5+12⁢_C2⁢y2+y⁢_C4⁢x+_C3⁢y−12⁢_C2⁢x2+_C8⁢x+_C9⁢D_y+12⁢_C1⁢z2+z⁢_C4⁢x+z⁢_C2⁢y+_C3⁢z−12⁢_C1⁢x2−12⁢_C1⁢y2+_C6+_C7⁢x+_C5⁢y⁢D_z
Example 5.
We calculate the conformal Killing vector fields for the metric g5 which depends upon 3 parameters a,b,c, where c ≠0. For generic values of the parameters there are no non-trivial conformal Killing vectors. However, there are non-trivial conformal Killing vectors in 3 exceptional cases : a=0,b=0,c=c, a=a,b=b,c=14⁢b2a,a=0,b=b,c=c
g5≔evalDG⁡dx&tdx+dy&tdy+a⁢x2+b⁢x+c⁢dz&tdz
g5:=dx⁢dx+dy⁢dy+a⁢x2+b⁢x+c⁢dz⁢dz
CKV≔ConformalKillingVectors⁡g5,parameters=a,b,c,auxiliaryequations=c≠0
CKV:=x⁢z⁢D_xc+y⁢z⁢D_yc+12⁢c⁢z2−y2−x2⁢D_zc2,x⁢y⁢D_xc−12⁢c⁢z2−y2+x2⁢D_yc+y⁢z⁢D_zc,x⁢D_xc+y⁢D_yc+z⁢D_zc,−12⁢c⁢z2−x2+y2⁢D_xc+x⁢y⁢D_yc+x⁢z⁢D_zc,−z⁢D_y+y⁢D_zc,D_zc,−z⁢D_x+x⁢D_zc,−y⁢D_x+x⁢D_y,D_y,D_x,12⁢2⁢a⁢x+b⁢D_xa+y⁢D_y,−y⁢2⁢a⁢x+b⁢D_xa+14⁢−4⁢y2⁢a2+b2+4⁢x⁢b⁢a+4⁢x2⁢a2⁢D_ya2,−cos⁡a⁢z⁢D_xa+2⁢sin⁡a⁢z⁢D_z2⁢a⁢x+b,sin⁡a⁢z⁢D_xa+2⁢cos⁡a⁢z⁢D_z2⁢a⁢x+b,D_za,D_y,2⁢b⁢x+c⁢D_xb+2⁢y⁢D_y+z⁢D_z,D_z,D_y,,D_z,D_y,14⁢cos⁡a⁢z⁢−4⁢y2⁢a2+b2+4⁢x⁢b⁢a+4⁢x2⁢a2⁢D_xa5/2+cos⁡a⁢z⁢y⁢2⁢a⁢x+b⁢D_ya3/2+12⁢b2+4⁢x⁢b⁢a+4⁢x2⁢a2+4⁢y2⁢a2⁢sin⁡a⁢z⁢D_za2⁢2⁢a⁢x+b,−14⁢sin⁡a⁢z⁢−4⁢y2⁢a2+b2+4⁢x⁢b⁢a+4⁢x2⁢a2⁢D_xa5/2−sin⁡a⁢z⁢y⁢2⁢a⁢x+b⁢D_ya3/2+12⁢b2+4⁢x⁢b⁢a+4⁢x2⁢a2+4⁢y2⁢a2⁢cos⁡a⁢z⁢D_za2⁢2⁢a⁢x+b,12⁢2⁢a⁢x+b⁢D_xa+y⁢D_y,−y⁢2⁢a⁢x+b⁢D_xa+14⁢−4⁢y2⁢a2+b2+4⁢x⁢b⁢a+4⁢x2⁢a2⁢D_ya2,4⁢a⁢D_z,−cos⁡a⁢z⁢y⁢D_xa+12⁢cos⁡a⁢z⁢2⁢a⁢x+b⁢D_ya3/2+2⁢y⁢sin⁡a⁢z⁢D_z2⁢a⁢x+b,−cos⁡a⁢z⁢D_xa+2⁢sin⁡a⁢z⁢D_z2⁢a⁢x+b,sin⁡a⁢z⁢y⁢D_xa−12⁢sin⁡a⁢z⁢2⁢a⁢x+b⁢D_ya3/2+2⁢y⁢cos⁡a⁢z⁢D_z2⁢a⁢x+b,sin⁡a⁢z⁢D_xa+2⁢cos⁡a⁢z⁢D_z2⁢a⁢x+b,D_y,a=0,b=0,c=c,a=a,b=b,c=14⁢b2a,a=0,b=b,c=c,a=a,b=b,c=c,a=a,b=b,c=14⁢b2a
Exceptional Case 1: a=0,b=0,c=c
CKV1
x⁢z⁢D_xc+y⁢z⁢D_yc+12⁢c⁢z2−y2−x2⁢D_zc2,x⁢y⁢D_xc−12⁢c⁢z2−y2+x2⁢D_yc+y⁢z⁢D_zc,x⁢D_xc+y⁢D_yc+z⁢D_zc,−12⁢c⁢z2−x2+y2⁢D_xc+x⁢y⁢D_yc+x⁢z⁢D_zc,−z⁢D_y+y⁢D_zc,D_zc,−z⁢D_x+x⁢D_zc,−y⁢D_x+x⁢D_y,D_y,D_x
nops⁡CKV11+nops⁡CKV12
10
Exceptional Case 2: a=a,b=b,c=14⁢b2a
CKV2
12⁢2⁢a⁢x+b⁢D_xa+y⁢D_y,−y⁢2⁢a⁢x+b⁢D_xa+14⁢−4⁢y2⁢a2+b2+4⁢x⁢b⁢a+4⁢x2⁢a2⁢D_ya2,−cos⁡a⁢z⁢D_xa+2⁢sin⁡a⁢z⁢D_z2⁢a⁢x+b,sin⁡a⁢z⁢D_xa+2⁢cos⁡a⁢z⁢D_z2⁢a⁢x+b,D_za,D_y
nops⁡CKV21+nops⁡CKV22
6
Exceptional Case 3: a=0,b=b,c=c
CKV3
2⁢b⁢x+c⁢D_xb+2⁢y⁢D_y+z⁢D_z,D_z,D_y
nops⁡CKV31+nops⁡CKV32
3
Generic Case.
CKV4
,D_z,D_y
nops⁡CKV41+nops⁡CKV42
2
See Also
DifferentialGeometry
Tensor
KillingSpinors
KillingTensors
KillingVectors
KillingYanoTensors
Download Help Document