Encyclopedia Constants Constants Alpha Genesis Resummation Forcing Additive Map Not Factorizing

ARTICLE 3 claims 3 theorems

Constants Alpha Genesis Resummation Forcing Additive Map Not Factorizing

A simple linear rule for combining independent losses fails a basic consistency test, and that failure carries weight in the Recognition Science framework.

The additive map's failure

An additive map is a function that treats independent inputs by simple addition: the combined effect of two separate loads is their sum. The map in question, written ε ↦ 1 − ε, subtracts each load from one. It is the first-order approximation to exponential decay, and it appears in many physical settings as a convenient linearization. The Recognition Science framework asks whether such a map could be a genuine law of combination for independent effects, not merely an approximation.

The answer is no, and the reason is a single counterexample. If the map were a true law, then applying it to two independent loads of size 1 should give the same result whether you combine them first and then apply the map, or apply the map to each and multiply the results. The first path gives 1 − (1 + 1) = −1. The second path gives (1 − 1) × (1 − 1) = 0. These disagree, so the additive map fails the factorization law outright. This is the content of the machine-checked theorem additive_map_not_factorizing: no function of the form ε ↦ 1 − ε can satisfy the requirement that independent loads multiply their survival fractions.

The framework's interest in this failure is specific. In Recognition Science, the fraction of a coupling budget that survives a gap load is modeled as a dressing response, a survival fraction that must factorize over independent loads. The framework proves that any such factorizing response with unit linear response at zero load is exactly the exponential ε ↦ exp(−ε). The additive map is therefore not a structural alternative to the exponential; it is only its first-order truncation. The theorem no_additive_response states this directly: no dressing response can be the additive display.

What the declaration does not claim is equally important. It does not say that additive approximations are useless; they remain valid for small loads where the exponential and its linearization nearly coincide. It does not say that the exponential is the only function satisfying factorization, only the unique one with the unit-response calibration. And it does not, by itself, derive the fine-structure constant. The theorem is a negative result about a candidate law, not a positive derivation of a physical constant.

THEOREM additive_map_not_factorizing · IndisputableMonolith/Constants/AlphaGenesis/ResummationForcing.lean
/-- The additive map fails the factorization law outright (independent of any
response structure). -/
theorem additive_map_not_factorizing :
    ¬ (∀ x y : ℝ, (1 - (x + y)) = (1 - x) * (1 - y)) := by
  intro h
  have h11 := h 1 1
  norm_num at h11
THEOREM response_forced · IndisputableMonolith/Constants/AlphaGenesis/ResummationForcing.lean
/-- **RESUMMATION FORCING.** Any factorizing dressing response with unit
linear response is exactly the exponential: `g(ε) = exp(−ε)`. There is no
resummation freedom. -/
theorem response_forced : ∀ ε : ℝ, R.g ε = Real.exp (-ε) := by
  -- h(x) = g(x)·exp(x) has zero derivative everywhere, hence is constant 1.
  have hd : ∀ x : ℝ, HasDerivAt (fun y : ℝ => R.g y * Real.exp y) 0 x := by
    intro x
    have hmul := (R.hasDerivAt_neg_self x).mul (Real.hasDerivAt_exp x)
    convert hmul using 1
    ring
  have hdiff : Differentiable ℝ (fun y : ℝ => R.g y * Real.exp y) :=
    fun x => (hd x).differentiableAt
  have hderiv : ∀ x : ℝ, deriv (fun y : ℝ => R.g y * Real.exp y) x = 0 :=
    fun x => (hd x).deriv
  have hconst : ∀ x : ℝ, R.g x * Real.exp x = R.g 0 * Real.exp 0 := by
    intro x
    exact is_const_of_deriv_eq_zero hdiff hderiv x 0
  intro ε
  have hε : R.g ε * Real.exp ε = 1 := by
    have hx := hconst ε
    simpa [R.g_zero] using hx
  have hexp : Real.exp ε ≠ 0 := (Real.exp_pos ε).ne'
  have hgε : R.g ε = (Real.exp ε)⁻¹ := by
    have h2 := congrArg (· * (Real.exp ε)⁻¹) hε
    simpa [mul_assoc, mul_inv_cancel₀ hexp] using h2
  rw [hgε, ← Real.exp_neg]
THEOREM no_additive_response · IndisputableMonolith/Constants/AlphaGenesis/ResummationForcing.lean
/-- **ADDITIVE FORM EXCLUDED.** No dressing response is the additive display
`ε ↦ 1 − ε`: it fails factorization (witness ε₁ = ε₂ = 1). Form (A) is a
truncation of form (E), not a structural alternative. -/
theorem no_additive_response : R.g ≠ fun ε => 1 - ε := by
  intro hcontra
  have h := R.factorizes 1 1
  rw [hcontra] at h
  norm_num at h

What this page does not claim

The additive map is useless as an approximation for small loads. The exponential is the only function satisfying factorization without the unit-response calibration. The fine-structure constant is derived by this theorem alone.

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/ResummationForcing.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