Encyclopedia Foundation Foundation Primitive Recognition Calculus Cubical Chain Complex Two Face Cert

ARTICLE 2 claims 2 theorems

Foundation Primitive Recognition Calculus Cubical Chain Complex Two Face Cert

A two-face certificate is a formal object that records a square face in a higher-dimensional cube and proves that its boundary has no boundary.

The two-face certificate

In the Recognition Science framework, a ledger is a discrete record of events, and the framework's library is a machine-checked collection of formal theorems. The declaration TwoFaceCert establishes a precise, finite object: a certificate that names a square face inside an n-dimensional cube and carries a proof that the boundary of that face's boundary is zero. In plain terms, it certifies that a particular two-dimensional slice of a higher-dimensional structure has no gaps or dangling edges when you take its edges twice.

The formal statement is a chain complex condition. For any certificate F, the theorem twoFaceCert_boundary_squared_zero proves that applying the boundary operation twice yields the zero function. This is the local ∂² = 0 law, the fundamental algebraic identity that makes homology, the study of holes and cycles, well-defined. The certificate is finite: it consists of a base configuration, two indices i and j selecting the face, and an integer coefficient. It does not require an infinite structure or a full homology theory.

The framework also proves a stronger, additive version. The theorem finite_two_face_ledger_square_zero shows that any finite list of such certificates, summed together, still has zero total boundary-of-boundary. This is the finite-cubical-certificate headline: the local square-zero law is stable under finite collections of certified faces. It extends the single-face result to a finite ledger of faces, which is the strongest statement available without introducing a full all-dimensions homology API.

In Recognition Science, this declaration is part of the primitive recognition calculus, the foundational layer that models how distinctions are recorded. The certificate is a building block for later constructions that may describe spatial structure. It is not itself a claim about physical space, nor does it prove that three dimensions exist. It is a purely algebraic statement about the consistency of boundaries on a square face.

What the declaration does not claim is equally important. It does not prove the full homology of all dimensions, which remains an open target. It does not assert that any particular physical object exists; it is a statement about formal configurations. And it does not derive the fine-structure constant or any other physical constant. The certificate is a local, finite, algebraic fact, and the framework's larger physical claims depend on further theorems that are not part of this declaration.

THEOREM TwoFaceCert · twoFaceCert_boundary_squared_zero · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/CubicalChainComplex.lean
/-- A finite 2-face certificate inside an `n`-channel distinction cube. -/
structure TwoFaceCert (n : ℕ) where
  base : MultiDistinctionGeometry.Config n
  i : Fin n
  j : Fin n
  coeff : ℤ
/-- Every finite 2-face certificate has zero boundary-of-boundary. -/
theorem twoFaceCert_boundary_squared_zero {n : ℕ} (F : TwoFaceCert n) :
    F.boundaryBoundary = fun _ => 0 :=
  ambient_two_face_square_zero F.base F.i F.j F.coeff
THEOREM finite_two_face_ledger_square_zero · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/CubicalChainComplex.lean
/-- **Finite cubical certificate headline.** The local square-zero law is stable
under finite collections of certified 2-faces: every finite 2-face ledger has
zero total boundary-of-boundary. This is the all-finite-2-face strengthening
available from the current definitions without introducing a full homology API. -/
theorem finite_two_face_ledger_square_zero :
    ∀ (n : ℕ) (faces : List (TwoFaceCert n)),
      (fun w : MultiDistinctionGeometry.Config n =>
        faces.foldl (fun acc F => acc + F.boundaryBoundary w) 0) = fun _ => 0 :=
  fun n faces => twoFaceCert_list_boundary_squared_zero (n := n) faces

What this page does not claim

The declaration does not prove the full homology of all dimensions, which remains an open target. The declaration does not assert that any physical object exists; it is a statement about formal configurations. The declaration does not derive any physical constant such as the fine-structure constant.

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/PrimitiveRecognitionCalculus/CubicalChainComplex.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