author | paulson <lp15@cam.ac.uk> |
Wed, 30 May 2018 23:11:12 +0100 | |
changeset 68326 | 3c71695ff7ce |
parent 60532 | 7fb5b7dc8332 |
permissions | -rw-r--r-- |
5738
0d8698c15439
Terms are now defined using the new datatype package.
berghofe
parents:
5717
diff
changeset
|
1 |
(* Title: HOL/Induct/Term.thy |
0d8698c15439
Terms are now defined using the new datatype package.
berghofe
parents:
5717
diff
changeset
|
2 |
Author: Stefan Berghofer, TU Muenchen |
3120
c58423c20740
New directory to contain examples of (co)inductive definitions
paulson
parents:
diff
changeset
|
3 |
*) |
c58423c20740
New directory to contain examples of (co)inductive definitions
paulson
parents:
diff
changeset
|
4 |
|
60530 | 5 |
section \<open>Terms over a given alphabet\<close> |
11046
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
6 |
|
46914 | 7 |
theory Term |
8 |
imports Main |
|
9 |
begin |
|
3120
c58423c20740
New directory to contain examples of (co)inductive definitions
paulson
parents:
diff
changeset
|
10 |
|
58310 | 11 |
datatype ('a, 'b) "term" = |
11046
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
12 |
Var 'a |
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
13 |
| App 'b "('a, 'b) term list" |
3120
c58423c20740
New directory to contain examples of (co)inductive definitions
paulson
parents:
diff
changeset
|
14 |
|
5738
0d8698c15439
Terms are now defined using the new datatype package.
berghofe
parents:
5717
diff
changeset
|
15 |
|
60530 | 16 |
text \<open>\medskip Substitution function on terms\<close> |
3120
c58423c20740
New directory to contain examples of (co)inductive definitions
paulson
parents:
diff
changeset
|
17 |
|
60532 | 18 |
primrec subst_term :: "('a \<Rightarrow> ('a, 'b) term) \<Rightarrow> ('a, 'b) term \<Rightarrow> ('a, 'b) term" |
19 |
and subst_term_list :: "('a \<Rightarrow> ('a, 'b) term) \<Rightarrow> ('a, 'b) term list \<Rightarrow> ('a, 'b) term list" |
|
46914 | 20 |
where |
5738
0d8698c15439
Terms are now defined using the new datatype package.
berghofe
parents:
5717
diff
changeset
|
21 |
"subst_term f (Var a) = f a" |
37597 | 22 |
| "subst_term f (App b ts) = App b (subst_term_list f ts)" |
23 |
| "subst_term_list f [] = []" |
|
24 |
| "subst_term_list f (t # ts) = subst_term f t # subst_term_list f ts" |
|
3120
c58423c20740
New directory to contain examples of (co)inductive definitions
paulson
parents:
diff
changeset
|
25 |
|
11046
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
26 |
|
60530 | 27 |
text \<open>\medskip A simple theorem about composition of substitutions\<close> |
11046
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
28 |
|
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
29 |
lemma subst_comp: |
12171 | 30 |
"subst_term (subst_term f1 \<circ> f2) t = |
31 |
subst_term f1 (subst_term f2 t)" |
|
32 |
and "subst_term_list (subst_term f1 \<circ> f2) ts = |
|
33 |
subst_term_list f1 (subst_term_list f2 ts)" |
|
58258 | 34 |
by (induct t and ts rule: subst_term.induct subst_term_list.induct) simp_all |
11046
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
35 |
|
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
36 |
|
60530 | 37 |
text \<open>\medskip Alternative induction rule\<close> |
11046
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
38 |
|
12171 | 39 |
lemma |
60532 | 40 |
assumes var: "\<And>v. P (Var v)" |
41 |
and app: "\<And>f ts. (\<forall>t \<in> set ts. P t) \<Longrightarrow> P (App f ts)" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12171
diff
changeset
|
42 |
shows term_induct2: "P t" |
37597 | 43 |
and "\<forall>t \<in> set ts. P t" |
58258 | 44 |
apply (induct t and ts rule: subst_term.induct subst_term_list.induct) |
12171 | 45 |
apply (rule var) |
46 |
apply (rule app) |
|
47 |
apply assumption |
|
48 |
apply simp_all |
|
49 |
done |
|
11046
b5f5942781a0
Induct: converted some theories to new-style format;
wenzelm
parents:
5738
diff
changeset
|
50 |
|
3120
c58423c20740
New directory to contain examples of (co)inductive definitions
paulson
parents:
diff
changeset
|
51 |
end |