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

Subset minimally Allows Term of allows Term

SuperSymmetry.SU5.ChargeSpectrum.subset_minimallyAllowsTerm_of_allowsTerm

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 subset_minimallyAllowsTerm_of_allowsTerm
    (hx : x.AllowsTerm T) : โˆƒ y โˆˆ powerset x, y.MinimallyAllowsTerm T

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma subset_minimallyAllowsTerm_of_allowsTerm    (hx : x.AllowsTerm T) : โˆƒ y โˆˆ powerset x, y.MinimallyAllowsTerm T := by  have hPresent : (x.powerset.filter (fun y => y.AllowsTerm T)) โ‰  โˆ… := by    rw [โ† @Finset.nonempty_iff_ne_empty]    use x    simp [hx]  obtain โŸจy, h1, h2โŸฉ := min_exists (x.powerset.filter (fun y => y.AllowsTerm T)) hPresent  use y  simp at h1  simp_all  rw [minimallyAllowsTerm_iff_powerset_filter_eq]  rw [โ† h2]  ext z  simp only [Finset.mem_filter, mem_powerset_iff_subset, Finset.mem_inter, and_congr_right_iff,    iff_and_self]  intro hzy hzpres  exact subset_trans hzy h1.1
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Particles/SuperSymmetry/SU5/ChargeSpectrum/MinimallyAllowsTerm/Basic.lean:199-215

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