Hilbert’s ε
-operators
Content created by Fredrik Bakke, Jonathan Prieto-Cubides, Egbert Rijke and Elisabeth Stenholm.
Created on 2022-03-30.
Last modified on 2023-06-10.
module foundation.hilberts-epsilon-operators where
Imports
open import foundation.functoriality-propositional-truncation open import foundation.propositional-truncations open import foundation.universe-levels open import foundation-core.equivalences open import foundation-core.function-types
Idea
Hilbert’s -operator at a type A
is a map type-trunc-Prop A → A
. Contrary
to Hilbert, we will not assume that such an operator exists for each type A
.
Definition
ε-operator-Hilbert : {l : Level} → UU l → UU l ε-operator-Hilbert A = type-trunc-Prop A → A
Properties
The existence of Hilbert’s ε
-operators is invariant under equivalences
ε-operator-equiv : {l1 l2 : Level} {X : UU l1} {Y : UU l2} (e : X ≃ Y) → ε-operator-Hilbert X → ε-operator-Hilbert Y ε-operator-equiv e f = (map-equiv e ∘ f) ∘ (map-trunc-Prop (map-inv-equiv e)) ε-operator-equiv' : {l1 l2 : Level} {X : UU l1} {Y : UU l2} (e : X ≃ Y) → ε-operator-Hilbert Y → ε-operator-Hilbert X ε-operator-equiv' e f = (map-inv-equiv e ∘ f) ∘ (map-trunc-Prop (map-equiv e))
Recent changes
- 2023-06-10. Egbert Rijke. cleaning up transport and dependent identifications files (#650).
- 2023-06-08. Fredrik Bakke. Examples of modalities and various fixes (#639).
- 2023-06-08. Fredrik Bakke. Remove empty
foundation
modules and replace them by their core counterparts (#644). - 2023-03-14. Fredrik Bakke. Remove all unused imports (#502).
- 2023-03-13. Jonathan Prieto-Cubides. More maintenance (#506).