Encyclopedia Foundation Foundation Neutral Sector Parameter Free Observables Are Neutral

ARTICLE 3 claims 3 theorems

Foundation Neutral Sector Parameter Free Observables Are Neutral

In a ledger with no free parameters, every observable ratio must equal one, a theorem the framework's machine-checked library proves.

The zero-parameter rule

In the Recognition Science framework, a ledger (a discrete record of events) can be built with no free parameters, meaning no number is supplied from outside to tune its behavior. The framework's machine-checked library of formal theorems proves a consequence of that posture: any observable ratio, any proportion between two states that the ledger can generate on its own, must be exactly 1. The theorem is called parameter_free_observables_are_neutral, and it is not a definition or a modeling choice but a proved result.

The proof is short and runs on a plain idea. Each observable state carries a log-charge, the natural logarithm of its ratio. If a state had a nonzero log-charge, say Q, then specifying that state would require encoding the real number Q itself. That is a free parameter, a knob that must be turned from outside. Under the zero-parameter posture, no such knob may exist. The theorem formalizes the contrapositive: if no nonzero log-charge can be specified, then every observed log-charge is 0, and since the logarithm is injective on positive reals, a log-charge of 0 forces the ratio to be 1.

This result is the unconditional core of what the framework calls Bridge B4. It does not depend on the forcing chain that derives the cost function or the golden ratio; it stands on its own from the definition of a zero-parameter ledger. A companion theorem, parameter_free_ratios_are_unity, packages the same conclusion directly: parameter-free observable ratios are all equal to 1.

What the theorem does not claim is just as important as what it proves. It does not say that all ledgers have only the ratio 1; a ledger with free parameters can produce other ratios. It does not say that the number 1 is the only possible observable in any physical theory. It says only that within the framework's zero-parameter posture, the internal consistency of the ledger leaves no room for any other ratio. That is a narrow, sharp statement, and the framework's library keeps it that way.

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)
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])

What this page does not claim

The theorem does not apply to ledgers that admit free parameters. The theorem does not assert that all physical observables in every theory must equal 1. The theorem does not depend on the golden ratio or the cost-function forcing chain.

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