Skip to content

Commit

Permalink
Merge branch 'main' into uniqueness-colimits
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Riehl authored Oct 22, 2023
2 parents b892f59 + 9ae43c7 commit e64cd9a
Show file tree
Hide file tree
Showing 14 changed files with 1,430 additions and 662 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ results from the following papers:
- "[Limits and colimits of synthetic ∞-categories](https://arxiv.org/abs/2202.12386)"
[3]

This formalization project follows the philosophy layed out in the article
This formalization project follows the philosophy laid out in the article
"[Could ∞-category theory be taught to undergraduates?](https://www.ams.org/journals/notices/202305/noti2692/noti2692.html)"
[4].

Expand Down
18 changes: 18 additions & 0 deletions src/hott/07-fibers.rzk.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ The homotopy fiber of a map is the following type:
( b : B)
: U
:= Σ (a : A) , (f a) = b
#def rev-fib
( A B : U)
( f : A → B)
( b : B)
: U
:= Σ (a : A) , b = (f a)
```

We calculate the transport of `#!rzk (a , q) : fib b` along `#!rzk p : a = a'`:
Expand Down Expand Up @@ -63,6 +70,17 @@ of the form `#!rzk (a, refl : f a = f a) : fib A B f`.
:=
ind-path B (f a) (\ b p → C b (a, p)) (s a) b q
#def ind-rev-fib
( A B : U)
( f : A → B)
( C : (b : B) → rev-fib A B f b → U)
( s : (a : A) → C (f a) (a, refl))
( b : B)
( (a, q) : rev-fib A B f b)
: C b (a, q)
:=
ind-path-end B (f a) (\ b p → C b (a, p)) (s a) b q
#def ind-fib-computation
( A B : U)
( f : A → B)
Expand Down
Loading

0 comments on commit e64cd9a

Please sign in to comment.