Symbolic Tensors

The Wolfram System offers a large number of functions to efficiently manipulate lists, matrices, and arrays of any depth and dimension. Among them there are functions to perform algebraic operations, like sums, products, inner or outer products, transpositions, etc. The Wolfram System also has powerful algorithms to manipulate algebraic combinations of expressions representing those arrays. These expressions are called symbolic arrays or symbolic tensors. By assuming given properties about those symbolic arrays (mainly rank, dimension, and symmetry), you can construct and prove results which are valid for arbitrary members of large domains of arrays obeying those properties.
Matrices are rank 2 arrays and can be symmetric, antisymmetric, or not have any symmetry at all. Higher-rank tensors can be fully symmetric or fully antisymmetric, but they can also have many other types of symmetries under transposition of their levels or slots. Relevant tensors in physics and mathematics usually have symmetry: the symmetric inertia tensors, the antisymmetric electromagnetic field, the rank 4 stiffness tensor in elasticity, the rank 4 Riemann curvature tensor of a manifold, the fully antisymmetric volume forms, etc. Even when you work with elementary objects without symmetry, like vectors, the repeated use of them leads to the appearance of symmetry. The Wolfram System introduces a general language to describe arbitrary transposition symmetries of arrays of any depth and dimension, both for ordinary arrays and for symbolic arrays. See "Tensor Symmetries" for a description of the language of symmetries.
Symbolic Array Domains
A given symbolic expression expr will be taken to belong to a given domain adom of arrays by using an assumption of the form Element[expr,adom], where adom specifies the properties shared by all arrays of that domain.
Arrays[{d1,,dr},dom,sym]
arrays of given dimensions, component type, and symmetry
Matrices[{d1,d2},dom,sym]
matrices of given dimensions, component type, and symmetry
Vectors[d1,dom]
vectors of given dimension and component type
Domains of symbolic arrays.
Extract properties of a real symmetric matrix:
You can compute properties of combinations of tensors, like tensor products:
The symmetry must be compatible with the dimensions of the array:
A general symbolic tensor expression can be understood as a linear combination of terms formed by combining the symbolic tensors using three basic operations: tensor products, transpositions, and contractions. Other basic algebra operations can be decomposed in terms of these.
TensorProduct[t1,t2,]
tensor product of tensors ti
TensorTranspose[t,perm]
transposition of tensor t by permutation perm
TensorContract[t,pairs]
contraction of the pairs of slots in the tensor t
Basic tensor operations.
Declare new symbolic tensor objects:
This is a transposition of the array b:
Compare with:
This is a contraction of levels 1 and 3 of the array a:
Contractions must be dimensionally consistent:
All terms in a sum must have the same rank and dimensions, but not necessarily the same symmetry:
Tensor Canonicalization
As usual in computer algebra, one of the most important computational steps is converting general expressions into a canonical form, if possible. When only transposition symmetries are involved, it is always possible to bring symbolic tensor polynomials to such canonical form, using specialized group theory algorithms. However, for complicated cases involving large ranks, it could consume considerable time and memory.
TensorExpand[texpr]
expand tensor sums and products
TensorReduce[texpr]
canonicalize terms with respect to symmetry
Tensor canonicalization.
Declare the properties of various real tensors:
Now you can have a symbolic tensor expression like the following:
TensorExpand expands sums in products and applies basic identities:
TensorReduce applies the same operations, sorts the tensors lexicographically, and uses the symmetry information. In this example, the contraction term disappears because it involves the contraction of a symmetric and an antisymmetric tensor:
Scalar factors (in this case a contraction of P) are separated if possible:
The next example explores the trace of powers of an antisymmetric matrix. For such a matrix A in any dimension, Tr[MatrixPower[A,n]] vanishes for odd n but not for even n. This is illustrated by constructing the power and trace in terms of TensorProduct and TensorContract and then canonicalizing the expression using TensorReduce.
Declare A to be an antisymmetric matrix in arbitrary dimension:
Construct a representation using TensorContract and TensorProduct:
These are the results for low values of n:
A more complicated example is given by the canonicalization of scalar polynomials in the Riemann tensor. Here, only its transposition symmetries are used (also known as permutation symmetries or monoterm symmetries), and not the Riemann cyclic symmetries.
This is a specification of the Riemann transposition symmetry:
There are 24 possible transpositions:
But only three (up to sign) are canonical:
This gives random contraction of m pairs of slots in the tensor product of n Riemann tensors:
These are three contractions with two Riemann tensors:
A bigger case, involving 25 tensors (100 slots) and 40 contraction pairs: