All proofs
Project-declaredLean 4.32.0 Β· mathlib@81a5d257c8e4

Reduce num Chiral E of mem elems No Exotics

FTheory.SU5.TenQuanta.reduce_numChiralE_of_mem_elemsNoExotics

Project documentation

The reduce of TenQuanta is a new TenQuanta with all the fluxes corresponding to the same charge (i.e. representation) added together. -/ def reduce (x : TenQuanta 𝓩) : TenQuanta 𝓩 := x.toCharges.dedup.map fun q10 => (q10, ((x.filter (fun f => f.1 = q10)).map (fun y => y.2)).sum) /-! ### B.1. The reduced TenQuanta has no duplicate elements -/ lem...

Exact Lean statement

lemma reduce_numChiralE_of_mem_elemsNoExotics {F : TenQuanta 𝓩}
    (hx : F.toFluxesTen ∈ FluxesTen.elemsNoExotics) :
    F.reduce.toFluxesTen.numChiralE = 3

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma reduce_numChiralE_of_mem_elemsNoExotics {F : TenQuanta 𝓩}    (hx : F.toFluxesTen ∈ FluxesTen.elemsNoExotics) :    F.reduce.toFluxesTen.numChiralE = 3 := by  have hE : F.toFluxesTen.NoExotics := ((FluxesTen.noExotics_iff_mem_elemsNoExotics _).mpr hx).1  have numChiralE_eq_sum := F.toFluxesTen.numChiralE_eq_sum_sub_numAntiChiralE  rw [hE.2.2.2.2.1, hE.2.2.2.2.2, sub_zero, FluxesTen.chiralIndicesOfE] at numChiralE_eq_sum  have hmap : (F.reduce.toFluxesTen.map (fun f => f.M + f.N)).sum =      (F.toFluxesTen.map (fun f => f.M + f.N)).sum := by    have h := reduce_sum_eq_sum_toCharges F      (fun _ => (⟨⟨fun f => f.M + f.N, by simp⟩, fun a b => by simp; ring⟩ : Fluxes β†’+ β„€))    simpa [toFluxesTen, Multiset.map_map, Function.comp] using h  rw [FluxesTen.numChiralE, FluxesTen.chiralIndicesOfE, Multiset.filter_eq_self.mpr, hmap]  Β· exact numChiralE_eq_sum.symm  intro a ha  obtain ⟨f, hf, rfl⟩ := Multiset.mem_map.mp ha  replace hf := mem_powerset_sum_of_mem_reduce_toFluxesTen hf  clear ha hmap numChiralE_eq_sum hE  generalize F.toFluxesTen = G at *  revert f  revert G  decide
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/StringTheory/FTheory/SU5/Quanta/TenQuanta.lean:490-510

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