Skip to content

Commit

Permalink
Raise subtypes to a universe level (#1277)
Browse files Browse the repository at this point in the history
  • Loading branch information
lowasser authored Feb 5, 2025
1 parent 065c73c commit 260f8ac
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/foundation/raising-universe-levels.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ open import foundation-core.homotopies
open import foundation-core.propositional-maps
open import foundation-core.propositions
open import foundation-core.sets
open import foundation-core.subtypes
```

</details>
Expand Down Expand Up @@ -97,6 +98,14 @@ pr2 (raise-Set l A) =
is-set-equiv' (type-Set A) (compute-raise l (type-Set A)) (is-set-type-Set A)
```

### Raising universe levels of subtypes

```agda
raise-subtype :
(l : Level) {l1 l2 : Level} (A : UU l1) subtype l2 A subtype (l2 ⊔ l) A
raise-subtype l A B x = raise-Prop l (B x)
```

### Raising equivalent types

```agda
Expand Down

0 comments on commit 260f8ac

Please sign in to comment.