Encyclopedia Foundation Foundation Neutral Sector Sector Label Is Free Knob

ARTICLE 4 claims 3 theorems 1 model

Foundation Neutral Sector Sector Label Is Free Knob

A zero-parameter ledger can only describe ratios of 1, because any other value would require an extra free knob to specify.

The neutral sector

A ledger, in this framework, is a discrete record of recognition events that assigns a positive real ratio to each state. The declaration sectorLabelIsFreeKnob formalizes a simple condition: a sector label is a free knob if it can take any real value. The machine-checked library of formal theorems then proves that in a zero-parameter ledger, observable ratios must lie in the neutral sector, meaning their conserved charge is 0.

The argument runs in three steps. First, an observable state must be repeatable and internally generated, requiring no external data to specify. Second, specifying a nonzero conserved-sector label Q ≠ 0 requires encoding a real number, which is an additional free parameter. Third, under the zero-parameter posture, the only admissible sector label is Q = 0, the additive identity. The theorem parameter_free_observables_are_neutral formalizes this conclusion: if no nonzero log-charge can be specified without a free knob, then every observable state has zero log-charge.

From neutrality, the framework derives a stronger result. Since log-charge is defined as the natural logarithm of the ratio, a zero log-charge forces the ratio itself to equal 1. The theorem neutral_ratio_eq_one proves this directly from the definition and the positivity of ratios. Consequently, parameter_free_ratios_are_unity establishes the bridge: parameter-free observable ratios in a zero-parameter ledger are all equal to 1.

This is a structural constraint, not a physical measurement. The framework models a ledger with no free parameters; the theorem shows such a ledger can only describe ratios of 1. What this does not claim is that all physical ratios in the actual universe are 1. The framework's own forcing chain derives nontrivial constants like the golden ratio and particle mass ladders from the cost function J, which is a separate theorem. The neutral sector result applies specifically to observable states that must be specifiable without any free parameters, a condition that the framework's later developments relax or reinterpret.

MODEL sectorLabelIsFreeKnob · IndisputableMonolith/Foundation/NeutralSector.lean
/-- A sector label is a free parameter if it can take any real value. -/
def sectorLabelIsFreeKnob {α : Type} (model : ObservableRatioModel α)
    (Q : ℝ) : Prop :=
  ∃ s : α, model.log_charge s = Q
THEOREM parameter_free_observables_are_neutral · IndisputableMonolith/Foundation/NeutralSector.lean
parameter_free_observables_are_neutral · IndisputableMonolith/Foundation/NeutralSector.lean:40
/-- **Theorem (Parameter-free observables are neutral)**:
If every observable state must be specifiable without free parameters,
and specifying a nonzero log-charge requires a free real knob, then
all observable states have zero log-charge. -/
theorem parameter_free_observables_are_neutral
    {α : Type}
    (model : ObservableRatioModel α)
    (h_no_knob : ∀ Q : ℝ, Q ≠ 0 → ¬ sectorLabelIsFreeKnob model Q)
    (s : α) :
    model.log_charge s = 0 := by
  by_contra h
  exact h_no_knob (model.log_charge s) h ⟨s, rfl⟩
THEOREM neutral_ratio_eq_one · IndisputableMonolith/Foundation/NeutralSector.lean
/-- Neutral log-charge forces the ratio to equal 1. -/
theorem neutral_ratio_eq_one
    {α : Type}
    (model : ObservableRatioModel α)
    (s : α)
    (h_neutral : model.log_charge s = 0) :
    model.ratio s = 1 := by
  have hlog : Real.log (model.ratio s) = 0 := by
    rw [← model.log_charge_eq s]; exact h_neutral
  exact Real.log_injOn_pos (Set.mem_Ioi.mpr (model.ratio_pos s))
    (Set.mem_Ioi.mpr one_pos) (by rw [hlog, Real.log_one])
THEOREM parameter_free_ratios_are_unity · IndisputableMonolith/Foundation/NeutralSector.lean
parameter_free_ratios_are_unity · IndisputableMonolith/Foundation/NeutralSector.lean:65
/-- **Bridge B4 core (unconditional)**: parameter-free observable
ratios in a zero-parameter ledger are all equal to 1. -/
theorem parameter_free_ratios_are_unity
    {α : Type}
    (model : ObservableRatioModel α)
    (h_no_knob : ∀ Q : ℝ, Q ≠ 0 → ¬ sectorLabelIsFreeKnob model Q)
    (s : α) :
    model.ratio s = 1 :=
  neutral_ratio_eq_one model s (parameter_free_observables_are_neutral model h_no_knob s)

What this page does not claim

This answer does not claim that all physical ratios in the actual universe are 1. This answer does not claim the neutral sector result applies to states that require free parameters. This answer does not claim the framework derives the fine-structure constant or any specific coupling constant.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Foundation/NeutralSector.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND