Physics[Antisymmetrize] - Compute an expression that is totally antisymmetric with respect to any permutation of its free indices
Physics[Symmetrize] - Compute an expression that is totally symmetric with respect to any permutation of its free indices
|
Calling Sequence
|
|
Antisymmetrize(T, idx, options=value)
Symmetrize(T, idx, options=value)
|
|
Parameters
|
|
T
|
-
|
an algebraic tensorial expression, or a relation, or list, set or Array of them
|
idx
|
-
|
optional - a set or list with indices to be (anti)symmetrized, expected to be of the same kind: either all covariant or all contravariant (prefixed with ~). Default is all the free indices of T
|
evaluatetensor = ...
|
-
|
optional - can be true or false (default), to evaluate the tensors in T after (anti)symmetrizing them
|
simplifytensor = ...
|
-
|
optional - can be true or false (default), to simplify the resulting expression after (anti)symmetrizing the tensors in T with regards to the summation convention for repeated indices and the (anti)symmetry properties of tensors involved
|
|
|
|
|
Description
|
|
•
|
The and Antisymmetrize and Symmetrize commands receive an algebraic expression T involving tensors and returns another algebraic expression that is respectively totally antisymmetric or totally symmetric with respect to any permutation of the free tensorial indices of T.
|
•
|
In the particular case where T is itself a product of totally antisymmetric covariant tensors, the expression returned by Antisymmetrize is also, by definition, the exterior product of these tensors.
|
•
|
When a second argument, idx, is indicated as a set or list of indices, the (anti)symmetrization is performed only with respect to these indices, otherwise, it is performed with regards to all the free indices of T. In either case, to perform the (anti)symmetrization it is necessary that the indices are all of the same kind, that is, all covariant or all contravariant.
|
•
|
By default, the (anti)symmetrization is performed without evaluation the tensors entering the result. However, when there are tensors in T that already have symmetry properties (see Define to define them), it may be convenient to evaluate these tensors (option evaluatetensor) or even simplify the result with regards to the summation convention for repeated indices and taking into account the (anti)symmetry properties of the tensors involved or their products. For these purposes, respectively pass the option evaluatetensor or simplifytensor (the latter supersedes the former).
|
|
|
Examples
|
|
>
|
|
| (1) |
Define , and , with respectively 1, 2 and 3 indices, totally symmetric and totally antisymmetric
| |
| (2) |
>
|
|
| |
| (3) |
>
|
|
| |
| (4) |
Symmetrize the product
| (6) |
Check this result using the IsTensorialSymmetric command from the programming library
>
|
|
The symmetrized expression can however be simplified taking into account that is symmetric; i.e. . This simplification can be achieved using Simplify or passing the option simplifytensor
>
|
|
| (8) |
Antisymmetrize now this same product
The result above is expected since is symmetric. In the same way, the symmetrization of a product involving an antisymmetric tensor, for instance C, is also zero:
The antisymmetrization of this product can be simplified significantly taking into account that is totally antisymmetric
| (12) |
| (13) |
Make the product be symmetric with regards to the 1st index of each of them and antisymmetric with regards to the 2nd index of each of them
>
|
|
| (15) |
Verify the symmetries of this result with regards to permutations of and
>
|
|
>
|
|
|
|
Compatibility
|
|
•
|
The Physics[Antisymmetrize] and Physics[Symmetrize] commands were introduced in Maple 17.
|
|
|