All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Mul wick Term eq sum

WickContraction.mul_wickTerm_eq_sum

Plain-language statement

For a list φs = φ₀…φₙ of 𝓕.FieldOp, a Wick contraction φsΛ of φs, an element φ of 𝓕.FieldOp, and i ≤ φs.length such that all 𝓕.FieldOp in φ₀…φᵢ₋₁ have time strictly less than φ and φ has a time greater than or equal to all FieldOp in φ₀…φₙ, then φ * φsΛ.wickTerm = 𝓢(φ, φ₀…φᵢ₋₁) • ∑ k, (φsΛ ↩Λ φ i k).wickTerm where the sum i...

Exact Lean statement

lemma mul_wickTerm_eq_sum (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp) (i : Fin φs.length.succ)
    (φsΛ : WickContraction φs.length) (hlt : ∀ (k : Fin φs.length), timeOrderRel φ φs[k])
    (hn : ∀ (k : Fin φs.length), i.succAbove k < i → ¬timeOrderRel φs[k] φ) :
    ofFieldOp φ * φsΛ.wickTerm =
    𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ ⟨φs.get, (Finset.univ.filter (fun x => i.succAbove x < i))⟩) •
    ∑ (k : Option φsΛ.uncontracted), (φsΛ ↩Λ φ i k).wickTerm

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma mul_wickTerm_eq_sum (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp) (i : Fin φs.length.succ)    (φsΛ : WickContraction φs.length) (hlt :  (k : Fin φs.length), timeOrderRel φ φs[k])    (hn :  (k : Fin φs.length), i.succAbove k < i  ¬timeOrderRel φs[k] φ) :    ofFieldOp φ * φsΛ.wickTerm =    𝓢(𝓕 |>ₛ φ, 𝓕 |>φs.get, (Finset.univ.filter (fun x => i.succAbove x < i))) •    ∑ (k : Option φsΛ.uncontracted), (φsΛ ↩Λ φ i k).wickTerm := by  trans (φsΛ.sign • φsΛ.timeContract) * ((ofFieldOp φ) * 𝓝(ofFieldOpList [φsΛ]ᵘᶜ))  · have ht := Subalgebra.mem_center_iff.mp (Subalgebra.smul_mem (Subalgebra.center ℂ _)      (WickContraction.timeContract φsΛ).2 (φsΛ.sign))    rw [wickTerm]    rw [ mul_assoc, ht, mul_assoc]  rw [ofFieldOp_mul_normalOrder_ofFieldOpList_eq_sum, Finset.mul_sum,    uncontractedFieldOpEquiv_list_sum, Finset.smul_sum]  simp only [Nat.succ_eq_add_one]  congr 1  funext n  match n with  | none =>    rw [wickTerm_insert_none]    simp only [contractStateAtIndex, uncontractedFieldOpEquiv, Equiv.optionCongr_apply,      Equiv.coe_trans, Option.map_none, one_mul, Algebra.smul_mul_assoc, smul_smul]    congr 1    rw [ mul_assoc, exchangeSign_mul_self]    simp  | some n =>    rw [wickTerm_insert_some _ _ _ _ _      (fun k => hlt k) (fun k a => hn k a)]    simp only [uncontractedFieldOpEquiv, Equiv.optionCongr_apply, Equiv.coe_trans, Option.map_some,      Function.comp_apply, finCongr_apply, Algebra.smul_mul_assoc, smul_smul]    congr 1    · rw [ mul_assoc, exchangeSign_mul_self]      rw [one_mul]    · rw [ mul_assoc]      congr 1      have ht := (WickContraction.timeContract φsΛ).prop      rw [@Subalgebra.mem_center_iff] at ht      rw [ht]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QFT/PerturbationTheory/WickAlgebra/WickTerm.lean:195-231

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Adiabatic relation log

adiabatic_relation_log

Plain-language statement

Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Adiabatic relation Ua Ub Va Vb

adiabatic_relation_UaUbVaVb

Plain-language statement

Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record