159 lines
6.7 KiB
Text
159 lines
6.7 KiB
Text
/-
|
||
Copyright (c) 2025 Joseph Tooby-Smith. All rights reserved.
|
||
Released under Apache 2.0 license as described in the file LICENSE.
|
||
Authors: Joseph Tooby-Smith
|
||
-/
|
||
import HepLean.PerturbationTheory.WickContraction.Sign
|
||
import HepLean.PerturbationTheory.Algebras.ProtoOperatorAlgebra.TimeContraction
|
||
/-!
|
||
|
||
# Time contractions
|
||
|
||
-/
|
||
|
||
open FieldSpecification
|
||
variable {𝓕 : FieldSpecification}
|
||
|
||
namespace WickContraction
|
||
variable {n : ℕ} (c : WickContraction n)
|
||
open HepLean.List
|
||
|
||
/-- Given a Wick contraction `c` associated with a list `φs`, the
|
||
product of all time-contractions of pairs of contracted elements in `φs`,
|
||
as a member of the center of `𝓞.A`. -/
|
||
noncomputable def timeContract (𝓞 : 𝓕.ProtoOperatorAlgebra) {φs : List 𝓕.States}
|
||
(c : WickContraction φs.length) :
|
||
Subalgebra.center ℂ 𝓞.A :=
|
||
∏ (a : c.1), ⟨𝓞.timeContract (φs.get (c.fstFieldOfContract a)) (φs.get (c.sndFieldOfContract a)),
|
||
𝓞.timeContract_mem_center _ _⟩
|
||
|
||
@[simp]
|
||
lemma timeContract_insertList_none (𝓞 : 𝓕.ProtoOperatorAlgebra) (φ : 𝓕.States) (φs : List 𝓕.States)
|
||
(c : WickContraction φs.length) (i : Fin φs.length.succ) :
|
||
(c.insertList φ φs i none).timeContract 𝓞 = c.timeContract 𝓞 := by
|
||
rw [timeContract, insertList_none_prod_contractions]
|
||
congr
|
||
ext a
|
||
simp
|
||
|
||
lemma timeConract_insertList_some (𝓞 : 𝓕.ProtoOperatorAlgebra) (φ : 𝓕.States) (φs : List 𝓕.States)
|
||
(c : WickContraction φs.length) (i : Fin φs.length.succ) (j : c.uncontracted) :
|
||
(c.insertList φ φs i (some j)).timeContract 𝓞 =
|
||
(if i < i.succAbove j then
|
||
⟨𝓞.timeContract φ φs[j.1], 𝓞.timeContract_mem_center _ _⟩
|
||
else ⟨𝓞.timeContract φs[j.1] φ, 𝓞.timeContract_mem_center _ _⟩) * c.timeContract 𝓞 := by
|
||
rw [timeContract, insertList_some_prod_contractions]
|
||
congr 1
|
||
· simp only [Nat.succ_eq_add_one, insertList_fstFieldOfContract_some_incl, finCongr_apply,
|
||
List.get_eq_getElem, insertList_sndFieldOfContract_some_incl, Fin.getElem_fin]
|
||
split
|
||
· simp
|
||
· simp
|
||
· congr
|
||
ext a
|
||
simp
|
||
|
||
open FieldStatistic
|
||
|
||
lemma timeConract_insertList_some_eq_mul_contractStateAtIndex_lt
|
||
(𝓞 : 𝓕.ProtoOperatorAlgebra) (φ : 𝓕.States) (φs : List 𝓕.States)
|
||
(c : WickContraction φs.length) (i : Fin φs.length.succ) (k : c.uncontracted)
|
||
(ht : 𝓕.timeOrderRel φ φs[k.1]) (hik : i < i.succAbove k) :
|
||
(c.insertList φ φs i (some k)).timeContract 𝓞 =
|
||
𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ ⟨φs.get, (c.uncontracted.filter (fun x => x < k))⟩)
|
||
• (𝓞.contractStateAtIndex φ (List.map φs.get c.uncontractedList)
|
||
((uncontractedStatesEquiv φs c) (some k)) * c.timeContract 𝓞) := by
|
||
rw [timeConract_insertList_some]
|
||
simp only [Nat.succ_eq_add_one, Fin.getElem_fin, ite_mul, instCommGroup.eq_1,
|
||
ProtoOperatorAlgebra.contractStateAtIndex, uncontractedStatesEquiv, Equiv.optionCongr_apply,
|
||
Equiv.coe_trans, Option.map_some', Function.comp_apply, finCongr_apply, Fin.coe_cast,
|
||
List.getElem_map, uncontractedList_getElem_uncontractedIndexEquiv_symm, List.get_eq_getElem,
|
||
Algebra.smul_mul_assoc]
|
||
· simp only [hik, ↓reduceIte, MulMemClass.coe_mul]
|
||
rw [𝓞.timeContract_of_timeOrderRel]
|
||
trans (1 : ℂ) • (𝓞.crAnF ((CrAnAlgebra.superCommute
|
||
(CrAnAlgebra.anPart (StateAlgebra.ofState φ))) (CrAnAlgebra.ofState φs[k.1])) *
|
||
↑(timeContract 𝓞 c))
|
||
· simp
|
||
simp only [smul_smul]
|
||
congr
|
||
have h1 : ofList 𝓕.statesStatistic (List.take (↑(c.uncontractedIndexEquiv.symm k))
|
||
(List.map φs.get c.uncontractedList))
|
||
= (𝓕 |>ₛ ⟨φs.get, (Finset.filter (fun x => x < k) c.uncontracted)⟩) := by
|
||
simp only [ofFinset]
|
||
congr
|
||
rw [← List.map_take]
|
||
congr
|
||
rw [take_uncontractedIndexEquiv_symm]
|
||
rw [filter_uncontractedList]
|
||
rw [h1]
|
||
simp only [exchangeSign_mul_self]
|
||
· exact ht
|
||
|
||
lemma timeConract_insertList_some_eq_mul_contractStateAtIndex_not_lt
|
||
(𝓞 : 𝓕.ProtoOperatorAlgebra) (φ : 𝓕.States) (φs : List 𝓕.States)
|
||
(c : WickContraction φs.length) (i : Fin φs.length.succ) (k : c.uncontracted)
|
||
(ht : ¬ 𝓕.timeOrderRel φs[k.1] φ) (hik : ¬ i < i.succAbove k) :
|
||
(c.insertList φ φs i (some k)).timeContract 𝓞 =
|
||
𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ ⟨φs.get, (c.uncontracted.filter (fun x => x ≤ k))⟩)
|
||
• (𝓞.contractStateAtIndex φ (List.map φs.get c.uncontractedList)
|
||
((uncontractedStatesEquiv φs c) (some k)) * c.timeContract 𝓞) := by
|
||
rw [timeConract_insertList_some]
|
||
simp only [Nat.succ_eq_add_one, Fin.getElem_fin, ite_mul, instCommGroup.eq_1,
|
||
ProtoOperatorAlgebra.contractStateAtIndex, uncontractedStatesEquiv, Equiv.optionCongr_apply,
|
||
Equiv.coe_trans, Option.map_some', Function.comp_apply, finCongr_apply, Fin.coe_cast,
|
||
List.getElem_map, uncontractedList_getElem_uncontractedIndexEquiv_symm, List.get_eq_getElem,
|
||
Algebra.smul_mul_assoc]
|
||
simp only [hik, ↓reduceIte, MulMemClass.coe_mul]
|
||
rw [𝓞.timeContract_of_not_timeOrderRel, 𝓞.timeContract_of_timeOrderRel]
|
||
simp only [instCommGroup.eq_1, Algebra.smul_mul_assoc, smul_smul]
|
||
congr
|
||
have h1 : ofList 𝓕.statesStatistic (List.take (↑(c.uncontractedIndexEquiv.symm k))
|
||
(List.map φs.get c.uncontractedList))
|
||
= (𝓕 |>ₛ ⟨φs.get, (Finset.filter (fun x => x < k) c.uncontracted)⟩) := by
|
||
simp only [ofFinset]
|
||
congr
|
||
rw [← List.map_take]
|
||
congr
|
||
rw [take_uncontractedIndexEquiv_symm, filter_uncontractedList]
|
||
rw [h1]
|
||
trans 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ ⟨φs.get, {k.1}⟩)
|
||
· rw [exchangeSign_symm, ofFinset_singleton]
|
||
simp
|
||
rw [← map_mul]
|
||
congr
|
||
rw [ofFinset_union]
|
||
congr
|
||
ext a
|
||
simp only [Finset.mem_singleton, Finset.mem_sdiff, Finset.mem_union, Finset.mem_filter,
|
||
Finset.mem_inter, not_and, not_lt, and_imp]
|
||
apply Iff.intro
|
||
· intro h
|
||
subst h
|
||
simp
|
||
· intro h
|
||
have h1 := h.1
|
||
rcases h1 with h1 | h1
|
||
· have h2' := h.2 h1.1 h1.2 h1.1
|
||
omega
|
||
· have h2' := h.2 h1.1 (by omega) h1.1
|
||
omega
|
||
have ht := IsTotal.total (r := timeOrderRel) φs[k.1] φ
|
||
simp_all only [Fin.getElem_fin, Nat.succ_eq_add_one, not_lt, false_or]
|
||
exact ht
|
||
|
||
lemma timeContract_of_not_gradingCompliant (𝓞 : 𝓕.ProtoOperatorAlgebra) (φs : List 𝓕.States)
|
||
(c : WickContraction φs.length) (h : ¬ GradingCompliant φs c) :
|
||
c.timeContract 𝓞 = 0 := by
|
||
rw [timeContract]
|
||
simp only [GradingCompliant, Fin.getElem_fin, Subtype.forall, not_forall] at h
|
||
obtain ⟨a, ha⟩ := h
|
||
obtain ⟨ha, ha2⟩ := ha
|
||
apply Finset.prod_eq_zero (i := ⟨a, ha⟩)
|
||
simp only [Finset.univ_eq_attach, Finset.mem_attach]
|
||
apply Subtype.eq
|
||
simp only [List.get_eq_getElem, ZeroMemClass.coe_zero]
|
||
rw [ProtoOperatorAlgebra.timeContract_zero_of_diff_grade]
|
||
simp [ha2]
|
||
|
||
end WickContraction
|