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

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : DifferentialGeometry : Working with Abstract Forms

Working with abstract differential forms

 

Description

Examples

Description

• 

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.

Examples

withDifferentialGeometry:withTools:

 

Example 1.

Create an abstract manifold M with a function f, 1-forms α, β, and a 2-form σ.

DGsetup'f=dgform0,α=dgform1,β=dgform1,σ=dgform2',,M

frame name: M

(1)

The command DGinfo gives the names all scalars and forms which are defined.  

DGinfoAbstractForms

f,_DGform,M,1,1,1,_DGform,M,1,2,1,_DGform,M,2,3,1

(2)

Scalar products, wedge products and sums of abstract forms can be defined.

ωevalDG2α &wedge β+4σ

_DGform,M,2,3,4,1,2,2

(3)

The command DGinfo can also be used to extract information about the form ω.

DGinfoω,CoefficientSet

2,4

(4)

DGinfoω,CoefficientList,σ

4

(5)

New forms can be defined on M.

DGinfoAbstractForms

f,_DGform,M,1,1,1,_DGform,M,1,2,1,_DGform,M,2,3,1

(6)

We can use the DGzip and GetComponents commands with abstract forms.

ΩevalDGα &w β,σ

_DGform,M,2,1,2,1,_DGform,M,2,3,1

(7)

zetaDGzip3,5,Ω,plus

_DGform,M,2,3,5,1,2,3

(8)

GetComponentszeta,Ω

3,5

(9)

We can take the exterior derivative of a form.

ρExteriorDerivativeα

_DGform,M,2,4,1

(10)

The 2-form dα has been added to list of defined forms and is now available for subsequent computations.

DGinfoAbstractForms

f,_DGform,M,1,1,1,_DGform,M,1,2,1,_DGform,M,2,3,1,_DGform,M,2,d,1,4,1

(11)

ExteriorDerivativeρ

_DGform,M,3,1,3,0

(12)

Exterior derivatives of defined forms can be specified.

DGsetupM,,df=fα,dβ=4σ+5α &wedge β

updated frame: M

(13)

ExteriorDerivativefβ

_DGform,M,2,3,4f,1,2,6f

(14)

 

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).

RemoveFrameM

0

(15)

DGsetupf=dgform0,g=dgform0,ω1,ω2,ω3,'α'=dgform2,'β'=dgform3,dω1=ω2 &w ω3,N

frame name: N

(16)

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.   

DGinfoAbstractForms

f,g,_DGform,N,1,1,1,_DGform,N,1,2,1,_DGform,N,1,3,1,_DGform,N,2,4,1,_DGform,N,3,5,1

(17)

DGinfoFrameBaseVectors

_DGvector,N,,1,1,_DGvector,N,,2,1,_DGvector,N,,3,1

(18)

DGinfoFrameBaseForms

_DGform,N,1,1,1,_DGform,N,1,2,1,_DGform,N,1,3,1

(19)

We can define vector fields on N.

XevalDGaD_omega1+bD_omega2+cD_omega3

_DGvector,N,,1,a,2,b,3,c

(20)

We can calculate the interior products of vectors and forms.

HookX,ω1 &w ω3

_DGform,N,1,1,c,3,a

(21)

The interior products of {D_ω1,D_ ω2,D_ ω3} with the 2-form alpha are automatically defined as new forms on N. 

HookD_omega1,β

_DGform,N,2,6,1

(22)

HookD_omega2,β

_DGform,N,2,7,1

(23)

HookD_omega3,β

_DGform,N,2,8,1

(24)

DGinfoAbstractForms

f,g,_DGform,N,1,1,1,_DGform,N,1,2,1,_DGform,N,1,3,1,_DGform,N,2,4,1,_DGform,N,3,5,1,_DGform,N,2,hook,1,5,6,1,_DGform,N,2,hook,2,5,7,1,_DGform,N,2,hook,3,5,8,1

(25)

HookX,α

_DGform,N,1,9,a,10,b,11,c

(26)

Iterated interior products are known to be skew-symmetric:

HookD_omega1,i_1beta

_DGform,N,1,1,0

(27)

HookD_omega1,i_2beta

_DGform,N,1,12,1

(28)

HookD_omega3,i_2beta

_DGform,N,1,13,1

(29)

The forms are taken to be independent so the commands such as Annihilator and DGbasis will work in this setting.

AnnihilatorD_omega1+D_omega3

_DGform,N,1,1,1,3,1,_DGform,N,1,2,1

(30)

The Lie derivative of forms are computed from the Cartan formula.

LieDerivativeD_omega2,β

_DGform,N,3,15,1,16,1

(31)

Here both terms in this equation are new forms which are added to the list of defined forms on N.

DGinfoAbstractForms

f,g,_DGform,N,1,1,1,_DGform,N,1,2,1,_DGform,N,1,3,1,_DGform,N,2,4,1,_DGform,N,3,5,1,_DGform,N,2,hook,1,5,6,1,_DGform,N,2,hook,2,5,7,1,_DGform,N,2,hook,3,5,8,1,_DGform,N,1,hook,1,4,9,1,_DGform,N,1,hook,2,4,10,1,_DGform,N,1,hook,3,4,11,1,_DGform,N,1,hook,1,2,5,12,1,_DGform,N,1,hook,2,3,5,13,1,_DGform,N,4,d,5,14,1,_DGform,N,3,hook,2,14,15,1,_DGform,N,3,d,7,16,1

(32)

Equations for both exterior derivatives and interior products can be specified.

DGsetupN,,dω3=0,dβ=α &w α,hookD_omega2,β=α

updated frame: N

(33)

LieDerivativeD_omega2,β

_DGform,N,3,17,1,4,10,2

(34)

The Lie bracket can also be computed.

LieBracketD_omega2,D_omega3

_DGvector,N,,1,1,2,i_2_3domega2

(35)

DGsetupN,q=dgform0,hookD_omega2,D_omega3,domega2=q

updated frame: N

(36)

LieBracketD_omega2,D_omega3

_DGvector,N,,1,1,2,q

(37)

See Also

DifferentialGeometry

Annihilator

DGbasis

DGinfo

DGsetup

ExteriorDerivative

Hook

LieBracket

LieDerivative