This commit is contained in:
Michael Zhang 2024-07-24 21:18:10 -05:00
parent acbb85481f
commit a2dbafb324
2 changed files with 6 additions and 2 deletions

View file

@ -86,10 +86,14 @@ module lemma8∙1∙2 where
open definition8∙1∙1 open definition8∙1∙1
open axiom2∙10∙3 open axiom2∙10∙3
open ≡-Reasoning open ≡-Reasoning
open S¹
lifted-loop : {l : Level} → lift base ≡ lift base
lifted-loop {l} = ap (lift {l = l}) loop
i : {l : Level} → (x : Int {l}) → (transport code loop x) ≡ int-suc x i : {l : Level} → (x : Int {l}) → (transport code loop x) ≡ int-suc x
i x = begin i x = begin
(transport code loop x) ≡⟨ lemma2∙3∙10 {! id !} code loop x ⟩ (transport code loop x) ≡⟨ lemma2∙3∙10 id code {! lifted-loop !} x ⟩
(transport id (ap code loop) x) ≡⟨ {! !} ⟩ (transport id (ap code loop) x) ≡⟨ {! !} ⟩
-- (transport id (ua int-suc) x) ≡⟨ {! !} ⟩ -- (transport id (ua int-suc) x) ≡⟨ {! !} ⟩
int-suc x ∎ int-suc x ∎

View file

@ -4,6 +4,6 @@ module HottBook.CoreUtil where
open import Agda.Primitive open import Agda.Primitive
record Lift {a } (A : Set a) : Set (a ) where record Lift {a l} (A : Set a) : Set (a l) where
constructor lift constructor lift
field lower : A field lower : A