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[DGzip] - form a linear combination, wedge product or tensor product of a list of vectors, forms or tensors
Calling Sequence
DGzip(C, T, operand)
Parameters
C
-
a list of Maple expressions
T
a list of vectors, differential p-forms, or tensors (of the same type); the number of elements in C and T must be equal
operand
a string, one of "plus", "wedge", or "tensor"
Description
DGzip(C, T, "plus") returns the additive linear combination of the objects in T with coefficients taken from the list C.
DGzip(T, "wedge") returns the wedge product of the forms in T.
DGzip(T, "tensor") returns the tensor product of the tensors in the list T.
This command is part of the DifferentialGeometry package, and so can be used in the form DGzip(...) only after executing the command with(DifferentialGeometry). It can always be used in the long form DifferentialGeometry:-DGzip.
Examples
Initialize a 4-dimensional manifold M with coordinates [x, y, z, w].
Example 1.
Form a vector on M with arbitrary coefficients.
Example 2.
Generate a list of 6 coefficients using the seq command, generate a basis for the 2-forms on M using the GenerateForms command, and use DGzip to make a general 2-form on M.
Example 3.
Define the standard volume form on M.
Example 4.
Create the tensor product of a list of tensors.
See Also
DifferentialGeometry, &plus, &minus, &mult, &wedge, &tensor, evalDG, GetComponents
Download Help Document