Encyclopedia Masses Masses Mass Genesis T10 Genesis Creation Terminal Additive Genesis Accepts Gap O
ARTICLE 4 claims 4 theorems
Masses Mass Genesis T10 Genesis Creation Terminal Additive Genesis Accepts Gap O
A theorem about creation rules shows why any additive law, however natural, must accept a doubled-scale decoy it was meant to reject.
The additive genesis wall
In the Recognition Science framework, a genesis-creation law is a rule that names which loads creation can deposit: a set Payable, a collection of real numbers that creation is allowed to produce. The framework's central question is whether such a law can anchor the absolute scale of particle masses, specifically the intended load phi^42 / 4, where phi is the golden ratio. The declaration additiveGenesis_accepts_gapOne_decoy establishes a hard obstruction: any genesis law whose payable set is closed under addition, meaning if it can deposit two loads it can deposit their sum, must accept the decoy load 4 * (phi^42 / 4) whenever it accepts the intended load. This is a proved theorem in the framework's machine-checked library of formal theorems, with no unproved assumptions.
The proof is one line of group theory. If creation can deposit a load L, and creations compose, then creation can deposit any positive integer multiple of L. The theorem additiveGenesis_rejects_no_nat_multiple states this directly: an additive genesis law that accepts the intended load cannot reject any positive integer multiple of it. The decoy load is exactly four times the intended load, so acceptance of the intended load forces acceptance of the decoy. The doubled-amplitude decoy quadruples the window energy, and four times a payable load is payable. No discreteness, lattice structure, quantum size, or creation dynamics escapes this; the argument needs nothing about the target's value at all.
The consequence is a terminal wall for an entire class of creation laws. The admission gate, which must accept the intended witness and reject the doubled-scale decoy, cannot be satisfied by any additive genesis law, for any target, in any units. The only escape is a genesis law whose payable set is not additive: creation with exclusion, paying only primitive indivisible lattice points. But that escape dies on the admission gate's acceptance clause instead, because rational-generated lattices exclude the intended load since phi is irrational, phi-generated lattices exclude it by a separate counting obstruction, and the lattice generated by the intended load itself is circular, since the independence clause forbids reading the selector's constant off the target it is meant to select.
In Recognition Science, this closes route A of the selector fork. Both route A (genesis creation) and route B (counting bridge) are now closed by theorem. The fork's only surviving option is route C: the absolute scale is a foundational model law with an explicit origin story, and a typed missing map names exactly what a future foundation must supply: a scale-anchoring structure outside the present ledger, since no additive or lattice creation condition inside it can anchor scale. The declaration does not claim that no genesis law of any kind can anchor scale; it claims only that additive laws cannot. It does not claim that the intended load phi^42 / 4 is rejected or accepted by any actual law; it claims only that if an additive law accepts it, the law must also accept the decoy. And it does not claim that the decoy is physically realized; the decoy is a logical construction that exposes the incompatibility.
THEOREM additiveGenesis_accepts_gapOne_decoy · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- Instantiation at the gap-one anchor load. The doubled-amplitude witness
has window energy `4 * (phi^42 / 4) = phi^42`
(`doubledAmplitude_windowEnergy_eq_four_mul`), so any additive genesis law
that accepts the anchor load accepts the decoy. -/
theorem additiveGenesis_accepts_gapOne_decoy {Payable : ℝ → Prop}
(hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y))
(hintended : Payable ((Constants.phi : ℝ) ^ 42 / 4)) :
Payable (4 * ((Constants.phi : ℝ) ^ 42 / 4)) :=
additiveGenesis_rejects_no_nat_multiple hadd hintended 4 (by norm_num)
THEOREM additivePayable_accepts_nat_mul · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- **An additive payable set accepts every positive integer multiple.**
If creation can deposit `L`, and creations compose, then creation can
deposit `n * L`. -/
theorem additivePayable_accepts_nat_mul {Payable : ℝ → Prop}
(hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y))
{L : ℝ} (hL : Payable L) :
∀ n : ℕ, 0 < n → Payable (n * L)
| 1, _ => by simpa using hL
| n + 2, _ => by
have hn := additivePayable_accepts_nat_mul hadd hL (n + 1) (Nat.succ_pos _)
have h := hadd hn hL
have heq : ((n + 2 : ℕ) : ℝ) * L = ((n + 1 : ℕ) : ℝ) * L + L := by
push_cast
ring
rw [heq]
exact h
THEOREM additiveGenesis_rejects_no_nat_multiple · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- **A1: the additive genesis gate is impossible.** A genesis law whose
payable loads are closed under addition cannot accept a load while rejecting
its quadruple. Since the doubled-amplitude decoy quadruples the window
energy, no additive genesis law passes the admission gate, for any target,
in any units. -/
theorem additiveGenesis_rejects_no_nat_multiple {Payable : ℝ → Prop}
(hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y))
{L : ℝ} (hintended : Payable L) (n : ℕ) (hn : 1 ≤ n) :
Payable (n * L) := by
rcases n with _ | n
· omega
· exact additivePayable_accepts_nat_mul hadd hintended (n + 1) (Nat.succ_pos _)
THEOREM additiveGenesis_gate_impossible · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- The gate incompatibility, stated against the admission gate itself:
acceptance of the intended witness and rejection of the doubled-scale decoy
cannot coexist in an additive genesis law. -/
theorem additiveGenesis_gate_impossible {Payable : ℝ → Prop}
(hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y))
{L : ℝ} (hintended : Payable L)
(hrejects : ¬ Payable (4 * L)) : False :=
hrejects (additiveGenesis_rejects_no_nat_multiple hadd hintended 4 (by norm_num))
What this page does not claim
No genesis law of any kind can anchor scale; only additive laws are closed off. The intended load phi^42 / 4 is actually accepted or rejected by any real law. The decoy load is physically realized; it is a logical construction exposing the incompatibility.
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/Masses/MassGenesis/T10GenesisCreationTerminal.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:
- What scale-anchoring structure outside the present ledger could supply the absolute scale that no additive or lattice creation condition can anchor?
- Does the exclusion-based genesis law with primitive lattice points fail on the admission gate for a reason independent of the counting obstruction?
- What empirical consequence would distinguish route C's foundational model law from a derived scale?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM additiveGenesis_accepts_gapOne_decoy · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- Instantiation at the gap-one anchor load. The doubled-amplitude witness has window energy `4 * (phi^42 / 4) = phi^42` (`doubledAmplitude_windowEnergy_eq_four_mul`), so any additive genesis law that accepts the anchor load accepts the decoy. -/ theorem additiveGenesis_accepts_gapOne_decoy {Payable : ℝ → Prop} (hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y)) (hintended : Payable ((Constants.phi : ℝ) ^ 42 / 4)) : Payable (4 * ((Constants.phi : ℝ) ^ 42 / 4)) := additiveGenesis_rejects_no_nat_multiple hadd hintended 4 (by norm_num)any additive genesis law that accepts the intended load must also accept the decoy load four times the intended load additiveGenesis_accepts_gapOne_decoy · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.leanTHEOREM additivePayable_accepts_nat_mul · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- **An additive payable set accepts every positive integer multiple.** If creation can deposit `L`, and creations compose, then creation can deposit `n * L`. -/ theorem additivePayable_accepts_nat_mul {Payable : ℝ → Prop} (hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y)) {L : ℝ} (hL : Payable L) : ∀ n : ℕ, 0 < n → Payable (n * L) | 1, _ => by simpa using hL | n + 2, _ => by have hn := additivePayable_accepts_nat_mul hadd hL (n + 1) (Nat.succ_pos _) have h := hadd hn hL have heq : ((n + 2 : ℕ) : ℝ) * L = ((n + 1 : ℕ) : ℝ) * L + L := by push_cast ring rw [heq] exact hif creation can deposit a load L, and creations compose, then creation can deposit any positive integer multiple of L additivePayable_accepts_nat_mul · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.leanTHEOREM additiveGenesis_rejects_no_nat_multiple · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- **A1: the additive genesis gate is impossible.** A genesis law whose payable loads are closed under addition cannot accept a load while rejecting its quadruple. Since the doubled-amplitude decoy quadruples the window energy, no additive genesis law passes the admission gate, for any target, in any units. -/ theorem additiveGenesis_rejects_no_nat_multiple {Payable : ℝ → Prop} (hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y)) {L : ℝ} (hintended : Payable L) (n : ℕ) (hn : 1 ≤ n) : Payable (n * L) := by rcases n with _ | n · omega · exact additivePayable_accepts_nat_mul hadd hintended (n + 1) (Nat.succ_pos _)an additive genesis law that accepts the intended load cannot reject any positive integer multiple of it additiveGenesis_rejects_no_nat_multiple · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.leanTHEOREM additiveGenesis_gate_impossible · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean
/-- The gate incompatibility, stated against the admission gate itself: acceptance of the intended witness and rejection of the doubled-scale decoy cannot coexist in an additive genesis law. -/ theorem additiveGenesis_gate_impossible {Payable : ℝ → Prop} (hadd : ∀ {x y : ℝ}, Payable x → Payable y → Payable (x + y)) {L : ℝ} (hintended : Payable L) (hrejects : ¬ Payable (4 * L)) : False := hrejects (additiveGenesis_rejects_no_nat_multiple hadd hintended 4 (by norm_num))acceptance of the intended witness and rejection of the doubled-scale decoy cannot coexist in an additive genesis law additiveGenesis_gate_impossible · IndisputableMonolith/Masses/MassGenesis/T10GenesisCreationTerminal.lean