Small inductive dimension #
The small inductive dimension of a space is inductively defined as follows. Empty spaces have
small inductive dimension less than 0, and a topological space has dimension less than n + 1 if
it has a topological basis whose elements have frontiers of dimension strictly less n.
In this file we formalize this notion, and characterize the cases n = 0 and n = 1.
Main definitions #
HasSmallInductiveDimensionLT X n: Provides a class stating thatXhas small inductive dimension less thann.HasSmallInductiveDimensionLE X n: Provides an abbrev forHasSmallInductiveDimensionLT X (n + 1).smallInductiveDimension X: The small inductive dimension ofX, with values inWithBot ℕ∞.
References #
For a topological space, the property of having small inductive dimension less than n : ℕ is
inductively defined as follows. Empty spaces have small inductive dimension less than 0, and a
topological space has dimension less than n + 1 if it has a topological basis whose elements have
frontiers of dimension strictly less n.
- zero {X : Type u} [TopologicalSpace X] [IsEmpty X] : HasSmallInductiveDimensionLT X 0
- succ {X : Type u} [TopologicalSpace X] (n : ℕ) (s : Set (Set X)) (hs : TopologicalSpace.IsTopologicalBasis s) (h : ∀ U ∈ s, HasSmallInductiveDimensionLT (↑(frontier U)) n) : HasSmallInductiveDimensionLT X (n + 1)
Instances
A topological space has dimension ≤ n if it has dimension < n + 1.
Equations
- HasSmallInductiveDimensionLE X n = HasSmallInductiveDimensionLT X (n + 1)
Instances For
The small inductive dimension of a topological space.