4.1. Basics
In any calculation it is essential to bring all tensors and products of tensors down to a canonical form, in order to be compared. This is done by the function ToCanonical, probably the most important ingredient of xTensor`, and certainly the most complicated function.
Do not confuse the canonicalization proces, by which an expression is brought to a canonical form (not necessarily simple) from the simplification process, by which an expression is rewritten as an equivalent, but simpler form. The former is uniquely defined once the canonical form of every sintactycally correct expression is decided. The latter is largely subjective, and generally more difficult to work with. Fortunately Mathematica has a very good algorithm for simplification (Simplify). This is one of the main reasons to avoid introducing TensorTimes or TensorPlus, which would force us to build a new TensorSimplify, and another strong reason to use abstract index notation. In xTensor` we have defined a command Simplification, which simply applies ToCanonical first, and then Simplify.
The hardest part of the process (the canonicalization of indices) is performed by the companion package xPerm`. The canonicalization code is duplicated in that package: there is first a pure Mathematica version of the code, and then there is an external C-executable, which is much faster, but requires a MathLink connection, which does not work for some operating systems. Which code is used is controlled with several switches, as we will see later on.
ToCanonical Canonicalization of indices of an expression
Simplification Apply ToCanonical and then Simplify
Simplification functions
Canonical form of the totally antisymmetric tensor U: sort indices in alphabetical order:
In[222]:=
Out[222]=
In[223]:=
Out[223]=
Dummy indices are replaced so that the total number of different dummies is minimal:
In[224]:=
Out[224]=
The process of canonicalization is far from trivial (see next section). We can monitor it using Verbose options.
Verbose Gives a real-time report of the tensorial canonicalization process
TimeVerbose Gives timings of several canonicalization steps
xPermVerbose Gives a real-time report of the permutation canonicalization process
Verbosing options of ToCanonical.
These three cells show the output of the three Verbose options of ToCanonical in a simple case. The output of xPermVerbose can be extremely large even for small expressions. We do not use the external executable because there is not verbose information from it:
In[225]:=
Out[225]=
In[226]:=
Out[226]=
In[227]:=
Out[227]=
In[228]:=
Out[228]=
The canonicalization of expressions involving a large number of indices is a slow process, mainly when most of those indices are dummies. In those cases the Mathematica code for xPerm`, which is interpreted, becomes too slow. A C executable called xperm is used to compute the hardest part of the calculations; xTensor` communicates with it using a MathLink connection. Currently this executable exists for Linux and Mac for any version of Mathematica, and for MS Windows starting Mathematica 6.0.
MathLink Option of CanonicalPerm to use the external C executable xperm
MathLink connection.
We define an antisymmetric tensor Anti:
In[229]:=
Now we fake that there is a metric on TangentM3. We shall later explain how to define a metric properly.
In[230]:=
Powers of an odd number of antisymmetric tensors are 0. These are timings with the interpreted Mathematica code:
In[232]:=
Out[232]=
In[233]:=
Out[233]=
In[234]:=
Out[234]=
In[235]:=
Out[235]=
In[236]:=
Out[236]=
In[237]:=
Out[237]=
In[238]:=
Out[238]=
In order to be able to connect to the external executable, the following global variable must return True. If you get False, contact JMM to see what is the problem, and whether it can be solved.
In[239]:=
Out[239]=
These are the corresponding timings with the C executable:
In[240]:=
Out[240]=
In[241]:=
Out[241]=
In[242]:=
Out[242]=
In[243]:=
Out[243]=
In[244]:=
Out[244]=
In[245]:=
Out[245]=
Created by Mathematica (May 16, 2008) | ![]() |