Encyclopedia Foundation Foundation Three Substrate Validation Cert Lm Fraction Eq
ARTICLE 3 claims 3 theorems
Foundation Three Substrate Validation Cert Lm Fraction Eq
A single number, 7/8, anchors a claim about how often a language model's internal layers align with a proposed cost function.
The language model fraction
The declaration lm_fraction_eq in the Recognition Science library establishes a simple arithmetic fact: the fraction languageModelAlignmentFraction is defined to be, and therefore equals, 7/8. This is a definitional identity, a statement that the symbol for the fraction and the numeral 7/8 are the same thing. The proof is immediate, a reflexivity step in the machine-checked library of formal theorems. The declaration also records that 7/8 is greater than 1/2, a threshold that matters for the surrounding validation story.
The number 7/8 is not arbitrary. The library connects it to the expression (2³ - 1)/2³, which is 7 divided by 8. This framing points to a cube with 2³ = 8 possible states, of which 7 are counted as aligned. The same fraction appears for a photonic qubit code rate, where 7 of 8 possible states carry information. The shared value across these two substrates is part of a broader certificate that also includes a magnetized plasma experiment.
In Recognition Science, the ledger, a discrete record of recognition events, is governed by a cost function J. The certificate documents that J-cost outperforms cross-entropy in 96.4% of tested language model layers, that a photonic code achieved 7/8 rate with 0.02% leakage, and that a plasma experiment converged to a specific value. These are empirical results, not theorems. The certificate itself is tagged HYPOTHESIS, meaning it predicts these outcomes and names the experiments as falsifiers. The Lean-proved content is the underlying uniqueness of J-cost and the arithmetic facts about the fraction.
The declaration does not claim that 7/8 was measured in any experiment. It does not assert that the language model alignment actually occurred. It establishes only the formal relationship between the defined constant and the numeral. The empirical claim of 96.4% alignment lives in the docstring, not in the theorem. The theorem lm_fraction_eq is a piece of bookkeeping: it fixes the value of a named fraction so that later proofs and the certificate structure can refer to it unambiguously.
THEOREM lm_fraction_eq · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.lean
theorem lm_fraction_eq : languageModelAlignmentFraction = 7/8 := rfl
THEOREM lm_above_threshold · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.lean
theorem lm_above_threshold : languageModelAlignmentFraction > 1/2 := by
unfold languageModelAlignmentFraction; norm_num
THEOREM seven_eighths_from_F2_cube · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.lean
/-- 7/8 = (2³ - 1)/2³ (flip variants / total). -/
theorem seven_eighths_from_F2_cube :
languageModelAlignmentFraction = (2^3 - 1 : ℚ) / 2^3 := by
unfold languageModelAlignmentFraction; norm_num
What this page does not claim
The declaration does not claim that any language model experiment achieved 7/8 alignment. The declaration does not assert that the 96.4% empirical result is a proved theorem. The declaration does not establish that the photonic or plasma results are Lean-verified.
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/ThreeSubstrateValidationCert.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 experimental protocol measured the 96.4% layer alignment rate?
- How does the photonic qubit code rate of 7/8 relate to the language model fraction beyond sharing a value?
- What does the magnetized plasma experiment's convergence to x = 1.036 indicate about the fixed point at x = 1?
- How does the multi-channel J_n extension apply across the three substrates?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM lm_fraction_eq · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.lean
theorem lm_fraction_eq : languageModelAlignmentFraction = 7/8 := rflThe declaration lm_fraction_eq establishes that the fraction languageModelAlignmentFraction equals 7/8. lm_fraction_eq · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.leanTHEOREM lm_above_threshold · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.lean
theorem lm_above_threshold : languageModelAlignmentFraction > 1/2 := by unfold languageModelAlignmentFraction; norm_numThe declaration also records that 7/8 is greater than 1/2. lm_above_threshold · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.leanTHEOREM seven_eighths_from_F2_cube · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.lean
/-- 7/8 = (2³ - 1)/2³ (flip variants / total). -/ theorem seven_eighths_from_F2_cube : languageModelAlignmentFraction = (2^3 - 1 : ℚ) / 2^3 := by unfold languageModelAlignmentFraction; norm_numThe library connects the fraction to the expression (2³ - 1)/2³. seven_eighths_from_F2_cube · IndisputableMonolith/Foundation/ThreeSubstrateValidationCert.lean