blob: e879c92072d4b98c3241e1eab4cf012447d0e825 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
(* Title: HoTT/Nat.thy
Author: Josh Chen
Natural numbers
*)
theory Nat
imports HoTT_Base
begin
section \<open>Constants and type rules\<close>
axiomatization
Nat :: Term ("\<nat>") and
zero :: Term ("0") and
succ :: "Term \<Rightarrow> Term" and
indNat :: "[[Term, Term] \<Rightarrow> Term, Term, Term] \<Rightarrow> Term" ("(1ind\<^sub>\<nat>)")
where
Nat_form: "\<nat>: U O"
and
Nat_intro_0: "0: \<nat>"
and
Nat_intro_succ: "n: \<nat> \<Longrightarrow> succ n: \<nat>"
and
Nat_elim: "\<lbrakk>
C: \<nat> \<longrightarrow> U i;
\<And>n c. \<lbrakk>n: \<nat>; c: C n\<rbrakk> \<Longrightarrow> f n c: C (succ n);
a: C 0;
n: \<nat>
\<rbrakk> \<Longrightarrow> ind\<^sub>\<nat> f a n: C n"
and
Nat_comp_0: "\<lbrakk>
C: \<nat> \<longrightarrow> U i;
\<And>n c. \<lbrakk>n: \<nat>; c: C(n)\<rbrakk> \<Longrightarrow> f n c: C (succ n);
a: C 0
\<rbrakk> \<Longrightarrow> ind\<^sub>\<nat> f a 0 \<equiv> a"
and
Nat_comp_succ: "\<lbrakk>
C: \<nat> \<longrightarrow> U i;
\<And>n c. \<lbrakk>n: \<nat>; c: C n\<rbrakk> \<Longrightarrow> f n c: C (succ n);
a: C 0;
n: \<nat>
\<rbrakk> \<Longrightarrow> ind\<^sub>\<nat> f a (succ n) \<equiv> f n (ind\<^sub>\<nat> f a n)"
text "Rule attribute declarations:"
lemmas Nat_intro = Nat_intro_0 Nat_intro_succ
lemmas Nat_comp [comp] = Nat_comp_0 Nat_comp_succ
lemmas Nat_routine [intro] = Nat_form Nat_intro Nat_elim
end
|