Skip to content

Commit

Permalink
intro
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Oct 29, 2023
1 parent cb0841c commit 6ae7a05
Show file tree
Hide file tree
Showing 17 changed files with 630 additions and 562 deletions.
25 changes: 23 additions & 2 deletions foundations/univalent/iso/index.html

Large diffs are not rendered by default.

51 changes: 49 additions & 2 deletions foundations/univalent/iso/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,13 @@ block content
def ind-Iso (A B: U)
(C: Π (A B: U), iso A B → U)
(d: C A A (iso-Intro A))
: (p: iso A B) -> C A B p
: Π (e: iso A B), P A B e
:= λ (e: iso A B),
subst (iso-single B)
(\ (z: iso-single B), P z.1 B z.2)
(B,iso-intro B)
(A,e)
(iso-contrSinglEquiv A B e) r
br.
section
h1 UNIMORPHISM
Expand All @@ -92,11 +98,52 @@ block content
cubical systems and is called Unimorphism or $\mathrm{Uni}$ here.
h2 Formation
+tex.
$\mathbf{Definition}$ (Isomorphism Formation).
$\mathbf{Definition}$ (Unimorphism Formation).
+tex(true).
$$
A \cong B \rightarrow A = B : U.
$$
h2 Introduction
+tex.
$\mathbf{Definition}$ (Unimorphism Introduction).
+tex(true).
$$
\mathrm{uni} : \prod_{A,B:U}\prod_{x:\mathrm{Iso}} A = B =_{def}
$$
+tex(true).
$$
\mathbf{Glue}_B\ \delta_i
\begin{cases}
i\mbox{=}0 \rightarrow(A,x.\hspace{-0.2em}f,\mathrm{isoToEquiv}(x)) \\
i\mbox{=}1 \rightarrow(B,\mathrm{id}_B,\mathrm{idIsEquiv}_B)
\end{cases}
$$
+code.
def iso→Path (A B : U)
(f : A -> B) (g : B -> A)
(s : Π (y : B), Path B (f (g y)) y)
(t : Π (x : A), Path A (g (f x)) x)
: PathP (<_> U) A B
:= <i> Glue B ( i)
[ (i = 0) -> (A,f, isoToEquiv A B f g s t),
(i = 1) -> (B,id B, idIsEquiv B)]
br.
h2 Elimination
+tex.
$\mathbf{Definition}$ (Unimorphism Elimination).
+tex(true).
$$
$$
+code.
def uni-Elim (A B : U)
: PathP (<_> U) A B -> iso A B
:= λ (p : PathP (<_> U) A B),
( coerce A B p,
coerce B A (<i> p @ -i),
trans⁻¹-trans A B p, λ (a : A),
<k> trans-trans⁻¹ A B p a @ -k,
)
br.

include ../../../footer
66 changes: 33 additions & 33 deletions foundations/univalent/path/index.html

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions intro/index.html

Large diffs are not rendered by default.

86 changes: 43 additions & 43 deletions mathematics/algebra/algebra/index.html

Large diffs are not rendered by default.

140 changes: 70 additions & 70 deletions mathematics/algebra/homology/index.html

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions mathematics/analysis/set/index.html

Large diffs are not rendered by default.

98 changes: 49 additions & 49 deletions mathematics/categories/category/index.html

Large diffs are not rendered by default.

158 changes: 79 additions & 79 deletions mathematics/categories/presheaf/index.html

Large diffs are not rendered by default.

208 changes: 104 additions & 104 deletions mathematics/categories/topos/index.html

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions mathematics/geometry/bundle/index.html

Large diffs are not rendered by default.

74 changes: 37 additions & 37 deletions mathematics/geometry/derham/index.html

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions mathematics/homotopy/cw/index.html

Large diffs are not rendered by default.

78 changes: 39 additions & 39 deletions mathematics/homotopy/hopf/index.html

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions mathematics/homotopy/pullback/index.html

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions mathematics/homotopy/pushout/index.html

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions spec/index.html

Large diffs are not rendered by default.

0 comments on commit 6ae7a05

Please sign in to comment.