refactor: Rename asymptotic states

This commit is contained in:
jstoobysmith 2025-01-23 10:46:50 +00:00
parent ba51484b1f
commit c9deac6cfe
14 changed files with 279 additions and 155 deletions

View file

@ -123,6 +123,13 @@ def Name.hasDocString (c : Name) : MetaM Bool := do
| some _ => pure true | some _ => pure true
| none => pure false | none => pure false
def Name.getDocString (c : Name) : MetaM String := do
let env ← getEnv
let doc ← Lean.findDocString? env c
match doc with
| some doc => pure doc
| none => pure ""
/-- Given a name, returns the source code defining that name. -/ /-- Given a name, returns the source code defining that name. -/
def Name.getDeclString (name : Name) : MetaM String := do def Name.getDeclString (name : Name) : MetaM String := do
let env ← getEnv let env ← getEnv

View file

@ -137,13 +137,13 @@ lemma ofStateList_sum (φs : List 𝓕.States) :
def crPart : 𝓕.StateAlgebra →ₐ[] 𝓕.CrAnAlgebra := def crPart : 𝓕.StateAlgebra →ₐ[] 𝓕.CrAnAlgebra :=
FreeAlgebra.lift fun φ => FreeAlgebra.lift fun φ =>
match φ with match φ with
| States.negAsymp φ => ofCrAnState ⟨States.negAsymp φ, ()⟩ | States.inAsymp φ => ofCrAnState ⟨States.inAsymp φ, ()⟩
| States.position φ => ofCrAnState ⟨States.position φ, CreateAnnihilate.create⟩ | States.position φ => ofCrAnState ⟨States.position φ, CreateAnnihilate.create⟩
| States.posAsymp _ => 0 | States.outAsymp _ => 0
@[simp] @[simp]
lemma crPart_negAsymp (φ : 𝓕.AsymptoticNegTime) : lemma crPart_negAsymp (φ : 𝓕.IncomingAsymptotic) :
crPart (StateAlgebra.ofState (States.negAsymp φ)) = ofCrAnState ⟨States.negAsymp φ, ()⟩ := by crPart (StateAlgebra.ofState (States.inAsymp φ)) = ofCrAnState ⟨States.inAsymp φ, ()⟩ := by
dsimp only [crPart, StateAlgebra.ofState] dsimp only [crPart, StateAlgebra.ofState]
rw [FreeAlgebra.lift_ι_apply] rw [FreeAlgebra.lift_ι_apply]
@ -155,8 +155,8 @@ lemma crPart_position (φ : 𝓕.PositionStates) :
rw [FreeAlgebra.lift_ι_apply] rw [FreeAlgebra.lift_ι_apply]
@[simp] @[simp]
lemma crPart_posAsymp (φ : 𝓕.AsymptoticPosTime) : lemma crPart_posAsymp (φ : 𝓕.OutgoingAsymptotic) :
crPart (StateAlgebra.ofState (States.posAsymp φ)) = 0 := by crPart (StateAlgebra.ofState (States.outAsymp φ)) = 0 := by
dsimp only [crPart, StateAlgebra.ofState] dsimp only [crPart, StateAlgebra.ofState]
rw [FreeAlgebra.lift_ι_apply] rw [FreeAlgebra.lift_ι_apply]
@ -166,13 +166,13 @@ lemma crPart_posAsymp (φ : 𝓕.AsymptoticPosTime) :
def anPart : 𝓕.StateAlgebra →ₐ[] 𝓕.CrAnAlgebra := def anPart : 𝓕.StateAlgebra →ₐ[] 𝓕.CrAnAlgebra :=
FreeAlgebra.lift fun φ => FreeAlgebra.lift fun φ =>
match φ with match φ with
| States.negAsymp _ => 0 | States.inAsymp _ => 0
| States.position φ => ofCrAnState ⟨States.position φ, CreateAnnihilate.annihilate⟩ | States.position φ => ofCrAnState ⟨States.position φ, CreateAnnihilate.annihilate⟩
| States.posAsymp φ => ofCrAnState ⟨States.posAsymp φ, ()⟩ | States.outAsymp φ => ofCrAnState ⟨States.outAsymp φ, ()⟩
@[simp] @[simp]
lemma anPart_negAsymp (φ : 𝓕.AsymptoticNegTime) : lemma anPart_negAsymp (φ : 𝓕.IncomingAsymptotic) :
anPart (StateAlgebra.ofState (States.negAsymp φ)) = 0 := by anPart (StateAlgebra.ofState (States.inAsymp φ)) = 0 := by
dsimp only [anPart, StateAlgebra.ofState] dsimp only [anPart, StateAlgebra.ofState]
rw [FreeAlgebra.lift_ι_apply] rw [FreeAlgebra.lift_ι_apply]
@ -184,8 +184,8 @@ lemma anPart_position (φ : 𝓕.PositionStates) :
rw [FreeAlgebra.lift_ι_apply] rw [FreeAlgebra.lift_ι_apply]
@[simp] @[simp]
lemma anPart_posAsymp (φ : 𝓕.AsymptoticPosTime) : lemma anPart_posAsymp (φ : 𝓕.OutgoingAsymptotic) :
anPart (StateAlgebra.ofState (States.posAsymp φ)) = ofCrAnState ⟨States.posAsymp φ, ()⟩ := by anPart (StateAlgebra.ofState (States.outAsymp φ)) = ofCrAnState ⟨States.outAsymp φ, ()⟩ := by
dsimp only [anPart, StateAlgebra.ofState] dsimp only [anPart, StateAlgebra.ofState]
rw [FreeAlgebra.lift_ι_apply] rw [FreeAlgebra.lift_ι_apply]
@ -193,14 +193,14 @@ lemma ofState_eq_crPart_add_anPart (φ : 𝓕.States) :
ofState φ = crPart (StateAlgebra.ofState φ) + anPart (StateAlgebra.ofState φ) := by ofState φ = crPart (StateAlgebra.ofState φ) + anPart (StateAlgebra.ofState φ) := by
rw [ofState] rw [ofState]
cases φ with cases φ with
| negAsymp φ => | inAsymp φ =>
dsimp only [statesToCrAnType] dsimp only [statesToCrAnType]
simp simp
| position φ => | position φ =>
dsimp only [statesToCrAnType] dsimp only [statesToCrAnType]
rw [CreateAnnihilate.sum_eq] rw [CreateAnnihilate.sum_eq]
simp simp
| posAsymp φ => | outAsymp φ =>
dsimp only [statesToCrAnType] dsimp only [statesToCrAnType]
simp simp

View file

@ -107,30 +107,30 @@ lemma normalOrder_crPart_mul (φ : 𝓕.States) (a : CrAnAlgebra 𝓕) :
normalOrder (crPart (StateAlgebra.ofState φ) * a) = normalOrder (crPart (StateAlgebra.ofState φ) * a) =
crPart (StateAlgebra.ofState φ) * normalOrder a := by crPart (StateAlgebra.ofState φ) * normalOrder a := by
match φ with match φ with
| .negAsymp φ => | .inAsymp φ =>
dsimp only [crPart, StateAlgebra.ofState] dsimp only [crPart, StateAlgebra.ofState]
simp only [FreeAlgebra.lift_ι_apply] simp only [FreeAlgebra.lift_ι_apply]
exact normalOrder_create_mul ⟨States.negAsymp φ, ()⟩ rfl a exact normalOrder_create_mul ⟨States.inAsymp φ, ()⟩ rfl a
| .position φ => | .position φ =>
dsimp only [crPart, StateAlgebra.ofState] dsimp only [crPart, StateAlgebra.ofState]
simp only [FreeAlgebra.lift_ι_apply] simp only [FreeAlgebra.lift_ι_apply]
refine normalOrder_create_mul _ ?_ _ refine normalOrder_create_mul _ ?_ _
simp [crAnStatesToCreateAnnihilate] simp [crAnStatesToCreateAnnihilate]
| .posAsymp φ => | .outAsymp φ =>
simp simp
lemma normalOrder_mul_anPart (φ : 𝓕.States) (a : CrAnAlgebra 𝓕) : lemma normalOrder_mul_anPart (φ : 𝓕.States) (a : CrAnAlgebra 𝓕) :
normalOrder (a * anPart (StateAlgebra.ofState φ)) = normalOrder (a * anPart (StateAlgebra.ofState φ)) =
normalOrder a * anPart (StateAlgebra.ofState φ) := by normalOrder a * anPart (StateAlgebra.ofState φ) := by
match φ with match φ with
| .negAsymp φ => | .inAsymp φ =>
simp simp
| .position φ => | .position φ =>
dsimp only [anPart, StateAlgebra.ofState] dsimp only [anPart, StateAlgebra.ofState]
simp only [FreeAlgebra.lift_ι_apply] simp only [FreeAlgebra.lift_ι_apply]
refine normalOrder_mul_annihilate _ ?_ _ refine normalOrder_mul_annihilate _ ?_ _
simp [crAnStatesToCreateAnnihilate] simp [crAnStatesToCreateAnnihilate]
| .posAsymp φ => | .outAsymp φ =>
dsimp only [anPart, StateAlgebra.ofState] dsimp only [anPart, StateAlgebra.ofState]
simp only [FreeAlgebra.lift_ι_apply] simp only [FreeAlgebra.lift_ι_apply]
refine normalOrder_mul_annihilate _ ?_ _ refine normalOrder_mul_annihilate _ ?_ _
@ -221,9 +221,9 @@ lemma normalOrder_swap_crPart_anPart (φ φ' : 𝓕.States) (a b : CrAnAlgebra
normalOrder (a * (anPart (StateAlgebra.ofState φ')) * normalOrder (a * (anPart (StateAlgebra.ofState φ')) *
(crPart (StateAlgebra.ofState φ)) * b) := by (crPart (StateAlgebra.ofState φ)) * b) := by
match φ, φ' with match φ, φ' with
| _, .negAsymp φ' => | _, .inAsymp φ' =>
simp simp
| .posAsymp φ, _ => | .outAsymp φ, _ =>
simp simp
| .position φ, .position φ' => | .position φ, .position φ' =>
simp only [crPart_position, anPart_position, instCommGroup.eq_1] simp only [crPart_position, anPart_position, instCommGroup.eq_1]
@ -231,19 +231,19 @@ lemma normalOrder_swap_crPart_anPart (φ φ' : 𝓕.States) (a b : CrAnAlgebra
simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod] simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod]
rfl rfl
rfl rfl
| .negAsymp φ, .posAsymp φ' => | .inAsymp φ, .outAsymp φ' =>
simp only [crPart_negAsymp, anPart_posAsymp, instCommGroup.eq_1] simp only [crPart_negAsymp, anPart_posAsymp, instCommGroup.eq_1]
rw [normalOrder_swap_create_annihlate] rw [normalOrder_swap_create_annihlate]
simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod] simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod]
rfl rfl
rfl rfl
| .negAsymp φ, .position φ' => | .inAsymp φ, .position φ' =>
simp only [crPart_negAsymp, anPart_position, instCommGroup.eq_1] simp only [crPart_negAsymp, anPart_position, instCommGroup.eq_1]
rw [normalOrder_swap_create_annihlate] rw [normalOrder_swap_create_annihlate]
simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod] simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod]
rfl rfl
rfl rfl
| .position φ, .posAsymp φ' => | .position φ, .outAsymp φ' =>
simp only [crPart_position, anPart_posAsymp, instCommGroup.eq_1] simp only [crPart_position, anPart_posAsymp, instCommGroup.eq_1]
rw [normalOrder_swap_create_annihlate] rw [normalOrder_swap_create_annihlate]
simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod] simp only [instCommGroup.eq_1, crAnStatistics, Function.comp_apply, crAnStatesToStates_prod]
@ -270,20 +270,20 @@ lemma normalOrder_superCommute_crPart_anPart (φ φ' : 𝓕.States) (a b : CrAnA
normalOrder (a * superCommute normalOrder (a * superCommute
(crPart (StateAlgebra.ofState φ)) (anPart (StateAlgebra.ofState φ')) * b) = 0 := by (crPart (StateAlgebra.ofState φ)) (anPart (StateAlgebra.ofState φ')) * b) = 0 := by
match φ, φ' with match φ, φ' with
| _, .negAsymp φ' => | _, .inAsymp φ' =>
simp simp
| .posAsymp φ', _ => | .outAsymp φ', _ =>
simp simp
| .position φ, .position φ' => | .position φ, .position φ' =>
simp only [crPart_position, anPart_position] simp only [crPart_position, anPart_position]
refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _
| .negAsymp φ, .posAsymp φ' => | .inAsymp φ, .outAsymp φ' =>
simp only [crPart_negAsymp, anPart_posAsymp] simp only [crPart_negAsymp, anPart_posAsymp]
refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _
| .negAsymp φ, .position φ' => | .inAsymp φ, .position φ' =>
simp only [crPart_negAsymp, anPart_position] simp only [crPart_negAsymp, anPart_position]
refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _
| .position φ, .posAsymp φ' => | .position φ, .outAsymp φ' =>
simp only [crPart_position, anPart_posAsymp] simp only [crPart_position, anPart_posAsymp]
refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_create_annihilate _ _ (by rfl) (by rfl) _ _
@ -291,20 +291,20 @@ lemma normalOrder_superCommute_anPart_crPart (φ φ' : 𝓕.States) (a b : CrAnA
normalOrder (a * superCommute normalOrder (a * superCommute
(anPart (StateAlgebra.ofState φ)) (crPart (StateAlgebra.ofState φ')) * b) = 0 := by (anPart (StateAlgebra.ofState φ)) (crPart (StateAlgebra.ofState φ')) * b) = 0 := by
match φ, φ' with match φ, φ' with
| .negAsymp φ', _ => | .inAsymp φ', _ =>
simp simp
| _, .posAsymp φ' => | _, .outAsymp φ' =>
simp simp
| .position φ, .position φ' => | .position φ, .position φ' =>
simp only [anPart_position, crPart_position] simp only [anPart_position, crPart_position]
refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _
| .posAsymp φ', .negAsymp φ => | .outAsymp φ', .inAsymp φ =>
simp only [anPart_posAsymp, crPart_negAsymp] simp only [anPart_posAsymp, crPart_negAsymp]
refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _
| .position φ', .negAsymp φ => | .position φ', .inAsymp φ =>
simp only [anPart_position, crPart_negAsymp] simp only [anPart_position, crPart_negAsymp]
refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _
| .posAsymp φ, .position φ' => | .outAsymp φ, .position φ' =>
simp only [anPart_posAsymp, crPart_position] simp only [anPart_posAsymp, crPart_position]
refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _ refine normalOrder_superCommute_annihilate_create _ _ (by rfl) (by rfl) _ _
@ -576,13 +576,13 @@ lemma anPart_mul_normalOrder_ofStateList_eq_superCommute (φ : 𝓕.States)
+ ⟨anPart (StateAlgebra.ofState φ), normalOrder (ofStateList φs')⟩ₛca := by + ⟨anPart (StateAlgebra.ofState φ), normalOrder (ofStateList φs')⟩ₛca := by
rw [normalOrder_mul_anPart] rw [normalOrder_mul_anPart]
match φ with match φ with
| .negAsymp φ => | .inAsymp φ =>
simp simp
| .position φ => | .position φ =>
simp only [anPart_position, instCommGroup.eq_1] simp only [anPart_position, instCommGroup.eq_1]
rw [ofCrAnState_mul_normalOrder_ofStateList_eq_superCommute] rw [ofCrAnState_mul_normalOrder_ofStateList_eq_superCommute]
simp [crAnStatistics] simp [crAnStatistics]
| .posAsymp φ => | .outAsymp φ =>
simp only [anPart_posAsymp, instCommGroup.eq_1] simp only [anPart_posAsymp, instCommGroup.eq_1]
rw [ofCrAnState_mul_normalOrder_ofStateList_eq_superCommute] rw [ofCrAnState_mul_normalOrder_ofStateList_eq_superCommute]
simp [crAnStatistics] simp [crAnStatistics]

View file

@ -101,26 +101,26 @@ lemma superCommute_anPart_crPart (φ φ' : 𝓕.States) :
anPart (StateAlgebra.ofState φ) * crPart (StateAlgebra.ofState φ') - anPart (StateAlgebra.ofState φ) * crPart (StateAlgebra.ofState φ') -
𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') • crPart (StateAlgebra.ofState φ') * anPart (StateAlgebra.ofState φ) := by 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') • crPart (StateAlgebra.ofState φ') * anPart (StateAlgebra.ofState φ) := by
match φ, φ' with match φ, φ' with
| States.negAsymp φ, _ => | States.inAsymp φ, _ =>
simp simp
| _, States.posAsymp φ => | _, States.outAsymp φ =>
simp only [crPart_posAsymp, map_zero, mul_zero, instCommGroup.eq_1, smul_zero, zero_mul, simp only [crPart_posAsymp, map_zero, mul_zero, instCommGroup.eq_1, smul_zero, zero_mul,
sub_self] sub_self]
| States.position φ, States.position φ' => | States.position φ, States.position φ' =>
simp only [anPart_position, crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_position, crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.posAsymp φ, States.position φ' => | States.outAsymp φ, States.position φ' =>
simp only [anPart_posAsymp, crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_posAsymp, crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.position φ, States.negAsymp φ' => | States.position φ, States.inAsymp φ' =>
simp only [anPart_position, crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_position, crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp only [List.singleton_append, instCommGroup.eq_1, crAnStatistics, simp only [List.singleton_append, instCommGroup.eq_1, crAnStatistics,
FieldStatistic.ofList_singleton, Function.comp_apply, crAnStatesToStates_prod, ← FieldStatistic.ofList_singleton, Function.comp_apply, crAnStatesToStates_prod, ←
ofCrAnList_append] ofCrAnList_append]
| States.posAsymp φ, States.negAsymp φ' => | States.outAsymp φ, States.inAsymp φ' =>
simp only [anPart_posAsymp, crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_posAsymp, crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
@ -131,25 +131,25 @@ lemma superCommute_crPart_anPart (φ φ' : 𝓕.States) :
𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') • 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') •
anPart (StateAlgebra.ofState φ') * crPart (StateAlgebra.ofState φ) := by anPart (StateAlgebra.ofState φ') * crPart (StateAlgebra.ofState φ) := by
match φ, φ' with match φ, φ' with
| States.posAsymp φ, _ => | States.outAsymp φ, _ =>
simp only [crPart_posAsymp, map_zero, LinearMap.zero_apply, zero_mul, instCommGroup.eq_1, simp only [crPart_posAsymp, map_zero, LinearMap.zero_apply, zero_mul, instCommGroup.eq_1,
mul_zero, sub_self] mul_zero, sub_self]
| _, States.negAsymp φ => | _, States.inAsymp φ =>
simp only [anPart_negAsymp, map_zero, mul_zero, instCommGroup.eq_1, smul_zero, zero_mul, simp only [anPart_negAsymp, map_zero, mul_zero, instCommGroup.eq_1, smul_zero, zero_mul,
sub_self] sub_self]
| States.position φ, States.position φ' => | States.position φ, States.position φ' =>
simp only [crPart_position, anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_position, anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.position φ, States.posAsymp φ' => | States.position φ, States.outAsymp φ' =>
simp only [crPart_position, anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_position, anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.negAsymp φ, States.position φ' => | States.inAsymp φ, States.position φ' =>
simp only [crPart_negAsymp, anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_negAsymp, anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.negAsymp φ, States.posAsymp φ' => | States.inAsymp φ, States.outAsymp φ' =>
simp only [crPart_negAsymp, anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_negAsymp, anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
@ -160,24 +160,24 @@ lemma superCommute_crPart_crPart (φ φ' : 𝓕.States) :
𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') • 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') •
crPart (StateAlgebra.ofState φ') * crPart (StateAlgebra.ofState φ) := by crPart (StateAlgebra.ofState φ') * crPart (StateAlgebra.ofState φ) := by
match φ, φ' with match φ, φ' with
| States.posAsymp φ, _ => | States.outAsymp φ, _ =>
simp only [crPart_posAsymp, map_zero, LinearMap.zero_apply, zero_mul, instCommGroup.eq_1, simp only [crPart_posAsymp, map_zero, LinearMap.zero_apply, zero_mul, instCommGroup.eq_1,
mul_zero, sub_self] mul_zero, sub_self]
| _, States.posAsymp φ => | _, States.outAsymp φ =>
simp only [crPart_posAsymp, map_zero, mul_zero, instCommGroup.eq_1, smul_zero, zero_mul, sub_self] simp only [crPart_posAsymp, map_zero, mul_zero, instCommGroup.eq_1, smul_zero, zero_mul, sub_self]
| States.position φ, States.position φ' => | States.position φ, States.position φ' =>
simp only [crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.position φ, States.negAsymp φ' => | States.position φ, States.inAsymp φ' =>
simp only [crPart_position, crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_position, crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.negAsymp φ, States.position φ' => | States.inAsymp φ, States.position φ' =>
simp only [crPart_negAsymp, crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_negAsymp, crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.negAsymp φ, States.negAsymp φ' => | States.inAsymp φ, States.inAsymp φ' =>
simp only [crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
@ -188,23 +188,23 @@ lemma superCommute_anPart_anPart (φ φ' : 𝓕.States) :
𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') • 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') •
anPart (StateAlgebra.ofState φ') * anPart (StateAlgebra.ofState φ) := by anPart (StateAlgebra.ofState φ') * anPart (StateAlgebra.ofState φ) := by
match φ, φ' with match φ, φ' with
| States.negAsymp φ, _ => | States.inAsymp φ, _ =>
simp simp
| _, States.negAsymp φ => | _, States.inAsymp φ =>
simp simp
| States.position φ, States.position φ' => | States.position φ, States.position φ' =>
simp only [anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.position φ, States.posAsymp φ' => | States.position φ, States.outAsymp φ' =>
simp only [anPart_position, anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_position, anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.posAsymp φ, States.position φ' => | States.outAsymp φ, States.position φ' =>
simp only [anPart_posAsymp, anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_posAsymp, anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
| States.posAsymp φ, States.posAsymp φ' => | States.outAsymp φ, States.outAsymp φ' =>
simp only [anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList] rw [← ofCrAnList_singleton, ← ofCrAnList_singleton, superCommute_ofCrAnList_ofCrAnList]
simp [crAnStatistics, ← ofCrAnList_append] simp [crAnStatistics, ← ofCrAnList_append]
@ -214,7 +214,7 @@ lemma superCommute_crPart_ofStateList (φ : 𝓕.States) (φs : List 𝓕.States
crPart (StateAlgebra.ofState φ) * ofStateList φs - 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φs) • ofStateList φs * crPart (StateAlgebra.ofState φ) * ofStateList φs - 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φs) • ofStateList φs *
crPart (StateAlgebra.ofState φ) := by crPart (StateAlgebra.ofState φ) := by
match φ with match φ with
| States.negAsymp φ => | States.inAsymp φ =>
simp only [crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_negAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList] rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList]
simp [crAnStatistics] simp [crAnStatistics]
@ -222,7 +222,7 @@ lemma superCommute_crPart_ofStateList (φ : 𝓕.States) (φs : List 𝓕.States
simp only [crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [crPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList] rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList]
simp [crAnStatistics] simp [crAnStatistics]
| States.posAsymp φ => | States.outAsymp φ =>
simp simp
lemma superCommute_anPart_ofStateList (φ : 𝓕.States) (φs : List 𝓕.States) : lemma superCommute_anPart_ofStateList (φ : 𝓕.States) (φs : List 𝓕.States) :
@ -230,13 +230,13 @@ lemma superCommute_anPart_ofStateList (φ : 𝓕.States) (φs : List 𝓕.States
anPart (StateAlgebra.ofState φ) * ofStateList φs - 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φs) • anPart (StateAlgebra.ofState φ) * ofStateList φs - 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φs) •
ofStateList φs * anPart (StateAlgebra.ofState φ) := by ofStateList φs * anPart (StateAlgebra.ofState φ) := by
match φ with match φ with
| States.negAsymp φ => | States.inAsymp φ =>
simp simp
| States.position φ => | States.position φ =>
simp only [anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_position, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList] rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList]
simp [crAnStatistics] simp [crAnStatistics]
| States.posAsymp φ => | States.outAsymp φ =>
simp only [anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc] simp only [anPart_posAsymp, instCommGroup.eq_1, Algebra.smul_mul_assoc]
rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList] rw [← ofCrAnList_singleton, superCommute_ofCrAnList_ofStatesList]
simp [crAnStatistics] simp [crAnStatistics]

View file

@ -63,13 +63,13 @@ lemma crAnF_superCommute_ofCrAnState_ofState_mem_center (φ : 𝓕.CrAnStates) (
lemma crAnF_superCommute_anPart_ofState_mem_center (φ ψ : 𝓕.States) : lemma crAnF_superCommute_anPart_ofState_mem_center (φ ψ : 𝓕.States) :
𝓞.crAnF ⟨anPart (StateAlgebra.ofState φ), ofState ψ⟩ₛca ∈ Subalgebra.center 𝓞.A := by 𝓞.crAnF ⟨anPart (StateAlgebra.ofState φ), ofState ψ⟩ₛca ∈ Subalgebra.center 𝓞.A := by
match φ with match φ with
| States.negAsymp _ => | States.inAsymp _ =>
simp only [anPart_negAsymp, map_zero, LinearMap.zero_apply] simp only [anPart_negAsymp, map_zero, LinearMap.zero_apply]
exact Subalgebra.zero_mem (Subalgebra.center 𝓞.A) exact Subalgebra.zero_mem (Subalgebra.center 𝓞.A)
| States.position φ => | States.position φ =>
simp only [anPart_position] simp only [anPart_position]
exact 𝓞.crAnF_superCommute_ofCrAnState_ofState_mem_center _ _ exact 𝓞.crAnF_superCommute_ofCrAnState_ofState_mem_center _ _
| States.posAsymp _ => | States.outAsymp _ =>
simp only [anPart_posAsymp] simp only [anPart_posAsymp]
exact 𝓞.crAnF_superCommute_ofCrAnState_ofState_mem_center _ _ exact 𝓞.crAnF_superCommute_ofCrAnState_ofState_mem_center _ _
@ -86,13 +86,13 @@ lemma crAnF_superCommute_anPart_ofState_diff_grade_zero (φ ψ : 𝓕.States)
(h : (𝓕 |>ₛ φ) ≠ (𝓕 |>ₛ ψ)) : (h : (𝓕 |>ₛ φ) ≠ (𝓕 |>ₛ ψ)) :
𝓞.crAnF (superCommute (anPart (StateAlgebra.ofState φ)) (ofState ψ)) = 0 := by 𝓞.crAnF (superCommute (anPart (StateAlgebra.ofState φ)) (ofState ψ)) = 0 := by
match φ with match φ with
| States.negAsymp _ => | States.inAsymp _ =>
simp simp
| States.position φ => | States.position φ =>
simp only [anPart_position] simp only [anPart_position]
apply 𝓞.crAnF_superCommute_ofCrAnState_ofState_diff_grade_zero _ _ _ apply 𝓞.crAnF_superCommute_ofCrAnState_ofState_diff_grade_zero _ _ _
simpa [crAnStatistics] using h simpa [crAnStatistics] using h
| States.posAsymp _ => | States.outAsymp _ =>
simp only [anPart_posAsymp] simp only [anPart_posAsymp]
apply 𝓞.crAnF_superCommute_ofCrAnState_ofState_diff_grade_zero _ _ apply 𝓞.crAnF_superCommute_ofCrAnState_ofState_diff_grade_zero _ _
simpa [crAnStatistics] using h simpa [crAnStatistics] using h
@ -108,26 +108,26 @@ lemma crAnF_superCommute_ofState_ofState_mem_center (φ ψ : 𝓕.States) :
lemma crAnF_superCommute_anPart_anPart (φ ψ : 𝓕.States) : lemma crAnF_superCommute_anPart_anPart (φ ψ : 𝓕.States) :
𝓞.crAnF ⟨anPart (StateAlgebra.ofState φ), anPart (StateAlgebra.ofState ψ)⟩ₛca = 0 := by 𝓞.crAnF ⟨anPart (StateAlgebra.ofState φ), anPart (StateAlgebra.ofState ψ)⟩ₛca = 0 := by
match φ, ψ with match φ, ψ with
| _, States.negAsymp _ => | _, States.inAsymp _ =>
simp simp
| States.negAsymp _, _ => | States.inAsymp _, _ =>
simp simp
| States.position φ, States.position ψ => | States.position φ, States.position ψ =>
simp only [anPart_position] simp only [anPart_position]
rw [𝓞.superCommute_annihilate_annihilate] rw [𝓞.superCommute_annihilate_annihilate]
rfl rfl
rfl rfl
| States.position φ, States.posAsymp _ => | States.position φ, States.outAsymp _ =>
simp only [anPart_position, anPart_posAsymp] simp only [anPart_position, anPart_posAsymp]
rw [𝓞.superCommute_annihilate_annihilate] rw [𝓞.superCommute_annihilate_annihilate]
rfl rfl
rfl rfl
| States.posAsymp _, States.posAsymp _ => | States.outAsymp _, States.outAsymp _ =>
simp only [anPart_posAsymp] simp only [anPart_posAsymp]
rw [𝓞.superCommute_annihilate_annihilate] rw [𝓞.superCommute_annihilate_annihilate]
rfl rfl
rfl rfl
| States.posAsymp _, States.position _ => | States.outAsymp _, States.position _ =>
simp only [anPart_posAsymp, anPart_position] simp only [anPart_posAsymp, anPart_position]
rw [𝓞.superCommute_annihilate_annihilate] rw [𝓞.superCommute_annihilate_annihilate]
rfl rfl
@ -136,26 +136,26 @@ lemma crAnF_superCommute_anPart_anPart (φ ψ : 𝓕.States) :
lemma crAnF_superCommute_crPart_crPart (φ ψ : 𝓕.States) : lemma crAnF_superCommute_crPart_crPart (φ ψ : 𝓕.States) :
𝓞.crAnF ⟨crPart (StateAlgebra.ofState φ), crPart (StateAlgebra.ofState ψ)⟩ₛca = 0 := by 𝓞.crAnF ⟨crPart (StateAlgebra.ofState φ), crPart (StateAlgebra.ofState ψ)⟩ₛca = 0 := by
match φ, ψ with match φ, ψ with
| _, States.posAsymp _ => | _, States.outAsymp _ =>
simp simp
| States.posAsymp _, _ => | States.outAsymp _, _ =>
simp simp
| States.position φ, States.position ψ => | States.position φ, States.position ψ =>
simp only [crPart_position] simp only [crPart_position]
rw [𝓞.superCommute_create_create] rw [𝓞.superCommute_create_create]
rfl rfl
rfl rfl
| States.position φ, States.negAsymp _ => | States.position φ, States.inAsymp _ =>
simp only [crPart_position, crPart_negAsymp] simp only [crPart_position, crPart_negAsymp]
rw [𝓞.superCommute_create_create] rw [𝓞.superCommute_create_create]
rfl rfl
rfl rfl
| States.negAsymp _, States.negAsymp _ => | States.inAsymp _, States.inAsymp _ =>
simp only [crPart_negAsymp] simp only [crPart_negAsymp]
rw [𝓞.superCommute_create_create] rw [𝓞.superCommute_create_create]
rfl rfl
rfl rfl
| States.negAsymp _, States.position _ => | States.inAsymp _, States.position _ =>
simp only [crPart_negAsymp, crPart_position] simp only [crPart_negAsymp, crPart_position]
rw [𝓞.superCommute_create_create] rw [𝓞.superCommute_create_create]
rfl rfl

View file

@ -222,13 +222,13 @@ lemma crAnF_normalOrder_anPart_ofStatesList_swap (φ : 𝓕.States)
𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') • 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ φ') •
𝓞.crAnF (normalOrder (ofStateList φ' * anPart (StateAlgebra.ofState φ))) := by 𝓞.crAnF (normalOrder (ofStateList φ' * anPart (StateAlgebra.ofState φ))) := by
match φ with match φ with
| .negAsymp φ => | .inAsymp φ =>
simp simp
| .position φ => | .position φ =>
simp only [anPart_position, instCommGroup.eq_1] simp only [anPart_position, instCommGroup.eq_1]
rw [crAnF_normalOrder_ofCrAnState_ofStatesList_swap] rw [crAnF_normalOrder_ofCrAnState_ofStatesList_swap]
rfl rfl
| .posAsymp φ => | .outAsymp φ =>
simp only [anPart_posAsymp, instCommGroup.eq_1] simp only [anPart_posAsymp, instCommGroup.eq_1]
rw [crAnF_normalOrder_ofCrAnState_ofStatesList_swap] rw [crAnF_normalOrder_ofCrAnState_ofStatesList_swap]
rfl rfl
@ -309,13 +309,13 @@ lemma crAnF_anPart_superCommute_normalOrder_ofStateList_eq_sum (φ : 𝓕.States
𝓞.crAnF (⟨anPart (StateAlgebra.ofState φ), ofState φs[n]⟩ₛca) 𝓞.crAnF (⟨anPart (StateAlgebra.ofState φ), ofState φs[n]⟩ₛca)
* 𝓞.crAnF (normalOrder (ofStateList (φs.eraseIdx n))) := by * 𝓞.crAnF (normalOrder (ofStateList (φs.eraseIdx n))) := by
match φ with match φ with
| .negAsymp φ => | .inAsymp φ =>
simp simp
| .position φ => | .position φ =>
simp only [anPart_position, instCommGroup.eq_1, Fin.getElem_fin, Algebra.smul_mul_assoc] simp only [anPart_position, instCommGroup.eq_1, Fin.getElem_fin, Algebra.smul_mul_assoc]
rw [crAnF_ofCrAnState_superCommute_normalOrder_ofStateList_eq_sum] rw [crAnF_ofCrAnState_superCommute_normalOrder_ofStateList_eq_sum]
simp [crAnStatistics] simp [crAnStatistics]
| .posAsymp φ => | .outAsymp φ =>
simp only [anPart_posAsymp, instCommGroup.eq_1, Fin.getElem_fin, Algebra.smul_mul_assoc] simp only [anPart_posAsymp, instCommGroup.eq_1, Fin.getElem_fin, Algebra.smul_mul_assoc]
rw [crAnF_ofCrAnState_superCommute_normalOrder_ofStateList_eq_sum] rw [crAnF_ofCrAnState_superCommute_normalOrder_ofStateList_eq_sum]
simp [crAnStatistics] simp [crAnStatistics]

View file

@ -44,26 +44,26 @@ structure FieldSpecification where
namespace FieldSpecification namespace FieldSpecification
variable (𝓕 : FieldSpecification) variable (𝓕 : FieldSpecification)
/-- Negative asymptotic states are specified by a field and a momentum. -/ /-- Incoming asymptotic states are specified by a field and a momentum. -/
def AsymptoticNegTime : Type := 𝓕.Fields × Lorentz.Contr 4 def IncomingAsymptotic : Type := 𝓕.Fields × Lorentz.Contr 4
/-- Positive asymptotic states are specified by a field and a momentum. -/ /-- Outgoing asymptotic states are specified by a field and a momentum. -/
def AsymptoticPosTime : Type := 𝓕.Fields × Lorentz.Contr 4 def OutgoingAsymptotic : Type := 𝓕.Fields × Lorentz.Contr 4
/-- States specified by a field and a space-time position. -/ /-- States specified by a field and a space-time position. -/
def PositionStates : Type := 𝓕.Fields × SpaceTime def PositionStates : Type := 𝓕.Fields × SpaceTime
/-- The combination of asymptotic states and position states. -/ /-- The combination of asymptotic states and position states. -/
inductive States (𝓕 : FieldSpecification) where inductive States (𝓕 : FieldSpecification) where
| negAsymp : 𝓕.AsymptoticNegTime𝓕.States | inAsymp : 𝓕.IncomingAsymptotic → 𝓕.States
| position : 𝓕.PositionStates → 𝓕.States | position : 𝓕.PositionStates → 𝓕.States
| posAsymp : 𝓕.AsymptoticPosTime𝓕.States | outAsymp : 𝓕.OutgoingAsymptotic𝓕.States
/-- Taking a state to its underlying field. -/ /-- Taking a state to its underlying field. -/
def statesToField : 𝓕.States → 𝓕.Fields def statesToField : 𝓕.States → 𝓕.Fields
| States.negAsymp φ => φ.1 | States.inAsymp φ => φ.1
| States.position φ => φ.1 | States.position φ => φ.1
| States.posAsymp φ => φ.1 | States.outAsymp φ => φ.1
/-- The statistics associated to a state. -/ /-- The statistics associated to a state. -/
def statesStatistic : 𝓕.States → FieldStatistic := 𝓕.statistics ∘ 𝓕.statesToField def statesStatistic : 𝓕.States → FieldStatistic := 𝓕.statistics ∘ 𝓕.statesToField

View file

@ -38,23 +38,23 @@ variable (𝓕 : FieldSpecification)
For asymptotic staes there is only one allowed part, whilst for position states For asymptotic staes there is only one allowed part, whilst for position states
there is two. -/ there is two. -/
def statesToCrAnType : 𝓕.States → Type def statesToCrAnType : 𝓕.States → Type
| States.negAsymp _ => Unit | States.inAsymp _ => Unit
| States.position _ => CreateAnnihilate | States.position _ => CreateAnnihilate
| States.posAsymp _ => Unit | States.outAsymp _ => Unit
/-- The instance of a finite type on `𝓕.statesToCreateAnnihilateType i`. -/ /-- The instance of a finite type on `𝓕.statesToCreateAnnihilateType i`. -/
instance : ∀ i, Fintype (𝓕.statesToCrAnType i) := fun i => instance : ∀ i, Fintype (𝓕.statesToCrAnType i) := fun i =>
match i with match i with
| States.negAsymp _ => inferInstanceAs (Fintype Unit) | States.inAsymp _ => inferInstanceAs (Fintype Unit)
| States.position _ => inferInstanceAs (Fintype CreateAnnihilate) | States.position _ => inferInstanceAs (Fintype CreateAnnihilate)
| States.posAsymp _ => inferInstanceAs (Fintype Unit) | States.outAsymp _ => inferInstanceAs (Fintype Unit)
/-- The instance of a decidable equality on `𝓕.statesToCreateAnnihilateType i`. -/ /-- The instance of a decidable equality on `𝓕.statesToCreateAnnihilateType i`. -/
instance : ∀ i, DecidableEq (𝓕.statesToCrAnType i) := fun i => instance : ∀ i, DecidableEq (𝓕.statesToCrAnType i) := fun i =>
match i with match i with
| States.negAsymp _ => inferInstanceAs (DecidableEq Unit) | States.inAsymp _ => inferInstanceAs (DecidableEq Unit)
| States.position _ => inferInstanceAs (DecidableEq CreateAnnihilate) | States.position _ => inferInstanceAs (DecidableEq CreateAnnihilate)
| States.posAsymp _ => inferInstanceAs (DecidableEq Unit) | States.outAsymp _ => inferInstanceAs (DecidableEq Unit)
/-- The equivalence between `𝓕.statesToCreateAnnihilateType i` and /-- The equivalence between `𝓕.statesToCreateAnnihilateType i` and
`𝓕.statesToCreateAnnihilateType j` from an equality `i = j`. -/ `𝓕.statesToCreateAnnihilateType j` from an equality `i = j`. -/
@ -77,10 +77,10 @@ lemma crAnStatesToStates_prod (s : 𝓕.States) (t : 𝓕.statesToCrAnType s) :
/-- The map from creation and annihlation states to the type `CreateAnnihilate` /-- The map from creation and annihlation states to the type `CreateAnnihilate`
specifying if a state is a creation or an annihilation state. -/ specifying if a state is a creation or an annihilation state. -/
def crAnStatesToCreateAnnihilate : 𝓕.CrAnStates → CreateAnnihilate def crAnStatesToCreateAnnihilate : 𝓕.CrAnStates → CreateAnnihilate
| ⟨States.negAsymp _, _⟩ => CreateAnnihilate.create | ⟨States.inAsymp _, _⟩ => CreateAnnihilate.create
| ⟨States.position _, CreateAnnihilate.create⟩ => CreateAnnihilate.create | ⟨States.position _, CreateAnnihilate.create⟩ => CreateAnnihilate.create
| ⟨States.position _, CreateAnnihilate.annihilate⟩ => CreateAnnihilate.annihilate | ⟨States.position _, CreateAnnihilate.annihilate⟩ => CreateAnnihilate.annihilate
| ⟨States.posAsymp _, _⟩ => CreateAnnihilate.annihilate | ⟨States.outAsymp _, _⟩ => CreateAnnihilate.annihilate
/-- Takes a `CrAnStates` state to its corresponding fields statistic (bosonic or fermionic). -/ /-- Takes a `CrAnStates` state to its corresponding fields statistic (bosonic or fermionic). -/
def crAnStatistics : 𝓕.CrAnStates → FieldStatistic := def crAnStatistics : 𝓕.CrAnStates → FieldStatistic :=

View file

@ -19,24 +19,24 @@ variable {𝓕 : FieldSpecification}
if and only if `φ1` has a time less-then or equal to `φ0`, or `φ1` is a negative if and only if `φ1` has a time less-then or equal to `φ0`, or `φ1` is a negative
asymptotic state, or `φ0` is a positive asymptotic state. -/ asymptotic state, or `φ0` is a positive asymptotic state. -/
def timeOrderRel : 𝓕.States → 𝓕.States → Prop def timeOrderRel : 𝓕.States → 𝓕.States → Prop
| States.posAsymp _, _ => True | States.outAsymp _, _ => True
| States.position φ0, States.position φ1 => φ1.2 0 ≤ φ0.2 0 | States.position φ0, States.position φ1 => φ1.2 0 ≤ φ0.2 0
| States.position _, States.negAsymp _ => True | States.position _, States.inAsymp _ => True
| States.position _, States.posAsymp _ => False | States.position _, States.outAsymp _ => False
| States.negAsymp _, States.posAsymp _ => False | States.inAsymp _, States.outAsymp _ => False
| States.negAsymp _, States.position _ => False | States.inAsymp _, States.position _ => False
| States.negAsymp _, States.negAsymp _ => True | States.inAsymp _, States.inAsymp _ => True
/-- The relation `timeOrderRel` is decidable, but not computablly so due to /-- The relation `timeOrderRel` is decidable, but not computablly so due to
`Real.decidableLE`. -/ `Real.decidableLE`. -/
noncomputable instance : (φ φ' : 𝓕.States) → Decidable (timeOrderRel φ φ') noncomputable instance : (φ φ' : 𝓕.States) → Decidable (timeOrderRel φ φ')
| States.posAsymp _, _ => isTrue True.intro | States.outAsymp _, _ => isTrue True.intro
| States.position φ0, States.position φ1 => inferInstanceAs (Decidable (φ1.2 0 ≤ φ0.2 0)) | States.position φ0, States.position φ1 => inferInstanceAs (Decidable (φ1.2 0 ≤ φ0.2 0))
| States.position _, States.negAsymp _ => isTrue True.intro | States.position _, States.inAsymp _ => isTrue True.intro
| States.position _, States.posAsymp _ => isFalse (fun a => a) | States.position _, States.outAsymp _ => isFalse (fun a => a)
| States.negAsymp _, States.posAsymp _ => isFalse (fun a => a) | States.inAsymp _, States.outAsymp _ => isFalse (fun a => a)
| States.negAsymp _, States.position _ => isFalse (fun a => a) | States.inAsymp _, States.position _ => isFalse (fun a => a)
| States.negAsymp _, States.negAsymp _ => isTrue True.intro | States.inAsymp _, States.inAsymp _ => isTrue True.intro
/-- Time ordering is total. -/ /-- Time ordering is total. -/
instance : IsTotal 𝓕.States 𝓕.timeOrderRel where instance : IsTotal 𝓕.States 𝓕.timeOrderRel where

View file

@ -24,8 +24,10 @@ namespace FieldStatistic
variable {𝓕 : Type} variable {𝓕 : Type}
/-- The echange sign of two field statistics. /-- The exchange sign of two field statistics is defined to be
Defined to be `-1` if both field statistics are `fermionic` and `1` otherwise. -/ `-1` if both field statistics are `fermionic` and `1` otherwise.
It is a group homomorphism from `FieldStatistic` to the group of homomorphisms from
`FieldStatistic` to ``. -/
def exchangeSign : FieldStatistic →* FieldStatistic →* where def exchangeSign : FieldStatistic →* FieldStatistic →* where
toFun a := toFun a :=
{ {

View file

@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Authors: Joseph Tooby-Smith Authors: Joseph Tooby-Smith
-/ -/
import HepLean.PerturbationTheory.WickContraction.TimeContract import HepLean.PerturbationTheory.WickContraction.TimeContract
import HepLean.Meta.Remark.Basic
/-! /-!
# Wick's theorem # Wick's theorem
@ -260,19 +261,6 @@ lemma wicks_theorem_congr {φs φs' : List 𝓕.States} (h : φs = φs') :
subst h subst h
simp simp
/-- Wick's theorem for the empty list. -/
lemma wicks_theorem_nil :
𝓞.crAnF (ofStateAlgebra (timeOrder (ofList []))) = ∑ (c : WickContraction [].length),
(c.sign [] • c.timeContract 𝓞) *
𝓞.crAnF (normalOrder (ofStateList (c.uncontractedList.map [].get))) := by
rw [timeOrder_ofList_nil]
simp only [map_one, List.length_nil, Algebra.smul_mul_assoc]
rw [sum_WickContraction_nil, nil_zero_uncontractedList]
simp only [List.map_nil]
have h1 : ofStateList (𝓕 := 𝓕) [] = CrAnAlgebra.ofCrAnList [] := by simp
rw [h1, normalOrder_ofCrAnList]
simp [WickContraction.timeContract, empty, sign]
lemma timeOrder_eq_maxTimeField_mul_finset (φ : 𝓕.States) (φs : List 𝓕.States) : lemma timeOrder_eq_maxTimeField_mul_finset (φ : 𝓕.States) (φs : List 𝓕.States) :
timeOrder (ofList (φ :: φs)) = 𝓢(𝓕 |>ₛ maxTimeField φ φs, 𝓕 |>ₛ ⟨(eraseMaxTimeField φ φs).get, timeOrder (ofList (φ :: φs)) = 𝓢(𝓕 |>ₛ maxTimeField φ φs, 𝓕 |>ₛ ⟨(eraseMaxTimeField φ φs).get,
(Finset.filter (fun x => (Finset.filter (fun x =>
@ -320,6 +308,33 @@ lemma timeOrder_eq_maxTimeField_mul_finset (φ : 𝓕.States) (φs : List 𝓕.S
(Finset.filter (fun x => (maxTimeFieldPosFin φ φs).succAbove x < maxTimeFieldPosFin φ φs) (Finset.filter (fun x => (maxTimeFieldPosFin φ φs).succAbove x < maxTimeFieldPosFin φ φs)
Finset.univ) Finset.univ)
/-!
## Wick's theorem
-/
/-- Wick's theorem for the empty list. -/
lemma wicks_theorem_nil :
𝓞.crAnF (ofStateAlgebra (timeOrder (ofList []))) = ∑ (c : WickContraction [].length),
(c.sign [] • c.timeContract 𝓞) *
𝓞.crAnF (normalOrder (ofStateList (c.uncontractedList.map [].get))) := by
rw [timeOrder_ofList_nil]
simp only [map_one, List.length_nil, Algebra.smul_mul_assoc]
rw [sum_WickContraction_nil, nil_zero_uncontractedList]
simp only [List.map_nil]
have h1 : ofStateList (𝓕 := 𝓕) [] = CrAnAlgebra.ofCrAnList [] := by simp
rw [h1, normalOrder_ofCrAnList]
simp [WickContraction.timeContract, empty, sign]
remark wicks_theorem_context := "
Wick's theorem is one of the most important results in perturbative quantum field theory.
It expresses a time-ordered product of fields as a sum of terms consisting of
time-contractions of pairs of fields multiplied by the normal-ordered product of
the remaining fields. Wick's theorem is also the precursor to the diagrammatic
approach to quantum field theory called Feynman diagrams."
/-- Wick's theorem for time-ordered products of bosonic and fermionic fields. -/ /-- Wick's theorem for time-ordered products of bosonic and fermionic fields. -/
theorem wicks_theorem : (φs : List 𝓕.States) → 𝓞.crAnF (ofStateAlgebra (timeOrder (ofList φs))) = theorem wicks_theorem : (φs : List 𝓕.States) → 𝓞.crAnF (ofStateAlgebra (timeOrder (ofList φs))) =
∑ (c : WickContraction φs.length), (c.sign φs • c.timeContract 𝓞) * ∑ (c : WickContraction φs.length), (c.sign φs • c.timeContract 𝓞) *

View file

@ -1,7 +1,16 @@
--- ---
layout: default layout: default
--- ---
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script type="text/javascript" charset="UTF-8"
src="../assets/css/lean.min.js"></script>
<script>hljs.highlightAll();</script>
<!-- Note header (title, curators, notice etc.). -->
<center><h1 style="font-size: 50px;">{{ site.data.perturbationTheory.title }}</h1></center> <center><h1 style="font-size: 50px;">{{ site.data.perturbationTheory.title }}</h1></center>
<center><h2 style="font-size: 20px;">Note Curators: {{ site.data.perturbationTheory.curators }}</h2></center>
<br> <br>
<div style="border: 1px solid black; padding: 10px;"> <div style="border: 1px solid black; padding: 10px;">
<p>Note: <p>Note:
@ -16,27 +25,45 @@ layout: default
<a href="https://github.com/HEPLean/HepLean/issues">here</a>. <a href="https://github.com/HEPLean/HepLean/issues">here</a>.
</p> </p>
</div> </div>
<!-- Table of content. -->
<hr>
<center><h2 style="font-size: 30px;">Table of content</h2></center>
<p>
{% for entry in site.data.perturbationTheory.parts %}
{% if entry.type == "h1" %}
{{ entry.sectionNo }}. {{ entry.content }}<br>
{% endif %}
{% if entry.type == "h2" %}
- {{ entry.sectionNo }}. {{ entry.content }}<br>
{% endif %}
{% endfor %}
</p>
<hr>
<!-- Main body. -->
<br> <br>
{% for entry in site.data.perturbationTheory.parts %} {% for entry in site.data.perturbationTheory.parts %}
{% if entry.type == "h1" %} {% if entry.type == "h1" %}
<h1>{{ entry.content }}</h1> <h1>{{ entry.sectionNo }}. {{ entry.content }}</h1>
{% endif %} {% endif %}
{% if entry.type == "h2" %} {% if entry.type == "h2" %}
<h2>{{ entry.content }}</h2> <h2>{{ entry.sectionNo }}. {{ entry.content }}</h2>
{% endif %} {% endif %}
{% if entry.type == "p" %} {% if entry.type == "p" %}
<p>{{ entry.content }}</p> <p>{{ entry.content }}</p>
{% endif %} {% endif %}
{% if entry.type == "name" %} {% if entry.type == "name" %}
<div class="code-block-container">
<pre><code> <div style="background-color: #f5f5f5; padding: 10px; border-radius: 4px;">
{{ entry.content }} <p>{{ entry.name }}: {{ entry.docString }}</p>
</code></pre> <details class="code-block-container">
</div> <summary>Show Lean code:</summary>
<pre style="background: none; margin: 0;"><code class="language-lean">{{ entry.declString }}</code></pre>
</details>
</div>
{% endif %} {% endif %}
{% if entry.type == "remark" %} {% if entry.type == "remark" %}
<p><i>Remark:</i> <p><i>Remark:</i>{{ entry.content|markdownify }}
{{ entry.content|markdownify }} </p>
</p>
{% endif %} {% endif %}
{% endfor %} {% endfor %}

20
docs/assets/css/lean.min.js vendored Normal file
View file

@ -0,0 +1,20 @@
/*! `lean` grammar compiled for Highlight.js 11.9.0 */
(()=>{var e=(()=>{"use strict";function e(e){
return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e
}return e((e=>{var a={$pattern:/\w+|\u03bb|\u2200|\u03a0|\u2203|:=?/u,
keyword:"theorem|10 lemma|10 definition def class structure instance example inductive coinductive axiom axioms hypothesis constant constants universe universes variable variables parameter parameters begin end infix infixr import open theory prelude renaming hiding exposing calc match do by let in extends fun assume #check #eval #reduce #print \u03bb \u2200 \u2203 \u2a01 \u03a0",
built_in:"Type Prop|10 Sort rw|10 rewrite rwa erw subst substs simp dsimp simpa simp_intros finish unfold unfold1 dunfold unfold_projs unfold_coes delta cc ac_reflexivity ac_refl existsi|10 cases rcases with intro intros introv by_cases refl rfl funext propext exact exacts refine apply eapply fapply apply_with apply_instance induction rename assumption revert generalize specialize clear contradiction by_contradiction by_contra trivial exfalso symmetry transitivity destruct constructor econstructor left right split injection injections repeat try continue skip swap solve1 abstract all_goals any_goals done fail_if_success success_if_fail guard_target guard_hyp have replace at suffices show from congr congr_n congr_arg norm_num ring ",
literal:"tt ff",meta:"noncomputable|10 private protected meta mutual",
section:"section namespace end",sorry:"sorry admit",symbol:":="
},n=e.COMMENT("--","$"),s=e.COMMENT("/-[^-]","-/"),t={className:"theorem",
beginKeywords:"def theorem lemma class instance structure",end:/:=/,
excludeEnd:!0,contains:[{className:"keyword",begin:/extends/,contains:[{
className:"symbol",begin:/:=/,endsParent:!0}]},e.inherit(e.TITLE_MODE,{
begin:/[A-Za-z_][\w\u207F-\u209C\u1D62-\u1D6A\u2079\']*/}),{className:"params",
begin:/[([{]/,end:/[)\]}]/,endsParent:!1,keywords:a},{className:"symbol",
begin:/:=/,endsParent:!0},{className:"symbol",begin:/:/,endsParent:!0}],
keywords:a};return{name:"lean",keywords:a,
contains:[e.QUOTE_STRING_MODE,e.NUMBER_MODE,n,s,{className:"doctag",
begin:"/-[-!]",end:"-/"},t,{className:"meta",begin:"@\\[",end:"\\]"},{
className:"meta",begin:"^attribute",end:"$"},{begin:/\u27e8/}]}}))})()
;hljs.registerLanguage("lean",e)})();

View file

@ -20,43 +20,70 @@ inductive NotePart
| p : String → NotePart | p : String → NotePart
| name : Name → NotePart | name : Name → NotePart
def formalContent (name : Name) : MetaM String := do structure DeclInfo where
let line ← Name.lineNumber name line : Nat
let decl ← Name.getDeclString name fileName : Name
let fileName ← Name.fileName name name : Name
let webAddress : String ← Name.toGitHubLink fileName line declString : String
pure decl docString : String
def DeclInfo.ofName (n : Name) : MetaM DeclInfo := do
let line ← Name.lineNumber n
let fileName ← Name.fileName n
let declString ← Name.getDeclString n
let docString ← Name.getDocString n
pure {
line := line,
fileName := fileName,
name := n,
declString := declString,
docString := docString}
def NotePart.toYMLM : NotePart → MetaM String def DeclInfo.toYML (d : DeclInfo) : String :=
| NotePart.h1 s => pure s!" let declStringIndent := d.declString.replace "\n" "\n "
s!"
- type: name
name: {d.name}
line: {d.line}
fileName: {d.fileName}
docString: \"{d.docString}\"
declString: |
{declStringIndent}"
def NotePart.toYMLM : ((List String) × Nat × Nat) → NotePart → MetaM ((List String) × Nat × Nat)
| x, NotePart.h1 s =>
let newString := s!"
- type: h1 - type: h1
sectionNo: {x.2.1.succ}
content: \"{s}\"" content: \"{s}\""
| NotePart.h2 s => pure s!" return ⟨x.1 ++ [newString], ⟨Nat.succ x.2.1, 0⟩⟩
| x, NotePart.h2 s =>
let newString := s!"
- type: h2 - type: h2
sectionNo: \"{x.2.1}.{x.2.2.succ}\"
content: \"{s}\"" content: \"{s}\""
| NotePart.p s => pure s!" return ⟨x.1 ++ [newString], ⟨x.2.1, Nat.succ x.2.2⟩⟩
| x, NotePart.p s =>
let newString := s!"
- type: p - type: p
content: \"{s}\"" content: \"{s}\""
| NotePart.name n => do return ⟨x.1 ++ [newString], x.2⟩
| x, NotePart.name n => do
match (← RemarkInfo.IsRemark n) with match (← RemarkInfo.IsRemark n) with
| true => | true =>
let remarkInfo ← RemarkInfo.getRemarkInfo n let remarkInfo ← RemarkInfo.getRemarkInfo n
let content := remarkInfo.content let content := remarkInfo.content
let contentIndent := content.replace "\n" "\n " let contentIndent := content.replace "\n" "\n "
let shortName := remarkInfo.name.toString let shortName := remarkInfo.name.toString
return s!" let newString := s!"
- type: remark - type: remark
name: \"{shortName}\" name: \"{shortName}\"
content: | content: |
{contentIndent}" {contentIndent}"
return ⟨x.1 ++ [newString], x.2⟩
| false => | false =>
let content ← formalContent n let newString := (← DeclInfo.ofName n).toYML
let contentIndent := content.replace "\n" "\n " return ⟨x.1 ++ [newString], x.2⟩
return s!"
- type: name
content: |
{contentIndent}"
structure Note where structure Note where
title : String title : String
@ -66,23 +93,49 @@ structure Note where
parts : List NotePart parts : List NotePart
def Note.toYML : Note → MetaM String def Note.toYML : Note → MetaM String
| ⟨title, curators, parts⟩ => return s!" | ⟨title, curators, parts⟩ => do
let parts ← parts.foldlM NotePart.toYMLM ([], ⟨0, 0⟩)
return s!"
title: \"{title}\" title: \"{title}\"
curators: {curators} curators: {String.intercalate "," curators}
parts: parts:
{String.intercalate "\n" (← parts.mapM NotePart.toYMLM)}" {String.intercalate "\n" parts.1}"
def perturbationTheory : Note where def perturbationTheory : Note where
title := "Proof of Wick's theorem" title := "Proof of Wick's theorem"
curators := ["Joseph Tooby-Smith"] curators := ["Joseph Tooby-Smith"]
parts := [ parts := [
.h1 "Field statistics", .h1 "Introduction",
.name `FieldSpecification.wicks_theorem_context,
.p "In this note we walk through the important parts of the proof of Wick's theorem
for both fermions and bosons,
as it appears in HepLean. We start with some basic definitions.",
.h1 "Preliminary definitions",
.h2 "Field statistics",
.p "A quantum field can either be a bosonic or fermionic. This information is .p "A quantum field can either be a bosonic or fermionic. This information is
contained in the inductive type `FieldStatistic`. This is defined as follows:", contained in the inductive type `FieldStatistic`. This is defined as follows:",
.name `FieldStatistic, .name `FieldStatistic,
.h1 "Field specifications", .p "Field statistics form a commuative group isomorphic to ℤ₂, with
the bosonic element of `FieldStatistic` being the identity element.",
.p "Most of our use of field statistics will come by comparing two field statistics
and picking up a minus sign when they are both fermionic. This concept is
made precise using the notion of an exchange sign, defined as:",
.name `FieldStatistic.exchangeSign,
.p "We use the notation `𝓢(a,b)` as shorthand for the exchange sign of
`a` and `b`.",
.h2 "Field specifications",
.name `fieldSpecification_intro, .name `fieldSpecification_intro,
.name `FieldSpecification] .name `FieldSpecification,
.h2 "States",
.h2 "Time ordering",
.h2 "Creation and annihilation states",
.h2 "Normal ordering",
.h1 "Algebras",
.h2 "State free-algebra",
.h2 "CrAnState free-algebra",
.h2 "Proto operator algebra",
.h1 "Contractions"
]
unsafe def main (_ : List String) : IO UInt32 := do unsafe def main (_ : List String) : IO UInt32 := do
initSearchPath (← findSysroot) initSearchPath (← findSysroot)