Tensor[ParallelTransportEquations] - calculate the parallel transport equations for a linear connection on the tangent bundle or a linear connection on a vector bundle
Calling Sequences
ParallelTransportEquations(C, Y, Γ, t)
Parameters
C - a list of functions of a single variable, defining the components of a curve on a manifold M, with respect to a given coordinate system
Y - a vector field defined along the curve C
Γ - a connection on the tangent bundle to a manifold M or a connection on a vector bundle E→M
t - the curve parameter
Description
Examples
See Also
Let M be a manifold and let ∇ be a linear connection on the tangent bundle of M or a connection on a vector bundle E→M. If C is a curve in M with tangent vector T, then the parallel transport equations for a vector field Y along C are the linear, first order ODEs defined by ∇TY=0.
The procedure ParallelTransportEquations(C, Y, Γ, t) returns the vector ∇TY.
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form ParallelTransportEquations(...) only after executing the command with(DifferentialGeometry) and with(Tensor) in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-ParallelTransportEquations.
with⁡DifferentialGeometry:with⁡Tensor:
Example 1.
First create a 2-dimensional manifold M and define a connection on the tangent space of M.
DGsetup⁡x,y,M
frame name: M
Gamma≔Connection⁡−D_x&tdx&tdy+D_y&tdy&tdx
Γ:=−D_x⁢dx⁢dy+D_y⁢dy⁢dx
To define the parallel transport equations along C, we first define a curve on M by specifying a list of functions of a single variable t. We also define a vector field Y with coefficients depending on the curve parameter.
C≔cos⁡t,sin⁡t
C:=cos⁡t,sin⁡t
Y≔evalDG⁡A⁡t⁢D_x+B⁡t⁢D_y
Y:=A⁡t⁢D_x+B⁡t⁢D_y
The program ParallelTransportEquations returns a vector whose components define the parallel transport equations.
V≔ParallelTransportEquations⁡C,Y,Gamma,t
V:=−A⁡t⁢cos⁡t−A.⁡t⁢D_x−B⁡t⁢sin⁡t−B.⁡t⁢D_y
To solve these parallel transport equations use the DGinfo command in the Tools package to obtain the coefficients of V as a set. Pass the resulting system of 1st order ODEs to dsolve.
DE≔Tools:-DGinfo⁡V,CoefficientSet
DE:=−A⁡t⁢cos⁡t+ⅆⅆt⁢A⁡t,−B⁡t⁢sin⁡t+ⅆⅆt⁢B⁡t
soln≔dsolve⁡DE,explicit
soln:=A⁡t=_C2⁢ⅇsin⁡t,B⁡t=_C1⁢ⅇ−cos⁡t
Back substitute the solution into the vector field Y.
Y_t≔eval⁡Y,soln
Y_t:=_C2⁢ⅇsin⁡t⁢D_x+_C1⁢ⅇ−cos⁡t⁢D_y
Example 2.
First create a rank 2 vector bundle E→M over the two-dimensional manifold M and define a connection on E.
DGsetup⁡x,y,u,v,E:
Gamma≔Connection⁡D_v&tdv&tdy−D_u&tdv&tdx
Γ:=−D_u⁢dv⁢dx+D_v⁢dv⁢dy
Define a curve C in M.
C≔t,t
C:=t,t
Y≔evalDG⁡A⁡t⁢D_u+B⁡t⁢D_v
Y:=A⁡t⁢D_u+B⁡t⁢D_v
V:=−B⁡t−A.⁡t⁢D_u+B⁡t+B.⁡t⁢D_v
To solve these parallel transport equations use DGinfo to obtain the coefficients of V as a set. Pass the result to dsolve.
DE:=−B⁡t+ⅆⅆt⁢A⁡t,B⁡t+ⅆⅆt⁢B⁡t
soln:=A⁡t=−_C2⁢ⅇ−t+_C1,B⁡t=_C2⁢ⅇ−t
Y_t:=−_C2⁢ⅇ−t+_C1⁢D_u+_C2⁢ⅇ−t⁢D_v
DifferentialGeometry, Tensor, Christoffel, Connection, CovariantDerivative, DGinfo, DirectionalCovariantDerivative
Download Help Document