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.
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
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.
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
Example 3.
Define the standard volume form on M.
>
|
|
| (7) |
>
|
|
| (8) |
Example 4.
Create the tensor product of a list of tensors.
>
|
|
| (9) |
>
|
|
| (10) |
M >
|
|
|
|
Download Help Document
Was this information helpful?