Encyclopedia Foundation Foundation Absolute Floor Closure Bare Distinguishability Of Absolute Floor
ARTICLE 3 claims 3 theorems
Foundation Absolute Floor Closure Bare Distinguishability Of Absolute Floor
The framework's foundational theorem reduces to a simple requirement: that the universe of discourse contains at least two distinct things.
The absolute floor
The declaration establishes a minimal requirement for the Recognition Science framework: its universe of discourse must contain at least two distinct elements. The theorem states that if a recognition ledger (a discrete record of events) can specify a non-trivial distinction, then there exist two distinct objects in the carrier type. This is the absolute floor: the precondition that a non-singleton universe exists in which any non-vacuous specification can be stated.
The theorem is deliberately modest. It proves that bare distinguishability, the existence of two distinct elements, is equivalent to non-trivial specifiability on an inhabited carrier. The meta-language already distinguishes propositions, so the remaining floor is not a physical postulate but a logical precondition. The minimal concrete carrier Bool realizes this floor: false and true are distinct, so the absolute floor is satisfied.
In Recognition Science, this closure certificate is theorem-backed and machine-checked. The framework's library of formal theorems shows that the absolute floor reduces to meta-language proposition distinguishability plus a non-singleton universe of discourse. The actual mathematical receipt is the equivalence between the absolute-floor witness and bare distinguishability; a self-equality between status strings adds no theorem.
What this does not claim is significant. The theorem does not assert that any particular physical universe exists, only that the logical precondition for specification holds. It does not derive the cost function J(x) = (x + 1/x)/2 - 1, nor does it force the golden ratio or three spatial dimensions. The absolute floor is the starting point, not the conclusion, of the forcing chain.
THEOREM bare_distinguishability_of_absolute_floor · IndisputableMonolith/Foundation/AbsoluteFloorClosure.lean
/-- The absolute-floor witness forces bare distinguishability. -/
theorem bare_distinguishability_of_absolute_floor
{K : Type*} [Nonempty K] (h : AbsoluteFloorWitness K) :
∃ x y : K, x ≠ y :=
(distinguishability_iff_nontrivial_specifiability).mpr h.nontrivial_specifiable
THEOREM absolute_floor_iff_bare_distinguishability · IndisputableMonolith/Foundation/AbsoluteFloorClosure.lean
/-- Bare distinguishability and the absolute-floor witness are equivalent on
an inhabited carrier. -/
theorem absolute_floor_iff_bare_distinguishability
{K : Type*} [Nonempty K] :
AbsoluteFloorWitness K ↔ ∃ x y : K, x ≠ y :=
⟨bare_distinguishability_of_absolute_floor, absolute_floor_of_bare_distinguishability⟩
THEOREM bool_absolute_floor · IndisputableMonolith/Foundation/AbsoluteFloorClosure.lean
/-- The minimal concrete carrier `Bool` realizes the absolute floor. -/
theorem bool_absolute_floor : AbsoluteFloorWitness Bool :=
absolute_floor_of_bare_distinguishability ⟨false, true, bool_distinguishable⟩
What this page does not claim
The theorem does not assert that any particular physical universe exists. The theorem does not derive the cost function J(x) = (x + 1/x)/2 - 1. The theorem does not force the golden ratio or three spatial dimensions.
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/AbsoluteFloorClosure.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 forcing chain derive from this absolute floor?
- How does the absolute floor relate to the cost function J(x)?
- What is the role of the meta-language in establishing the floor?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM bare_distinguishability_of_absolute_floor · IndisputableMonolith/Foundation/AbsoluteFloorClosure.lean
/-- The absolute-floor witness forces bare distinguishability. -/ theorem bare_distinguishability_of_absolute_floor {K : Type*} [Nonempty K] (h : AbsoluteFloorWitness K) : ∃ x y : K, x ≠ y := (distinguishability_iff_nontrivial_specifiability).mpr h.nontrivial_specifiableThe theorem states that if a recognition ledger can specify a non-trivial distinction, then there exist two distinct objects in the carrier type. bare_distinguishability_of_absolute_floor · IndisputableMonolith/Foundation/AbsoluteFloorClosure.leanTHEOREM absolute_floor_iff_bare_distinguishability · IndisputableMonolith/Foundation/AbsoluteFloorClosure.lean
/-- Bare distinguishability and the absolute-floor witness are equivalent on an inhabited carrier. -/ theorem absolute_floor_iff_bare_distinguishability {K : Type*} [Nonempty K] : AbsoluteFloorWitness K ↔ ∃ x y : K, x ≠ y := ⟨bare_distinguishability_of_absolute_floor, absolute_floor_of_bare_distinguishability⟩Bare distinguishability, the existence of two distinct elements, is equivalent to non-trivial specifiability on an inhabited carrier. absolute_floor_iff_bare_distinguishability · IndisputableMonolith/Foundation/AbsoluteFloorClosure.leanTHEOREM bool_absolute_floor · IndisputableMonolith/Foundation/AbsoluteFloorClosure.lean
/-- The minimal concrete carrier `Bool` realizes the absolute floor. -/ theorem bool_absolute_floor : AbsoluteFloorWitness Bool := absolute_floor_of_bare_distinguishability ⟨false, true, bool_distinguishable⟩The minimal concrete carrier Bool realizes the absolute floor: false and true are distinct. bool_absolute_floor · IndisputableMonolith/Foundation/AbsoluteFloorClosure.lean