Encyclopedia Mathematics Mathematics Logic Systems From Config Dim
ARTICLE 2 claims 1 theorem 1 model
Mathematics Logic Systems From Config Dim
A single number, the configuration dimension five, yields the five canonical logic systems used across mathematics.
Five systems from one dimension
Logic systems are the rule sets that tell you which arguments are valid. Classical mathematics usually names five of them: propositional, first-order, second-order, modal, and intuitionistic. Propositional logic works with whole statements joined by words like "and" and "or". First-order logic adds quantifiers such as "for all" and "there exists" over objects. Second-order logic lets those quantifiers range over sets of objects as well. Modal logic adds the notions of necessity and possibility. Intuitionistic logic drops the law of excluded middle, so a proof must construct a thing rather than merely rule out its absence. These five appear throughout philosophy, computer science, and mathematics itself.
The framework of Recognition Science, which studies how reality keeps a discrete record of recognition events, derives these five systems from a single number: the configuration dimension, set to five. Its machine-checked library of formal theorems defines a type called LogicSystem with exactly those five constructors, one for each system. A theorem in that library proves the count is five, by checking each case. The result is a certificate structure that carries the proof as a field, so any code using the certificate knows the count is correct without rechecking.
What this establishes in plain language is a match between a structural parameter and a familiar classification. The framework models the five standard logic systems as the complete set at dimension five, no more and no less. The proof is computational: it enumerates the five constructors and confirms nothing else exists. This is a definitional choice about how to organize the systems, not a claim that one system is better than another or that these five exhaust all possible logics ever invented.
The practical consequence is that a single integer, the configuration dimension, carries the same information as the traditional list of five systems. In the framework's account, the dimension is not an arbitrary label; it is the value that the forcing chain produces for the recognition cycle. The five systems then appear as the natural inhabitants of that dimension, ready to be used in further formal work.
THEOREM logicSystem_count · IndisputableMonolith/Mathematics/LogicSystemsFromConfigDim.lean
theorem logicSystem_count : Fintype.card LogicSystem = 5 := by decide
MODEL LogicSystem · IndisputableMonolith/Mathematics/LogicSystemsFromConfigDim.lean
inductive LogicSystem where
| propositional
| firstOrder
| secondOrder
| modal
| intuitionistic
deriving DecidableEq, Repr, BEq, Fintype
What this page does not claim
This does not claim the five systems are the only possible logics in all of mathematics. This does not claim the framework proves any theorem about the internal consistency of each logic system. This does not claim the configuration dimension is derived from logic itself.
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/LogicSystemsFromConfigDim.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 configuration dimension five arise from the forcing chain?
- What formal properties distinguish the five logic systems within the framework?
- Can other configuration dimensions yield different sets of logic systems?
- How do the five systems relate to the eight-tick recognition cycle?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM logicSystem_count · IndisputableMonolith/Mathematics/LogicSystemsFromConfigDim.lean
theorem logicSystem_count : Fintype.card LogicSystem = 5 := by decideA theorem in that library proves the count is five, by checking each case. logicSystem_count · IndisputableMonolith/Mathematics/LogicSystemsFromConfigDim.leanMODEL LogicSystem · IndisputableMonolith/Mathematics/LogicSystemsFromConfigDim.lean
inductive LogicSystem where | propositional | firstOrder | secondOrder | modal | intuitionistic deriving DecidableEq, Repr, BEq, FintypeThe framework models the five standard logic systems as the complete set at dimension five, no more and no less. LogicSystem · IndisputableMonolith/Mathematics/LogicSystemsFromConfigDim.lean