DifferentialGeometry
FrameData
calculate the structure equations for a generic (anholonomic) frame
Calling Sequence
Parameters
Description
Examples
FrameData(Fr, FrName)
Fr
-
a list of vector fields or differential 1-forms on a manifold M
FrName
an unassigned Maple name or string, the name to that will be assigned to the frame with the command DGsetup
There are many situations in differential geometry where computations are tremendously simplified by using a frame or co-frame other than the standard coordinate frame or co-frame. We refer to a general (local) frame or co-frame on a manifold as an anholonomic frame. Important examples of anholonomic frames are: the orthogonal frames constructed from a metric on a manifold; the null frames used in general relativity; the left (or right) invariant vector fields on a Lie group; the moving frames adapted to a free group action on a manifold. Cartan's method of equivalence provides an algorithmic approach to constructing adapted co-frames for Pfaffian systems.
All of the commands in the DifferentialGeometry package and the Tensor subpackage work with general anholonomic frames. At present, the commands in the JetCalculus package work only with the standard coordinate frame.
The structure equations of a frame Fr = [X_1, X_2, ...] (the X_i are vector fields) are the Lie bracket relations
[X_i, X_j] = F_{ij}^k X_k (sum on k).
The structure equations for a co-frame Omega = [omega^1, omega^2, ...] (the omega^k are differential 1-forms) are the exterior derivative formulas
d(omega^k) = G_{ij}^k omega ^i &w omega ^j.
If the co-frame Omega is the dual co-frame to the frame Fr, then the structure functions are related by G_{ij}^k = -1/2*F_{ij}^k).
To work in DifferentialGeometry with anholonomic frames on a manifold M, first define an underlying coordinate system on M and define the anholonomic frame or co-frame relative to this coordinate system. Use the command FrameData to generate the structure equations for this frame (along with other data). Pass the results of the FrameData procedure to the DGsetup procedure.
This command is part of the DifferentialGeometry package, and so can be used in the form FrameData(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-FrameData.
with⁡DifferentialGeometry:with⁡Tensor:
Example 1.
Calculate the structure equations for the frame Fr. Create a manifold N with local coordinate (x, y) and Fr as the frame for the tangent bundle.
DGsetup⁡x,y,M:
Fr≔evalDG⁡x⁢D_x+y⁢D_y,y2⁢D_x+x2⁢D_y
Fr≔x⁢D_x+y⁢D_y,y2⁢D_x+x2⁢D_y
FD≔FrameData⁡Fr,N
FD≔E1,E2=E2
DGsetup⁡FD,verbose
The following coordinates have been protected:
x,y
The following vector fields have been defined and protected:
E1,E2
The following differential 1-forms have been defined and protected:
Θ1,Θ2
frame name: N
Calculate the exterior derivative of the function x*y in terms of the co-frame dual to Fr.
ExteriorDerivative⁡x⁢y
2⁢x⁢y⁢Θ1+x3+y3⁢Θ2
Example 2.
Find an orthonormal co-frame for the metric g. Use this co-frame to compute the curvature tensor and its first covariant derivative.
g≔evalDG⁡dx&tdx+exp⁡2⁢x⁢dy&tdy
g≔dx⁢dx+ⅇ2⁢x⁢dy⁢dy
Ω≔evalDG⁡dx,exp⁡x⁢dy
Ω≔dx,ⅇx⁢dy
coFD≔FrameData⁡Ω,N
coFD≔d⁢Θ1=0,d⁢Θ2=Θ1⁢⋀⁢Θ2
DGsetup⁡coFD,E,ω,verbose
ω1,ω2
g≔evalDG⁡ω1&tω1+ω2&tω2
g≔ω1⁢ω1+ω2⁢ω2
C≔Christoffel⁡g
C≔−E1⁢ω2⁢ω2+E2⁢ω1⁢ω2
R≔CurvatureTensor⁡C
R≔−E1⁢ω2⁢ω1⁢ω2+E1⁢ω2⁢ω2⁢ω1+E2⁢ω1⁢ω1⁢ω2−E2⁢ω1⁢ω2⁢ω1
R1≔CovariantDerivative⁡R,C
R1≔0⁢E1⁢ω1⁢ω1⁢ω1⁢ω1
Example 3.
In this example we shall encode the Liouville equation u_xy = exp(u) as a exterior differential system on a 7 manifold N with a co-frame adapted to the hyperbolic structure of the equation. The steps are:
1. Create a manifold M with coordinates (x, y, u, p, q, r, t) -- here we are using the classical notation for derivatives p = u_x, q = u_y, r = u_xx, t = u_yy.
2. Define a co-frame Omega on M by Omega = [du - p*dx - q*dy, dp - r*dx - exp(u)*dy, dq - exp(u)*dx - t*dy, dx, dr - p*dp, dy, dt - q*dq].
3. Compute the structure equations for the co-frame Omega using the FrameData command.
4. Initialize the manifold N with the co-frame Omega. Label the first 3 elements of the co-frame on N as theta1, theta2, theta3, and the last 4 elements as pi1, pi2, pi3, pi4.
5. Compute the exterior derivatives of theta1, theta2, theta3.
with⁡DifferentialGeometry:
DGsetup⁡x,y,u,p,q,r,t,M:
Ω≔evalDG⁡du−p⁢dx−q⁢dy,dp−r⁢dx−exp⁡u⁢dy,dq−exp⁡u⁢dx−t⁢dy,dx,dr−p⁢dp,dy,dt−q⁢dq
Ω≔−p⁢dx−q⁢dy+du,−r⁢dx−ⅇu⁢dy+dp,−ⅇu⁢dx−t⁢dy+dq,dx,−p⁢dp+dr,dy,−q⁢dq+dt
coFD≔d⁢Θ1=−Θ2⁢⋀⁢Θ4−Θ3⁢⋀⁢Θ6,d⁢Θ2=−ⅇu⁢Θ1⁢⋀⁢Θ6−p⁢Θ2⁢⋀⁢Θ4+Θ4⁢⋀⁢Θ5,d⁢Θ3=−ⅇu⁢Θ1⁢⋀⁢Θ4−q⁢Θ3⁢⋀⁢Θ6+Θ6⁢⋀⁢Θ7,d⁢Θ4=0,d⁢Θ5=0,d⁢Θ6=0,d⁢Θ7=0
DGsetup⁡coFD,E,θ1,θ2,θ3,π1,π2,π3,π4
ExteriorDerivative⁡θ1
−θ2⁢⋀⁢π1−θ3⁢⋀⁢π3
ExteriorDerivative⁡θ2
−ⅇu⁢θ1⁢⋀⁢π3−p⁢θ2⁢⋀⁢π1+π1⁢⋀⁢π2
ExteriorDerivative⁡θ3
−ⅇu⁢θ1⁢⋀⁢π1−q⁢θ3⁢⋀⁢π3+π3⁢⋀⁢π4
See Also
CovariantDerivative
CurvatureTensor
DGsetup
DualBasis
Tensor
Download Help Document