Encyclopedia Foundation Foundation Public Spine Not Detects Nontrivial Linking Zero
ARTICLE 3 claims 3 theorems
Foundation Public Spine Not Detects Nontrivial Linking Zero
In three dimensions a circle can be knotted, but in zero dimensions the idea of linking collapses: the framework's machine-checked library proves that the zero-dimensional sphere cannot detect nontrivial linking.
The zero-dimensional case
Linking is a topological property: two closed curves in space are linked if they cannot be pulled apart without cutting. The Recognition Science framework formalizes this through a predicate, DetectsNontrivialLinking, which asks whether a sphere of a given dimension can host an embedded circle whose complement has nontrivial homology, a measure of holes. The declaration not_detectsNontrivialLinking_zero is a machine-checked theorem stating that this predicate is false for dimension zero: the zero-dimensional sphere, two isolated points, cannot detect nontrivial linking.
The proof is immediate from the definition. The linking complement homology is computed for a circle embedded in a zero-dimensional sphere, and it vanishes: there are no holes to detect. This is the first rung in a ladder of dimension-by-dimension results. The framework's library proves the same for dimension one, and proves the positive case for dimension three, where a circle can be knotted in the complement of an unknot. The zero-dimensional case is the base of that ladder, the case where the notion of linking has no room to exist.
What the theorem does not claim is just as important. It does not say that zero-dimensional space is uninteresting, only that it cannot detect linking. It does not claim that the framework's physical theory of three-dimensional space rests on this single fact; the bridge from linking to the physical claim that space is three-dimensional is a separate theorem, forces_D3, which is proved in the library. The zero-dimensional case is a lemma in that larger argument, not the argument itself.
The practical consequence is a clean boundary on the framework's dimensional claims. The framework proves that linking detection forces dimension three, and it proves that dimensions zero and one do not detect linking. This leaves dimension two as the open case, a gap the framework does not paper over. The zero-dimensional theorem is the first stone in a wall that the framework builds honestly, one dimension at a time.
THEOREM not_detectsNontrivialLinking_zero · IndisputableMonolith/Foundation/PublicSpine.lean
/-- **Vanishing at D = 0** (R3a of campaign P-d3link): every subspace of the
two-point S⁰ is totally disconnected, so complement H₁ vanishes for any map. -/
theorem not_detectsNontrivialLinking_zero : ¬ DetectsNontrivialLinking 0 :=
LinkingVanishingLowDim.not_detects_zero
THEOREM not_detectsNontrivialLinking_one · IndisputableMonolith/Foundation/PublicSpine.lean
/-- **Vanishing at D = 1** (R3a of campaign P-d3link): an embedded circle in
S¹ is surjective (stereographic projection + connectedness), so the complement
is empty and its H₁ vanishes. -/
theorem not_detectsNontrivialLinking_one : ¬ DetectsNontrivialLinking 1 :=
LinkingVanishingLowDim.not_detects_one
THEOREM D3_of_bridge · IndisputableMonolith/Foundation/PublicSpine.lean
theorem D3_of_bridge (B : AlexanderLinkingBridge) :
∀ D, DetectsNontrivialLinking D → D = 3 :=
B.forces_D3
What this page does not claim
The theorem says nothing about the framework's physical theory of space; it is a purely topological statement. The theorem does not claim that dimension zero is uninteresting, only that it cannot detect linking. The theorem does not by itself prove that space is three-dimensional; that requires the separate forces_D3 theorem.
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/PublicSpine.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 framework prove about linking detection in dimension two?
- How does the zero-dimensional case fit into the proof that linking forces dimension three?
- What is the physical significance of the open dimension-two case for the framework's theory of space?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM not_detectsNontrivialLinking_zero · IndisputableMonolith/Foundation/PublicSpine.lean
/-- **Vanishing at D = 0** (R3a of campaign P-d3link): every subspace of the two-point S⁰ is totally disconnected, so complement H₁ vanishes for any map. -/ theorem not_detectsNontrivialLinking_zero : ¬ DetectsNontrivialLinking 0 := LinkingVanishingLowDim.not_detects_zeroThe declaration not_detectsNontrivialLinking_zero is a machine-checked theorem stating that the zero-dimensional sphere cannot detect nontrivial linking. not_detectsNontrivialLinking_zero · IndisputableMonolith/Foundation/PublicSpine.leanTHEOREM not_detectsNontrivialLinking_one · IndisputableMonolith/Foundation/PublicSpine.lean
/-- **Vanishing at D = 1** (R3a of campaign P-d3link): an embedded circle in S¹ is surjective (stereographic projection + connectedness), so the complement is empty and its H₁ vanishes. -/ theorem not_detectsNontrivialLinking_one : ¬ DetectsNontrivialLinking 1 := LinkingVanishingLowDim.not_detects_oneThe framework's library proves the same for dimension one. not_detectsNontrivialLinking_one · IndisputableMonolith/Foundation/PublicSpine.leanTHEOREM D3_of_bridge · IndisputableMonolith/Foundation/PublicSpine.lean
theorem D3_of_bridge (B : AlexanderLinkingBridge) : ∀ D, DetectsNontrivialLinking D → D = 3 := B.forces_D3The framework proves that linking detection forces dimension three. D3_of_bridge · IndisputableMonolith/Foundation/PublicSpine.lean