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

Online Help

Home : Support : Online Help : DifferentialGeometry/Tensor/NPDirectionalDerivatives

Tensor[NPDirectionalDerivatives] - create procedures for the Newman-Penrose directional derivatives

Calling Sequences

     NPDirectionalDerivatives(NTetrad, output)

     NPDirectionalDerivatives(Fr, output)

Parameters

   NTetrad - a list of 4 vectors defining a null tetrad

   Fr      - the name of an initialized anholonomic frame, created from a null tetrad

   output  - (optional) keyword argument output = "sequence"

 

Description

Examples

See Also

Description

• 

Let  be a metric with signature  and be a null tetrad for . The Newman-Penrose directional derivative operators take derivatives of functions in the directions of the 4 vectors of the tetrad. See Newman and Penrose, Stewart.

• 

The NPDirectionalDerivatives command returns a table with 4 entries "D", "Delta", "delta", "barDelta" corresponding to the customary labels assigned to the NP directional derivative operators δ, ). With optional keyword argument output = "sequence", the directional derivative operators are returned as a sequence of 4 Maple procedures.

• 

This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form NPDirectionalDerivatives(...) only after executing the commands with(DifferentialGeometry); with(Tensor);  in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-NPDirectionalDerivatives.

Examples

 

Example 1.

Define a manifold  with coordinates .

(2.1)

 

Define a metric of signature (1,-1,-1,-1).

S > 

(2.2)

 

Define a null tetrad NTetrad for the metric .  Use GRQuery to verify that NTetrad is a null tetrad.

S > 

(2.3)
S > 

(2.4)

 

Calculate the NP directional derivative operators defined by the null tetrad NTetrad.  The result is a table with 4 indices.

S > 

(2.5)
S > 

(2.6)

 

The individual directional derivatives operators can be extracted from the table NPDirDer.

S > 

(2.7)
S > 

(2.8)

 

Note that this coincides with the Lie derivative of  with respect to the first vector in NTetrad.

S > 

(2.9)

 

Example 2.

With the keyword argument output = "sequence", the command NPDirectionalDerivatives will return the directional derivatives operators as a sequence. (Note that the name D is protected by Maple.)

S > 

(2.10)
S > 

(2.11)

 

Example 3.

When working with the NP formalism, it is usually advantageous to work with the anholonomic frame defined by the null tetrad.  To create anholonomic frames in DifferentialGeometry, see FrameData.

S > 

(2.12)
S > 

(2.13)

 

We can now calculate the directional derivatives operators for the null tetrad with the second calling sequence.

NP > 

(2.14)

See Also

DifferentialGeometry, Tensor, LieDerivative, GRQuery, NullTetrad 


Download Help Document