Encyclopedia Cosmology Cosmology Finite Cell Boundary Periodic Ring N Pos
ARTICLE 3 claims 3 theorems
Cosmology Finite Cell Boundary Periodic Ring N Pos
A periodic ring of cells needs at least one cell, and the framework's machine-checked library records that fact as a formal theorem.
Finite ring boundaries
A periodic ring is a one-dimensional cycle of cells where the last cell connects back to the first, like positions on a clock face or beads on a closed necklace. The Recognition Science framework models such a ring as a finite structure with a single requirement: the number of cells must be greater than zero. The declaration periodic_ring_n_pos states this requirement as a formal theorem: given any periodic ring with n cells, n is positive. It is a simple fact, but it is a load-bearing one for the framework's engineering scaffold, because every other boundary shape in the same file, from open patches to bounded voxels, carries the same positivity condition.
The theorem is part of a machine-checked library of formal theorems, meaning a computer program has verified that the proof follows from the framework's axioms. The declaration itself does not define what a cell is, what recognition means, or how the ring behaves dynamically. It only establishes the arithmetical precondition that any such ring must have at least one site. The framework uses this as a certificate target: Python scripts that serialize periodic rings must respect the same positivity constraint, so the formal theorem and the implementation agree on the boundary condition.
What the declaration does not claim is more interesting than what it proves. It does not assert that the universe is a periodic ring, nor that physical space is one-dimensional. It does not derive the number of cells from any deeper principle, and it does not say anything about the geometry of the ring beyond its cardinality. The theorem is a guardrail, not a cosmology. It ensures that any code or proof that constructs a periodic ring starts from a well-formed object, and it gives the framework a precise statement to check against its serialization scripts.
For a reader, the practical consequence is that the framework's boundary conditions are not arbitrary: they are pinned to formal statements that a machine has checked. When the framework later builds on these cells, every construction can assume the positivity condition holds, because the library records it as a proved fact rather than a silent convention. That is the difference between a scaffold and a sketch: the scaffold has verified load paths.
THEOREM periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
theorem periodic_ring_n_pos {n : Nat} (c : PeriodicRing n) : 0 < n := c.n_pos
THEOREM periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
theorem periodic_ring_n_pos {n : Nat} (c : PeriodicRing n) : 0 < n := c.n_pos
THEOREM periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
theorem periodic_ring_n_pos {n : Nat} (c : PeriodicRing n) : 0 < n := c.n_pos
What this page does not claim
The theorem does not assert that physical space is a one-dimensional periodic ring. The declaration does not derive the number of cells from any deeper principle. The theorem says nothing about the geometry or dynamics of the ring beyond its cardinality.
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/Cosmology/FiniteCellBoundary.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 does the framework define a recognition cell to be?
- How does the framework serialize periodic rings into Python scripts?
- What boundary conditions apply to higher-dimensional cell structures?
- What role do finite cell boundaries play in the framework's cosmological model?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
theorem periodic_ring_n_pos {n : Nat} (c : PeriodicRing n) : 0 < n := c.n_posThe declaration periodic_ring_n_pos states this requirement as a formal theorem: given any periodic ring with n cells, n is positive. periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.leanTHEOREM periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
theorem periodic_ring_n_pos {n : Nat} (c : PeriodicRing n) : 0 < n := c.n_posThe theorem is part of a machine-checked library of formal theorems, meaning a computer program has verified that the proof follows from the framework's axioms. periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.leanTHEOREM periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
theorem periodic_ring_n_pos {n : Nat} (c : PeriodicRing n) : 0 < n := c.n_posIt only establishes the arithmetical precondition that any such ring must have at least one site. periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean