Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
DifferentialGeometry[LieDerivative] - calculate the Lie derivative of a vector field, differential form, tensor, or connection with respect to a vector field
Calling Sequence
LieDerivative(X, T)
Parameters
X
-
a vector field on a manifold M or a vector in a Lie algebra A
T
a vector field, a Maple expression, a differential form or a tensor field on the manifold M or the Lie algebra A
Description
If T is a Maple expression, then LieDerivative(X, T) is the directional derivative X(T) of T in the direction of the vector field X.
If T is a vector field, then LieDerivative(X, T) coincides with the Lie bracket [X, T] = LieBracket(X, T).
If T is a differential 1-form, then alpha = LieDerivative(X, T) is the 1-form defined by alpha(Y) = X(alpha(Y)) - alpha([X,Y]), where Y is any vector field on M.
The Lie derivative operator acts as a derivation with respect to both the wedge and tensor products. If alpha and beta are differential forms and T and S are tensors, then LieDerivative(X, alpha &w beta) = LieDerivative(X, alpha) &w beta + alpha &w LieDerivative(X, beta), and LieDerivative(X, S &t T) = LieDerivative(X, S) &t T + S &w LieDerivative(X, T).
The Lie derivative of a differential form can also be calculated from the Cartan formula, LieDerivative(X, alpha) = ExteriorDerivative(Hook(X, alpha)) + Hook(X, ExteriorDerivative(alpha))
The Lie derivative of a connection nabla_Y(Z) is the type (1, 2) tensor field S = LieDerivative(X, nabla), defined (when viewed as mapping from pairs of vector fields to vector fields) by S(Y, Z) = LieDerivative(X, nabla_Y(Z)) - nabla_{LieDerivative(X, Y)}(Z) - nabla_X(LieDerivative(Y, Z)).
For the definition of the Lie derivative of these geometric objects in terms of the flow of the vector field X see, for example, Spivak page 207-208.
The Lie derivative of a tensor defined on a Lie algebra can also be computed.
The first argument also be a list of vectors. The second argument can be a list of a vectors, Maple expressions, a differential forms or tensors.
This command is part of the DifferentialGeometry package, and so can be used in the form LieDerivative(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-LieDerivative.
Examples
First initialize a manifold M with local coordinates [x, y, z].
Example 1.
First we calculate the Lie derivative of a function f and note that it agrees with the directional derivative f.
Example 2.
First we calculate the Lie derivative of a vector field and check that it coincides with the Lie bracket.
Example 3.
First we calculate the Lie derivative of a differential form and check the result against Cartan's formula.
Example 4.
We calculate the Lie derivative of a tensor field.
Example 5.
We calculate the Lie derivative of the zero connection.
Example 6.
The Lie derivative with respect to a list of vectors can be calculated simultaneously.
The Lie derivative of a list of tensors can be calculated simultaneously.
Both arguments to LieDerivative can be lists.
The Lie derivative of a Matrix of differential 2-forms can be calculated simultaneously.
Example 7.
The Lie derivative can be calculated in anholonomic frames. Use FrameData to find the structure equations for an anholonomic frame and initialize with DGsetup.
Example 8.
The Lie derivative can be calculated for abstract forms.
Example 9.
The Lie derivative can be calculated for tensors on a Lie algebra. Use LieAlgebraData and DGsetup to initialize a Lie algebra.
Calculate the Killing form for the Lie algebra and show that its Lie derivative is zero for all vectors in the Lie algebra.
See Also
DifferentialGeometry, Tensor, Connection, ExteriorDerivative, Hook, LieBracket
Download Help Document