author | paulson |
Fri, 16 Aug 2002 16:41:48 +0200 | |
changeset 13505 | 52a16cb7fefb |
parent 13428 | 99e52e78eb65 |
child 13506 | acc18a5d2b1a |
permissions | -rw-r--r-- |
13505 | 1 |
(* Title: ZF/Constructible/WF_absolute.thy |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 2002 University of Cambridge |
|
5 |
*) |
|
6 |
||
13306 | 7 |
header {*Absoluteness for Well-Founded Relations and Well-Founded Recursion*} |
8 |
||
13242 | 9 |
theory WF_absolute = WFrec: |
13223 | 10 |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
11 |
subsection{*Every well-founded relation is a subset of some inverse image of |
13247 | 12 |
an ordinal*} |
13 |
||
14 |
lemma wf_rvimage_Ord: "Ord(i) \<Longrightarrow> wf(rvimage(A, f, Memrel(i)))" |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
15 |
by (blast intro: wf_rvimage wf_Memrel) |
13247 | 16 |
|
17 |
||
18 |
constdefs |
|
19 |
wfrank :: "[i,i]=>i" |
|
20 |
"wfrank(r,a) == wfrec(r, a, %x f. \<Union>y \<in> r-``{x}. succ(f`y))" |
|
21 |
||
22 |
constdefs |
|
23 |
wftype :: "i=>i" |
|
24 |
"wftype(r) == \<Union>y \<in> range(r). succ(wfrank(r,y))" |
|
25 |
||
26 |
lemma wfrank: "wf(r) ==> wfrank(r,a) = (\<Union>y \<in> r-``{a}. succ(wfrank(r,y)))" |
|
27 |
by (subst wfrank_def [THEN def_wfrec], simp_all) |
|
28 |
||
29 |
lemma Ord_wfrank: "wf(r) ==> Ord(wfrank(r,a))" |
|
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
30 |
apply (rule_tac a=a in wf_induct, assumption) |
13247 | 31 |
apply (subst wfrank, assumption) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
32 |
apply (rule Ord_succ [THEN Ord_UN], blast) |
13247 | 33 |
done |
34 |
||
35 |
lemma wfrank_lt: "[|wf(r); <a,b> \<in> r|] ==> wfrank(r,a) < wfrank(r,b)" |
|
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
36 |
apply (rule_tac a1 = b in wfrank [THEN ssubst], assumption) |
13247 | 37 |
apply (rule UN_I [THEN ltI]) |
38 |
apply (simp add: Ord_wfrank vimage_iff)+ |
|
39 |
done |
|
40 |
||
41 |
lemma Ord_wftype: "wf(r) ==> Ord(wftype(r))" |
|
42 |
by (simp add: wftype_def Ord_wfrank) |
|
43 |
||
44 |
lemma wftypeI: "\<lbrakk>wf(r); x \<in> field(r)\<rbrakk> \<Longrightarrow> wfrank(r,x) \<in> wftype(r)" |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
45 |
apply (simp add: wftype_def) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
46 |
apply (blast intro: wfrank_lt [THEN ltD]) |
13247 | 47 |
done |
48 |
||
49 |
||
50 |
lemma wf_imp_subset_rvimage: |
|
51 |
"[|wf(r); r \<subseteq> A*A|] ==> \<exists>i f. Ord(i) & r <= rvimage(A, f, Memrel(i))" |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
52 |
apply (rule_tac x="wftype(r)" in exI) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
53 |
apply (rule_tac x="\<lambda>x\<in>A. wfrank(r,x)" in exI) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
54 |
apply (simp add: Ord_wftype, clarify) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
55 |
apply (frule subsetD, assumption, clarify) |
13247 | 56 |
apply (simp add: rvimage_iff wfrank_lt [THEN ltD]) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
57 |
apply (blast intro: wftypeI) |
13247 | 58 |
done |
59 |
||
60 |
theorem wf_iff_subset_rvimage: |
|
61 |
"relation(r) ==> wf(r) <-> (\<exists>i f A. Ord(i) & r <= rvimage(A, f, Memrel(i)))" |
|
62 |
by (blast dest!: relation_field_times_field wf_imp_subset_rvimage |
|
63 |
intro: wf_rvimage_Ord [THEN wf_subset]) |
|
64 |
||
65 |
||
13223 | 66 |
subsection{*Transitive closure without fixedpoints*} |
67 |
||
68 |
constdefs |
|
69 |
rtrancl_alt :: "[i,i]=>i" |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
70 |
"rtrancl_alt(A,r) == |
13223 | 71 |
{p \<in> A*A. \<exists>n\<in>nat. \<exists>f \<in> succ(n) -> A. |
13242 | 72 |
(\<exists>x y. p = <x,y> & f`0 = x & f`n = y) & |
13223 | 73 |
(\<forall>i\<in>n. <f`i, f`succ(i)> \<in> r)}" |
74 |
||
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
75 |
lemma alt_rtrancl_lemma1 [rule_format]: |
13223 | 76 |
"n \<in> nat |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
77 |
==> \<forall>f \<in> succ(n) -> field(r). |
13223 | 78 |
(\<forall>i\<in>n. \<langle>f`i, f ` succ(i)\<rangle> \<in> r) --> \<langle>f`0, f`n\<rangle> \<in> r^*" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
79 |
apply (induct_tac n) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
80 |
apply (simp_all add: apply_funtype rtrancl_refl, clarify) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
81 |
apply (rename_tac n f) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
82 |
apply (rule rtrancl_into_rtrancl) |
13223 | 83 |
prefer 2 apply assumption |
84 |
apply (drule_tac x="restrict(f,succ(n))" in bspec) |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
85 |
apply (blast intro: restrict_type2) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
86 |
apply (simp add: Ord_succ_mem_iff nat_0_le [THEN ltD] leI [THEN ltD] ltI) |
13223 | 87 |
done |
88 |
||
89 |
lemma rtrancl_alt_subset_rtrancl: "rtrancl_alt(field(r),r) <= r^*" |
|
90 |
apply (simp add: rtrancl_alt_def) |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
91 |
apply (blast intro: alt_rtrancl_lemma1) |
13223 | 92 |
done |
93 |
||
94 |
lemma rtrancl_subset_rtrancl_alt: "r^* <= rtrancl_alt(field(r),r)" |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
95 |
apply (simp add: rtrancl_alt_def, clarify) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
96 |
apply (frule rtrancl_type [THEN subsetD], clarify, simp) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
97 |
apply (erule rtrancl_induct) |
13223 | 98 |
txt{*Base case, trivial*} |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
99 |
apply (rule_tac x=0 in bexI) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
100 |
apply (rule_tac x="lam x:1. xa" in bexI) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
101 |
apply simp_all |
13223 | 102 |
txt{*Inductive step*} |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
103 |
apply clarify |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
104 |
apply (rename_tac n f) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
105 |
apply (rule_tac x="succ(n)" in bexI) |
13223 | 106 |
apply (rule_tac x="lam i:succ(succ(n)). if i=succ(n) then z else f`i" in bexI) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
107 |
apply (simp add: Ord_succ_mem_iff nat_0_le [THEN ltD] leI [THEN ltD] ltI) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
108 |
apply (blast intro: mem_asym) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
109 |
apply typecheck |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
110 |
apply auto |
13223 | 111 |
done |
112 |
||
113 |
lemma rtrancl_alt_eq_rtrancl: "rtrancl_alt(field(r),r) = r^*" |
|
114 |
by (blast del: subsetI |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
115 |
intro: rtrancl_alt_subset_rtrancl rtrancl_subset_rtrancl_alt) |
13223 | 116 |
|
117 |
||
13242 | 118 |
constdefs |
119 |
||
13324 | 120 |
rtran_closure_mem :: "[i=>o,i,i,i] => o" |
121 |
--{*The property of belonging to @{text "rtran_closure(r)"}*} |
|
122 |
"rtran_closure_mem(M,A,r,p) == |
|
123 |
\<exists>nnat[M]. \<exists>n[M]. \<exists>n'[M]. |
|
124 |
omega(M,nnat) & n\<in>nnat & successor(M,n,n') & |
|
125 |
(\<exists>f[M]. typed_function(M,n',A,f) & |
|
126 |
(\<exists>x[M]. \<exists>y[M]. \<exists>zero[M]. pair(M,x,y,p) & empty(M,zero) & |
|
127 |
fun_apply(M,f,zero,x) & fun_apply(M,f,n,y)) & |
|
128 |
(\<forall>j[M]. j\<in>n --> |
|
129 |
(\<exists>fj[M]. \<exists>sj[M]. \<exists>fsj[M]. \<exists>ffp[M]. |
|
130 |
fun_apply(M,f,j,fj) & successor(M,j,sj) & |
|
131 |
fun_apply(M,f,sj,fsj) & pair(M,fj,fsj,ffp) & ffp \<in> r)))" |
|
132 |
||
13242 | 133 |
rtran_closure :: "[i=>o,i,i] => o" |
13324 | 134 |
"rtran_closure(M,r,s) == |
135 |
\<forall>A[M]. is_field(M,r,A) --> |
|
136 |
(\<forall>p[M]. p \<in> s <-> rtran_closure_mem(M,A,r,p))" |
|
13242 | 137 |
|
138 |
tran_closure :: "[i=>o,i,i] => o" |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
139 |
"tran_closure(M,r,t) == |
13268 | 140 |
\<exists>s[M]. rtran_closure(M,r,s) & composition(M,r,s,t)" |
13242 | 141 |
|
13324 | 142 |
lemma (in M_axioms) rtran_closure_mem_iff: |
143 |
"[|M(A); M(r); M(p)|] |
|
144 |
==> rtran_closure_mem(M,A,r,p) <-> |
|
145 |
(\<exists>n[M]. n\<in>nat & |
|
146 |
(\<exists>f[M]. f \<in> succ(n) -> A & |
|
147 |
(\<exists>x[M]. \<exists>y[M]. p = <x,y> & f`0 = x & f`n = y) & |
|
148 |
(\<forall>i\<in>n. <f`i, f`succ(i)> \<in> r)))" |
|
13352 | 149 |
by (simp add: rtran_closure_mem_def Ord_succ_mem_iff nat_0_le [THEN ltD]) |
150 |
||
13242 | 151 |
|
13428 | 152 |
locale M_trancl = M_axioms + |
13242 | 153 |
assumes rtrancl_separation: |
13324 | 154 |
"[| M(r); M(A) |] ==> separation (M, rtran_closure_mem(M,A,r))" |
13242 | 155 |
and wellfounded_trancl_separation: |
13323
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
156 |
"[| M(r); M(Z) |] ==> |
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
157 |
separation (M, \<lambda>x. |
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
158 |
\<exists>w[M]. \<exists>wx[M]. \<exists>rp[M]. |
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
159 |
w \<in> Z & pair(M,w,x,wx) & tran_closure(M,r,rp) & wx \<in> rp)" |
13242 | 160 |
|
161 |
||
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
162 |
lemma (in M_trancl) rtran_closure_rtrancl: |
13242 | 163 |
"M(r) ==> rtran_closure(M,r,rtrancl(r))" |
13324 | 164 |
apply (simp add: rtran_closure_def rtran_closure_mem_iff |
165 |
rtrancl_alt_eq_rtrancl [symmetric] rtrancl_alt_def) |
|
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
166 |
apply (auto simp add: nat_0_le [THEN ltD] apply_funtype) |
13242 | 167 |
done |
168 |
||
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
169 |
lemma (in M_trancl) rtrancl_closed [intro,simp]: |
13242 | 170 |
"M(r) ==> M(rtrancl(r))" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
171 |
apply (insert rtrancl_separation [of r "field(r)"]) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
172 |
apply (simp add: rtrancl_alt_eq_rtrancl [symmetric] |
13324 | 173 |
rtrancl_alt_def rtran_closure_mem_iff) |
13242 | 174 |
done |
175 |
||
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
176 |
lemma (in M_trancl) rtrancl_abs [simp]: |
13242 | 177 |
"[| M(r); M(z) |] ==> rtran_closure(M,r,z) <-> z = rtrancl(r)" |
178 |
apply (rule iffI) |
|
179 |
txt{*Proving the right-to-left implication*} |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
180 |
prefer 2 apply (blast intro: rtran_closure_rtrancl) |
13242 | 181 |
apply (rule M_equalityI) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
182 |
apply (simp add: rtran_closure_def rtrancl_alt_eq_rtrancl [symmetric] |
13324 | 183 |
rtrancl_alt_def rtran_closure_mem_iff) |
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
184 |
apply (auto simp add: nat_0_le [THEN ltD] apply_funtype) |
13242 | 185 |
done |
186 |
||
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
187 |
lemma (in M_trancl) trancl_closed [intro,simp]: |
13242 | 188 |
"M(r) ==> M(trancl(r))" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
189 |
by (simp add: trancl_def comp_closed rtrancl_closed) |
13242 | 190 |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
191 |
lemma (in M_trancl) trancl_abs [simp]: |
13242 | 192 |
"[| M(r); M(z) |] ==> tran_closure(M,r,z) <-> z = trancl(r)" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
193 |
by (simp add: tran_closure_def trancl_def) |
13242 | 194 |
|
13323
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
195 |
lemma (in M_trancl) wellfounded_trancl_separation': |
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
196 |
"[| M(r); M(Z) |] ==> separation (M, \<lambda>x. \<exists>w[M]. w \<in> Z & <w,x> \<in> r^+)" |
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
197 |
by (insert wellfounded_trancl_separation [of r Z], simp) |
13242 | 198 |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
199 |
text{*Alternative proof of @{text wf_on_trancl}; inspiration for the |
13242 | 200 |
relativized version. Original version is on theory WF.*} |
201 |
lemma "[| wf[A](r); r-``A <= A |] ==> wf[A](r^+)" |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
202 |
apply (simp add: wf_on_def wf_def) |
13242 | 203 |
apply (safe intro!: equalityI) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
204 |
apply (drule_tac x = "{x\<in>A. \<exists>w. \<langle>w,x\<rangle> \<in> r^+ & w \<in> Z}" in spec) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
205 |
apply (blast elim: tranclE) |
13242 | 206 |
done |
207 |
||
208 |
lemma (in M_trancl) wellfounded_on_trancl: |
|
209 |
"[| wellfounded_on(M,A,r); r-``A <= A; M(r); M(A) |] |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
210 |
==> wellfounded_on(M,A,r^+)" |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
211 |
apply (simp add: wellfounded_on_def) |
13242 | 212 |
apply (safe intro!: equalityI) |
213 |
apply (rename_tac Z x) |
|
13268 | 214 |
apply (subgoal_tac "M({x\<in>A. \<exists>w[M]. w \<in> Z & \<langle>w,x\<rangle> \<in> r^+})") |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
215 |
prefer 2 |
13323
2c287f50c9f3
More relativization, reflection and proofs of separation
paulson
parents:
13306
diff
changeset
|
216 |
apply (blast intro: wellfounded_trancl_separation') |
13299 | 217 |
apply (drule_tac x = "{x\<in>A. \<exists>w[M]. w \<in> Z & \<langle>w,x\<rangle> \<in> r^+}" in rspec, safe) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
218 |
apply (blast dest: transM, simp) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
219 |
apply (rename_tac y w) |
13242 | 220 |
apply (drule_tac x=w in bspec, assumption, clarify) |
221 |
apply (erule tranclE) |
|
222 |
apply (blast dest: transM) (*transM is needed to prove M(xa)*) |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
223 |
apply blast |
13242 | 224 |
done |
225 |
||
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
226 |
lemma (in M_trancl) wellfounded_trancl: |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
227 |
"[|wellfounded(M,r); M(r)|] ==> wellfounded(M,r^+)" |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
228 |
apply (rotate_tac -1) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
229 |
apply (simp add: wellfounded_iff_wellfounded_on_field) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
230 |
apply (rule wellfounded_on_subset_A, erule wellfounded_on_trancl) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
231 |
apply blast |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
232 |
apply (simp_all add: trancl_type [THEN field_rel_subset]) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
233 |
done |
13242 | 234 |
|
13223 | 235 |
text{*Relativized to M: Every well-founded relation is a subset of some |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
236 |
inverse image of an ordinal. Key step is the construction (in M) of a |
13223 | 237 |
rank function.*} |
238 |
||
239 |
||
13428 | 240 |
locale M_wfrank = M_trancl + |
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
241 |
assumes wfrank_separation: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
242 |
"M(r) ==> |
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
243 |
separation (M, \<lambda>x. |
13348 | 244 |
\<forall>rplus[M]. tran_closure(M,r,rplus) --> |
13352 | 245 |
~ (\<exists>f[M]. M_is_recfun(M, %x f y. is_range(M,f,y), rplus, x, f)))" |
13348 | 246 |
and wfrank_strong_replacement: |
13242 | 247 |
"M(r) ==> |
13348 | 248 |
strong_replacement(M, \<lambda>x z. |
249 |
\<forall>rplus[M]. tran_closure(M,r,rplus) --> |
|
250 |
(\<exists>y[M]. \<exists>f[M]. pair(M,x,y,z) & |
|
13352 | 251 |
M_is_recfun(M, %x f y. is_range(M,f,y), rplus, x, f) & |
13348 | 252 |
is_range(M,f,y)))" |
13242 | 253 |
and Ord_wfrank_separation: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
254 |
"M(r) ==> |
13348 | 255 |
separation (M, \<lambda>x. |
256 |
\<forall>rplus[M]. tran_closure(M,r,rplus) --> |
|
257 |
~ (\<forall>f[M]. \<forall>rangef[M]. |
|
258 |
is_range(M,f,rangef) --> |
|
13352 | 259 |
M_is_recfun(M, \<lambda>x f y. is_range(M,f,y), rplus, x, f) --> |
13348 | 260 |
ordinal(M,rangef)))" |
261 |
||
262 |
text{*Proving that the relativized instances of Separation or Replacement |
|
263 |
agree with the "real" ones.*} |
|
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
264 |
|
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
265 |
lemma (in M_wfrank) wfrank_separation': |
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
266 |
"M(r) ==> |
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
267 |
separation |
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
268 |
(M, \<lambda>x. ~ (\<exists>f[M]. is_recfun(r^+, x, %x f. range(f), f)))" |
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
269 |
apply (insert wfrank_separation [of r]) |
13353 | 270 |
apply (simp add: relativize2_def is_recfun_abs [of "%x. range"]) |
13339
0f89104dd377
Fixed quantified variable name preservation for ball and bex (bounded quants)
paulson
parents:
13324
diff
changeset
|
271 |
done |
13223 | 272 |
|
13348 | 273 |
lemma (in M_wfrank) wfrank_strong_replacement': |
274 |
"M(r) ==> |
|
275 |
strong_replacement(M, \<lambda>x z. \<exists>y[M]. \<exists>f[M]. |
|
276 |
pair(M,x,y,z) & is_recfun(r^+, x, %x f. range(f), f) & |
|
277 |
y = range(f))" |
|
278 |
apply (insert wfrank_strong_replacement [of r]) |
|
13353 | 279 |
apply (simp add: relativize2_def is_recfun_abs [of "%x. range"]) |
13348 | 280 |
done |
281 |
||
282 |
lemma (in M_wfrank) Ord_wfrank_separation': |
|
283 |
"M(r) ==> |
|
284 |
separation (M, \<lambda>x. |
|
285 |
~ (\<forall>f[M]. is_recfun(r^+, x, \<lambda>x. range, f) --> Ord(range(f))))" |
|
286 |
apply (insert Ord_wfrank_separation [of r]) |
|
13353 | 287 |
apply (simp add: relativize2_def is_recfun_abs [of "%x. range"]) |
13348 | 288 |
done |
289 |
||
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
290 |
text{*This function, defined using replacement, is a rank function for |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
291 |
well-founded relations within the class M.*} |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
292 |
constdefs |
13242 | 293 |
wellfoundedrank :: "[i=>o,i,i] => i" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
294 |
"wellfoundedrank(M,r,A) == |
13268 | 295 |
{p. x\<in>A, \<exists>y[M]. \<exists>f[M]. |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
296 |
p = <x,y> & is_recfun(r^+, x, %x f. range(f), f) & |
13242 | 297 |
y = range(f)}" |
13223 | 298 |
|
13268 | 299 |
lemma (in M_wfrank) exists_wfrank: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
300 |
"[| wellfounded(M,r); M(a); M(r) |] |
13268 | 301 |
==> \<exists>f[M]. is_recfun(r^+, a, %x f. range(f), f)" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
302 |
apply (rule wellfounded_exists_is_recfun) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
303 |
apply (blast intro: wellfounded_trancl) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
304 |
apply (rule trans_trancl) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
305 |
apply (erule wfrank_separation') |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
306 |
apply (erule wfrank_strong_replacement') |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
307 |
apply (simp_all add: trancl_subset_times) |
13223 | 308 |
done |
309 |
||
13268 | 310 |
lemma (in M_wfrank) M_wellfoundedrank: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
311 |
"[| wellfounded(M,r); M(r); M(A) |] ==> M(wellfoundedrank(M,r,A))" |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
312 |
apply (insert wfrank_strong_replacement' [of r]) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
313 |
apply (simp add: wellfoundedrank_def) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
314 |
apply (rule strong_replacement_closed) |
13242 | 315 |
apply assumption+ |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
316 |
apply (rule univalent_is_recfun) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
317 |
apply (blast intro: wellfounded_trancl) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
318 |
apply (rule trans_trancl) |
13505 | 319 |
apply (simp add: trancl_subset_times) |
320 |
apply (blast dest: transM) |
|
13223 | 321 |
done |
322 |
||
13268 | 323 |
lemma (in M_wfrank) Ord_wfrank_range [rule_format]: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
324 |
"[| wellfounded(M,r); a\<in>A; M(r); M(A) |] |
13348 | 325 |
==> \<forall>f[M]. is_recfun(r^+, a, %x f. range(f), f) --> Ord(range(f))" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
326 |
apply (drule wellfounded_trancl, assumption) |
13428 | 327 |
apply (rule wellfounded_induct, assumption, erule (1) transM) |
13254 | 328 |
apply simp |
13348 | 329 |
apply (blast intro: Ord_wfrank_separation', clarify) |
13242 | 330 |
txt{*The reasoning in both cases is that we get @{term y} such that |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
331 |
@{term "\<langle>y, x\<rangle> \<in> r^+"}. We find that |
13242 | 332 |
@{term "f`y = restrict(f, r^+ -`` {y})"}. *} |
333 |
apply (rule OrdI [OF _ Ord_is_Transset]) |
|
334 |
txt{*An ordinal is a transitive set...*} |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
335 |
apply (simp add: Transset_def) |
13242 | 336 |
apply clarify |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
337 |
apply (frule apply_recfun2, assumption) |
13242 | 338 |
apply (force simp add: restrict_iff) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
339 |
txt{*...of ordinals. This second case requires the induction hyp.*} |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
340 |
apply clarify |
13242 | 341 |
apply (rename_tac i y) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
342 |
apply (frule apply_recfun2, assumption) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
343 |
apply (frule is_recfun_imp_in_r, assumption) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
344 |
apply (frule is_recfun_restrict) |
13242 | 345 |
(*simp_all won't work*) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
346 |
apply (simp add: trans_trancl trancl_subset_times)+ |
13242 | 347 |
apply (drule spec [THEN mp], assumption) |
348 |
apply (subgoal_tac "M(restrict(f, r^+ -`` {y}))") |
|
13348 | 349 |
apply (drule_tac x="restrict(f, r^+ -`` {y})" in rspec) |
350 |
apply assumption |
|
13242 | 351 |
apply (simp add: function_apply_equality [OF _ is_recfun_imp_function]) |
352 |
apply (blast dest: pair_components_in_M) |
|
13223 | 353 |
done |
354 |
||
13268 | 355 |
lemma (in M_wfrank) Ord_range_wellfoundedrank: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
356 |
"[| wellfounded(M,r); r \<subseteq> A*A; M(r); M(A) |] |
13242 | 357 |
==> Ord (range(wellfoundedrank(M,r,A)))" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
358 |
apply (frule wellfounded_trancl, assumption) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
359 |
apply (frule trancl_subset_times) |
13242 | 360 |
apply (simp add: wellfoundedrank_def) |
361 |
apply (rule OrdI [OF _ Ord_is_Transset]) |
|
362 |
prefer 2 |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
363 |
txt{*by our previous result the range consists of ordinals.*} |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
364 |
apply (blast intro: Ord_wfrank_range) |
13242 | 365 |
txt{*We still must show that the range is a transitive set.*} |
13247 | 366 |
apply (simp add: Transset_def, clarify, simp) |
13293 | 367 |
apply (rename_tac x i f u) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
368 |
apply (frule is_recfun_imp_in_r, assumption) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
369 |
apply (subgoal_tac "M(u) & M(i) & M(x)") |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
370 |
prefer 2 apply (blast dest: transM, clarify) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
371 |
apply (rule_tac a=u in rangeI) |
13293 | 372 |
apply (rule_tac x=u in ReplaceI) |
373 |
apply simp |
|
374 |
apply (rule_tac x="restrict(f, r^+ -`` {u})" in rexI) |
|
375 |
apply (blast intro: is_recfun_restrict trans_trancl dest: apply_recfun2) |
|
376 |
apply simp |
|
377 |
apply blast |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
378 |
txt{*Unicity requirement of Replacement*} |
13242 | 379 |
apply clarify |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
380 |
apply (frule apply_recfun2, assumption) |
13293 | 381 |
apply (simp add: trans_trancl is_recfun_cut) |
13223 | 382 |
done |
383 |
||
13268 | 384 |
lemma (in M_wfrank) function_wellfoundedrank: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
385 |
"[| wellfounded(M,r); M(r); M(A)|] |
13242 | 386 |
==> function(wellfoundedrank(M,r,A))" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
387 |
apply (simp add: wellfoundedrank_def function_def, clarify) |
13242 | 388 |
txt{*Uniqueness: repeated below!*} |
389 |
apply (drule is_recfun_functional, assumption) |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
390 |
apply (blast intro: wellfounded_trancl) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
391 |
apply (simp_all add: trancl_subset_times trans_trancl) |
13223 | 392 |
done |
393 |
||
13268 | 394 |
lemma (in M_wfrank) domain_wellfoundedrank: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
395 |
"[| wellfounded(M,r); M(r); M(A)|] |
13242 | 396 |
==> domain(wellfoundedrank(M,r,A)) = A" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
397 |
apply (simp add: wellfoundedrank_def function_def) |
13242 | 398 |
apply (rule equalityI, auto) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
399 |
apply (frule transM, assumption) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
400 |
apply (frule_tac a=x in exists_wfrank, assumption+, clarify) |
13293 | 401 |
apply (rule_tac b="range(f)" in domainI) |
402 |
apply (rule_tac x=x in ReplaceI) |
|
403 |
apply simp |
|
13268 | 404 |
apply (rule_tac x=f in rexI, blast, simp_all) |
13242 | 405 |
txt{*Uniqueness (for Replacement): repeated above!*} |
406 |
apply clarify |
|
407 |
apply (drule is_recfun_functional, assumption) |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
408 |
apply (blast intro: wellfounded_trancl) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
409 |
apply (simp_all add: trancl_subset_times trans_trancl) |
13223 | 410 |
done |
411 |
||
13268 | 412 |
lemma (in M_wfrank) wellfoundedrank_type: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
413 |
"[| wellfounded(M,r); M(r); M(A)|] |
13242 | 414 |
==> wellfoundedrank(M,r,A) \<in> A -> range(wellfoundedrank(M,r,A))" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
415 |
apply (frule function_wellfoundedrank [of r A], assumption+) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
416 |
apply (frule function_imp_Pi) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
417 |
apply (simp add: wellfoundedrank_def relation_def) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
418 |
apply blast |
13242 | 419 |
apply (simp add: domain_wellfoundedrank) |
13223 | 420 |
done |
421 |
||
13268 | 422 |
lemma (in M_wfrank) Ord_wellfoundedrank: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
423 |
"[| wellfounded(M,r); a \<in> A; r \<subseteq> A*A; M(r); M(A) |] |
13242 | 424 |
==> Ord(wellfoundedrank(M,r,A) ` a)" |
425 |
by (blast intro: apply_funtype [OF wellfoundedrank_type] |
|
426 |
Ord_in_Ord [OF Ord_range_wellfoundedrank]) |
|
13223 | 427 |
|
13268 | 428 |
lemma (in M_wfrank) wellfoundedrank_eq: |
13242 | 429 |
"[| is_recfun(r^+, a, %x. range, f); |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
430 |
wellfounded(M,r); a \<in> A; M(f); M(r); M(A)|] |
13242 | 431 |
==> wellfoundedrank(M,r,A) ` a = range(f)" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
432 |
apply (rule apply_equality) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
433 |
prefer 2 apply (blast intro: wellfoundedrank_type) |
13242 | 434 |
apply (simp add: wellfoundedrank_def) |
435 |
apply (rule ReplaceI) |
|
13268 | 436 |
apply (rule_tac x="range(f)" in rexI) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
437 |
apply blast |
13268 | 438 |
apply simp_all |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
439 |
txt{*Unicity requirement of Replacement*} |
13242 | 440 |
apply clarify |
441 |
apply (drule is_recfun_functional, assumption) |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
442 |
apply (blast intro: wellfounded_trancl) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
443 |
apply (simp_all add: trancl_subset_times trans_trancl) |
13223 | 444 |
done |
445 |
||
13247 | 446 |
|
13268 | 447 |
lemma (in M_wfrank) wellfoundedrank_lt: |
13247 | 448 |
"[| <a,b> \<in> r; |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
449 |
wellfounded(M,r); r \<subseteq> A*A; M(r); M(A)|] |
13247 | 450 |
==> wellfoundedrank(M,r,A) ` a < wellfoundedrank(M,r,A) ` b" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
451 |
apply (frule wellfounded_trancl, assumption) |
13247 | 452 |
apply (subgoal_tac "a\<in>A & b\<in>A") |
453 |
prefer 2 apply blast |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
454 |
apply (simp add: lt_def Ord_wellfoundedrank, clarify) |
13428 | 455 |
apply (frule exists_wfrank [of concl: _ b], erule (1) transM, assumption) |
456 |
apply clarify |
|
13247 | 457 |
apply (rename_tac fb) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
458 |
apply (frule is_recfun_restrict [of concl: "r^+" a]) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
459 |
apply (rule trans_trancl, assumption) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
460 |
apply (simp_all add: r_into_trancl trancl_subset_times) |
13247 | 461 |
txt{*Still the same goal, but with new @{text is_recfun} assumptions.*} |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
462 |
apply (simp add: wellfoundedrank_eq) |
13247 | 463 |
apply (frule_tac a=a in wellfoundedrank_eq, assumption+) |
464 |
apply (simp_all add: transM [of a]) |
|
465 |
txt{*We have used equations for wellfoundedrank and now must use some |
|
466 |
for @{text is_recfun}. *} |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
467 |
apply (rule_tac a=a in rangeI) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
468 |
apply (simp add: is_recfun_type [THEN apply_iff] vimage_singleton_iff |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
469 |
r_into_trancl apply_recfun r_into_trancl) |
13247 | 470 |
done |
471 |
||
472 |
||
13268 | 473 |
lemma (in M_wfrank) wellfounded_imp_subset_rvimage: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
474 |
"[|wellfounded(M,r); r \<subseteq> A*A; M(r); M(A)|] |
13247 | 475 |
==> \<exists>i f. Ord(i) & r <= rvimage(A, f, Memrel(i))" |
476 |
apply (rule_tac x="range(wellfoundedrank(M,r,A))" in exI) |
|
477 |
apply (rule_tac x="wellfoundedrank(M,r,A)" in exI) |
|
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
478 |
apply (simp add: Ord_range_wellfoundedrank, clarify) |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
479 |
apply (frule subsetD, assumption, clarify) |
13247 | 480 |
apply (simp add: rvimage_iff wellfoundedrank_lt [THEN ltD]) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
481 |
apply (blast intro: apply_rangeI wellfoundedrank_type) |
13247 | 482 |
done |
483 |
||
13268 | 484 |
lemma (in M_wfrank) wellfounded_imp_wf: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
485 |
"[|wellfounded(M,r); relation(r); M(r)|] ==> wf(r)" |
13247 | 486 |
by (blast dest!: relation_field_times_field wellfounded_imp_subset_rvimage |
487 |
intro: wf_rvimage_Ord [THEN wf_subset]) |
|
488 |
||
13268 | 489 |
lemma (in M_wfrank) wellfounded_on_imp_wf_on: |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
490 |
"[|wellfounded_on(M,A,r); relation(r); M(r); M(A)|] ==> wf[A](r)" |
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
491 |
apply (simp add: wellfounded_on_iff_wellfounded wf_on_def) |
13247 | 492 |
apply (rule wellfounded_imp_wf) |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
493 |
apply (simp_all add: relation_def) |
13247 | 494 |
done |
495 |
||
496 |
||
13268 | 497 |
theorem (in M_wfrank) wf_abs [simp]: |
13247 | 498 |
"[|relation(r); M(r)|] ==> wellfounded(M,r) <-> wf(r)" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
499 |
by (blast intro: wellfounded_imp_wf wf_imp_relativized) |
13247 | 500 |
|
13268 | 501 |
theorem (in M_wfrank) wf_on_abs [simp]: |
13247 | 502 |
"[|relation(r); M(r); M(A)|] ==> wellfounded_on(M,A,r) <-> wf[A](r)" |
13251
74cb2af8811e
new treatment of wfrec, replacing wf[A](r) by wf(r)
paulson
parents:
13247
diff
changeset
|
503 |
by (blast intro: wellfounded_on_imp_wf_on wf_on_imp_relativized) |
13247 | 504 |
|
13254 | 505 |
|
506 |
text{*absoluteness for wfrec-defined functions.*} |
|
507 |
||
508 |
(*first use is_recfun, then M_is_recfun*) |
|
509 |
||
510 |
lemma (in M_trancl) wfrec_relativize: |
|
511 |
"[|wf(r); M(a); M(r); |
|
13268 | 512 |
strong_replacement(M, \<lambda>x z. \<exists>y[M]. \<exists>g[M]. |
13254 | 513 |
pair(M,x,y,z) & |
514 |
is_recfun(r^+, x, \<lambda>x f. H(x, restrict(f, r -`` {x})), g) & |
|
515 |
y = H(x, restrict(g, r -`` {x}))); |
|
516 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g))|] |
|
517 |
==> wfrec(r,a,H) = z <-> |
|
13268 | 518 |
(\<exists>f[M]. is_recfun(r^+, a, \<lambda>x f. H(x, restrict(f, r -`` {x})), f) & |
13254 | 519 |
z = H(a,restrict(f,r-``{a})))" |
520 |
apply (frule wf_trancl) |
|
521 |
apply (simp add: wftrec_def wfrec_def, safe) |
|
522 |
apply (frule wf_exists_is_recfun |
|
523 |
[of concl: "r^+" a "\<lambda>x f. H(x, restrict(f, r -`` {x}))"]) |
|
524 |
apply (simp_all add: trans_trancl function_restrictI trancl_subset_times) |
|
13268 | 525 |
apply (clarify, rule_tac x=x in rexI) |
13254 | 526 |
apply (simp_all add: the_recfun_eq trans_trancl trancl_subset_times) |
527 |
done |
|
528 |
||
529 |
||
530 |
text{*Assuming @{term r} is transitive simplifies the occurrences of @{text H}. |
|
531 |
The premise @{term "relation(r)"} is necessary |
|
532 |
before we can replace @{term "r^+"} by @{term r}. *} |
|
533 |
theorem (in M_trancl) trans_wfrec_relativize: |
|
534 |
"[|wf(r); trans(r); relation(r); M(r); M(a); |
|
13353 | 535 |
wfrec_replacement(M,MH,r); relativize2(M,MH,H); |
13254 | 536 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g))|] |
13268 | 537 |
==> wfrec(r,a,H) = z <-> (\<exists>f[M]. is_recfun(r,a,H,f) & z = H(a,f))" |
13353 | 538 |
apply (frule wfrec_replacement', assumption+) |
539 |
apply (simp cong: is_recfun_cong |
|
540 |
add: wfrec_relativize trancl_eq_r |
|
541 |
is_recfun_restrict_idem domain_restrict_idem) |
|
542 |
done |
|
13254 | 543 |
|
13353 | 544 |
theorem (in M_trancl) trans_wfrec_abs: |
545 |
"[|wf(r); trans(r); relation(r); M(r); M(a); M(z); |
|
546 |
wfrec_replacement(M,MH,r); relativize2(M,MH,H); |
|
547 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g))|] |
|
548 |
==> is_wfrec(M,MH,r,a,z) <-> z=wfrec(r,a,H)" |
|
549 |
apply (simp add: trans_wfrec_relativize [THEN iff_sym] is_wfrec_abs, blast) |
|
550 |
done |
|
13254 | 551 |
|
552 |
lemma (in M_trancl) trans_eq_pair_wfrec_iff: |
|
553 |
"[|wf(r); trans(r); relation(r); M(r); M(y); |
|
13353 | 554 |
wfrec_replacement(M,MH,r); relativize2(M,MH,H); |
13254 | 555 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g))|] |
556 |
==> y = <x, wfrec(r, x, H)> <-> |
|
13268 | 557 |
(\<exists>f[M]. is_recfun(r,x,H,f) & y = <x, H(x,f)>)" |
13293 | 558 |
apply safe |
559 |
apply (simp add: trans_wfrec_relativize [THEN iff_sym, of concl: _ x]) |
|
13254 | 560 |
txt{*converse direction*} |
561 |
apply (rule sym) |
|
562 |
apply (simp add: trans_wfrec_relativize, blast) |
|
563 |
done |
|
564 |
||
565 |
||
566 |
subsection{*M is closed under well-founded recursion*} |
|
567 |
||
568 |
text{*Lemma with the awkward premise mentioning @{text wfrec}.*} |
|
13268 | 569 |
lemma (in M_wfrank) wfrec_closed_lemma [rule_format]: |
13254 | 570 |
"[|wf(r); M(r); |
571 |
strong_replacement(M, \<lambda>x y. y = \<langle>x, wfrec(r, x, H)\<rangle>); |
|
572 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g)) |] |
|
573 |
==> M(a) --> M(wfrec(r,a,H))" |
|
574 |
apply (rule_tac a=a in wf_induct, assumption+) |
|
575 |
apply (subst wfrec, assumption, clarify) |
|
576 |
apply (drule_tac x1=x and x="\<lambda>x\<in>r -`` {x}. wfrec(r, x, H)" |
|
577 |
in rspec [THEN rspec]) |
|
578 |
apply (simp_all add: function_lam) |
|
13505 | 579 |
apply (blast intro: lam_closed dest: pair_components_in_M) |
13254 | 580 |
done |
581 |
||
582 |
text{*Eliminates one instance of replacement.*} |
|
13268 | 583 |
lemma (in M_wfrank) wfrec_replacement_iff: |
13353 | 584 |
"strong_replacement(M, \<lambda>x z. |
585 |
\<exists>y[M]. pair(M,x,y,z) & (\<exists>g[M]. is_recfun(r,x,H,g) & y = H(x,g))) <-> |
|
13254 | 586 |
strong_replacement(M, |
13268 | 587 |
\<lambda>x y. \<exists>f[M]. is_recfun(r,x,H,f) & y = <x, H(x,f)>)" |
13254 | 588 |
apply simp |
589 |
apply (rule strong_replacement_cong, blast) |
|
590 |
done |
|
591 |
||
592 |
text{*Useful version for transitive relations*} |
|
13268 | 593 |
theorem (in M_wfrank) trans_wfrec_closed: |
13254 | 594 |
"[|wf(r); trans(r); relation(r); M(r); M(a); |
13353 | 595 |
wfrec_replacement(M,MH,r); relativize2(M,MH,H); |
13254 | 596 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g)) |] |
597 |
==> M(wfrec(r,a,H))" |
|
13353 | 598 |
apply (frule wfrec_replacement', assumption+) |
13254 | 599 |
apply (frule wfrec_replacement_iff [THEN iffD1]) |
600 |
apply (rule wfrec_closed_lemma, assumption+) |
|
601 |
apply (simp_all add: wfrec_replacement_iff trans_eq_pair_wfrec_iff) |
|
602 |
done |
|
603 |
||
604 |
section{*Absoluteness without assuming transitivity*} |
|
605 |
lemma (in M_trancl) eq_pair_wfrec_iff: |
|
606 |
"[|wf(r); M(r); M(y); |
|
13268 | 607 |
strong_replacement(M, \<lambda>x z. \<exists>y[M]. \<exists>g[M]. |
13254 | 608 |
pair(M,x,y,z) & |
609 |
is_recfun(r^+, x, \<lambda>x f. H(x, restrict(f, r -`` {x})), g) & |
|
610 |
y = H(x, restrict(g, r -`` {x}))); |
|
611 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g))|] |
|
612 |
==> y = <x, wfrec(r, x, H)> <-> |
|
13268 | 613 |
(\<exists>f[M]. is_recfun(r^+, x, \<lambda>x f. H(x, restrict(f, r -`` {x})), f) & |
13254 | 614 |
y = <x, H(x,restrict(f,r-``{x}))>)" |
615 |
apply safe |
|
13293 | 616 |
apply (simp add: wfrec_relativize [THEN iff_sym, of concl: _ x]) |
13254 | 617 |
txt{*converse direction*} |
618 |
apply (rule sym) |
|
619 |
apply (simp add: wfrec_relativize, blast) |
|
620 |
done |
|
621 |
||
622 |
text{*Full version not assuming transitivity, but maybe not very useful.*} |
|
13268 | 623 |
theorem (in M_wfrank) wfrec_closed: |
13254 | 624 |
"[|wf(r); M(r); M(a); |
13353 | 625 |
wfrec_replacement(M,MH,r^+); |
626 |
relativize2(M,MH, \<lambda>x f. H(x, restrict(f, r -`` {x}))); |
|
13254 | 627 |
\<forall>x[M]. \<forall>g[M]. function(g) --> M(H(x,g)) |] |
628 |
==> M(wfrec(r,a,H))" |
|
13353 | 629 |
apply (frule wfrec_replacement' |
630 |
[of MH "r^+" "\<lambda>x f. H(x, restrict(f, r -`` {x}))"]) |
|
631 |
prefer 4 |
|
632 |
apply (frule wfrec_replacement_iff [THEN iffD1]) |
|
633 |
apply (rule wfrec_closed_lemma, assumption+) |
|
634 |
apply (simp_all add: eq_pair_wfrec_iff func.function_restrictI) |
|
13254 | 635 |
done |
636 |
||
13223 | 637 |
end |