Impredicative universes
Content created by Fredrik Bakke, Egbert Rijke and Jonathan Prieto-Cubides.
Created on 2022-06-02.
Last modified on 2024-04-11.
module foundation.impredicative-universes where
Imports
open import foundation.universe-levels open import foundation-core.propositions open import foundation-core.small-types
Idea
A universe 𝒰
is impredicative¶ if the type of
propositions in 𝒰
is 𝒰
-small.
Definition
is-impredicative-UU : (l : Level) → UU (lsuc l) is-impredicative-UU l = is-small l (Prop l)
See also
Recent changes
- 2024-04-11. Fredrik Bakke and Egbert Rijke. Propositional operations (#1008).
- 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-07. Fredrik Bakke. Add blank lines between
<details>
tags and markdown syntax (#490). - 2023-03-07. Jonathan Prieto-Cubides. Show module declarations (#488).