Encyclopedia Mathematics Mathematics Algebraic Structures From Config Dim Algebraic Structures Cert
ARTICLE 2 claims 2 theorems
Mathematics Algebraic Structures From Config Dim Algebraic Structures Cert
A machine-checked certificate that the five classical algebraic structures, group, ring, field, module, and vector space, are exactly five in number.
The certification
In mathematics, a group, ring, field, module, and vector space form a ladder of increasingly rich structures. A group has one operation with inverses; a ring adds a second operation; a field makes both operations behave like arithmetic; a module lets a ring act on an abelian group; and a vector space is a module over a field. Each step adds operations or axioms to the previous one. This is the classical hierarchy a student meets in abstract algebra, and it has five rungs.
The Recognition Science framework's machine-checked library of formal theorems contains a small certificate named AlgebraicStructuresCert. The certificate proves, by direct computation, that the collection of these five structures has cardinality exactly five. The proof is a finite case check: the library defines an inductive type with five constructors, one for each structure, and then verifies that the number of elements is five. The certificate is a compact witness that the formal definition of the hierarchy is consistent and complete, with no missing or duplicate rungs.
In Recognition Science, this certificate connects to a deeper claim: the framework derives that the dimension of a recognition space, called configDim, is five. The five algebraic structures are then presented as the canonical structures ordered by increasing richness at that dimension. The certificate itself, however, does not prove that configDim is five, nor that these are the only possible algebraic structures in mathematics. It only certifies that the library's own definition of the five-structure hierarchy is internally sound.
The certificate is a small but load-bearing piece of the framework's foundation. It demonstrates that the formal library can encode a standard piece of mathematics and verify it without error. It also provides a concrete example of how the framework's proofs are audited: the certificate carries no unproven assumptions and no axioms beyond the ambient type theory. For a reader, the practical upshot is that the framework's claim about five structures is not a hand-waving analogy but a checked fact about its own formal system.
THEOREM algebraicStructure_count · IndisputableMonolith/Mathematics/AlgebraicStructuresFromConfigDim.lean
theorem algebraicStructure_count :
Fintype.card AlgebraicStructure = 5 := by decide
THEOREM AlgebraicStructuresCert · IndisputableMonolith/Mathematics/AlgebraicStructuresFromConfigDim.lean
structure AlgebraicStructuresCert where
five_structures : Fintype.card AlgebraicStructure = 5
What this page does not claim
The certificate does not prove that configDim is five. The certificate does not claim these are the only possible algebraic structures in mathematics. The certificate does not establish the physical significance of the five structures.
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/Mathematics/AlgebraicStructuresFromConfigDim.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:
- How does the framework derive that configDim is five?
- What other algebraic structures exist beyond this five-rung ladder?
- How does the certificate relate to the framework's derivation of three spatial dimensions?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM algebraicStructure_count · IndisputableMonolith/Mathematics/AlgebraicStructuresFromConfigDim.lean
theorem algebraicStructure_count : Fintype.card AlgebraicStructure = 5 := by decideThe certificate proves, by direct computation, that the collection of these five structures has cardinality exactly five. algebraicStructure_count · IndisputableMonolith/Mathematics/AlgebraicStructuresFromConfigDim.leanTHEOREM AlgebraicStructuresCert · IndisputableMonolith/Mathematics/AlgebraicStructuresFromConfigDim.lean
structure AlgebraicStructuresCert where five_structures : Fintype.card AlgebraicStructure = 5The certificate is a compact witness that the formal definition of the hierarchy is consistent and complete, with no missing or duplicate rungs. AlgebraicStructuresCert · IndisputableMonolith/Mathematics/AlgebraicStructuresFromConfigDim.lean