Encyclopedia Constants Constants Alpha Genesis Calibration Forcing Natural Display

ARTICLE 3 claims 3 theorems

Constants Alpha Genesis Calibration Forcing Natural Display

A machine-checked theorem shows that a certain mathematical description of a response to load needs no calibration constant: its shape and scale are forced by two structural facts.

The natural-units display

The recognition framework, a system that derives physical structure from the cost of maintaining a discrete record of events, models a response as a survival fraction under load. The declaration natural_display is a theorem in the framework's machine-checked library. It states that a previously calibrated response function, one that required a manually chosen unit or scale, is identical to a simpler object called a self-similar dressing, provided the input load is rescaled by the natural logarithm of the golden ratio.

In plain terms, the theorem says the calibration step was never an independent input. The older description needed a unit convention to set its scale. The newer description, a self-similar dressing, has no such field at all. Its behavior is fixed by two premises: that survival fractions multiply over independent loads, and that the survival fraction at one unit of load satisfies the balance equation g(1) = 1 / (1 + g(1)). The theorem proves that the calibrated response, when read in natural log units, is exactly the self-similar dressing. The calibration constant was just the coordinate system of the underlying object.

The theorem is not a claim about measured physics. It contains no reference to any measured value of the fine-structure constant, and it does not derive that constant from first principles. The forward alpha object is obtained from every self-similar dressing, but the seed of that object, the channel budget, remains an identification rather than a derived quantity. The theorem also does not prove that the balance equation has a unique solution in general; it proves that the step value is forced to the reciprocal of the golden ratio, and that the full response follows from that step together with the two structural premises.

What the theorem changes is the status of a residual worry. A skeptic could ask whether the framework's description of the alpha seed smuggled in a normalization choice. This theorem discharges that worry for the response function: its form, its rate, and its step are all forced by the same factorization and balance facts that force the recognition measure itself. The reader can now see that the calibration was a display choice, not a physical input.

THEOREM natural_display · IndisputableMonolith/Constants/AlphaGenesis/CalibrationForcing.lean
/-- **NATURAL-UNITS DISPLAY.** The differentiable (D1)+(D2) dressing of M1
is the same object read in natural log units: for every calibrated
response R and every self-similar dressing D,
`R.g(lnφ · t) = D.g(t)` on nonnegative loads. The calibration of M1 was
never an input; it was the natural-units coordinate of this object. -/
theorem natural_display (R : DressingResponse) (D : SelfSimilarDressing)
    (t : ℝ) (ht : 0 ≤ t) :
    R.g (Real.log Constants.phi * t) = D.g t := by
  rw [response_is_forced_measure R t, D.response_forced t ht]
THEOREM step_forced · IndisputableMonolith/Constants/AlphaGenesis/CalibrationForcing.lean
/-- **STEP FORCING.** The balance equation has exactly one admissible
root: `g(1) = φ⁻¹`. The reciprocal of the step satisfies the T6
self-similarity equation `r² = r + 1`, whose unique positive root is φ. -/
theorem step_forced : D.g 1 = 1 / Constants.phi := by
  set ρ := D.g 1 with hρdef
  have hpos : 0 < ρ := D.step_pos
  have hbal : ρ = 1 / (1 + ρ) := D.step_self_similar
  have hsum_pos : 0 < 1 + ρ := by linarith
  have hsum_ne : (1 + ρ) ≠ 0 := ne_of_gt hsum_pos
  -- ρ² + ρ − 1 = 0
  have hmul : ρ * (1 + ρ) = 1 := by
    calc ρ * (1 + ρ) = (1 / (1 + ρ)) * (1 + ρ) := by rw [← hbal]
    _ = 1 := by field_simp
  have hquad : ρ ^ 2 + ρ - 1 = 0 := by nlinarith [hmul]
  -- 1/φ satisfies the same quadratic
  have hφ : Constants.phi ^ 2 = Constants.phi + 1 := Constants.phi_sq_eq
  have hφpos : 0 < Constants.phi := Constants.phi_pos
  have hφne : Constants.phi ≠ 0 := ne_of_gt hφpos
  have hinv_pos : 0 < 1 / Constants.phi := by positivity
  have hinv_quad : (1 / Constants.phi) ^ 2 + (1 / Constants.phi) - 1 = 0 := by
    field_simp
    nlinarith [hφ]
  -- difference of the two quadratics factors: (ρ − 1/φ)(ρ + 1/φ + 1) = 0
  have hfactor : (ρ - 1 / Constants.phi) * (ρ + 1 / Constants.phi + 1) = 0 := by
    linear_combination hquad - hinv_quad
  have hsum2_pos : 0 < ρ + 1 / Constants.phi + 1 := by linarith
  rcases mul_eq_zero.mp hfactor with h | h
  · linarith [sub_eq_zero.mp h]
  · linarith
THEOREM response_forced · IndisputableMonolith/Constants/AlphaGenesis/CalibrationForcing.lean
/-- **CALIBRATION FORCING.** Every self-similar dressing is the forced
measure on nonnegative loads: `g(t) = φ⁻ᵗ`. No derivative condition, no
unit convention, no calibration input. -/
theorem response_forced : ∀ t : ℝ, 0 ≤ t →
    D.g t = Foundation.MeasureForcing.contWeight t := by
  intro t ht
  have hstep : D.g 1 = Foundation.MeasureForcing.rho := by
    rw [D.step_forced]
    rfl
  exact Foundation.MeasureForcing.continuum_weight_forced
    D.factorizes D.antitone hstep t ht

What this page does not claim

This theorem does not derive the fine-structure constant alpha from first principles. This theorem does not prove that the balance equation has a unique solution in general. This theorem does not contain any reference to a measured value of alpha.

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/Constants/AlphaGenesis/CalibrationForcing.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