All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Insert And Contract Nat erase

WickContraction.insertAndContractNat_erase

Project documentation

Given a Wick contraction c for n, a position i : Fin n.succ and an optional uncontracted element j : Option (c.uncontracted) of c. The Wick contraction for n.succ formed by 'inserting' i into Fin n and contracting it optionally with j. -/ def insertAndContractNat (c : WickContraction n) (i : Fin n.succ) (j : Option (c.uncontracted)) : Wi...

Exact Lean statement

@[simp]
lemma insertAndContractNat_erase (c : WickContraction n) (i : Fin n.succ)
    (j : Option c.uncontracted) : erase (insertAndContractNat c i j) i = c

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
@[simp]lemma insertAndContractNat_erase (c : WickContraction n) (i : Fin n.succ)    (j : Option c.uncontracted) : erase (insertAndContractNat c i j) i = c := by  refine Subtype.ext (Finset.ext fun a => ?_)  simp only [erase, Nat.succ_eq_add_one, insertAndContractNat, Finset.mem_filter, Finset.mem_univ,    true_and]  match j with  | none =>    simp [Finset.mapEmbedding_apply, Finset.map_inj]  | some j =>    have hn : Finset.map i.succAboveEmb a  {i, i.succAbove j} := fun h => by      have hi : i  Finset.map i.succAboveEmb a := h ▸ Finset.mem_insert_self i _      simp [Fin.succAbove_ne] at hi    simp [Finset.mapEmbedding_apply, Finset.map_inj, hn]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/QFT/PerturbationTheory/WickContraction/InsertAndContractNat.lean:333-346

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