Encyclopedia Cosmology Cosmology Finite Cell Boundary Periodic Ring
ARTICLE 4 claims 1 theorem 3 models
Cosmology Finite Cell Boundary Periodic Ring
A periodic ring is a finite line of cells whose ends join, a boundary shape used to model repeating structures in cosmology.
The periodic ring
A periodic ring is a finite line of cells whose two ends are joined, so that the line wraps around into a circle. In the Recognition Science framework, it is one of several boundary shapes used to describe the edge of a finite region of space. The ring is defined by a single requirement: it must contain at least one cell. That is the entire content of the declaration called PeriodicRing in the framework's machine-checked library of formal theorems.
Think of a string of beads with the two ends fastened together. The beads are the cells, and the fastening is the wrap that makes the structure periodic: a signal moving along the line eventually returns to its starting point. The framework uses this shape, along with an open patch (a finite grid without wrap) and a bounded voxel (a finite 3D block without wrap), as building blocks for describing how a finite universe might be divided into discrete regions. These are engineering scaffolds, not physical claims.
The declaration itself is deliberately minimal. It establishes that a periodic ring exists for any positive natural number n, and it proves the trivial fact that n is positive. It does not assert that the universe is a ring, that space is discrete, or that any particular cell count is preferred. It does not even say what a cell is. The structure is a commitment about boundaries: when a finite region is modeled as a ring, the wrap is the boundary condition that makes the region periodic.
In Recognition Science, the framework models the cosmos as a finite collection of recognition events, and boundary shapes like the periodic ring are the scaffolding used to serialize and check those models in code. The Python scripts mentioned in the same file mirror these boundary tags exactly, but the declaration itself adds no new axioms and makes no cosmological prediction. It is a definitional choice about how to represent a periodic boundary in a finite setting.
The practical use is in the framework's cosmology scripts, where exact cells in one, two, and three dimensions carry these boundary tags. The periodic ring is the 1D case with wrap posting. What the declaration changes is simple: it gives a precise, machine-checked name to a boundary shape that the framework's models can rely on, without committing to any physical claim about the actual universe.
MODEL PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
/-- Periodic 1D ring: sites `Fin n` with wrap posting. -/
structure PeriodicRing (n : Nat) where
n_pos : 0 < n
MODEL PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
/-- Periodic 1D ring: sites `Fin n` with wrap posting. -/
structure PeriodicRing (n : Nat) where
n_pos : 0 < n
THEOREM periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
theorem periodic_ring_n_pos {n : Nat} (c : PeriodicRing n) : 0 < n := c.n_pos
MODEL PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
/-- Periodic 1D ring: sites `Fin n` with wrap posting. -/
structure PeriodicRing (n : Nat) where
n_pos : 0 < n
What this page does not claim
The universe is a periodic ring. Space is discrete in the physical sense. Any particular cell count is physically preferred. The declaration defines what a cell is.
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 is a cell in the Recognition Science framework?
- How do the 2D and 3D boundary shapes relate to the 1D ring?
- What role does the periodic ring play in the framework's cosmology scripts?
- Does the framework claim that physical space is actually discrete?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
/-- Periodic 1D ring: sites `Fin n` with wrap posting. -/ structure PeriodicRing (n : Nat) where n_pos : 0 < nA periodic ring is a finite line of cells whose two ends are joined, so that the line wraps around into a circle. PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.leanMODEL PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
/-- Periodic 1D ring: sites `Fin n` with wrap posting. -/ structure PeriodicRing (n : Nat) where n_pos : 0 < nThe ring is defined by a single requirement: it must contain at least one cell. PeriodicRing · 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 proves the trivial fact that n is positive. periodic_ring_n_pos · IndisputableMonolith/Cosmology/FiniteCellBoundary.leanMODEL PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean
/-- Periodic 1D ring: sites `Fin n` with wrap posting. -/ structure PeriodicRing (n : Nat) where n_pos : 0 < nThe declaration itself adds no new axioms and makes no cosmological prediction. PeriodicRing · IndisputableMonolith/Cosmology/FiniteCellBoundary.lean