Mul static Wick Term eq sum
WickContraction.mul_staticWickTerm_eq_sum
Plain-language statement
For a list φs = φ₀…φₙ of 𝓕.FieldOp, a Wick contraction φsΛ of φs, the following relation holds φ * φsΛ.staticWickTerm = ∑ k, (φsΛ ↩Λ φ 0 k).staticWickTerm where the sum is over all k in Option φsΛ.uncontracted, so k is either none or some k. The proof proceeds as follows: - ofFieldOp_mul_normalOrder_ofFieldOpList_eq_sum is used to e...
Exact Lean statement
lemma mul_staticWickTerm_eq_sum (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp)
(φsΛ : WickContraction φs.length) :
ofFieldOp φ * φsΛ.staticWickTerm =
∑ (k : Option φsΛ.uncontracted), (φsΛ ↩Λ φ 0 k).staticWickTermFormal artifact
Lean source
lemma mul_staticWickTerm_eq_sum (φ : 𝓕.FieldOp) (φs : List 𝓕.FieldOp) (φsΛ : WickContraction φs.length) : ofFieldOp φ * φsΛ.staticWickTerm = ∑ (k : Option φsΛ.uncontracted), (φsΛ ↩Λ φ 0 k).staticWickTerm := by trans (φsΛ.sign • φsΛ.staticContract * (ofFieldOp φ * normalOrder (ofFieldOpList [φsΛ]ᵘᶜ))) · have ht := Subalgebra.mem_center_iff.mp (Subalgebra.smul_mem (Subalgebra.center ℂ _) (φsΛ.staticContract).2 φsΛ.sign) conv_rhs => rw [← mul_assoc, ← ht] simp [mul_assoc, staticWickTerm] rw [ofFieldOp_mul_normalOrder_ofFieldOpList_eq_sum, Finset.mul_sum, uncontractedFieldOpEquiv_list_sum] refine Finset.sum_congr rfl (fun n _ => ?_) match n with | none => simp only [contractStateAtIndex, uncontractedFieldOpEquiv, Equiv.optionCongr_apply, Equiv.coe_trans, Option.map_none, one_mul, Algebra.smul_mul_assoc, Nat.succ_eq_add_one, Fin.val_zero, List.insertIdx_zero] rw [staticWickTerm_insert_zero_none] simp only [Algebra.smul_mul_assoc] rfl | some n => simp only [Algebra.smul_mul_assoc, Nat.succ_eq_add_one, Fin.val_zero, List.insertIdx_zero] rw [staticWickTerm_insert_zero_some]- Project
- Physlib
- License
- Apache-2.0
- Commit
- dd43e9e65791
- Source
- Physlib/QFT/PerturbationTheory/WickAlgebra/StaticWickTerm.lean:126-149
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
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.
Source project: Physlib
Person-level attribution pending.
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.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.