Working with abstract differential forms
Description
Examples
This worksheet provides additional information for working with abstract differential forms, that is, differential forms which are defined abstractly without reference to any underlying system of coordinates. This new functionality of DifferentialGeometry is intended to supercede the difforms package.
There are 2 different ways of using DifferentialGeometry to calculate with abstract differential forms. The first way mirrors the scenario current provided by difforms -- one defines a list of forms (using DGsetup) by simply specifying their degrees. Then one can calculate wedge products and exterior derivatives of these forms. Equations for exterior derivatives can be specified. For the second method one indicates which of the 1-forms being defined constitute a co-frame for the underlying manifold. In this setting, the vector fields dual to the given 1-forms are automatically created by DGsetup. Wedge products, interior products, exterior derivatives and Lie derivatives can all be computed.
The functionalities provided by DGzip, GetComponents, Annihilator, DGbasis and DGinfo are available as appropriate.
with⁡DifferentialGeometry:with⁡Tools:
Example 1.
Create an abstract manifold M with a function f, 1-forms α, β, and a 2-form σ.
DGsetup⁡f=dgform⁡0,α=dgform⁡1,β=dgform⁡1,σ=dgform⁡2,,M
frame name: M
The command DGinfo gives the names all scalars and forms which are defined.
DGinfo⁡AbstractForms
f,α,β,σ
Scalar products, wedge products and sums of abstract forms can be defined.
ω≔evalDG⁡2⁢α&wedgeβ+4⁢σ
ω≔2⁢α⁢⋀⁢β+4⁢σ
The command DGinfo can also be used to extract information about the form ω.
DGinfo⁡ω,CoefficientSet
2,4
DGinfo⁡ω,CoefficientList,σ
4
New forms can be defined on M.
We can use the DGzip and GetComponents commands with abstract forms.
Ω≔evalDG⁡α&wβ,σ
Ω≔α⁢⋀⁢β,σ
ζ≔DGzip⁡3,5,Ω,plus
ζ≔3⁢α⁢⋀⁢β+5⁢σ
GetComponents⁡ζ,Ω
3,5
We can take the exterior derivative of a form.
ρ≔ExteriorDerivative⁡α
ρ≔d⁢α
The 2-form dα has been added to list of defined forms and is now available for subsequent computations.
f,α,β,σ,d⁢α
ExteriorDerivative⁡ρ
0⁢α⁢⋀⁢σ
Exterior derivatives of defined forms can be specified.
DGsetup⁡M,,d⁡f=f⁢α,d⁡β=4⁢σ+5⁢α&wedgeβ
updated frame: M
ExteriorDerivative⁡f⁢β
6⁢α⁢f⁢⋀⁢β+4⁢σ⁢f
Example 2.
In this example we illustrate calculations using the second calling sequence for working with abstract forms. The 1-forms defining the co-frame are enclosed in separate list (the degrees of the forms defining the co-frame need not be given).
RemoveFrame⁡M
0
DGsetup⁡f=dgform⁡0,g=dgform⁡0,ω1,ω2,ω3,α=dgform⁡2,β=dgform⁡3,d⁡ω1=ω2&wω3,N
frame name: N
All the functionality of Example 1 is retained but now the manifold N is taken to have dimension 3. The 1-forms ω1, ω2, ω3 define a co-frame on N and the dual vector fields {D_⁢ω1,D_ ω2,D_ ω3} have been initialized.
f,g,ω1,ω2,ω3,α,β
DGinfo⁡FrameBaseVectors
D_⁢ω1,D_⁢ω2,D_⁢ω3
DGinfo⁡FrameBaseForms
ω1,ω2,ω3
We can define vector fields on N.
X≔evalDG⁡a⁢D_omega1+b⁢D_omega2+c⁢D_omega3
X≔a⁢D_⁢ω1+b⁢D_⁢ω2+c⁢D_⁢ω3
We can calculate the interior products of vectors and forms.
Hook⁡X,ω1&wω3
ω3⁢a−ω1⁢c
The interior products of {D_⁢ω1,D_ ω2,D_ ω3} with the 2-form alpha are automatically defined as new forms on N.
Hook⁡D_omega1,β
ι1⁢β
Hook⁡D_omega2,β
ι2⁢β
Hook⁡D_omega3,β
ι3⁢β
f,g,ω1,ω2,ω3,α,β,ι1⁢β,ι2⁢β,ι3⁢β
Hook⁡X,α
ι1⁢α⁢a+ι2⁢α⁢b+ι3⁢α⁢c
Iterated interior products are known to be skew-symmetric:
Hook⁡D_omega1,i_1beta
0⁢ω1
Hook⁡D_omega1,i_2beta
−ι1,2⁢β
Hook⁡D_omega3,i_2beta
ι2,3⁢β
The forms are taken to be independent so the commands such as Annihilator and DGbasis will work in this setting.
Annihilator⁡D_omega1+D_omega3
−ω1+ω3,ω2
The Lie derivative of forms are computed from the Cartan formula.
LieDerivative⁡D_omega2,β
ι2⁢d⁢β+d⁢ι2⁢β
Here both terms in this equation are new forms which are added to the list of defined forms on N.
f,g,ω1,ω2,ω3,α,β,ι1⁢β,ι2⁢β,ι3⁢β,ι1⁢α,ι2⁢α,ι3⁢α,ι1,2⁢β,ι2,3⁢β,d⁢β,ι2⁢d⁢β,d⁢ι2⁢β
Equations for both exterior derivatives and interior products can be specified.
DGsetup⁡N,,d⁡ω3=0,d⁡β=α&wα,hook⁡D_omega2,β=α
updated frame: N
2⁢α⁢⋀⁢ι2⁢α+d⁢α
The Lie bracket can also be computed.
LieBracket⁡D_omega2,D_omega3
−D_⁢ω1−i_2_3domega2⁢D_⁢ω2
DGsetup⁡N,q=dgform⁡0,hook⁡D_omega2,D_omega3,domega2=q
−D_⁢ω1−q⁢D_⁢ω2
See Also
DifferentialGeometry
Annihilator
DGbasis
DGinfo
DGsetup
ExteriorDerivative
Hook
LieBracket
LieDerivative
Download Help Document