author | kuncar |
Sat, 16 Mar 2013 20:51:23 +0100 | |
changeset 51437 | 8739f8abbecb |
parent 51112 | da97167e03f7 |
child 51955 | 04d9381bebff |
permissions | -rw-r--r-- |
47325 | 1 |
(* Title: HOL/Transfer.thy |
2 |
Author: Brian Huffman, TU Muenchen |
|
3 |
*) |
|
4 |
||
5 |
header {* Generic theorem transfer using relations *} |
|
6 |
||
7 |
theory Transfer |
|
51112 | 8 |
imports Hilbert_Choice |
47325 | 9 |
begin |
10 |
||
11 |
subsection {* Relator for function space *} |
|
12 |
||
13 |
definition |
|
14 |
fun_rel :: "('a \<Rightarrow> 'c \<Rightarrow> bool) \<Rightarrow> ('b \<Rightarrow> 'd \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('c \<Rightarrow> 'd) \<Rightarrow> bool" (infixr "===>" 55) |
|
15 |
where |
|
16 |
"fun_rel A B = (\<lambda>f g. \<forall>x y. A x y \<longrightarrow> B (f x) (g y))" |
|
17 |
||
18 |
lemma fun_relI [intro]: |
|
19 |
assumes "\<And>x y. A x y \<Longrightarrow> B (f x) (g y)" |
|
20 |
shows "(A ===> B) f g" |
|
21 |
using assms by (simp add: fun_rel_def) |
|
22 |
||
23 |
lemma fun_relD: |
|
24 |
assumes "(A ===> B) f g" and "A x y" |
|
25 |
shows "B (f x) (g y)" |
|
26 |
using assms by (simp add: fun_rel_def) |
|
27 |
||
47937
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47924
diff
changeset
|
28 |
lemma fun_relD2: |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47924
diff
changeset
|
29 |
assumes "(A ===> B) f g" and "A x x" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47924
diff
changeset
|
30 |
shows "B (f x) (g x)" |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47924
diff
changeset
|
31 |
using assms unfolding fun_rel_def by auto |
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
kuncar
parents:
47924
diff
changeset
|
32 |
|
47325 | 33 |
lemma fun_relE: |
34 |
assumes "(A ===> B) f g" and "A x y" |
|
35 |
obtains "B (f x) (g y)" |
|
36 |
using assms by (simp add: fun_rel_def) |
|
37 |
||
38 |
lemma fun_rel_eq: |
|
39 |
shows "((op =) ===> (op =)) = (op =)" |
|
40 |
by (auto simp add: fun_eq_iff elim: fun_relE) |
|
41 |
||
42 |
lemma fun_rel_eq_rel: |
|
43 |
shows "((op =) ===> R) = (\<lambda>f g. \<forall>x. R (f x) (g x))" |
|
44 |
by (simp add: fun_rel_def) |
|
45 |
||
46 |
||
47 |
subsection {* Transfer method *} |
|
48 |
||
47789
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
49 |
text {* Explicit tag for relation membership allows for |
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
50 |
backward proof methods. *} |
47325 | 51 |
|
52 |
definition Rel :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool" |
|
53 |
where "Rel r \<equiv> r" |
|
54 |
||
49975
faf4afed009f
transfer package: more flexible handling of equality relations using is_equality predicate
huffman
parents:
48891
diff
changeset
|
55 |
text {* Handling of equality relations *} |
faf4afed009f
transfer package: more flexible handling of equality relations using is_equality predicate
huffman
parents:
48891
diff
changeset
|
56 |
|
faf4afed009f
transfer package: more flexible handling of equality relations using is_equality predicate
huffman
parents:
48891
diff
changeset
|
57 |
definition is_equality :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" |
faf4afed009f
transfer package: more flexible handling of equality relations using is_equality predicate
huffman
parents:
48891
diff
changeset
|
58 |
where "is_equality R \<longleftrightarrow> R = (op =)" |
faf4afed009f
transfer package: more flexible handling of equality relations using is_equality predicate
huffman
parents:
48891
diff
changeset
|
59 |
|
51437
8739f8abbecb
fixing transfer tactic - unfold fully identity relation by using relator_eq
kuncar
parents:
51112
diff
changeset
|
60 |
lemma is_equality_eq: "is_equality (op =)" |
8739f8abbecb
fixing transfer tactic - unfold fully identity relation by using relator_eq
kuncar
parents:
51112
diff
changeset
|
61 |
unfolding is_equality_def by simp |
8739f8abbecb
fixing transfer tactic - unfold fully identity relation by using relator_eq
kuncar
parents:
51112
diff
changeset
|
62 |
|
47325 | 63 |
text {* Handling of meta-logic connectives *} |
64 |
||
65 |
definition transfer_forall where |
|
66 |
"transfer_forall \<equiv> All" |
|
67 |
||
68 |
definition transfer_implies where |
|
69 |
"transfer_implies \<equiv> op \<longrightarrow>" |
|
70 |
||
47355
3d9d98e0f1a4
add bounded quantifier constant transfer_bforall, whose definition is unfolded after transfer
huffman
parents:
47325
diff
changeset
|
71 |
definition transfer_bforall :: "('a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> bool" |
3d9d98e0f1a4
add bounded quantifier constant transfer_bforall, whose definition is unfolded after transfer
huffman
parents:
47325
diff
changeset
|
72 |
where "transfer_bforall \<equiv> (\<lambda>P Q. \<forall>x. P x \<longrightarrow> Q x)" |
3d9d98e0f1a4
add bounded quantifier constant transfer_bforall, whose definition is unfolded after transfer
huffman
parents:
47325
diff
changeset
|
73 |
|
47325 | 74 |
lemma transfer_forall_eq: "(\<And>x. P x) \<equiv> Trueprop (transfer_forall (\<lambda>x. P x))" |
75 |
unfolding atomize_all transfer_forall_def .. |
|
76 |
||
77 |
lemma transfer_implies_eq: "(A \<Longrightarrow> B) \<equiv> Trueprop (transfer_implies A B)" |
|
78 |
unfolding atomize_imp transfer_implies_def .. |
|
79 |
||
47355
3d9d98e0f1a4
add bounded quantifier constant transfer_bforall, whose definition is unfolded after transfer
huffman
parents:
47325
diff
changeset
|
80 |
lemma transfer_bforall_unfold: |
3d9d98e0f1a4
add bounded quantifier constant transfer_bforall, whose definition is unfolded after transfer
huffman
parents:
47325
diff
changeset
|
81 |
"Trueprop (transfer_bforall P (\<lambda>x. Q x)) \<equiv> (\<And>x. P x \<Longrightarrow> Q x)" |
3d9d98e0f1a4
add bounded quantifier constant transfer_bforall, whose definition is unfolded after transfer
huffman
parents:
47325
diff
changeset
|
82 |
unfolding transfer_bforall_def atomize_imp atomize_all .. |
3d9d98e0f1a4
add bounded quantifier constant transfer_bforall, whose definition is unfolded after transfer
huffman
parents:
47325
diff
changeset
|
83 |
|
47658
7631f6f7873d
enable variant of transfer method that proves an implication instead of an equivalence
huffman
parents:
47637
diff
changeset
|
84 |
lemma transfer_start: "\<lbrakk>P; Rel (op =) P Q\<rbrakk> \<Longrightarrow> Q" |
47325 | 85 |
unfolding Rel_def by simp |
86 |
||
47658
7631f6f7873d
enable variant of transfer method that proves an implication instead of an equivalence
huffman
parents:
47637
diff
changeset
|
87 |
lemma transfer_start': "\<lbrakk>P; Rel (op \<longrightarrow>) P Q\<rbrakk> \<Longrightarrow> Q" |
47325 | 88 |
unfolding Rel_def by simp |
89 |
||
47635
ebb79474262c
rename 'correspondence' method to 'transfer_prover'
huffman
parents:
47627
diff
changeset
|
90 |
lemma transfer_prover_start: "\<lbrakk>x = x'; Rel R x' y\<rbrakk> \<Longrightarrow> Rel R x y" |
47618
1568dadd598a
make correspondence tactic more robust by replacing lhs with schematic variable before applying intro rules
huffman
parents:
47612
diff
changeset
|
91 |
by simp |
1568dadd598a
make correspondence tactic more robust by replacing lhs with schematic variable before applying intro rules
huffman
parents:
47612
diff
changeset
|
92 |
|
47325 | 93 |
lemma Rel_eq_refl: "Rel (op =) x x" |
94 |
unfolding Rel_def .. |
|
95 |
||
47789
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
96 |
lemma Rel_app: |
47523
1bf0e92c1ca0
make transfer method more deterministic by using SOLVED' on some subgoals
huffman
parents:
47503
diff
changeset
|
97 |
assumes "Rel (A ===> B) f g" and "Rel A x y" |
47789
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
98 |
shows "Rel B (f x) (g y)" |
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
99 |
using assms unfolding Rel_def fun_rel_def by fast |
47523
1bf0e92c1ca0
make transfer method more deterministic by using SOLVED' on some subgoals
huffman
parents:
47503
diff
changeset
|
100 |
|
47789
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
101 |
lemma Rel_abs: |
47523
1bf0e92c1ca0
make transfer method more deterministic by using SOLVED' on some subgoals
huffman
parents:
47503
diff
changeset
|
102 |
assumes "\<And>x y. Rel A x y \<Longrightarrow> Rel B (f x) (g y)" |
47789
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
103 |
shows "Rel (A ===> B) (\<lambda>x. f x) (\<lambda>y. g y)" |
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
104 |
using assms unfolding Rel_def fun_rel_def by fast |
47523
1bf0e92c1ca0
make transfer method more deterministic by using SOLVED' on some subgoals
huffman
parents:
47503
diff
changeset
|
105 |
|
48891 | 106 |
ML_file "Tools/transfer.ML" |
47325 | 107 |
setup Transfer.setup |
108 |
||
49975
faf4afed009f
transfer package: more flexible handling of equality relations using is_equality predicate
huffman
parents:
48891
diff
changeset
|
109 |
declare refl [transfer_rule] |
faf4afed009f
transfer package: more flexible handling of equality relations using is_equality predicate
huffman
parents:
48891
diff
changeset
|
110 |
|
47503 | 111 |
declare fun_rel_eq [relator_eq] |
112 |
||
47789
71a526ee569a
implement transfer tactic with more scalable forward proof methods
huffman
parents:
47684
diff
changeset
|
113 |
hide_const (open) Rel |
47325 | 114 |
|
115 |
||
116 |
subsection {* Predicates on relations, i.e. ``class constraints'' *} |
|
117 |
||
118 |
definition right_total :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" |
|
119 |
where "right_total R \<longleftrightarrow> (\<forall>y. \<exists>x. R x y)" |
|
120 |
||
121 |
definition right_unique :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" |
|
122 |
where "right_unique R \<longleftrightarrow> (\<forall>x y z. R x y \<longrightarrow> R x z \<longrightarrow> y = z)" |
|
123 |
||
124 |
definition bi_total :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" |
|
125 |
where "bi_total R \<longleftrightarrow> (\<forall>x. \<exists>y. R x y) \<and> (\<forall>y. \<exists>x. R x y)" |
|
126 |
||
127 |
definition bi_unique :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" |
|
128 |
where "bi_unique R \<longleftrightarrow> |
|
129 |
(\<forall>x y z. R x y \<longrightarrow> R x z \<longrightarrow> y = z) \<and> |
|
130 |
(\<forall>x y z. R x z \<longrightarrow> R y z \<longrightarrow> x = y)" |
|
131 |
||
132 |
lemma right_total_alt_def: |
|
133 |
"right_total R \<longleftrightarrow> ((R ===> op \<longrightarrow>) ===> op \<longrightarrow>) All All" |
|
134 |
unfolding right_total_def fun_rel_def |
|
135 |
apply (rule iffI, fast) |
|
136 |
apply (rule allI) |
|
137 |
apply (drule_tac x="\<lambda>x. True" in spec) |
|
138 |
apply (drule_tac x="\<lambda>y. \<exists>x. R x y" in spec) |
|
139 |
apply fast |
|
140 |
done |
|
141 |
||
142 |
lemma right_unique_alt_def: |
|
143 |
"right_unique R \<longleftrightarrow> (R ===> R ===> op \<longrightarrow>) (op =) (op =)" |
|
144 |
unfolding right_unique_def fun_rel_def by auto |
|
145 |
||
146 |
lemma bi_total_alt_def: |
|
147 |
"bi_total R \<longleftrightarrow> ((R ===> op =) ===> op =) All All" |
|
148 |
unfolding bi_total_def fun_rel_def |
|
149 |
apply (rule iffI, fast) |
|
150 |
apply safe |
|
151 |
apply (drule_tac x="\<lambda>x. \<exists>y. R x y" in spec) |
|
152 |
apply (drule_tac x="\<lambda>y. True" in spec) |
|
153 |
apply fast |
|
154 |
apply (drule_tac x="\<lambda>x. True" in spec) |
|
155 |
apply (drule_tac x="\<lambda>y. \<exists>x. R x y" in spec) |
|
156 |
apply fast |
|
157 |
done |
|
158 |
||
159 |
lemma bi_unique_alt_def: |
|
160 |
"bi_unique R \<longleftrightarrow> (R ===> R ===> op =) (op =) (op =)" |
|
161 |
unfolding bi_unique_def fun_rel_def by auto |
|
162 |
||
47660 | 163 |
text {* Properties are preserved by relation composition. *} |
164 |
||
165 |
lemma OO_def: "R OO S = (\<lambda>x z. \<exists>y. R x y \<and> S y z)" |
|
166 |
by auto |
|
167 |
||
168 |
lemma bi_total_OO: "\<lbrakk>bi_total A; bi_total B\<rbrakk> \<Longrightarrow> bi_total (A OO B)" |
|
169 |
unfolding bi_total_def OO_def by metis |
|
170 |
||
171 |
lemma bi_unique_OO: "\<lbrakk>bi_unique A; bi_unique B\<rbrakk> \<Longrightarrow> bi_unique (A OO B)" |
|
172 |
unfolding bi_unique_def OO_def by metis |
|
173 |
||
174 |
lemma right_total_OO: |
|
175 |
"\<lbrakk>right_total A; right_total B\<rbrakk> \<Longrightarrow> right_total (A OO B)" |
|
176 |
unfolding right_total_def OO_def by metis |
|
177 |
||
178 |
lemma right_unique_OO: |
|
179 |
"\<lbrakk>right_unique A; right_unique B\<rbrakk> \<Longrightarrow> right_unique (A OO B)" |
|
180 |
unfolding right_unique_def OO_def by metis |
|
181 |
||
47325 | 182 |
|
183 |
subsection {* Properties of relators *} |
|
184 |
||
185 |
lemma right_total_eq [transfer_rule]: "right_total (op =)" |
|
186 |
unfolding right_total_def by simp |
|
187 |
||
188 |
lemma right_unique_eq [transfer_rule]: "right_unique (op =)" |
|
189 |
unfolding right_unique_def by simp |
|
190 |
||
191 |
lemma bi_total_eq [transfer_rule]: "bi_total (op =)" |
|
192 |
unfolding bi_total_def by simp |
|
193 |
||
194 |
lemma bi_unique_eq [transfer_rule]: "bi_unique (op =)" |
|
195 |
unfolding bi_unique_def by simp |
|
196 |
||
197 |
lemma right_total_fun [transfer_rule]: |
|
198 |
"\<lbrakk>right_unique A; right_total B\<rbrakk> \<Longrightarrow> right_total (A ===> B)" |
|
199 |
unfolding right_total_def fun_rel_def |
|
200 |
apply (rule allI, rename_tac g) |
|
201 |
apply (rule_tac x="\<lambda>x. SOME z. B z (g (THE y. A x y))" in exI) |
|
202 |
apply clarify |
|
203 |
apply (subgoal_tac "(THE y. A x y) = y", simp) |
|
204 |
apply (rule someI_ex) |
|
205 |
apply (simp) |
|
206 |
apply (rule the_equality) |
|
207 |
apply assumption |
|
208 |
apply (simp add: right_unique_def) |
|
209 |
done |
|
210 |
||
211 |
lemma right_unique_fun [transfer_rule]: |
|
212 |
"\<lbrakk>right_total A; right_unique B\<rbrakk> \<Longrightarrow> right_unique (A ===> B)" |
|
213 |
unfolding right_total_def right_unique_def fun_rel_def |
|
214 |
by (clarify, rule ext, fast) |
|
215 |
||
216 |
lemma bi_total_fun [transfer_rule]: |
|
217 |
"\<lbrakk>bi_unique A; bi_total B\<rbrakk> \<Longrightarrow> bi_total (A ===> B)" |
|
218 |
unfolding bi_total_def fun_rel_def |
|
219 |
apply safe |
|
220 |
apply (rename_tac f) |
|
221 |
apply (rule_tac x="\<lambda>y. SOME z. B (f (THE x. A x y)) z" in exI) |
|
222 |
apply clarify |
|
223 |
apply (subgoal_tac "(THE x. A x y) = x", simp) |
|
224 |
apply (rule someI_ex) |
|
225 |
apply (simp) |
|
226 |
apply (rule the_equality) |
|
227 |
apply assumption |
|
228 |
apply (simp add: bi_unique_def) |
|
229 |
apply (rename_tac g) |
|
230 |
apply (rule_tac x="\<lambda>x. SOME z. B z (g (THE y. A x y))" in exI) |
|
231 |
apply clarify |
|
232 |
apply (subgoal_tac "(THE y. A x y) = y", simp) |
|
233 |
apply (rule someI_ex) |
|
234 |
apply (simp) |
|
235 |
apply (rule the_equality) |
|
236 |
apply assumption |
|
237 |
apply (simp add: bi_unique_def) |
|
238 |
done |
|
239 |
||
240 |
lemma bi_unique_fun [transfer_rule]: |
|
241 |
"\<lbrakk>bi_total A; bi_unique B\<rbrakk> \<Longrightarrow> bi_unique (A ===> B)" |
|
242 |
unfolding bi_total_def bi_unique_def fun_rel_def fun_eq_iff |
|
243 |
by (safe, metis, fast) |
|
244 |
||
245 |
||
47635
ebb79474262c
rename 'correspondence' method to 'transfer_prover'
huffman
parents:
47627
diff
changeset
|
246 |
subsection {* Transfer rules *} |
47325 | 247 |
|
47684 | 248 |
text {* Transfer rules using implication instead of equality on booleans. *} |
249 |
||
250 |
lemma eq_imp_transfer [transfer_rule]: |
|
251 |
"right_unique A \<Longrightarrow> (A ===> A ===> op \<longrightarrow>) (op =) (op =)" |
|
252 |
unfolding right_unique_alt_def . |
|
253 |
||
254 |
lemma forall_imp_transfer [transfer_rule]: |
|
255 |
"right_total A \<Longrightarrow> ((A ===> op \<longrightarrow>) ===> op \<longrightarrow>) transfer_forall transfer_forall" |
|
256 |
unfolding right_total_alt_def transfer_forall_def . |
|
257 |
||
47636 | 258 |
lemma eq_transfer [transfer_rule]: |
47325 | 259 |
assumes "bi_unique A" |
260 |
shows "(A ===> A ===> op =) (op =) (op =)" |
|
261 |
using assms unfolding bi_unique_def fun_rel_def by auto |
|
262 |
||
47636 | 263 |
lemma All_transfer [transfer_rule]: |
47325 | 264 |
assumes "bi_total A" |
265 |
shows "((A ===> op =) ===> op =) All All" |
|
266 |
using assms unfolding bi_total_def fun_rel_def by fast |
|
267 |
||
47636 | 268 |
lemma Ex_transfer [transfer_rule]: |
47325 | 269 |
assumes "bi_total A" |
270 |
shows "((A ===> op =) ===> op =) Ex Ex" |
|
271 |
using assms unfolding bi_total_def fun_rel_def by fast |
|
272 |
||
47636 | 273 |
lemma If_transfer [transfer_rule]: "(op = ===> A ===> A ===> A) If If" |
47325 | 274 |
unfolding fun_rel_def by simp |
275 |
||
47636 | 276 |
lemma Let_transfer [transfer_rule]: "(A ===> (A ===> B) ===> B) Let Let" |
47612 | 277 |
unfolding fun_rel_def by simp |
278 |
||
47636 | 279 |
lemma id_transfer [transfer_rule]: "(A ===> A) id id" |
47625 | 280 |
unfolding fun_rel_def by simp |
281 |
||
47636 | 282 |
lemma comp_transfer [transfer_rule]: |
47325 | 283 |
"((B ===> C) ===> (A ===> B) ===> (A ===> C)) (op \<circ>) (op \<circ>)" |
284 |
unfolding fun_rel_def by simp |
|
285 |
||
47636 | 286 |
lemma fun_upd_transfer [transfer_rule]: |
47325 | 287 |
assumes [transfer_rule]: "bi_unique A" |
288 |
shows "((A ===> B) ===> A ===> B ===> A ===> B) fun_upd fun_upd" |
|
47635
ebb79474262c
rename 'correspondence' method to 'transfer_prover'
huffman
parents:
47627
diff
changeset
|
289 |
unfolding fun_upd_def [abs_def] by transfer_prover |
47325 | 290 |
|
47637 | 291 |
lemma nat_case_transfer [transfer_rule]: |
292 |
"(A ===> (op = ===> A) ===> op = ===> A) nat_case nat_case" |
|
293 |
unfolding fun_rel_def by (simp split: nat.split) |
|
47627
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
294 |
|
47924 | 295 |
lemma nat_rec_transfer [transfer_rule]: |
296 |
"(A ===> (op = ===> A ===> A) ===> op = ===> A) nat_rec nat_rec" |
|
297 |
unfolding fun_rel_def by (clarsimp, rename_tac n, induct_tac n, simp_all) |
|
298 |
||
299 |
lemma funpow_transfer [transfer_rule]: |
|
300 |
"(op = ===> (A ===> A) ===> (A ===> A)) compow compow" |
|
301 |
unfolding funpow_def by transfer_prover |
|
302 |
||
47627
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
303 |
text {* Fallback rule for transferring universal quantifiers over |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
304 |
correspondence relations that are not bi-total, and do not have |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
305 |
custom transfer rules (e.g. relations between function types). *} |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
306 |
|
47637 | 307 |
lemma Domainp_iff: "Domainp T x \<longleftrightarrow> (\<exists>y. T x y)" |
308 |
by auto |
|
309 |
||
47627
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
310 |
lemma Domainp_forall_transfer [transfer_rule]: |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
311 |
assumes "right_total A" |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
312 |
shows "((A ===> op =) ===> op =) |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
313 |
(transfer_bforall (Domainp A)) transfer_forall" |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
314 |
using assms unfolding right_total_def |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
315 |
unfolding transfer_forall_def transfer_bforall_def fun_rel_def Domainp_iff |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
316 |
by metis |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
317 |
|
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
318 |
text {* Preferred rule for transferring universal quantifiers over |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
319 |
bi-total correspondence relations (later rules are tried first). *} |
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
320 |
|
47636 | 321 |
lemma forall_transfer [transfer_rule]: |
47627
2b1d3eda59eb
add secondary transfer rule for universal quantifiers on non-bi-total relations
huffman
parents:
47625
diff
changeset
|
322 |
"bi_total A \<Longrightarrow> ((A ===> op =) ===> op =) transfer_forall transfer_forall" |
47636 | 323 |
unfolding transfer_forall_def by (rule All_transfer) |
47325 | 324 |
|
325 |
end |