All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Anomaly Coefficient of reduce

FTheory.SU5.FiveQuanta.anomalyCoefficient_of_reduce

Project documentation

The anomaly coefficient of a FiveQuanta is given by the pair of integers: (∑ᵢ qᵢ Nᵢ, ∑ᵢ qᵢ² Nᵢ). The first components is for the mixed U(1)-MSSM, see equation (22) of arXiv:1401.5084. The second component is for the mixed U(1)Y-U(1)-U(1) gauge anomaly, see equation (23) of arXiv:1401.5084. -/ def anomalyCoefficient (F : FiveQuanta 𝓩) : 𝓩 × 𝓩 := ((F...

Exact Lean statement

lemma anomalyCoefficient_of_reduce (F : FiveQuanta 𝓩) [DecidableEq 𝓩] :
    F.reduce.anomalyCoefficient = F.anomalyCoefficient

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma anomalyCoefficient_of_reduce (F : FiveQuanta 𝓩) [DecidableEq 𝓩] :    F.reduce.anomalyCoefficient = F.anomalyCoefficient := by  have reduce_sum_N_mul_eq :  h : 𝓩  𝓩, (F.reduce.map fun x => (x.2.N : 𝓩) * h x.1).sum =      (F.map fun x => (x.2.N : 𝓩) * h x.1).sum := by    intro h    let f : 𝓩  Fluxes →+ 𝓩 := fun q5 =>      { toFun := fun x => x.N • h q5        map_zero' := by simp        map_add' := by          intros x y          simp [add_mul] }    simpa [f] using reduce_sum_eq_sum_toCharges F f  simp [anomalyCoefficient]  exact reduce_sum_N_mul_eq fun q => q, reduce_sum_N_mul_eq fun q => q * q
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/StringTheory/FTheory/SU5/Quanta/FiveQuanta.lean:939-952

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