Tensor[GeodesicEquations] - calculate the geodesic equations for a symmetric linear connection on the tangent bundle
Calling Sequences
GeodesicEquations (C, Gamma, 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 system of coordinates
Gamma - a connection on the tangent bundle to a manifold M
t - the curve parameter
Description
Examples
See Also
Let M be a manifold and let ∇be a symmetric linear connection on the tangent bundle of M. If C is a curve in M with tangent vector T, then the geodesic equations for C with respect to the connection ∇ is the system of second order ODEs defined by ∇TT=0.
The procedure GeodesicEquations(C, Gamma, t) returns the vector ∇TT.
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form GeodesicEquations(...) only after executing the command with(DifferentialGeometry) and with(Tensor) in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-GeodesicEquations.
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⁡a⁢D_x&tdx&tdy+D_x&tdy&tdx+b⁢y⁢D_x&tdy&tdy
Γ:=a⁢D_x⁢dx⁢dy+a⁢D_x⁢dy⁢dx+b⁢y⁢D_x⁢dy⁢dy
To determine the geodesic equations for this connection we first define a curve on M by specifying a list of functions of a single variable t.
C≔x⁡t,y⁡t
C:=x⁡t,y⁡t
The program GeodesicEquations returns a vector whose components are the components of the geodesic equations.
V≔GeodesicEquations⁡C,Gamma,t
V:=ⅆⅆt⁢y⁡t2⁢b⁢y⁡t+2⁢ⅆⅆt⁢x⁡t⁢ⅆⅆt⁢y⁡t⁢a+ⅆⅆt⁢ⅆⅆt⁢x⁡t⁢D_x+ⅆⅆt⁢ⅆⅆt⁢y⁡t⁢D_y
To solve these geodesic equations use DGinfo to obtain the coefficients of V as a list. Pass the result to dsolve to solve this system of 2 second order ODEs. See also DGsolve.
DE≔Tools:-DGinfo⁡V,CoefficientSet
DE:=ⅆⅆt⁢y⁡t2⁢b⁢y⁡t+2⁢ⅆⅆt⁢x⁡t⁢ⅆⅆt⁢y⁡t⁢a+ⅆ2ⅆt2⁢x⁡t,ⅆ2ⅆt2⁢y⁡t
simplify⁡dsolve⁡DE,explicit
x⁡t=−14⁢2⁢b⁢_C32⁢a⁢_C4⁢t−b⁢_C32⁢t+b⁢_C33⁢a⁢t2+2⁢ⅇ−2⁢a⁢_C3⁢t+_C4⁢a⁢_C1−4⁢_C2⁢_C3⁢a2_C3⁢a2,y⁡t=_C3⁢t+_C4
DifferentialGeometry, Tensor, Christoffel, Connection, CovariantDerivative, DGinfo, DirectionalCovariantDerivative, ParallelTransportEquations
Download Help Document