Theorem 7.1.11 #26
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Theorem 7.1.1to Theorem 7.1.11Currently stuck on trying to prove that for some arbitrary
(y : G) \rightarrow g \equiv y
. This is just for the zero case 😱 The bounds are:TODO: Add a picture of my current ideas
One attempt to do this was:
defining a separate glue type for the contr function itself. But this doesn't let me complete the hole...
This won't work because I'm getting a path between the types
(y:A) -> a==y
and(y:B) -> b==y
, but not between the particular valuesAcontr
andBcontr
. Favonia's suggestion this morning is to use the fact thatisContr
itself is a propOk, solved the first case in
aa460fd5af
, using Lemma 3.5.1 which says that ifB : A \rightarrow \mathcal{U}
is a prop for every(a : A)
, then if you have two pairs(p, q : \Sigma A B)
then it's sufficient to just compare the first elements of themHowever, I've only gotten it to work for a non
PathP
, because it expects the two types to agree. I tried for a little bit to write aPathP
version of Lemma 3.5.1 but I haven't been successful yet