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

Online Help

All Products    Maple    MapleSim


Physics[d_] - indexed differential operator with respect to the spacetime variables

Calling Sequence

d_[mu](A)

d_[mu](A, [X])

d_(A)

d_(A, [X])

convert(expression, d_)

Parameters

mu

-

a name representing an integer number between 0 and the spacetime dimension, can also be the number itself

A

-

any mathematical expression or relation between expressions

[X]

-

a list of differentiation variables to which the index mu refers

Description

• 

The d_[mu] command is a computational representation for the differential operator ∂__mu , defined by

μ=xμ

  

where xμ represents the contravariant spacetime vector of a coordinate system.

• 

d_ can also be used without an index, as in d_(A) displayed as A, in which case it represents the total differential, and the output comes automatically expanded as μAxμ (assuming sum rule for repeated indices); unless A is already a coordinate of any system of coordinates defined using Setup or Coordinates, in which case d_(A) returns unevaluated, echoing the input, representing the differential of the coordinate A.

• 

In a galilean system (Euclidean or Minkowski), both xμ and the differential of the coordinates xμ are vectors (tensors with 1 index), and so Aν=μAνxμ and μ are also vectors, the latter representing

μ=xμ

  

where xμ=gμ,νxν is the covariant spacetime vector. However, unlike the galilean case, in a curvilinear system of coordinates, xμ is not a vector, and so neither the total differential of a vector Aν nor μ are tensors (for a generalization of ∂__mu to curvilinear coordinates see D_) and the formula above for μ loses its meaning; instead, the convention used in the Physics package (it becomes the one above only in the galilean case) is

μ=gμ,νν

  

Likewise, from xν=gα,νxα, in a galilean spacetime μxν=gμ,ν while this is not correct in a nongalilean spacetime, where the metric depends on the coordinates, and the correct formula is μxν=μgα,νxα+gμ,ν

• 

Computations performed with the Physics package commands take into account Einstein's sum rule for repeated indices - see `.` and Simplify. The distinction between covariant and contravariant indices in the input of tensors is done by prefixing contravariant ones with ~, say as in ~mu; in the output, contravariant indices are displayed as superscripts. For contracted indices, you can enter them one covariant and one contravariant. Note however that - provided that the spacetime metric is galilean (Euclidean or Minkowski), or the object is a tensor also in curvilinear coordinates - this distinction in the input is not relevant, and so contracted indices can be entered as both covariant or both contravariant, in which case they will be automatically rewritten as one covariant and one contravariant. Tensors can have spacetime and space indices at the same time. To change the type of letter used to represent spacetime or space indices see Setup.

• 

When only one argument is given to d_, as in d_[mu](A) or d_(A), the differentiation variables are the current default values, typically x1,x2,x3,x4 (x0 is automatically assigned to x4), represented by X (see Coordinates). The default for the differentiation variables is set with the Setup command. When two arguments are given to d_, the second argument is expected to be a list with the differentiation variables to which the index in d_μ refers or the total differential is to be taken, and so this list should have as many symbols as the dimension of spacetime, which by default is 4 but can be set to any value by the Setup command.

• 

In the particular case where d_ is not indexed and is called with one argument, and this argument is a coordinate of any coordinate system defined using Setup or Coordinates, d_ returns unevaluated, echoing the input. This permits using d_ to represent the differential of coordinates that are not the default differentiation coordinates, useful when working with transformations of coordinates (see TransformCoordinates).

• 

Some automatic checking and simplifications are carried out each time an operation such as d_[mu](A) is executed. The checking is concerned with possible syntax errors. Regarding the automatic simplifications performed by d_, a summary of them is as follows:

  

- If A does not depend on the differentiation variables, then 0 is returned.

  

- If A is a sum, product, power, or known function, then the differentiation is expanded accordingly.

  

- If A=xn, and xn belongs to the differentiation variables, then d_μA returns g_μ,n.

  

- If A=d_μB, then dAlembertianB (the d'Alembertian) is returned.

  

- If A is an unknown function (the rule for its derivative is unknown), a Dirac delta function, or a derivative, then the result is returned unevaluated as d_μA.

• 

Sometimes it is convenient to rewrite tensorial expressions involving the covariant derivative D_ or the Christoffel symbols in terms of d_ or its application to the metric g_. For this purpose you can use convert(expression, d_) - see the Examples section.

• 

To perform the differentiation, the d_ command makes us of the diff command of the Physics package, which in turn uses the standard Maple diff command, so that any user-defined differentiation rule, such as for a function foo, of the form `diff/foo`, is automatically taken into account by d_.

• 

The %d_ command is the inert form of d_; that is, it represents the same mathematical operation while displaying the operation unevaluated. To evaluate the operation, use the value command.

Examples

withPhysics:

Setupmathematicalnotation=true

mathematicalnotation=true

(1)

Define some functions as spacetime tensor functions and use the enhanced display scheme of the differential equation packages.

DefineA,B

Defined objects with tensor properties

A,B,γμ,σμ,μ,gμ,ν,εα,β,μ,ν

(2)

CoordinatesX

Systems of spacetime coordinates are:X=x1,x2,x3,x4

X

(3)

PDEtoolsdeclaref,A,hX

fx1,x2,x3,x4will now be displayed asf

Ax1,x2,x3,x4will now be displayed asA

hx1,x2,x3,x4will now be displayed ash

(4)

The following example illustrates the automatic manipulations performed by d_.

eefXAμXcoshX+Bμ,νAνXDiracX

eefAμcosh+δ4XAνBμνμν

(5)

d_ρee

ρfAμcosh+fρAμcoshfAμρhsinh+Bμνμνρδ4XAν+δ4XρAν

(6)

So d_ distributes over products and sums, makes use of all the differentiation rules known to the Maple system, and returns unevaluated when its argument is an unknown function or a Dirac delta function. The composition of d_ leads to the d'Alembertian.

d_ρ

fAμcosh+2coshρAμρρf2Aμsinhρfρρh+fAμcosh2fsinhρAμρρhfAμhsinhfAμcoshρhρρh+Bμνμνδ4XAν+2ρδ4XρρAν+δ4XAν

(7)

The structure of indices of an expression such as the above can be checked by using the Check command.

Check

The repeated and free indices in the given expression check ok.

(8)

Check,all

The repeated indices per term are: ...,...,..., the free indices are: ...

,ρ,ρ,,ρ,,ρ,ν,ρ,μ

(9)

Note that this check is actually performed in background each time a Physics command is called.

d_ can also be used to represent differentials; it automatically expands when the argument is not already a coordinate

d_AX

μAⅆXμμ

(10)

d_x1

ⅆx1

(11)

When working with transformations of coordinates it is useful to define more than one system of coordinates; let Y be such another one

CoordinatesY

Systems of spacetime coordinates are:X=x1,x2,x3,x4,Y=y1,y2,y3,y4

X,Y

(12)

At this point, you can represent the differential of any of the coordinate systems defined, even when it is not the default differentiation variables system

Setupdiff

Default differentiation variables for d_, D_ and dAlembertian are:X=x1,x2,x3,x4

_______________________________________________________

differentiationvariables=X

(13)

X1

x1

(14)

d_X1

ⅆx1

(15)

Y1

y1

(16)

d_Y1

ⅆy1

(17)

d_ is used to represent differentials when entering the spacetime metric by passing the corresponding line element - see Setup, and in the output of TransformCoordinates when used with the option output = line_element.

The d_ operator is also available when working in nongalilean spacetimes, e.g. when the Christoffel symbols are not all of them zero. Set the metric to be the Schwarzschild metric in spherical coordinates; use a shortcut for the related Schwarzschild keyword (see g_)

g_sc

_______________________________________________________

Systems of spacetime coordinates are:X=r,θ,φ,t,Y=y1,y2,y3,y4

Default differentiation variables for d_, D_ and dAlembertian are:X=r,θ,φ,t

Setting lowercaselatin_is letters to represent space indices

The Schwarzschild metric in coordinates r,θ,φ,t

Parameters: m

Signature: - - - +

_______________________________________________________

gμ,ν=

(18)

Define an arbitrary tensor function A and rewrite its covariant derivative using d_ and Christoffel symbols, then in terms of derivatives of the metric g_

DefineA

Defined as tensors

Aν,Bμνμν,μ,γμ,σμ,Rμ,ν,Rμ,ν,α,β,Cμ,ν,α,β,μ,gμ,ν,γi,j,Γμ,ν,α,Gμ,ν,εα,β,μ,ν,Xμ,Yμ

(19)

D_μA~nuX

μAννX

(20)

convert,d_

μAννX+Γνα,μνα,μAααX

(21)

convert,g_

μAννX+gβ,νβ,νμgα,β+αgβ,μβgα,μAααX2

(22)

From the definition of the covariant Xν

Xν=g_α,νX~alpha

Xν=gα,νXαα

(23)

taking the differential of both sides, and using the inert %d_ for the left-hand-side

%d_μlhs=d_μrhs

μXν=μgα,νXαα+gμ,ν

(24)

Recalling, the current metric is nongalilean (Schwarzschild). In a galilean spacetime, the first term on the right-hand-side is zero, then μXν=gμ,ν.

For various calculations it is important how the derivatives of the contravariant tensor gμ,ν are related to those of the covariant gμ,ν. This relationship can be derived as follows

g_α,νg_~nu,~beta

gα,νgβ,νβ,ν

(25)

=Simplify

gα,νgβ,νβ,ν=δαβαβ

(26)

Differentiating now both sides

d_μ

μgα,νgβ,νβ,ν+gα,νμgβ,νβ,ν=0

(27)

Isolating μgβ,ρ

g_~alpha,~rho·

gα,ρα,ρgβ,νβ,νμgα,ν+μgβ,ρβ,ρ=0

(28)

isolate,d_μg_~beta,~rho

μgβ,ρβ,ρ=gα,ρα,ρgβ,νβ,νμgα,ν

(29)

See Also

`.`, Check, Christoffel, D_, dAlembertian, declare, Define, diff, g_, Physics, Physics conventions, Physics examples, Physics Updates, Tensors - a complete guide, Mini-Course Computer Algebra for Physicists, Setup