-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
fernando
committed
Apr 6, 2024
1 parent
c22629e
commit 3ae201a
Showing
4 changed files
with
59 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
title: Simplicial HoTT | ||
--- | ||
|
||
# Simplicial HoTT | ||
|
||
The 2-simplex can be postulated internally in HoTT. | ||
|
||
```agda | ||
module AdittionalTopics.SimplicialHoTT where | ||
|
||
open import Chapter11.Exercises public | ||
``` | ||
|
||
## Definition of the 2-Simplex | ||
|
||
```agda | ||
postulate | ||
Δ² : 𝒰₀ | ||
isSet-Δ² : isSet Δ² | ||
Δ²₀ Δ²₁ : Δ² | ||
_Δ²-≤_ : Δ² → Δ² → Prop𝒰 lzero | ||
Δ²₀≤Δ²₀ : pr₁ (Δ²₀ Δ²-≤ Δ²₁) | ||
Δ²₀≤Δ²₁ : pr₁ (Δ²₀ Δ²-≤ Δ²₁) | ||
Δ²₁≤Δ²₀ : ¬ (pr₁ (Δ²₀ Δ²-≤ Δ²₁)) | ||
Δ²₁≤Δ²₁ : pr₁ (Δ²₀ Δ²-≤ Δ²₁) | ||
|
||
ΔHom : {𝒾 : Level} (A : 𝒰 𝒾) (a b : A) → 𝒰 𝒾 | ||
ΔHom A a b = Σ f ꞉ (Δ² → A) , (f Δ²₀ ≡ a) × (f Δ²₁ ≡ b) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters