Spheres
Content created by Fredrik Bakke, Jonathan Prieto-Cubides, Egbert Rijke, Raymond Baker and maybemabeline.
Created on 2023-01-28.
Last modified on 2023-10-12.
module synthetic-homotopy-theory.spheres where
Imports
open import elementary-number-theory.natural-numbers open import foundation.dependent-pair-types open import foundation.function-types open import foundation.identity-types open import foundation.universe-levels open import structured-types.pointed-types open import synthetic-homotopy-theory.iterated-suspensions-of-pointed-types open import synthetic-homotopy-theory.suspensions-of-types open import univalent-combinatorics.standard-finite-types
Idea
The spheres are defined as
iterated suspensions
of the
standard two-element type Fin 2
.
Definition
sphere-Pointed-Type : ℕ → Pointed-Type lzero sphere-Pointed-Type n = iterated-suspension-Pointed-Type n (Fin 2 , zero-Fin 1) sphere : ℕ → UU lzero sphere = type-Pointed-Type ∘ sphere-Pointed-Type north-sphere : (n : ℕ) → sphere n north-sphere zero-ℕ = zero-Fin 1 north-sphere (succ-ℕ n) = north-suspension south-sphere : (n : ℕ) → sphere n south-sphere zero-ℕ = one-Fin 1 south-sphere (succ-ℕ n) = south-suspension meridian-sphere : (n : ℕ) → sphere n → north-sphere (succ-ℕ n) = south-sphere (succ-ℕ n) meridian-sphere n = meridian-suspension
Recent changes
- 2023-10-12. Fredrik Bakke. Define suspension prespectra and maps of prespectra (#833).
- 2023-09-16. maybemabeline and Egbert Rijke. Equivalence between the first sphere and the circle (#776).
- 2023-08-28. Raymond Baker and Fredrik Bakke. Suspension reorganization (#700).
- 2023-03-10. Fredrik Bakke. Additions to
fix-import
(#497). - 2023-03-09. Jonathan Prieto-Cubides. Add hooks (#495).