pith. machine review for the scientific record. sign in
structure

Primitive

definition
show as:
view math explainer →
module
IndisputableMonolith.Masses.SectorPrimitive
domain
Masses
line
12 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Masses.SectorPrimitive on GitHub at line 12.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

   9namespace Masses
  10namespace SectorPrimitive
  11
  12structure Primitive where
  13  word : Ribbons.Word
  14  reduced : Ribbons.normalForm word = word
  15
  16@[simp] def deltaOf (gen : Ribbons.GenClass) (p : Primitive) : ℤ :=
  17  Ribbons.rungFrom gen p.word
  18
  19-- deltaOf is definitionally invariant (tautological; placeholder for rung-independence proof)
  20example (p : Primitive) (gen : Ribbons.GenClass) : deltaOf gen p = deltaOf gen p := rfl
  21
  22end SectorPrimitive
  23end Masses
  24end IndisputableMonolith