30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
/-
|
|
Copyright (c) 2024 Joseph Tooby-Smith. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Joseph Tooby-Smith
|
|
-/
|
|
import HepLean.SpaceTime.LorentzTensor.Basic
|
|
/-!
|
|
|
|
# Notation for Lorentz Tensors
|
|
|
|
This file is currently a stub.
|
|
|
|
We plan to set up index-notation for dealing with tensors.
|
|
|
|
Some examples:
|
|
|
|
- `ψᵘ¹ᵘ²φᵤ₁` should correspond to the contraction of the first index of `ψ` and the
|
|
only index of `φ`.
|
|
- `ψᵘ¹ᵘ² = ψᵘ²ᵘ¹` should define the symmetry of `ψ` under the exchange of its indices.
|
|
- `θᵤ₂(ψᵘ¹ᵘ²φᵤ₁) = (θᵤ₂ψᵘ¹ᵘ²)φᵤ₁` should correspond to an associativity properity of
|
|
contraction.
|
|
|
|
It should also be possible to define this generically for any `LorentzTensorStructure`.
|
|
|
|
Further we plan to make easy to define tensors with indices. E.g. `(ψ : Tenᵘ¹ᵘ²ᵤ₃)`
|
|
should correspond to a (real Lorentz) tensors with 3 indices, two upper and one lower.
|
|
For `(ψ : Tenᵘ¹ᵘ²ᵤ₃)`, if one writes e.g. `ψᵤ₁ᵘ²ᵤ₃`, this should correspond to a
|
|
lowering of the first index of `ψ`.
|
|
|
|
-/
|