All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Wick Term insert none

WickContraction.wickTerm_insert_none

Plain-language statement

For a list φs = φ₀…φₙ of 𝓕.FieldOp, a Wick contraction φsΛ of φs, an element φ of 𝓕.FieldOp, and i ≤ φs.length, then (φsΛ ↩Λ φ i none).wickTerm is equal to 𝓢(φ, φ₀…φᵢ₋₁) φsΛ.sign • φsΛ.timeContract * 𝓝(φ :: [φsΛ]ᵘᶜ) The proof of this result relies on - normalOrder_uncontracted_none to rewrite normal orderings. - `timeContract_inser...

Exact Lean statement

lemma wickTerm_insert_none (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp)
    (i : Fin φs.length.succ) (φsΛ : WickContraction φs.length) :
    (φsΛ ↩Λ φ i none).wickTerm =
    𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ ⟨φs.get, (Finset.univ.filter (fun k => i.succAbove k < i))⟩)
    • (φsΛ.sign • φsΛ.timeContract * 𝓝(ofFieldOpList (φ :: [φsΛ]ᵘᶜ)))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma wickTerm_insert_none (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp)    (i : Fin φs.length.succ) (φsΛ : WickContraction φs.length) :    (φsΛ ↩Λ φ i none).wickTerm =    𝓢(𝓕 |>ₛ φ, 𝓕 |>φs.get, (Finset.univ.filter (fun k => i.succAbove k < i)))    • (φsΛ.sign • φsΛ.timeContract * 𝓝(ofFieldOpList (φ :: [φsΛ]ᵘᶜ))) := by  rw [wickTerm]  by_cases hg : GradingCompliant φs φsΛ  · rw [normalOrder_uncontracted_none, sign_insert_none _ _ _ _ hg]    simp only [Nat.succ_eq_add_one, timeContract_insert_none,      Algebra.mul_smul_comm, Algebra.smul_mul_assoc, smul_smul]    congr 1    rw [ mul_assoc]    congr 1    rw [ map_mul]    congr    rw [ofFinset_union]    congr    ext a    simp only [Finset.mem_sdiff, Finset.mem_union, Finset.mem_filter, Finset.mem_univ, true_and,      Finset.mem_inter, not_and, not_lt, and_imp]    apply Iff.intro    · intro ha      have ha1 := ha.1      rcases ha1 with ha1 | ha1      · exact ha1.2      · exact ha1.2    · intro ha      simp only [uncontracted, Finset.mem_filter, Finset.mem_univ, true_and, ha, and_true,        forall_const]      have hx : φsΛ.getDual? a = none  ¬ (φsΛ.getDual? a).isSome := by        simp      rw [hx]      simp only [Bool.not_eq_true, Bool.eq_false_or_eq_true_self, true_and]      intro h1 h2      simp_all  · simp only [Nat.succ_eq_add_one, timeContract_insert_none, Algebra.smul_mul_assoc]    rw [timeContract_of_not_gradingCompliant]    simp only [ZeroMemClass.coe_zero, zero_mul, smul_zero]    exact hg
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QFT/PerturbationTheory/WickAlgebra/WickTerm.lean:58-96

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