All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Sign Insert None eq filterset

WickContraction.signInsertNone_eq_filterset

Plain-language statement

The following signs for a grading compliant Wick contraction are equal: - The sign φsΛ.signInsertNone φ φs i which is given by the following: For each contracted pair {a1, a2} in φsΛ if a1 < a2 such that i is within the range a1 < i < a2 we pick up a sign equal to 𝓢(φ, φs[a2]). - The sign got by moving φ through φ₀…φᵢ₋₁ and only picking...

Exact Lean statement

lemma signInsertNone_eq_filterset (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp)
    (φsΛ : WickContraction φs.length) (i : Fin φs.length.succ) (hG : GradingCompliant φs φsΛ) :
    φsΛ.signInsertNone φ φs i = 𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ ⟨φs.get, Finset.univ.filter
    (fun x => (φsΛ.getDual? x).isSome ∧ i.succAbove x < i)⟩)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma signInsertNone_eq_filterset (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp)    (φsΛ : WickContraction φs.length) (i : Fin φs.length.succ) (hG : GradingCompliant φs φsΛ) :    φsΛ.signInsertNone φ φs i = 𝓢(𝓕 |>ₛ φ, 𝓕 |>φs.get, Finset.univ.filter    (fun x => (φsΛ.getDual? x).isSome  i.succAbove x < i)) := by  rw [ofFinset_eq_prod, signInsertNone_eq_prod_getDual?_Some, map_prod]  congr  funext a  simp only [Finset.mem_filter, Finset.mem_univ, true_and, Fin.getElem_fin]  split  · rename_i h    simp only [h, true_and]    split    · rfl    · simp only [map_one]  · rename_i h    simp [h]  · exact hG
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QFT/PerturbationTheory/WickContraction/Sign/InsertNone.lean:227-243

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