All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Time Contract insert some of not lt

WickContraction.timeContract_insert_some_of_not_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 k < i, with the condition that φs[k] does not have time greater or equal to φ, then (φsΛ ↩Λ φ i (some k)).timeContract is equal to the product of - [anPart φ, φs[k]]ₛ - `φsΛ.timeCo...

Exact Lean statement

lemma timeContract_insert_some_of_not_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_not_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_not_timeOrderRel, timeContract_of_timeOrderRel]  simp only [Algebra.smul_mul_assoc, smul_smul]  congr  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, 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 := Std.Total.total (r := timeOrderRel) φs[k.1] φ  simp_all only [Fin.getElem_fin, Nat.succ_eq_add_one, not_lt, false_or]  exact ht
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QFT/PerturbationTheory/WickContraction/TimeContract.lean:143-193

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