aboutsummaryrefslogtreecommitdiff
path: root/hott
diff options
context:
space:
mode:
authorJosh Chen2020-05-27 21:31:35 +0200
committerJosh Chen2020-05-27 21:31:35 +0200
commit62c1c8f306bff84b74b3b1c935d0d6722e1251a2 (patch)
tree2a5312d76e7883a000517887d71e84ff2e892a56 /hott
parentec7dcd5e780d26e7f8866c3d245b08b23de56ff9 (diff)
1. Define Maybe in terms of other types. 2. Move More_Types to Spartan
Diffstat (limited to 'hott')
-rw-r--r--hott/More_Types.thy91
1 files changed, 0 insertions, 91 deletions
diff --git a/hott/More_Types.thy b/hott/More_Types.thy
deleted file mode 100644
index d29d794..0000000
--- a/hott/More_Types.thy
+++ /dev/null
@@ -1,91 +0,0 @@
-theory More_Types
-imports Spartan
-
-begin
-
-
-section \<open>Sum type\<close>
-
-axiomatization
- Sum :: \<open>o \<Rightarrow> o \<Rightarrow> o\<close> and
- inl :: \<open>o \<Rightarrow> o \<Rightarrow> o \<Rightarrow> o\<close> and
- inr :: \<open>o \<Rightarrow> o \<Rightarrow> o \<Rightarrow> o\<close> and
- SumInd :: \<open>o \<Rightarrow> o \<Rightarrow> (o \<Rightarrow> o) \<Rightarrow> (o \<Rightarrow> o) \<Rightarrow> (o \<Rightarrow> o) \<Rightarrow> o \<Rightarrow> o\<close>
-
-notation Sum (infixl "\<or>" 50)
-
-axiomatization where
- SumF: "\<lbrakk>A: U i; B: U i\<rbrakk> \<Longrightarrow> A \<or> B: U i" and
-
- Sum_inl: "\<lbrakk>a: A; B: U i\<rbrakk> \<Longrightarrow> inl A B a: A \<or> B" and
-
- Sum_inr: "\<lbrakk>b: B; A: U i\<rbrakk> \<Longrightarrow> inr A B b: A \<or> B" and
-
- SumE: "\<lbrakk>
- s: A \<or> B;
- \<And>s. s: A \<or> B \<Longrightarrow> C s: U i;
- \<And>a. a: A \<Longrightarrow> c a: C (inl A B a);
- \<And>b. b: B \<Longrightarrow> d b: C (inr A B b)
- \<rbrakk> \<Longrightarrow> SumInd A B (\<lambda>s. C s) (\<lambda>a. c a) (\<lambda>b. d b) s: C s" and
-
- Sum_comp_inl: "\<lbrakk>
- a: A;
- \<And>s. s: A \<or> B \<Longrightarrow> C s: U i;
- \<And>a. a: A \<Longrightarrow> c a: C (inl A B a);
- \<And>b. b: B \<Longrightarrow> d b: C (inr A B b)
- \<rbrakk> \<Longrightarrow> SumInd A B (\<lambda>s. C s) (\<lambda>a. c a) (\<lambda>b. d b) (inl A B a) \<equiv> c a" and
-
- Sum_comp_inr: "\<lbrakk>
- b: B;
- \<And>s. s: A \<or> B \<Longrightarrow> C s: U i;
- \<And>a. a: A \<Longrightarrow> c a: C (inl A B a);
- \<And>b. b: B \<Longrightarrow> d b: C (inr A B b)
- \<rbrakk> \<Longrightarrow> SumInd A B (\<lambda>s. C s) (\<lambda>a. c a) (\<lambda>b. d b) (inr A B b) \<equiv> d b"
-
-lemmas
- [intros] = SumF Sum_inl Sum_inr and
- [elims] = SumE and
- [comps] = Sum_comp_inl Sum_comp_inr
-
-
-section \<open>Empty and unit types\<close>
-
-axiomatization
- Top :: \<open>o\<close> and
- tt :: \<open>o\<close> and
- TopInd :: \<open>(o \<Rightarrow> o) \<Rightarrow> o \<Rightarrow> o \<Rightarrow> o\<close>
-and
- Bot :: \<open>o\<close> and
- BotInd :: \<open>(o \<Rightarrow> o) \<Rightarrow> o \<Rightarrow> o\<close>
-
-notation Top ("\<top>") and Bot ("\<bottom>")
-
-axiomatization where
- TopF: "\<top>: U i" and
-
- TopI: "tt: \<top>" and
-
- TopE: "\<lbrakk>a: \<top>; \<And>x. x: \<top> \<Longrightarrow> C x: U i; c: C tt\<rbrakk> \<Longrightarrow> TopInd (\<lambda>x. C x) c a: C a" and
-
- Top_comp: "\<lbrakk>\<And>x. x: \<top> \<Longrightarrow> C x: U i; c: C tt\<rbrakk> \<Longrightarrow> TopInd (\<lambda>x. C x) c tt \<equiv> c"
-and
- BotF: "\<bottom>: U i" and
-
- BotE: "\<lbrakk>x: \<bottom>; \<And>x. x: \<bottom> \<Longrightarrow> C x: U i\<rbrakk> \<Longrightarrow> BotInd (\<lambda>x. C x) x: C x"
-
-lemmas
- [intros] = TopF TopI BotF and
- [elims] = TopE BotE and
- [comps] = Top_comp
-
-
-section \<open>Booleans\<close>
-
-definition "Bool \<equiv> \<top> \<or> \<top>"
-definition "true \<equiv> inl \<top> \<top> tt"
-definition "false \<equiv> inr \<top> \<top> tt"
-
-\<comment> \<open>Can define if-then-else etc.\<close>
-
-
-end