From d8699451025a3bd5e8955e07fa879ed248418949 Mon Sep 17 00:00:00 2001 From: Josh Chen Date: Thu, 16 Aug 2018 16:28:50 +0200 Subject: Some comments and reorganization --- ex/HoTT book/Ch1.thy | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ex/HoTT book/Ch1.thy (limited to 'ex/HoTT book') diff --git a/ex/HoTT book/Ch1.thy b/ex/HoTT book/Ch1.thy new file mode 100644 index 0000000..65de875 --- /dev/null +++ b/ex/HoTT book/Ch1.thy @@ -0,0 +1,44 @@ +(* Title: HoTT/ex/HoTT book/Ch1.thy + Author: Josh Chen + Date: Aug 2018 + +A formalization of some content of Chapter 1 of the Homotopy Type Theory book. +*) + +theory Ch1 + imports "../../HoTT" +begin + +chapter \HoTT Book, Chapter 1\ + +section \1.6 Dependent pair types (\-types)\ + +text "Prove that the only inhabitants of the \-type are those given by the pair constructor." + +schematic_goal + assumes "(\x:A. B(x)): U(i)" and "p: \x:A. B(x)" + shows "?a: p =[\x:A. B(x)] " + +text "Proof by induction on \p: \x:A. B(x)\:" + +proof (rule Sum_elim[where ?p=p]) + text "We just need to prove the base case; the rest will be taken care of automatically." + + fix x y assume asm: "x: A" "y: B(x)" show + "refl(): =[\x:A. B(x)] , snd >" + proof (subst (0 1) comp) + text " + The computation rules for \fst\ and \snd\ require that \x\ and \y\ have appropriate types. + The automatic proof methods have trouble picking the appropriate types, so we state them explicitly, + " + show "x: A" and "y: B(x)" by (fact asm)+ + + text "...twice, once each for the substitutions of \fst\ and \snd\." + show "x: A" and "y: B(x)" by (fact asm)+ + + qed (derive lems: assms asm) + +qed (derive lems: assms) + + +end \ No newline at end of file -- cgit v1.2.3