quest1 prepped with solutions added
This commit is contained in:
parent
d0dd1d79f1
commit
ddfecdd209
@ -7,13 +7,10 @@ open import 1FundamentalGroup.Preambles.P1
|
|||||||
Ω A a = a ≡ a
|
Ω A a = a ≡ a
|
||||||
|
|
||||||
loop_times : ℤ → Ω S¹ base
|
loop_times : ℤ → Ω S¹ base
|
||||||
loop pos zero times = refl
|
loop n times = {!!}
|
||||||
loop pos (suc n) times = loop pos n times ∙ loop
|
|
||||||
loop negsuc zero times = sym loop
|
|
||||||
loop negsuc (suc n) times = loop negsuc n times ∙ sym loop
|
|
||||||
|
|
||||||
¬isSetS¹ : isSet S¹ → ⊥
|
¬isSetS¹ : isSet S¹ → ⊥
|
||||||
¬isSetS¹ h = Refl≢loop (h base base Refl loop)
|
¬isSetS¹ = {!!}
|
||||||
|
|
||||||
¬isPropS¹ : isProp S¹ → ⊥
|
¬isPropS¹ : isProp S¹ → ⊥
|
||||||
¬isPropS¹ h = ¬isSetS¹ (isProp→isSet h)
|
¬isPropS¹ = {!!}
|
||||||
|
19
1FundamentalGroup/Quest1Solutions.agda
Normal file
19
1FundamentalGroup/Quest1Solutions.agda
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
-- ignore
|
||||||
|
module 1FundamentalGroup.Quest1Solutions where
|
||||||
|
open import 1FundamentalGroup.Preambles.P1
|
||||||
|
|
||||||
|
|
||||||
|
Ω : (A : Type) (a : A) → Type
|
||||||
|
Ω A a = a ≡ a
|
||||||
|
|
||||||
|
loop_times : ℤ → Ω S¹ base
|
||||||
|
loop pos zero times = refl
|
||||||
|
loop pos (suc n) times = loop pos n times ∙ loop
|
||||||
|
loop negsuc zero times = sym loop
|
||||||
|
loop negsuc (suc n) times = loop negsuc n times ∙ sym loop
|
||||||
|
|
||||||
|
¬isSetS¹ : isSet S¹ → ⊥
|
||||||
|
¬isSetS¹ h = Refl≢loop (h base base Refl loop)
|
||||||
|
|
||||||
|
¬isPropS¹ : isProp S¹ → ⊥
|
||||||
|
¬isPropS¹ h = ¬isSetS¹ (isProp→isSet h)
|
BIN
_build/2.6.2/agda/1FundamentalGroup/Quest1Solutions.agdai
Normal file
BIN
_build/2.6.2/agda/1FundamentalGroup/Quest1Solutions.agdai
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user