2024-07-03 06:40:06 -04:00
|
|
|
|
/-
|
|
|
|
|
Copyright (c) 2024 Joseph Tooby-Smith. All rights reserved.
|
2024-07-13 09:20:24 -04:00
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
2024-07-03 06:40:06 -04:00
|
|
|
|
Authors: Joseph Tooby-Smith
|
|
|
|
|
-/
|
2024-07-11 09:55:23 -04:00
|
|
|
|
import Mathlib.Logic.Function.CompTypeclasses
|
|
|
|
|
import Mathlib.Data.Real.Basic
|
2024-07-17 15:15:44 -04:00
|
|
|
|
import Mathlib.Data.Fintype.BigOperators
|
|
|
|
|
import Mathlib.Logic.Equiv.Fin
|
|
|
|
|
import Mathlib.Tactic.FinCases
|
2024-07-18 16:34:00 -04:00
|
|
|
|
import Mathlib.Logic.Equiv.Fintype
|
2024-07-03 06:40:06 -04:00
|
|
|
|
/-!
|
|
|
|
|
|
2024-07-15 16:57:06 -04:00
|
|
|
|
# Real Lorentz Tensors
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
In this file we define real Lorentz tensors.
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
We implicitly follow the definition of a modular operad.
|
|
|
|
|
This will relation should be made explicit in the future.
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
## References
|
|
|
|
|
|
|
|
|
|
-- For modular operads see: [Raynor][raynor2021graphical]
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
|
|
|
|
-/
|
2024-07-11 09:16:36 -04:00
|
|
|
|
/-! TODO: Do complex tensors, with Van der Waerden notation for fermions. -/
|
2024-07-11 09:55:23 -04:00
|
|
|
|
/-! TODO: Generalize to maps into Lorentz tensors. -/
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
2024-07-11 09:55:23 -04:00
|
|
|
|
/-- The possible `colors` of an index for a RealLorentzTensor.
|
2024-07-22 06:46:42 -04:00
|
|
|
|
There are two possiblities, `up` and `down`. -/
|
2024-07-11 09:16:36 -04:00
|
|
|
|
inductive RealLorentzTensor.Colors where
|
|
|
|
|
| up : RealLorentzTensor.Colors
|
|
|
|
|
| down : RealLorentzTensor.Colors
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-13 09:20:24 -04:00
|
|
|
|
/-- The association of colors with indices. For up and down this is `Fin 1 ⊕ Fin d`. -/
|
2024-07-11 09:16:36 -04:00
|
|
|
|
def RealLorentzTensor.ColorsIndex (d : ℕ) (μ : RealLorentzTensor.Colors) : Type :=
|
|
|
|
|
match μ with
|
|
|
|
|
| RealLorentzTensor.Colors.up => Fin 1 ⊕ Fin d
|
|
|
|
|
| RealLorentzTensor.Colors.down => Fin 1 ⊕ Fin d
|
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
instance (d : ℕ) (μ : RealLorentzTensor.Colors) : Fintype (RealLorentzTensor.ColorsIndex d μ) :=
|
|
|
|
|
match μ with
|
|
|
|
|
| RealLorentzTensor.Colors.up => instFintypeSum (Fin 1) (Fin d)
|
|
|
|
|
| RealLorentzTensor.Colors.down => instFintypeSum (Fin 1) (Fin d)
|
|
|
|
|
|
2024-07-16 09:45:03 -04:00
|
|
|
|
instance (d : ℕ) (μ : RealLorentzTensor.Colors) : DecidableEq (RealLorentzTensor.ColorsIndex d μ) :=
|
|
|
|
|
match μ with
|
|
|
|
|
| RealLorentzTensor.Colors.up => instDecidableEqSum
|
|
|
|
|
| RealLorentzTensor.Colors.down => instDecidableEqSum
|
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
/-- An `IndexValue` is a set of actual values an index can take. e.g. for a
|
2024-07-12 11:23:02 -04:00
|
|
|
|
3-tensor (0, 1, 2). -/
|
2024-07-15 07:17:09 -04:00
|
|
|
|
def RealLorentzTensor.IndexValue {X : Type} (d : ℕ) (c : X → RealLorentzTensor.Colors) :
|
2024-07-12 09:47:43 -04:00
|
|
|
|
Type 0 := (x : X) → RealLorentzTensor.ColorsIndex d (c x)
|
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
/-- A Lorentz Tensor defined by its coordinate map. -/
|
2024-07-15 07:17:09 -04:00
|
|
|
|
structure RealLorentzTensor (d : ℕ) (X : Type) where
|
2024-07-11 09:55:23 -04:00
|
|
|
|
/-- The color associated to each index of the tensor. -/
|
2024-07-11 09:16:36 -04:00
|
|
|
|
color : X → RealLorentzTensor.Colors
|
2024-07-11 09:55:23 -04:00
|
|
|
|
/-- The coordinate map for the tensor. -/
|
2024-07-12 09:47:43 -04:00
|
|
|
|
coord : RealLorentzTensor.IndexValue d color → ℝ
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
namespace RealLorentzTensor
|
2024-07-17 15:15:44 -04:00
|
|
|
|
open Matrix
|
2024-07-11 09:16:36 -04:00
|
|
|
|
universe u1
|
2024-07-17 15:15:44 -04:00
|
|
|
|
variable {d : ℕ} {X Y Z : Type} (c : X → Colors)
|
2024-07-16 16:58:42 -04:00
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
/-!
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
## Colors
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
-/
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
|
|
|
|
/-- The involution acting on colors. -/
|
|
|
|
|
def τ : Colors → Colors
|
|
|
|
|
| Colors.up => Colors.down
|
|
|
|
|
| Colors.down => Colors.up
|
|
|
|
|
|
|
|
|
|
/-- The map τ is an involution. -/
|
2024-07-12 09:47:43 -04:00
|
|
|
|
@[simp]
|
2024-07-11 09:16:36 -04:00
|
|
|
|
lemma τ_involutive : Function.Involutive τ := by
|
|
|
|
|
intro x
|
|
|
|
|
cases x <;> rfl
|
|
|
|
|
|
2024-07-17 13:53:36 -04:00
|
|
|
|
lemma color_eq_dual_symm {μ ν : Colors} (h : μ = τ ν) : ν = τ μ :=
|
|
|
|
|
(Function.Involutive.eq_iff τ_involutive).mp h.symm
|
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
/-- The color associated with an element of `x ∈ X` for a tensor `T`. -/
|
2024-07-15 07:17:09 -04:00
|
|
|
|
def ch {X : Type} (x : X) (T : RealLorentzTensor d X) : Colors := T.color x
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-19 15:58:20 -04:00
|
|
|
|
/-- An equivalence of `ColorsIndex` types given an equality of colors. -/
|
2024-07-17 13:53:36 -04:00
|
|
|
|
def colorsIndexCast {d : ℕ} {μ₁ μ₂ : RealLorentzTensor.Colors} (h : μ₁ = μ₂) :
|
|
|
|
|
ColorsIndex d μ₁ ≃ ColorsIndex d μ₂ :=
|
2024-07-17 16:12:30 -04:00
|
|
|
|
Equiv.cast (congrArg (ColorsIndex d) h)
|
2024-07-17 13:53:36 -04:00
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
/-- An equivalence of `ColorsIndex` between that of a color and that of its dual. -/
|
2024-07-17 13:53:36 -04:00
|
|
|
|
def colorsIndexDualCastSelf {d : ℕ} {μ : RealLorentzTensor.Colors}:
|
2024-07-12 09:47:43 -04:00
|
|
|
|
ColorsIndex d μ ≃ ColorsIndex d (τ μ) where
|
|
|
|
|
toFun x :=
|
|
|
|
|
match μ with
|
|
|
|
|
| RealLorentzTensor.Colors.up => x
|
|
|
|
|
| RealLorentzTensor.Colors.down => x
|
|
|
|
|
invFun x :=
|
|
|
|
|
match μ with
|
|
|
|
|
| RealLorentzTensor.Colors.up => x
|
|
|
|
|
| RealLorentzTensor.Colors.down => x
|
|
|
|
|
left_inv x := by cases μ <;> rfl
|
|
|
|
|
right_inv x := by cases μ <;> rfl
|
|
|
|
|
|
|
|
|
|
/-- An equivalence of `ColorsIndex` types given an equality of a color and the dual of a color. -/
|
2024-07-17 13:53:36 -04:00
|
|
|
|
def colorsIndexDualCast {μ ν : Colors} (h : μ = τ ν) :
|
2024-07-12 09:47:43 -04:00
|
|
|
|
ColorsIndex d μ ≃ ColorsIndex d ν :=
|
2024-07-17 13:53:36 -04:00
|
|
|
|
(colorsIndexCast h).trans colorsIndexDualCastSelf.symm
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
2024-07-17 13:53:36 -04:00
|
|
|
|
lemma colorsIndexDualCast_symm {μ ν : Colors} (h : μ = τ ν) :
|
|
|
|
|
(colorsIndexDualCast h).symm =
|
|
|
|
|
@colorsIndexDualCast d _ _ ((Function.Involutive.eq_iff τ_involutive).mp h.symm) := by
|
2024-07-12 09:47:43 -04:00
|
|
|
|
match μ, ν with
|
|
|
|
|
| Colors.up, Colors.down => rfl
|
|
|
|
|
| Colors.down, Colors.up => rfl
|
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
|
|
|
|
## Index values
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
2024-07-16 16:58:42 -04:00
|
|
|
|
instance [Fintype X] [DecidableEq X] : Fintype (IndexValue d c) := Pi.fintype
|
|
|
|
|
|
2024-07-17 16:12:30 -04:00
|
|
|
|
instance [Fintype X] : DecidableEq (IndexValue d c) :=
|
2024-07-16 16:58:42 -04:00
|
|
|
|
Fintype.decidablePiFintype
|
|
|
|
|
|
2024-07-17 13:53:36 -04:00
|
|
|
|
/-!
|
|
|
|
|
|
|
|
|
|
## Induced isomorphisms between IndexValue sets
|
|
|
|
|
|
|
|
|
|
-/
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
2024-07-17 16:12:30 -04:00
|
|
|
|
/-- An isomorphism of the type of index values given an isomorphism of sets. -/
|
2024-07-17 13:53:36 -04:00
|
|
|
|
@[simps!]
|
|
|
|
|
def indexValueIso (d : ℕ) (f : X ≃ Y) {i : X → Colors} {j : Y → Colors} (h : i = j ∘ f) :
|
|
|
|
|
IndexValue d i ≃ IndexValue d j :=
|
|
|
|
|
(Equiv.piCongrRight (fun μ => colorsIndexCast (congrFun h μ))).trans $
|
|
|
|
|
Equiv.piCongrLeft (fun y => RealLorentzTensor.ColorsIndex d (j y)) f
|
|
|
|
|
|
|
|
|
|
lemma indexValueIso_symm_apply' (d : ℕ) (f : X ≃ Y) {i : X → Colors} {j : Y → Colors}
|
2024-07-17 15:15:44 -04:00
|
|
|
|
(h : i = j ∘ f) (y : IndexValue d j) (x : X) :
|
2024-07-17 13:53:36 -04:00
|
|
|
|
(indexValueIso d f h).symm y x = (colorsIndexCast (congrFun h x)).symm (y (f x)) := by
|
|
|
|
|
rfl
|
|
|
|
|
|
|
|
|
|
@[simp]
|
|
|
|
|
lemma indexValueIso_trans (d : ℕ) (f : X ≃ Y) (g : Y ≃ Z) {i : X → Colors}
|
|
|
|
|
{j : Y → Colors} {k : Z → Colors} (h : i = j ∘ f) (h' : j = k ∘ g) :
|
|
|
|
|
(indexValueIso d f h).trans (indexValueIso d g h') =
|
|
|
|
|
indexValueIso d (f.trans g) (by rw [h, h', Function.comp.assoc]; rfl) := by
|
|
|
|
|
have h1 : ((indexValueIso d f h).trans (indexValueIso d g h')).symm =
|
|
|
|
|
(indexValueIso d (f.trans g) (by rw [h, h', Function.comp.assoc]; rfl)).symm := by
|
|
|
|
|
subst h' h
|
2024-07-17 16:12:30 -04:00
|
|
|
|
exact Equiv.coe_inj.mp rfl
|
2024-07-17 13:53:36 -04:00
|
|
|
|
simpa only [Equiv.symm_symm] using congrArg (fun e => e.symm) h1
|
|
|
|
|
|
|
|
|
|
lemma indexValueIso_symm (d : ℕ) (f : X ≃ Y) (h : i = j ∘ f) :
|
2024-07-17 16:12:30 -04:00
|
|
|
|
(indexValueIso d f h).symm =
|
|
|
|
|
indexValueIso d f.symm ((Equiv.eq_comp_symm f j i).mpr (id (Eq.symm h))) := by
|
2024-07-17 13:53:36 -04:00
|
|
|
|
ext i : 1
|
|
|
|
|
rw [← Equiv.symm_apply_eq]
|
|
|
|
|
funext y
|
|
|
|
|
rw [indexValueIso_symm_apply', indexValueIso_symm_apply']
|
2024-07-19 15:46:43 -04:00
|
|
|
|
simp only [Function.comp_apply, colorsIndexCast, Equiv.cast_symm, Equiv.cast_apply, cast_cast]
|
2024-07-17 13:53:36 -04:00
|
|
|
|
apply cast_eq_iff_heq.mpr
|
|
|
|
|
rw [Equiv.apply_symm_apply]
|
|
|
|
|
|
|
|
|
|
lemma indexValueIso_eq_symm (d : ℕ) (f : X ≃ Y) (h : i = j ∘ f) :
|
2024-07-17 16:12:30 -04:00
|
|
|
|
indexValueIso d f h =
|
|
|
|
|
(indexValueIso d f.symm ((Equiv.eq_comp_symm f j i).mpr (id (Eq.symm h)))).symm := by
|
2024-07-17 13:53:36 -04:00
|
|
|
|
rw [indexValueIso_symm]
|
2024-07-17 16:12:30 -04:00
|
|
|
|
rfl
|
2024-07-17 13:53:36 -04:00
|
|
|
|
|
|
|
|
|
@[simp]
|
|
|
|
|
lemma indexValueIso_refl (d : ℕ) (i : X → Colors) :
|
|
|
|
|
indexValueIso d (Equiv.refl X) (rfl : i = i) = Equiv.refl _ := by
|
|
|
|
|
rfl
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
2024-07-18 08:36:56 -04:00
|
|
|
|
## Dual isomorphism for index values
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
/-- The isomorphism between the index values of a color map and its dual. -/
|
|
|
|
|
@[simps!]
|
|
|
|
|
def indexValueDualIso (d : ℕ) {i j : X → Colors} (h : i = τ ∘ j) :
|
|
|
|
|
IndexValue d i ≃ IndexValue d j :=
|
|
|
|
|
(Equiv.piCongrRight (fun μ => colorsIndexDualCast (congrFun h μ)))
|
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
## Extensionality
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
lemma ext {T₁ T₂ : RealLorentzTensor d X} (h : T₁.color = T₂.color)
|
2024-07-17 13:53:36 -04:00
|
|
|
|
(h' : T₁.coord = fun i => T₂.coord (indexValueIso d (Equiv.refl X) h i)) :
|
2024-07-12 09:47:43 -04:00
|
|
|
|
T₁ = T₂ := by
|
|
|
|
|
cases T₁
|
|
|
|
|
cases T₂
|
|
|
|
|
simp_all only [IndexValue, mk.injEq]
|
|
|
|
|
apply And.intro h
|
|
|
|
|
simp only at h
|
|
|
|
|
subst h
|
|
|
|
|
simp only [Equiv.cast_refl, Equiv.coe_refl, CompTriple.comp_eq] at h'
|
|
|
|
|
rfl
|
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
/-!
|
|
|
|
|
|
2024-07-17 13:53:36 -04:00
|
|
|
|
## Mapping isomorphisms.
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
-/
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
/-- An equivalence of Tensors given an equivalence of underlying sets. -/
|
|
|
|
|
@[simps!]
|
2024-07-17 13:53:36 -04:00
|
|
|
|
def mapIso (d : ℕ) (f : X ≃ Y) : RealLorentzTensor d X ≃ RealLorentzTensor d Y where
|
|
|
|
|
toFun T := {
|
|
|
|
|
color := T.color ∘ f.symm,
|
|
|
|
|
coord := T.coord ∘ (indexValueIso d f (by simp : T.color = T.color ∘ f.symm ∘ f)).symm}
|
|
|
|
|
invFun T := {
|
|
|
|
|
color := T.color ∘ f,
|
|
|
|
|
coord := T.coord ∘ (indexValueIso d f.symm (by simp : T.color = T.color ∘ f ∘ f.symm)).symm}
|
2024-07-11 09:16:36 -04:00
|
|
|
|
left_inv T := by
|
2024-07-17 13:53:36 -04:00
|
|
|
|
refine ext ?_ ?_
|
|
|
|
|
· simp [Function.comp.assoc]
|
|
|
|
|
· funext i
|
|
|
|
|
simp only [IndexValue, Function.comp_apply, Function.comp_id]
|
|
|
|
|
apply congrArg
|
|
|
|
|
funext x
|
|
|
|
|
erw [indexValueIso_symm_apply', indexValueIso_symm_apply', indexValueIso_eq_symm,
|
|
|
|
|
indexValueIso_symm_apply']
|
|
|
|
|
rw [← Equiv.apply_eq_iff_eq_symm_apply]
|
|
|
|
|
simp only [Equiv.refl_symm, Equiv.coe_refl, Function.comp_apply, id_eq, colorsIndexCast,
|
|
|
|
|
Equiv.cast_symm, Equiv.cast_apply, cast_cast, Equiv.refl_apply]
|
|
|
|
|
apply cast_eq_iff_heq.mpr
|
|
|
|
|
congr
|
|
|
|
|
exact Equiv.symm_apply_apply f x
|
2024-07-11 09:16:36 -04:00
|
|
|
|
right_inv T := by
|
2024-07-17 13:53:36 -04:00
|
|
|
|
refine ext ?_ ?_
|
|
|
|
|
· simp [Function.comp.assoc]
|
|
|
|
|
· funext i
|
|
|
|
|
simp only [IndexValue, Function.comp_apply, Function.comp_id]
|
|
|
|
|
apply congrArg
|
|
|
|
|
funext x
|
|
|
|
|
erw [indexValueIso_symm_apply', indexValueIso_symm_apply', indexValueIso_eq_symm,
|
|
|
|
|
indexValueIso_symm_apply']
|
|
|
|
|
rw [← Equiv.apply_eq_iff_eq_symm_apply]
|
|
|
|
|
simp only [Equiv.refl_symm, Equiv.coe_refl, Function.comp_apply, id_eq, colorsIndexCast,
|
|
|
|
|
Equiv.cast_symm, Equiv.cast_apply, cast_cast, Equiv.refl_apply]
|
|
|
|
|
apply cast_eq_iff_heq.mpr
|
|
|
|
|
congr
|
|
|
|
|
exact Equiv.apply_symm_apply f x
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
2024-07-17 13:53:36 -04:00
|
|
|
|
@[simp]
|
|
|
|
|
lemma mapIso_trans (f : X ≃ Y) (g : Y ≃ Z) :
|
|
|
|
|
(mapIso d f).trans (mapIso d g) = mapIso d (f.trans g) := by
|
2024-07-11 09:16:36 -04:00
|
|
|
|
refine Equiv.coe_inj.mp ?_
|
|
|
|
|
funext T
|
2024-07-17 13:53:36 -04:00
|
|
|
|
refine ext rfl ?_
|
|
|
|
|
simp only [Equiv.trans_apply, IndexValue, mapIso_apply_color, Equiv.symm_trans_apply,
|
|
|
|
|
indexValueIso_refl, Equiv.refl_apply, mapIso_apply_coord]
|
|
|
|
|
funext i
|
|
|
|
|
rw [mapIso_apply_coord, mapIso_apply_coord]
|
|
|
|
|
apply congrArg
|
|
|
|
|
rw [← indexValueIso_trans]
|
|
|
|
|
rfl
|
2024-07-17 16:12:30 -04:00
|
|
|
|
exact (Equiv.comp_symm_eq f (T.color ∘ ⇑f.symm) T.color).mp rfl
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
2024-07-17 16:12:30 -04:00
|
|
|
|
lemma mapIso_symm (f : X ≃ Y) : (mapIso d f).symm = mapIso d f.symm := rfl
|
2024-07-17 13:53:36 -04:00
|
|
|
|
|
|
|
|
|
lemma mapIso_refl : mapIso d (Equiv.refl X) = Equiv.refl _ := rfl
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
/-!
|
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
## Sums
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
|
|
|
|
-/
|
2024-07-19 16:19:58 -04:00
|
|
|
|
|
2024-07-19 15:58:20 -04:00
|
|
|
|
/-- An equivalence that splits elements of `IndexValue d (Sum.elim TX TY)` into two components. -/
|
2024-07-17 13:53:36 -04:00
|
|
|
|
def indexValueSumEquiv {X Y : Type} {TX : X → Colors} {TY : Y → Colors} :
|
|
|
|
|
IndexValue d (Sum.elim TX TY) ≃ IndexValue d TX × IndexValue d TY where
|
|
|
|
|
toFun i := (fun x => i (Sum.inl x), fun x => i (Sum.inr x))
|
|
|
|
|
invFun p := fun c => match c with
|
|
|
|
|
| Sum.inl x => (p.1 x)
|
|
|
|
|
| Sum.inr x => (p.2 x)
|
|
|
|
|
left_inv i := by
|
|
|
|
|
simp only [IndexValue]
|
|
|
|
|
ext1 x
|
|
|
|
|
cases x with
|
|
|
|
|
| inl val => rfl
|
|
|
|
|
| inr val_1 => rfl
|
|
|
|
|
right_inv p := rfl
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
2024-07-13 09:20:24 -04:00
|
|
|
|
/-- An equivalence between index values formed by commuting sums. -/
|
2024-07-17 13:53:36 -04:00
|
|
|
|
def indexValueSumComm {X Y : Type} (Tc : X → Colors) (Sc : Y → Colors) :
|
|
|
|
|
IndexValue d (Sum.elim Tc Sc) ≃ IndexValue d (Sum.elim Sc Tc) :=
|
|
|
|
|
indexValueIso d (Equiv.sumComm X Y) (by aesop)
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
## Marked Lorentz tensors
|
|
|
|
|
|
|
|
|
|
To define contraction and multiplication of Lorentz tensors we need to mark indices.
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
/-- A `RealLorentzTensor` with `n` marked indices. -/
|
2024-07-15 07:17:09 -04:00
|
|
|
|
def Marked (d : ℕ) (X : Type) (n : ℕ) : Type :=
|
2024-07-16 16:58:42 -04:00
|
|
|
|
RealLorentzTensor d (X ⊕ Fin n)
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
|
|
|
|
namespace Marked
|
|
|
|
|
|
|
|
|
|
variable {n m : ℕ}
|
|
|
|
|
|
|
|
|
|
/-- The marked point. -/
|
2024-07-16 16:58:42 -04:00
|
|
|
|
def markedPoint (X : Type) (i : Fin n) : (X ⊕ Fin n) :=
|
|
|
|
|
Sum.inr i
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
|
|
|
|
/-- The colors of unmarked indices. -/
|
|
|
|
|
def unmarkedColor (T : Marked d X n) : X → Colors :=
|
|
|
|
|
T.color ∘ Sum.inl
|
|
|
|
|
|
|
|
|
|
/-- The colors of marked indices. -/
|
2024-07-16 16:58:42 -04:00
|
|
|
|
def markedColor (T : Marked d X n) : Fin n → Colors :=
|
2024-07-12 09:47:43 -04:00
|
|
|
|
T.color ∘ Sum.inr
|
|
|
|
|
|
|
|
|
|
/-- The index values restricted to unmarked indices. -/
|
|
|
|
|
def UnmarkedIndexValue (T : Marked d X n) : Type :=
|
|
|
|
|
IndexValue d T.unmarkedColor
|
|
|
|
|
|
2024-07-17 13:53:36 -04:00
|
|
|
|
instance [Fintype X] [DecidableEq X] (T : Marked d X n) : Fintype T.UnmarkedIndexValue :=
|
2024-07-16 16:58:42 -04:00
|
|
|
|
Pi.fintype
|
|
|
|
|
|
2024-07-17 15:15:44 -04:00
|
|
|
|
instance [Fintype X] (T : Marked d X n) : DecidableEq T.UnmarkedIndexValue :=
|
2024-07-17 13:53:36 -04:00
|
|
|
|
Fintype.decidablePiFintype
|
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
/-- The index values restricted to marked indices. -/
|
|
|
|
|
def MarkedIndexValue (T : Marked d X n) : Type :=
|
|
|
|
|
IndexValue d T.markedColor
|
|
|
|
|
|
2024-07-17 16:12:30 -04:00
|
|
|
|
instance (T : Marked d X n) : Fintype T.MarkedIndexValue :=
|
2024-07-16 16:58:42 -04:00
|
|
|
|
Pi.fintype
|
|
|
|
|
|
2024-07-17 16:12:30 -04:00
|
|
|
|
instance (T : Marked d X n) : DecidableEq T.MarkedIndexValue :=
|
2024-07-17 13:53:36 -04:00
|
|
|
|
Fintype.decidablePiFintype
|
|
|
|
|
|
|
|
|
|
lemma color_eq_elim (T : Marked d X n) :
|
|
|
|
|
T.color = Sum.elim T.unmarkedColor T.markedColor := by
|
2024-07-12 09:47:43 -04:00
|
|
|
|
ext1 x
|
|
|
|
|
cases' x <;> rfl
|
|
|
|
|
|
2024-07-17 16:12:30 -04:00
|
|
|
|
/-- An equivalence splitting elements of `IndexValue d T.color` into their two components. -/
|
2024-07-16 16:58:42 -04:00
|
|
|
|
def splitIndexValue {T : Marked d X n} :
|
2024-07-17 13:53:36 -04:00
|
|
|
|
IndexValue d T.color ≃ T.UnmarkedIndexValue × T.MarkedIndexValue :=
|
|
|
|
|
(indexValueIso d (Equiv.refl _) T.color_eq_elim).trans
|
|
|
|
|
indexValueSumEquiv
|
2024-07-16 16:58:42 -04:00
|
|
|
|
|
2024-07-19 17:00:32 -04:00
|
|
|
|
@[simp]
|
2024-07-16 16:58:42 -04:00
|
|
|
|
lemma splitIndexValue_sum {T : Marked d X n} [Fintype X] [DecidableEq X]
|
|
|
|
|
(P : T.UnmarkedIndexValue × T.MarkedIndexValue → ℝ) :
|
|
|
|
|
∑ i, P (splitIndexValue i) = ∑ j, ∑ k, P (j, k) := by
|
|
|
|
|
rw [Equiv.sum_comp splitIndexValue, Fintype.sum_prod_type]
|
|
|
|
|
|
2024-07-19 15:58:20 -04:00
|
|
|
|
/-- Construction of marked index values for the case of 1 marked index. -/
|
2024-07-16 16:58:42 -04:00
|
|
|
|
def oneMarkedIndexValue {T : Marked d X 1} :
|
|
|
|
|
ColorsIndex d (T.color (markedPoint X 0)) ≃ T.MarkedIndexValue where
|
|
|
|
|
toFun x := fun i => match i with
|
|
|
|
|
| 0 => x
|
|
|
|
|
invFun i := i 0
|
|
|
|
|
left_inv x := rfl
|
|
|
|
|
right_inv i := by
|
|
|
|
|
funext x
|
|
|
|
|
fin_cases x
|
|
|
|
|
rfl
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
2024-07-19 15:58:20 -04:00
|
|
|
|
/-- Construction of marked index values for the case of 2 marked index. -/
|
2024-07-12 09:47:43 -04:00
|
|
|
|
def twoMarkedIndexValue (T : Marked d X 2) (x : ColorsIndex d (T.color (markedPoint X 0)))
|
2024-07-15 07:22:37 -04:00
|
|
|
|
(y : ColorsIndex d <| T.color <| markedPoint X 1) :
|
2024-07-12 09:47:43 -04:00
|
|
|
|
T.MarkedIndexValue := fun i =>
|
|
|
|
|
match i with
|
2024-07-16 16:58:42 -04:00
|
|
|
|
| 0 => x
|
|
|
|
|
| 1 => y
|
|
|
|
|
|
2024-07-12 15:25:08 -04:00
|
|
|
|
/-- An equivalence of types used to turn the first marked index into an unmarked index. -/
|
2024-07-18 16:34:00 -04:00
|
|
|
|
def unmarkFirstSet (X : Type) (n : ℕ) : (X ⊕ Fin n.succ) ≃ (X ⊕ Fin 1) ⊕ Fin n :=
|
|
|
|
|
trans (Equiv.sumCongr (Equiv.refl _)
|
2024-07-16 16:58:42 -04:00
|
|
|
|
(((Fin.castOrderIso (Nat.succ_eq_one_add n)).toEquiv.trans finSumFinEquiv.symm)))
|
2024-07-15 16:57:06 -04:00
|
|
|
|
(Equiv.sumAssoc _ _ _).symm
|
2024-07-12 15:25:08 -04:00
|
|
|
|
|
2024-07-19 15:58:20 -04:00
|
|
|
|
/-- Unmark the first marked index of a marked tensor. -/
|
2024-07-16 16:58:42 -04:00
|
|
|
|
def unmarkFirst {X : Type} : Marked d X n.succ ≃ Marked d (X ⊕ Fin 1) n :=
|
2024-07-17 13:53:36 -04:00
|
|
|
|
mapIso d (unmarkFirstSet X n)
|
2024-07-12 15:25:08 -04:00
|
|
|
|
|
2024-07-19 15:46:43 -04:00
|
|
|
|
/-!
|
2024-07-18 16:34:00 -04:00
|
|
|
|
|
2024-07-19 15:46:43 -04:00
|
|
|
|
## Marking elements.
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
section markingElements
|
|
|
|
|
|
|
|
|
|
variable [Fintype X] [DecidableEq X] [Fintype Y] [DecidableEq Y]
|
|
|
|
|
|
|
|
|
|
/-- Splits a type based on an embedding from `Fin n` into elements not in the image of the
|
|
|
|
|
embedding, and elements in the image. -/
|
|
|
|
|
def markEmbeddingSet {n : ℕ} (f : Fin n ↪ X) :
|
|
|
|
|
X ≃ {x // x ∈ (Finset.image f Finset.univ)ᶜ} ⊕ Fin n :=
|
2024-07-18 16:34:00 -04:00
|
|
|
|
(Equiv.Set.sumCompl (Set.range ⇑f)).symm.trans <|
|
|
|
|
|
(Equiv.sumComm _ _).trans <|
|
2024-07-19 15:46:43 -04:00
|
|
|
|
Equiv.sumCongr ((Equiv.subtypeEquivRight (by simp))) <|
|
2024-07-18 16:34:00 -04:00
|
|
|
|
(Function.Embedding.toEquivRange f).symm
|
|
|
|
|
|
2024-07-19 15:46:43 -04:00
|
|
|
|
lemma markEmbeddingSet_on_mem {n : ℕ} (f : Fin n ↪ X) (x : X)
|
|
|
|
|
(hx : x ∈ Finset.image f Finset.univ) : markEmbeddingSet f x =
|
|
|
|
|
Sum.inr (f.toEquivRange.symm ⟨x, by simpa using hx⟩) := by
|
|
|
|
|
rw [markEmbeddingSet]
|
|
|
|
|
simp only [Equiv.trans_apply, Equiv.sumComm_apply, Equiv.sumCongr_apply]
|
|
|
|
|
rw [Equiv.Set.sumCompl_symm_apply_of_mem]
|
|
|
|
|
rfl
|
|
|
|
|
|
|
|
|
|
lemma markEmbeddingSet_on_not_mem {n : ℕ} (f : Fin n ↪ X) (x : X)
|
|
|
|
|
(hx : ¬ x ∈ (Finset.image f Finset.univ)) : markEmbeddingSet f x =
|
|
|
|
|
Sum.inl ⟨x, by simpa using hx⟩ := by
|
|
|
|
|
rw [markEmbeddingSet]
|
|
|
|
|
simp only [Equiv.trans_apply, Equiv.sumComm_apply, Equiv.sumCongr_apply]
|
|
|
|
|
rw [Equiv.Set.sumCompl_symm_apply_of_not_mem]
|
|
|
|
|
rfl
|
|
|
|
|
simpa using hx
|
2024-07-18 16:34:00 -04:00
|
|
|
|
|
2024-07-19 15:58:20 -04:00
|
|
|
|
/-- Marks the indices of tensor in the image of an embedding. -/
|
2024-07-18 16:34:00 -04:00
|
|
|
|
@[simps!]
|
2024-07-19 15:46:43 -04:00
|
|
|
|
def markEmbedding {n : ℕ} (f : Fin n ↪ X) :
|
|
|
|
|
RealLorentzTensor d X ≃ Marked d {x // x ∈ (Finset.image f Finset.univ)ᶜ} n :=
|
|
|
|
|
mapIso d (markEmbeddingSet f)
|
|
|
|
|
|
|
|
|
|
lemma markEmbeddingSet_on_mem_indexValue_apply {n : ℕ} (f : Fin n ↪ X) (T : RealLorentzTensor d X)
|
|
|
|
|
(i : IndexValue d (markEmbedding f T).color) (x : X) (hx : x ∈ (Finset.image f Finset.univ)) :
|
|
|
|
|
i (markEmbeddingSet f x) = colorsIndexCast (congrArg ((markEmbedding f) T).color
|
|
|
|
|
(markEmbeddingSet_on_mem f x hx).symm)
|
|
|
|
|
(i (Sum.inr (f.toEquivRange.symm ⟨x, by simpa using hx⟩))) := by
|
|
|
|
|
simp [colorsIndexCast]
|
2024-07-18 16:34:00 -04:00
|
|
|
|
symm
|
2024-07-19 15:46:43 -04:00
|
|
|
|
apply cast_eq_iff_heq.mpr
|
|
|
|
|
rw [markEmbeddingSet_on_mem f x hx]
|
2024-07-18 16:34:00 -04:00
|
|
|
|
|
2024-07-19 15:46:43 -04:00
|
|
|
|
lemma markEmbeddingSet_on_not_mem_indexValue_apply {n : ℕ}
|
|
|
|
|
(f : Fin n ↪ X) (T : RealLorentzTensor d X) (i : IndexValue d (markEmbedding f T).color)
|
|
|
|
|
(x : X) (hx : ¬ x ∈ (Finset.image f Finset.univ)) :
|
|
|
|
|
i (markEmbeddingSet f x) = colorsIndexCast (congrArg ((markEmbedding f) T).color
|
|
|
|
|
(markEmbeddingSet_on_not_mem f x hx).symm) (i (Sum.inl ⟨x, by simpa using hx⟩)) := by
|
|
|
|
|
simp [colorsIndexCast]
|
|
|
|
|
symm
|
|
|
|
|
apply cast_eq_iff_heq.mpr
|
|
|
|
|
rw [markEmbeddingSet_on_not_mem f x hx]
|
2024-07-18 16:34:00 -04:00
|
|
|
|
|
2024-07-19 15:46:43 -04:00
|
|
|
|
/-- An equivalence between the IndexValues for a tensor `T` and the corresponding
|
2024-07-19 15:58:20 -04:00
|
|
|
|
tensor with indices maked by an embedding. -/
|
2024-07-18 16:34:00 -04:00
|
|
|
|
@[simps!]
|
2024-07-19 15:46:43 -04:00
|
|
|
|
def markEmbeddingIndexValue {n : ℕ} (f : Fin n ↪ X) (T : RealLorentzTensor d X) :
|
|
|
|
|
IndexValue d T.color ≃ IndexValue d (markEmbedding f T).color :=
|
|
|
|
|
indexValueIso d (markEmbeddingSet f) (
|
|
|
|
|
(Equiv.comp_symm_eq (markEmbeddingSet f) ((markEmbedding f) T).color T.color).mp rfl)
|
|
|
|
|
|
|
|
|
|
lemma markEmbeddingIndexValue_apply_symm_on_mem {n : ℕ}
|
|
|
|
|
(f : Fin n.succ ↪ X) (T : RealLorentzTensor d X) (i : IndexValue d (markEmbedding f T).color)
|
|
|
|
|
(x : X) (hx : x ∈ (Finset.image f Finset.univ)) :
|
|
|
|
|
(markEmbeddingIndexValue f T).symm i x = (colorsIndexCast ((congrFun ((Equiv.comp_symm_eq
|
|
|
|
|
(markEmbeddingSet f) ((markEmbedding f) T).color T.color).mp rfl) x).trans
|
|
|
|
|
(congrArg ((markEmbedding f) T).color (markEmbeddingSet_on_mem f x hx)))).symm
|
|
|
|
|
(i (Sum.inr (f.toEquivRange.symm ⟨x, by simpa using hx⟩))) := by
|
|
|
|
|
rw [markEmbeddingIndexValue, indexValueIso_symm_apply']
|
|
|
|
|
rw [markEmbeddingSet_on_mem_indexValue_apply f T i x hx]
|
|
|
|
|
simp [colorsIndexCast]
|
|
|
|
|
|
|
|
|
|
lemma markEmbeddingIndexValue_apply_symm_on_not_mem {n : ℕ} (f : Fin n.succ ↪ X)
|
|
|
|
|
(T : RealLorentzTensor d X) (i : IndexValue d (markEmbedding f T).color) (x : X)
|
|
|
|
|
(hx : ¬ x ∈ (Finset.image f Finset.univ)) : (markEmbeddingIndexValue f T).symm i x =
|
|
|
|
|
(colorsIndexCast ((congrFun ((Equiv.comp_symm_eq
|
|
|
|
|
(markEmbeddingSet f) ((markEmbedding f) T).color T.color).mp rfl) x).trans
|
|
|
|
|
((congrArg ((markEmbedding f) T).color (markEmbeddingSet_on_not_mem f x hx))))).symm
|
|
|
|
|
(i (Sum.inl ⟨x, by simpa using hx⟩)) := by
|
|
|
|
|
rw [markEmbeddingIndexValue, indexValueIso_symm_apply']
|
|
|
|
|
rw [markEmbeddingSet_on_not_mem_indexValue_apply f T i x hx]
|
|
|
|
|
simp only [Nat.succ_eq_add_one, Function.comp_apply, markEmbedding_apply_color, colorsIndexCast,
|
|
|
|
|
Equiv.cast_symm, id_eq, eq_mp_eq_cast, eq_mpr_eq_cast, Equiv.cast_apply, cast_cast, cast_eq,
|
|
|
|
|
Equiv.cast_refl, Equiv.refl_symm]
|
|
|
|
|
rfl
|
2024-07-18 16:34:00 -04:00
|
|
|
|
|
2024-07-19 15:46:43 -04:00
|
|
|
|
/-- Given an equivalence of types, an embedding `f` to an embedding `g`, the equivalence
|
|
|
|
|
taking the complement of the image of `f` to the complement of the image of `g`. -/
|
2024-07-18 16:34:00 -04:00
|
|
|
|
@[simps!]
|
2024-07-19 15:46:43 -04:00
|
|
|
|
def equivEmbedCompl (e : X ≃ Y) {f : Fin n ↪ X} {g : Fin n ↪ Y} (he : f.trans e = g) :
|
|
|
|
|
{x // x ∈ (Finset.image f Finset.univ)ᶜ} ≃ {y // y ∈ (Finset.image g Finset.univ)ᶜ} :=
|
|
|
|
|
(Equiv.subtypeEquivOfSubtype' e).trans <|
|
|
|
|
|
(Equiv.subtypeEquivRight (fun x => by simp [← he, Equiv.eq_symm_apply]))
|
|
|
|
|
|
|
|
|
|
lemma markEmbedding_mapIso_right (e : X ≃ Y) (f : Fin n ↪ X) (g : Fin n ↪ Y) (he : f.trans e = g)
|
|
|
|
|
(T : RealLorentzTensor d X) : markEmbedding g (mapIso d e T) =
|
|
|
|
|
mapIso d (Equiv.sumCongr (equivEmbedCompl e he) (Equiv.refl (Fin n))) (markEmbedding f T) := by
|
|
|
|
|
rw [markEmbedding, markEmbedding]
|
2024-07-18 16:34:00 -04:00
|
|
|
|
erw [← Equiv.trans_apply, ← Equiv.trans_apply]
|
|
|
|
|
rw [mapIso_trans, mapIso_trans]
|
|
|
|
|
apply congrFun
|
2024-07-19 15:46:43 -04:00
|
|
|
|
repeat apply congrArg
|
|
|
|
|
refine Equiv.ext (fun x => ?_)
|
|
|
|
|
simp only [Equiv.trans_apply, Equiv.sumCongr_apply, Equiv.coe_refl]
|
|
|
|
|
by_cases hx : x ∈ Finset.image f Finset.univ
|
|
|
|
|
· rw [markEmbeddingSet_on_mem f x hx, markEmbeddingSet_on_mem g (e x) (by simpa [← he] using hx)]
|
|
|
|
|
subst he
|
|
|
|
|
simp only [Sum.map_inr, id_eq, Sum.inr.injEq, Equiv.symm_apply_eq,
|
|
|
|
|
Function.Embedding.toEquivRange_apply, Function.Embedding.trans_apply, Equiv.coe_toEmbedding,
|
|
|
|
|
Subtype.mk.injEq, EmbeddingLike.apply_eq_iff_eq]
|
|
|
|
|
change x = f.toEquivRange _
|
|
|
|
|
rw [Equiv.apply_symm_apply]
|
|
|
|
|
· rw [markEmbeddingSet_on_not_mem f x hx,
|
|
|
|
|
markEmbeddingSet_on_not_mem g (e x) (by simpa [← he] using hx)]
|
2024-07-18 16:34:00 -04:00
|
|
|
|
subst he
|
2024-07-19 15:46:43 -04:00
|
|
|
|
rfl
|
|
|
|
|
|
|
|
|
|
lemma markEmbedding_mapIso_left {n m : ℕ} (e : Fin n ≃ Fin m) (f : Fin n ↪ X) (g : Fin m ↪ X)
|
|
|
|
|
(he : e.symm.toEmbedding.trans f = g) (T : RealLorentzTensor d X) :
|
|
|
|
|
markEmbedding g T = mapIso d (Equiv.sumCongr (Equiv.subtypeEquivRight (fun x => by
|
|
|
|
|
simpa [← he] using Equiv.forall_congr_left e)) e) (markEmbedding f T) := by
|
|
|
|
|
rw [markEmbedding, markEmbedding]
|
|
|
|
|
erw [← Equiv.trans_apply]
|
|
|
|
|
rw [mapIso_trans]
|
|
|
|
|
apply congrFun
|
|
|
|
|
repeat apply congrArg
|
|
|
|
|
refine Equiv.ext (fun x => ?_)
|
|
|
|
|
simp only [Equiv.trans_apply, Equiv.sumCongr_apply]
|
|
|
|
|
by_cases hx : x ∈ Finset.image f Finset.univ
|
|
|
|
|
· rw [markEmbeddingSet_on_mem f x hx, markEmbeddingSet_on_mem g x (by
|
|
|
|
|
simp [← he, hx]
|
|
|
|
|
obtain ⟨y, _, hy2⟩ := Finset.mem_image.mp hx
|
|
|
|
|
use e y
|
|
|
|
|
simpa using hy2)]
|
|
|
|
|
subst he
|
|
|
|
|
simp [Equiv.symm_apply_eq]
|
|
|
|
|
change x = f.toEquivRange _
|
|
|
|
|
rw [Equiv.apply_symm_apply]
|
|
|
|
|
· rw [markEmbeddingSet_on_not_mem f x hx, markEmbeddingSet_on_not_mem g x (by
|
|
|
|
|
simpa [← he, hx] using fun x => not_exists.mp (Finset.mem_image.mpr.mt hx) (e.symm x))]
|
|
|
|
|
subst he
|
|
|
|
|
rfl
|
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
|
|
|
|
## Marking a single element
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
/-- An embedding from `Fin 1` into `X` given an element `x ∈ X`. -/
|
|
|
|
|
@[simps!]
|
|
|
|
|
def embedSingleton (x : X) : Fin 1 ↪ X :=
|
|
|
|
|
⟨![x], fun x y => by fin_cases x; fin_cases y; simp⟩
|
|
|
|
|
|
|
|
|
|
lemma embedSingleton_toEquivRange_symm (x : X) :
|
|
|
|
|
(embedSingleton x).toEquivRange.symm ⟨x, by simp⟩ = 0 := by
|
|
|
|
|
exact Fin.fin_one_eq_zero _
|
|
|
|
|
|
|
|
|
|
/-- Equivalence, taking a tensor to a tensor with a single marked index. -/
|
|
|
|
|
@[simps!]
|
|
|
|
|
def markSingle (x : X) : RealLorentzTensor d X ≃ Marked d {x' // x' ≠ x} 1 :=
|
|
|
|
|
(markEmbedding (embedSingleton x)).trans
|
|
|
|
|
(mapIso d (Equiv.sumCongr (Equiv.subtypeEquivRight (fun x => by simp)) (Equiv.refl _)))
|
|
|
|
|
|
2024-07-19 15:58:20 -04:00
|
|
|
|
/-- Equivalence between index values of a tensor and the corresponding tensor with a single
|
2024-07-19 15:46:43 -04:00
|
|
|
|
marked index. -/
|
|
|
|
|
@[simps!]
|
|
|
|
|
def markSingleIndexValue (T : RealLorentzTensor d X) (x : X) :
|
|
|
|
|
IndexValue d T.color ≃ IndexValue d (markSingle x T).color :=
|
|
|
|
|
(markEmbeddingIndexValue (embedSingleton x) T).trans <|
|
|
|
|
|
indexValueIso d (Equiv.sumCongr (Equiv.subtypeEquivRight (fun x => by simp)) (Equiv.refl _))
|
|
|
|
|
(by funext x_1; simp)
|
|
|
|
|
|
|
|
|
|
/-- Given an equivalence of types, taking `x` to `y` the corresponding equivalence of
|
|
|
|
|
subtypes of elements not equal to `x` and not equal to `y` respectively. -/
|
|
|
|
|
@[simps!]
|
|
|
|
|
def equivSingleCompl (e : X ≃ Y) {x : X} {y : Y} (he : e x = y) :
|
|
|
|
|
{x' // x' ≠ x} ≃ {y' // y' ≠ y} :=
|
|
|
|
|
(Equiv.subtypeEquivOfSubtype' e).trans <|
|
|
|
|
|
Equiv.subtypeEquivRight (fun a => by simp [Equiv.symm_apply_eq, he])
|
|
|
|
|
|
|
|
|
|
lemma markSingle_mapIso (e : X ≃ Y) (x : X) (y : Y) (he : e x = y)
|
|
|
|
|
(T : RealLorentzTensor d X) : markSingle y (mapIso d e T) =
|
|
|
|
|
mapIso d (Equiv.sumCongr (equivSingleCompl e he) (Equiv.refl _)) (markSingle x T) := by
|
|
|
|
|
rw [markSingle, Equiv.trans_apply]
|
|
|
|
|
rw [markEmbedding_mapIso_right e (embedSingleton x) (embedSingleton y)
|
|
|
|
|
(Function.Embedding.ext_iff.mp (fun a => by simpa using he)), markSingle, markEmbedding]
|
|
|
|
|
erw [← Equiv.trans_apply, ← Equiv.trans_apply, ← Equiv.trans_apply]
|
|
|
|
|
rw [mapIso_trans, mapIso_trans, mapIso_trans, mapIso_trans]
|
|
|
|
|
apply congrFun
|
|
|
|
|
repeat apply congrArg
|
|
|
|
|
refine Equiv.ext fun x => ?_
|
|
|
|
|
simp only [ne_eq, Fintype.univ_ofSubsingleton, Fin.zero_eta, Fin.isValue, Equiv.sumCongr_trans,
|
|
|
|
|
Equiv.trans_refl, Equiv.trans_apply, Equiv.sumCongr_apply, Equiv.coe_trans, Equiv.coe_refl,
|
|
|
|
|
Sum.map_map, CompTriple.comp_eq]
|
|
|
|
|
subst he
|
|
|
|
|
rfl
|
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
|
|
|
|
## Marking two elements
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
/-- An embedding from `Fin 2` given two inequivalent elements. -/
|
|
|
|
|
@[simps!]
|
|
|
|
|
def embedDoubleton (x y : X) (h : x ≠ y) : Fin 2 ↪ X :=
|
|
|
|
|
⟨![x, y], fun a b => by
|
|
|
|
|
fin_cases a <;> fin_cases b <;> simp [h]
|
|
|
|
|
exact h.symm⟩
|
|
|
|
|
|
|
|
|
|
end markingElements
|
2024-07-18 16:34:00 -04:00
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
end Marked
|
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
## Contraction of indices
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
2024-07-17 13:53:36 -04:00
|
|
|
|
open Marked
|
|
|
|
|
|
2024-07-12 09:47:43 -04:00
|
|
|
|
/-- The contraction of the marked indices in a tensor with two marked indices. -/
|
2024-07-16 16:58:42 -04:00
|
|
|
|
def contr {X : Type} (T : Marked d X 2) (h : T.markedColor 0 = τ (T.markedColor 1)) :
|
2024-07-12 09:47:43 -04:00
|
|
|
|
RealLorentzTensor d X where
|
|
|
|
|
color := T.unmarkedColor
|
|
|
|
|
coord := fun i =>
|
2024-07-17 13:53:36 -04:00
|
|
|
|
∑ x, T.coord (splitIndexValue.symm (i, T.twoMarkedIndexValue x $ colorsIndexDualCast h x))
|
2024-07-12 09:47:43 -04:00
|
|
|
|
|
|
|
|
|
/-! TODO: Following the ethos of modular operads, prove properties of contraction. -/
|
|
|
|
|
|
|
|
|
|
/-! TODO: Use `contr` to generalize to any pair of marked index. -/
|
2024-07-11 09:16:36 -04:00
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
|
|
|
|
## Rising and lowering indices
|
|
|
|
|
|
|
|
|
|
Rising or lowering an index corresponds to changing the color of that index.
|
2024-07-11 09:20:27 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
/-! TODO: Define the rising and lowering of indices using contraction with the metric. -/
|
2024-07-03 06:40:06 -04:00
|
|
|
|
|
|
|
|
|
/-!
|
|
|
|
|
|
|
|
|
|
## Graphical species and Lorentz tensors
|
|
|
|
|
|
|
|
|
|
-/
|
2024-07-11 09:55:23 -04:00
|
|
|
|
|
2024-07-11 09:16:36 -04:00
|
|
|
|
/-! TODO: From Lorentz tensors graphical species. -/
|
|
|
|
|
/-! TODO: Show that the action of the Lorentz group defines an action on the graphical species. -/
|
|
|
|
|
|
|
|
|
|
end RealLorentzTensor
|