Σ-closed reflective modalities
Content created by Fredrik Bakke and Egbert Rijke.
Created on 2023-06-28.
Last modified on 2023-09-15.
module orthogonal-factorization-systems.sigma-closed-reflective-modalities where
Imports
open import foundation.cartesian-product-types open import foundation.dependent-pair-types open import foundation.universe-levels open import orthogonal-factorization-systems.modal-operators open import orthogonal-factorization-systems.reflective-modalities open import orthogonal-factorization-systems.sigma-closed-modalities
Idea
A modality is Σ-closed reflective if it is reflective and Σ-closed.
Definition
is-closed-under-Σ-reflective-modality : {l : Level} {○ : operator-modality l l} → (unit-○ : unit-modality ○) → UU (lsuc l) is-closed-under-Σ-reflective-modality unit-○ = (is-reflective-modality unit-○) × (is-closed-under-Σ-modality unit-○) closed-under-Σ-reflective-modality : (l : Level) → UU (lsuc l) closed-under-Σ-reflective-modality l = Σ ( operator-modality l l) ( λ ○ → Σ ( unit-modality ○) ( is-closed-under-Σ-reflective-modality))
See also
The equivalent notions of
- Higher modalities
- Uniquely eliminating modalities
- Σ-closed reflective subuniverses
- Stable orthogonal factorization systems
Recent changes
- 2023-09-15. Egbert Rijke. update contributors, remove unused imports (#772).
- 2023-06-29. Fredrik Bakke. Fix hyperlinks (#677).
- 2023-06-28. Fredrik Bakke. Localizations and other things (#655).