All proofs
Project-declaredLean 4.32.0 ยท mathlib@81a5d257c8e4

Of Potential Term mono

SuperSymmetry.SU5.ChargeSpectrum.ofPotentialTerm_mono

Project documentation

Given a charges x : Charges associated to the representations, and a potential term T, the charges associated with instances of that potential term. -/ def ofPotentialTerm (x : ChargeSpectrum ๐“ฉ) (T : PotentialTerm) : Multiset ๐“ฉ := let add : Multiset ๐“ฉ โ†’ Multiset ๐“ฉ โ†’ Multiset ๐“ฉ := fun a b => (a ร—หข b).map fun (x, y) => x + y (T.toFieldLabel.map fun...

Exact Lean statement

lemma ofPotentialTerm_mono {x y : ChargeSpectrum ๐“ฉ} (h : x โІ y) (T : PotentialTerm) :
    x.ofPotentialTerm T โІ y.ofPotentialTerm T

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma ofPotentialTerm_mono {x y : ChargeSpectrum ๐“ฉ} (h : x โІ y) (T : PotentialTerm) :    x.ofPotentialTerm T โІ y.ofPotentialTerm T := by  have h1 {S1 S2 T1 T2 : Multiset ๐“ฉ} (h1 : S1 โІ S2) (h2 : T1 โІ T2) :      (S1 ร—หข T1) โІ S2 ร—หข T2 :=    Multiset.subset_iff.mpr (fun x => by simpa only [Multiset.mem_product, and_imp] using      fun h1' h2' => โŸจh1 h1', h2 h2'โŸฉ)  rw [subset_def] at h  cases T  all_goals    simp [ofPotentialTerm, PotentialTerm.toFieldLabel]    repeat'      apply Multiset.map_subset_map <| Multiset.subset_iff.mpr <|        h1 _ (Finset.subset_def.mp (ofFieldLabel_mono h _))    simp
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/OfPotentialTerm.lean:88-101

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