You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def 2-η (c : 𝟐) : + (PathP (<_> 𝟐) c 0₂) (PathP (<_> 𝟐) c 1₂)
51
-
:= ind₂ (λ (c : 𝟐), + (PathP (<_> 𝟐) c 0₂) (PathP (<_> 𝟐) c 1₂))
52
-
(0₂, <_> 0₂) (1₂, <_> 1₂) c
50
+
:= ind₂ (λ (c : 𝟐), + (PathP (<_> 𝟐) c 0₂) (PathP (<_> 𝟐) c 1₂)) (0₂, <_> 0₂) (1₂, <_> 1₂) c
53
51
54
52
def W′ (A : U) (B : A → U) : U := W (x: A), B x
55
53
def sup′ (A : U) (B : A → U) (x : A) (f : B x → W′ A B) : W′ A B := sup A B x f
@@ -83,13 +81,11 @@ def W-proj₁ (A : U) (B : A → U) : (W (x : A), B x) → A
83
81
:= W-case A B A (λ (x : A) (f : B x → (W (x : A), B x)), x)
84
82
85
83
def W-proj₂ (A : U) (B : A → U) : Π (w : W (x : A), B x), B (W-proj₁ A B w) → (W (x : A), B x)
86
-
:= W-ind′ A B (λ (w : W (x : A), B x), B (W-proj₁ A B w) → (W (x : A), B x))
87
-
(λ (x : A) (f : B x → (W (x : A), B x)), f)
84
+
:= W-ind′ A B (λ (w : W (x : A), B x), B (W-proj₁ A B w) → (W (x : A), B x)) (λ (x : A) (f : B x → (W (x : A), B x)), f)
88
85
89
86
def W-η (A : U) (B : A → U)
90
87
: Π (w : W (x : A), B x), Path (W (x : A), B x) (sup A B (W-proj₁ A B w) (W-proj₂ A B w)) w
91
-
:= W-ind′ A B (λ (w : W (x : A), B x), Path (W (x : A), B x) (sup A B (W-proj₁ A B w) (W-proj₂ A B w)) w)
92
-
(λ (x : A) (f : B x → (W (x : A), B x)), <_> sup A B x f)
88
+
:= W-ind′ A B (λ (w : W (x : A), B x), Path (W (x : A), B x) (sup A B (W-proj₁ A B w) (W-proj₂ A B w)) w) (λ (x : A) (f : B x → (W (x : A), B x)), <_> sup A B x f)
93
89
94
90
def trans-W (A : I → U) (B : Π (i : I), A i → U) (a : A 0) (f : B 0 a → (W (x : A 0), B 0 x)) : W (x : A 1), B 1 x
95
91
:= sup (A 1) (B 1) (transp (<i> A i) 0 a) (transp (<i> B i (transFill (A 0) (A 1) (<j> A j) a @ i) → (W (x : A i), B i x)) 0 f)
@@ -117,5 +113,5 @@ def hcomp-W′ (A : U) (B : A → U) (r : I) (a : I → Partial A r)
117
113
def hcomp-W-is-correct (A : U) (B : A → U) (r : I) (a : I → Partial A r)
118
114
(f : Π (i : I), PartialP [(r = 1) → B (a i 1=1) → (W (x : A), B x)] r)
119
115
(a₀ : A[r ↦ a 0]) (f₀ : (B (ouc a₀) → (W (x : A), B x))[r ↦ f 0]) :
120
-
Path (W (x : A), B x) (hcomp-W A B r a f a₀ f₀) (hcomp-W′ A B r a f a₀ f₀) :=
121
-
<_> hcomp-W A B r a f a₀ f₀
116
+
Path (W (x : A), B x) (hcomp-W A B r a f a₀ f₀) (hcomp-W′ A B r a f a₀ f₀)
-- K(G, n) tower construction using primitive ind-nat
30
27
def K-Pointed (G : abgroup) (n : nat) : Pointed
31
-
:= ind-nat (λ (x : nat), Pointed)
32
-
(G.1.1, G.2.1.1.2.2.1)
33
-
(λ (k : nat) (prev : Pointed), K-step G k prev)
34
-
n
28
+
:= ind-nat (λ (x : nat), Pointed) (G.1.1, G.2.1.1.2.2.1) (λ (k : nat) (prev : Pointed), K-step G k prev) n
35
29
36
30
def K (G : abgroup) (n : nat) : U := (K-Pointed G n).1
37
31
def K-point (G : abgroup) (n : nat) : K G n := (K-Pointed G n).2
@@ -66,6 +60,4 @@ def K-η (G : abgroup) (n : nat) (P : Π (k : nat), K G k → U) (h : Π (k : na
66
60
:= ind-nat (λ (k : nat), Path (Π (z : K G k), P k z) (h k) (λ (z : K G k), K-ind G k P (λ (g : G.1.1), h zero g) (λ (m : nat) (pr : Π (y : K G m), P m y) (y : K G (succ m)), h (succ m) y) z))
67
61
(<_> (h zero))
68
62
(λ (k : nat) (prev : Path (Π (z : K G k), P k z) (h k) (λ (z : K G k), K-ind G k P (λ (g : G.1.1), h zero g) (λ (m : nat) (pr : Π (y : K G m), P m y) (y : K G (succ m)), h (succ m) y) z)),
0 commit comments