Dependently typed tensor algebra.
For an introduction to the library, see Math.Tensor.Safe
. For more information, see the README on GitHub at https://github.com/nilsalex/safe-tensor#readme
safe-tensor
Dependently typed tensor algebra in Haskell. Useful for applications in field theory, e.g., carrying out calculations for https://doi.org/10.1103/PhysRevD.101.084025
Rationale
Tensor calculus is reflected in the type system. We regard a tensor as a multilinear map from a product of vector spaces and duals thereof to the common field. The type of each tensor is its generalized rank, describing the vector spaces it acts on and assigning a label to each vector space. There are a few rules for tensor operations:
- Only tensors of the same type may be added. The result is a tensor of this type.
- Tensors may be multiplied if the resulting generalized rank does not contain repeated labels for the same (dual) vector space.
- The contraction of a tensors removes pairs of vector space and dual vector space with the same label from the generalized rank.
It is thus impossible to perform inconsistent tensor operations.
There is also an existentially typed variant of the tensor type useful for runtime computations. These computations take place in the Error monad, throwing errors if operand types are not consistent.
The approach is described in detail in the Hackage documentation.