All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Minimally Allows Term iff powerset count P eq one

SuperSymmetry.SU5.ChargeSpectrum.minimallyAllowsTerm_iff_powerset_countP_eq_one

Project documentation

A collection of charges x : Charges is said to minimally allow the potential term T if it allows T and no strict subset of it allows T. -/ def MinimallyAllowsTerm (x : ChargeSpectrum 𝓩) (T : PotentialTerm) : Prop := ∀ y ∈ x.powerset, y = x ↔ y.AllowsTerm T /-! ### A.1. Decidability of MinimallyAllowsTerm We show that MinimallyAllowsTerm is de...

Exact Lean statement

lemma minimallyAllowsTerm_iff_powerset_countP_eq_one :
    x.MinimallyAllowsTerm T ↔ x.powerset.val.countP (fun y => y.AllowsTerm T) = 1

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma minimallyAllowsTerm_iff_powerset_countP_eq_one :    x.MinimallyAllowsTerm T  x.powerset.val.countP (fun y => y.AllowsTerm T) = 1 := by  rw [minimallyAllowsTerm_iff_powerset_filter_eq]  constructor  · intro h    trans (Finset.filter (fun y => y.AllowsTerm T) x.powerset).card    · change _ = (Multiset.filter (fun y => y.AllowsTerm T) x.powerset.val).card      exact Multiset.countP_eq_card_filter (fun y => y.AllowsTerm T) x.powerset.val    · rw [h]      simp  · intro h    have h1 : (Multiset.filter (fun y => y.AllowsTerm T) x.powerset.val).card = 1 := by      rw [ h]      exact Eq.symm (Multiset.countP_eq_card_filter (fun y => y.AllowsTerm T) x.powerset.val)    rw [Multiset.card_eq_one] at h1    obtain a, ha := h1    have haMem : a  Multiset.filter (fun y => y.AllowsTerm T) x.powerset.val := by      simp [ha]    simp at haMem    have hxMem : x  Multiset.filter (fun y => y.AllowsTerm T) x.powerset.val := by      simpa using allowsTerm_mono haMem.1 haMem.2    rw [ha] at hxMem    simp at hxMem    subst hxMem    exact Finset.val_inj.mp ha
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/MinimallyAllowsTerm/Basic.lean:165-189

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