Encyclopedia Mathematics Mathematics Topology From Rs Topology Cert
ARTICLE 3 claims 3 theorems
Mathematics Topology From Rs Topology Cert
A machine-checked certificate counts five standard topological invariants and verifies a cube's Euler characteristic equals a sphere's.
TopologyCert
Topology studies the properties of shapes that survive stretching without tearing or gluing. A coffee mug and a doughnut are topologically the same because one can be deformed into the other. Mathematicians use invariants, quantities or structures that stay unchanged under such deformations, to tell shapes apart. The five canonical invariants are the Euler characteristic, the fundamental group, homology groups, cohomology groups, and the homotopy type.
The Euler characteristic is the oldest and simplest invariant. For a polyhedron it is V - E + F, the number of vertices minus edges plus faces. For a cube, with 8 vertices, 12 edges, and 6 faces, this gives 8 - 12 + 6 = 2. A sphere also has Euler characteristic 2, which is why a cube can be inflated into a sphere without changing its topology. This number was known to Leonhard Euler in the 18th century and generalized by Henri Poincaré around 1900.
In Recognition Science, the declaration TopologyCert (a machine-checked certificate) establishes two facts. First, it proves that the five canonical invariants form a complete list, exactly five in number. Second, it proves that the cube's Euler characteristic equals 2, matching the sphere. Both are verified by computation in the framework's machine-checked library of formal theorems, with no unproved assumptions.
The certificate does not claim that these five invariants are the only possible ones, nor that they are independent. It does not prove that any two shapes with the same five invariants are topologically equivalent. It only certifies the count and the cube's Euler characteristic. The framework's library shows these as formal theorems, but the physical interpretation of topology in Recognition Science remains a separate question.
What the certificate changes is practical: it gives a concrete, checkable foundation for talking about topology inside the framework. A reader can now see that the framework's topology section rests on standard mathematics, not on new definitions. The cube-sphere equality is a familiar fact, and the certificate confirms it in a formal setting.
THEOREM TopologicalInvariant · IndisputableMonolith/Mathematics/TopologyFromRS.lean
inductive TopologicalInvariant where
| eulerChar | fundamentalGroup | homology | cohomology | homotopyType
deriving DecidableEq, Repr, BEq, Fintype
THEOREM topologicalInvariantCount · IndisputableMonolith/Mathematics/TopologyFromRS.lean
theorem topologicalInvariantCount : Fintype.card TopologicalInvariant = 5 := by decide
THEOREM eulerQ3_eq_2 · IndisputableMonolith/Mathematics/TopologyFromRS.lean
theorem eulerQ3_eq_2 : eulerQ3 = 2 := by decide
What this page does not claim
The five invariants are the only possible topological invariants. Two shapes with the same five invariants are topologically equivalent. The certificate says anything about the physical meaning of topology in Recognition Science.
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/TopologyFromRS.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 is the physical interpretation of topology within the Recognition Science framework?
- Are the five canonical invariants independent of each other?
- Does the framework prove any classification theorem for three-dimensional shapes?
- What is the relationship between the cube's Euler characteristic and the framework's three-dimensional forcing result?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM TopologicalInvariant · IndisputableMonolith/Mathematics/TopologyFromRS.lean
inductive TopologicalInvariant where | eulerChar | fundamentalGroup | homology | cohomology | homotopyType deriving DecidableEq, Repr, BEq, FintypeThe five canonical invariants are the Euler characteristic, the fundamental group, homology groups, cohomology groups, and the homotopy type. TopologicalInvariant · IndisputableMonolith/Mathematics/TopologyFromRS.leanTHEOREM topologicalInvariantCount · IndisputableMonolith/Mathematics/TopologyFromRS.lean
theorem topologicalInvariantCount : Fintype.card TopologicalInvariant = 5 := by decideThe certificate proves that the five canonical invariants form a complete list, exactly five in number. topologicalInvariantCount · IndisputableMonolith/Mathematics/TopologyFromRS.leanTHEOREM eulerQ3_eq_2 · IndisputableMonolith/Mathematics/TopologyFromRS.lean
theorem eulerQ3_eq_2 : eulerQ3 = 2 := by decideThe certificate proves that the cube's Euler characteristic equals 2, matching the sphere. eulerQ3_eq_2 · IndisputableMonolith/Mathematics/TopologyFromRS.lean