Antisymmetric[{s1,…,sn}]
represents the symmetry of a tensor that is antisymmetric in the slots si.
Antisymmetric
Antisymmetric[{s1,…,sn}]
represents the symmetry of a tensor that is antisymmetric in the slots si.
Details
- The slots si must be different positive numbers. The order of the list is irrelevant.
- Antisymmetric[{}] and Antisymmetric[{s}] are both equivalent to the identity symmetry.
- Antisymmetric[All] represents the symmetry of a tensor that is antisymmetric in all its slots.
- If an array is antisymmetric in a set of slots, then all those slots have the same dimensions.
Examples
open all close allBasic Examples (2)
TensorSymmetry[{{0, 5, 6}, {-5, 0, 3}, {-6, -3, 0}}]Declare a rank-4 array to be antisymmetric in three slots:
$Assumptions = A∈Arrays[{4, 4, 4, 4}, Reals, Antisymmetric[{1, 2, 4}]];Then any transposition involving those slots is equivalent to the original tensor, perhaps up to a sign:
TensorTranspose[A, Cycles[{{2, 4}}]]//TensorReduceScope (3)
Antisymmetry in all slots of a symbolic array:
$Assumptions = A∈Arrays[{3, 3, 3, 3}, Reals, Antisymmetric[{1, 2, 3, 4}]];TensorTranspose[A, {4, 1, 2, 3}]//TensorReduceIt can also be specified as follows:
$Assumptions = A∈Arrays[{3, 3, 3, 3}, Reals, Antisymmetric[All]];TensorTranspose[A, {4, 1, 2, 3}]//TensorReduceAntisymmetry in the given slots of a symbolic array:
$Assumptions = A∈Arrays[{3, 3, 3, 3}, Reals, Antisymmetric[{1, 2, 4}]];TensorTranspose[A, {4, 1, 2, 3}]//TensorReduceAntisymmetric[{}] and Antisymmetric[{s}] are representations of the absence of symmetry:
SymmetrizedArray[pos_ :> RandomInteger[100], {3, 3, 3}, Antisymmetric[{2}]]Such cases are canonicalized to an empty list of generators:
TensorSymmetry[%]Applications (3)
Specify the symmetry of a symmetrized array:
SymmetrizedArray[{{1, 2, 3} -> a, {2, 3, 4} -> b}, {4, 4, 4}, Antisymmetric[{1, 2, 3}]]Normal[%]TensorSymmetry[%]Specify the symmetry of a symbolic array:
$Assumptions = A∈Arrays[{4, 4, 4}, Reals, Antisymmetric[{1, 2, 3}]];TensorSymmetry[A]Symmetrize several slots of an array:
A = Array[a, {2, 2, 2}]Symmetrize[A, Antisymmetric[{1, 3}]]//NormalProperties & Relations (3)
Detect antisymmetric matrices:
SeedRandom[0];
RandomInteger[100, {5, 5}]A = % - Transpose[%]Transpose[A] === -ATensorSymmetry[A]An antisymmetric tensor can also be specified by providing explicit generators with phase
:
sym = {{{2, 3, 4, 5, 1}, 1}, {{2, 1, 3, 4, 5}, -1}};
$Assumptions = A∈Arrays[{d, d, d, d, d}, Reals, sym];The Wolfram Language automatically detects the equivalence:
TensorSymmetry[A]Overlapping sets of antisymmetric slots give full antisymmetry over all those slots:
sym = {Antisymmetric[{1, 2, 3}], Antisymmetric[{3, 4, 5, 6}]};
A = SymmetrizedArray[pos_ :> RandomReal[], {6, 6, 6, 6, 6, 6}, sym]TensorSymmetry[A]Non-overlapping sets do not give full antisymmetry. The resulting symmetry is described using generators:
sym = {Antisymmetric[{1, 2}], Antisymmetric[{3, 4, 5, 6}]};
$Assumptions = B∈Arrays[{d, d, d, d, d, d}, Reals, sym];TensorSymmetry[B]See Also
Tech Notes
Related Guides
History
Text
Wolfram Research (2012), Antisymmetric, Wolfram Language function, https://reference.wolfram.com/language/ref/Antisymmetric.html.
CMS
Wolfram Language. 2012. "Antisymmetric." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/Antisymmetric.html.
APA
Wolfram Language. (2012). Antisymmetric. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Antisymmetric.html
BibTeX
@misc{reference.wolfram_2026_antisymmetric, author="Wolfram Research", title="{Antisymmetric}", year="2012", howpublished="\url{https://reference.wolfram.com/language/ref/Antisymmetric.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_antisymmetric, organization={Wolfram Research}, title={Antisymmetric}, year={2012}, url={https://reference.wolfram.com/language/ref/Antisymmetric.html}, note=[Accessed: 13-June-2026]}