All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Exists to Charges to Fluxes Ten of mem lift Charge

FTheory.SU5.TenQuanta.exists_toCharges_toFluxesTen_of_mem_liftCharge

Project documentation

Given a finite set of charges c the TenQuanta which do not have exotics, duplicate charges or zero fluxes, which map down to c. This is defined to be as efficient as possible. -/ def liftCharge (c : Finset 𝓩) : Multiset (TenQuanta 𝓩) := /- The {(1, 0), (1, 0), (1, 0)} case. -/ /- The multisets of cardinality 3 containing 3 elements of c. -/ let...

Exact Lean statement

lemma exists_toCharges_toFluxesTen_of_mem_liftCharge (c : Finset 𝓩)
    {x : TenQuanta 𝓩} (h : x ∈ liftCharge c) :
    ∃ a : TenQuanta 𝓩, a.reduce = x ∧ a.toCharges.toFinset = c ∧
    (a.toFluxesTen = {⟨1, 0⟩, ⟨1, 0⟩, ⟨1, 0⟩}
    ∨ a.toFluxesTen = {⟨1, 1⟩, ⟨1, -1⟩, ⟨1, 0⟩})

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma exists_toCharges_toFluxesTen_of_mem_liftCharge (c : Finset 𝓩)    {x : TenQuanta 𝓩} (h : x  liftCharge c) :     a : TenQuanta 𝓩, a.reduce = x  a.toCharges.toFinset = c     (a.toFluxesTen = {1, 0, 1, 0, 1, 0}     a.toFluxesTen = {1, 1, 1, -1, 1, 0}) := by  have h' := h  rw [liftCharge, Multiset.mem_map] at h  obtain a, h, rfl := h  use a  simp only [Multiset.insert_eq_cons, Int.reduceNeg, true_and]  apply And.intro  · rw [ toCharge_toFinset_of_mem_liftCharge c h', reduce_toCharges]    simp  simp at h  rcases h with h | h  · obtain ⟨⟨s, h, rfl, h' := h    left    simp [toFluxesTen]    rw [h.2]    decide  · obtain ⟨⟨q1, q2, q3, h, rfl, h' := h    simp [toFluxesTen]
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/StringTheory/FTheory/SU5/Quanta/TenQuanta.lean:825-846

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