Iterated loop spaces
Content created by Fredrik Bakke, Egbert Rijke and Jonathan Prieto-Cubides.
Created on 2022-03-10.
Last modified on 2024-03-23.
module synthetic-homotopy-theory.iterated-loop-spaces where
Imports
open import elementary-number-theory.natural-numbers open import foundation.iterating-functions open import foundation.universe-levels open import structured-types.h-spaces open import structured-types.pointed-types open import synthetic-homotopy-theory.loop-spaces
Idea
An iterated loop space Ωⁿ A
is the
pointed type obtained by n
times
iterating the
loop space functor
Ω : Pointed-Type → Pointed-Type
.
Definitions
Iterated loop spaces
module _ {l : Level} where iterated-loop-space : ℕ → Pointed-Type l → Pointed-Type l iterated-loop-space n = iterate n Ω
Iterated loop spaces of H-spaces
module _ {l : Level} where iterated-loop-space-H-Space : ℕ → H-Space l → H-Space l iterated-loop-space-H-Space zero-ℕ X = X iterated-loop-space-H-Space (succ-ℕ n) X = Ω-H-Space (iterated-loop-space n (pointed-type-H-Space X))
See also
Recent changes
- 2024-03-23. Egbert Rijke. Deloopings and Eilenberg-Mac Lane spaces (#1079).
- 2023-10-22. Egbert Rijke and Fredrik Bakke. Refactor synthetic homotopy theory (#654).
- 2023-03-14. Fredrik Bakke. Remove all unused imports (#502).
- 2023-03-10. Fredrik Bakke. Additions to
fix-import
(#497). - 2023-03-09. Jonathan Prieto-Cubides. Add hooks (#495).