Hi All,
I started using Xact and it is very useful in handling tensor and their derivatives. Now, I want to define a tensor which should be symmetric under indices. I know that if I want to define tensor which should be fully symmetric in indices then i can do the following :
<< xAct`xTensor`;
DefManifold[M, n, IndexRange[i, z]];
DefMetric[-1, met[-i, -j], CD, {";", "\[Del]"},PrintAs -> "\[Delta]"];
DefTensor[H[a,b,c,d], M, Symmetric[{a,b,c,d}]]
But let's suppose if I want to define 4 rank tensor which is symmetric under cyclic operation, that is,
H[a,b,c,d] = H[d,a,b,c]=H[c,d,a,b]=H[b,c,d,a]
and also symmetric under ,
H[a,b,c,d]=H[d,c,b,a]
How to define a tensor which has above symmetry in indices.
It would be helpful if anyone can tell me , if that is possible to construct.
Thanks,
Shubham