Encyclopedia Foundation Foundation Neutral Sector Observable Ratio Model

ARTICLE 3 claims 2 theorems 1 model

Foundation Neutral Sector Observable Ratio Model

A simple bookkeeping rule about ratios: if a system must describe itself without external numbers, every observable ratio collapses to 1.

The neutral sector

An observable ratio is a measurement that compares two quantities and reports their quotient as a positive real number. In physics and mathematics, ratios appear constantly: a slope, a proportion, a scale factor. The declaration ObservableRatioModel formalizes the simplest possible version of this idea. It assigns to each state of a system a positive real ratio, and it records the logarithm of that ratio as a separate number called the log-charge. The logarithm turns multiplication into addition, so log-charges add when ratios multiply, a convenience that makes the bookkeeping linear.

The framework's question is what happens when a ledger, a discrete record of events, must be entirely self-contained. Suppose a system is allowed no free parameters, no external constants fed in from outside to tune its behavior. The declaration then proves a sharp result: any observable state that must be specifiable without such free parameters has log-charge zero, and therefore its ratio equals exactly 1. The argument is short. A nonzero log-charge is a real number, and specifying that real number would require encoding an extra piece of data, a free knob. Under a zero-parameter posture, the only admissible label is the additive identity, zero. The theorem parameter_free_ratios_are_unity states the conclusion directly: parameter-free observable ratios in a zero-parameter ledger are all equal to 1.

The result is a constraint, not a discovery of variety. It does not say that ratios cannot differ, only that a system which must generate its own description without external input cannot single out any ratio other than 1 as observable. The proof relies on the fact that the real logarithm is injective on positive numbers: if two positive numbers have the same logarithm, they are equal. Since a zero log-charge is the logarithm of 1, the ratio must be 1. This is a theorem in the machine-checked library of formal theorems, verified by a computer from the defining axioms of the structure.

What the declaration does not claim is just as important as what it proves. It does not claim that all ratios in the universe equal 1; it claims only that parameter-free observable ratios do. It does not derive the value of any specific physical constant, such as the fine-structure constant or the mass of the electron. It establishes a logical consequence of a definitional choice, not an empirical law. The practical consequence is a filter: if a theory wants to explain a ratio other than 1 as fundamental, it must either introduce a free parameter or explain why that ratio is not an observable state of a zero-parameter ledger. The theorem tells the theorist where the burden of explanation lies.

MODEL ObservableRatioModel · IndisputableMonolith/Foundation/NeutralSector.lean
/-- An observable ratio model on a type `α` assigns a positive real
ratio to each state and records the log-charge of that ratio. -/
structure ObservableRatioModel (α : Type) where
  ratio : α → ℝ
  ratio_pos : ∀ s, 0 < ratio s
  log_charge : α → ℝ
  log_charge_eq : ∀ s, log_charge s = Real.log (ratio 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 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

The declaration does not claim that all ratios in the universe equal 1. It does not derive the value of any specific physical constant such as the fine-structure constant. It does not claim that a nonzero ratio is impossible, only that it requires a free parameter to specify.

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