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

HasLocalComposition

definition
show as:
view math explainer →
module
IndisputableMonolith.Foundation.LedgerCanonicality
domain
Foundation
line
86 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Foundation.LedgerCanonicality on GitHub at line 86.

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

formal source

  83
  84See `IndisputableMonolith.Foundation.HierarchyDynamics` for the proof
  85that zero-parameter minimality forces (a,b) = (1,1) and hence φ. -/
  86class HasLocalComposition (L : ZeroParameterComparisonLedger)
  87    extends HasMultilevelComposition L where
  88  coeff_a : ℕ
  89  coeff_b : ℕ
  90  coeff_a_pos : 1 ≤ coeff_a
  91  coeff_b_pos : 1 ≤ coeff_b
  92  local_recurrence :
  93    levels 2 = (coeff_a : ℝ) * levels 1 + (coeff_b : ℝ) * levels 0
  94
  95/-! ## Note on Additive Composition
  96
  97The additive composition axiom classes (`HasAdditiveComposition`,
  98`HasDiscreteAdditiveComposition`) that previously appeared here have
  99been **removed**.  The canonical derivation now uses
 100`HierarchyRealization.RealizedHierarchy` + `PostingExtensivity`
 101to derive additive composition and integer coefficients from RS-native
 102principles (self-similar dynamics, J-cost extensivity, carrier
 103discreteness).  See `HierarchyDynamics.bridge_T5_T6_internal`. -/
 104
 105end LedgerCanonicality
 106end Foundation
 107end IndisputableMonolith