All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Time Contract insert some of lt

WickContraction.timeContract_insert_some_of_lt

Plain-language statement

For a list φs = φ₀…φₙ of 𝓕.FieldOp, a Wick contraction φsΛ of φs, an element φ of 𝓕.FieldOp, a i ≤ φs.length and a k in φsΛ.uncontracted such that i ≤ k, with the condition that φ has greater or equal time to φs[k], then (φsΛ ↩Λ φ i (some k)).timeContract is equal to the product of - [anPart φ, φs[k]]ₛ - φsΛ.timeContract -...

Exact Lean statement

lemma timeContract_insert_some_of_lt
    (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp)
    (φsΛ : WickContraction φs.length) (i : Fin φs.length.succ) (k : φsΛ.uncontracted)
    (ht : 𝓕.timeOrderRel φ φs[k.1]) (hik : i < i.succAbove k) :
    (φsΛ ↩Λ φ i (some k)).timeContract =
    𝓢(𝓕 |>ₛ φ, 𝓕 |>ₛ ⟨φs.get, (φsΛ.uncontracted.filter (fun x => x < k))⟩)
    • (contractStateAtIndex φ [φsΛ]ᵘᶜ ((uncontractedFieldOpEquiv φs φsΛ) (some k)) *
      φsΛ.timeContract)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma timeContract_insert_some_of_lt    (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp)    (φsΛ : WickContraction φs.length) (i : Fin φs.length.succ) (k : φsΛ.uncontracted)    (ht : 𝓕.timeOrderRel φ φs[k.1]) (hik : i < i.succAbove k) :    (φsΛ ↩Λ φ i (some k)).timeContract =    𝓢(𝓕 |>ₛ φ, 𝓕 |>φs.get, (φsΛ.uncontracted.filter (fun x => x < k)))    • (contractStateAtIndex φ [φsΛ]ᵘᶜ ((uncontractedFieldOpEquiv φs φsΛ) (some k)) *      φsΛ.timeContract) := by  rw [timeContract_insertAndContract_some]  simp only [Nat.succ_eq_add_one, Fin.getElem_fin, ite_mul,    contractStateAtIndex, uncontractedFieldOpEquiv, Equiv.optionCongr_apply,    Equiv.coe_trans, Option.map_some, Function.comp_apply, finCongr_apply, Fin.val_cast,    List.getElem_map, uncontractedList_getElem_uncontractedIndexEquiv_symm, List.get_eq_getElem,    Algebra.smul_mul_assoc, uncontractedListGet]  · simp only [hik, ↓reduceIte, MulMemClass.coe_mul]    rw [timeContract_of_timeOrderRel]    trans (1 : ℂ) • ((superCommute (anPart φ)) (ofFieldOp φs[k.1]) * ↑φsΛ.timeContract)    · simp    simp only [smul_smul]    congr 1    have h1 : ofList 𝓕.fieldOpStatistic (List.take (↑(φsΛ.uncontractedIndexEquiv.symm k))        (List.map φs.get φsΛ.uncontractedList))        = (𝓕 |>φs.get, (Finset.filter (fun x => x < k) φsΛ.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
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QFT/PerturbationTheory/WickContraction/TimeContract.lean:98-129

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