| author | haftmann | 
| Sun, 10 Nov 2013 15:05:06 +0100 | |
| changeset 54295 | 45a5523d4a63 | 
| parent 52143 | 36ffe23b25f8 | 
| child 54578 | 9387251b6a46 | 
| permissions | -rw-r--r-- | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
1  | 
(* Title: HOL/Hilbert_Choice.thy  | 
| 32988 | 2  | 
Author: Lawrence C Paulson, Tobias Nipkow  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
3  | 
Copyright 2001 University of Cambridge  | 
| 12023 | 4  | 
*)  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
5  | 
|
| 14760 | 6  | 
header {* Hilbert's Epsilon-Operator and the Axiom of Choice *}
 | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
7  | 
|
| 15131 | 8  | 
theory Hilbert_Choice  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
9  | 
imports Nat Wellfounded Big_Operators  | 
| 
46950
 
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
 
wenzelm 
parents: 
45607 
diff
changeset
 | 
10  | 
keywords "specification" "ax_specification" :: thy_goal  | 
| 15131 | 11  | 
begin  | 
| 12298 | 12  | 
|
13  | 
subsection {* Hilbert's epsilon *}
 | 
|
14  | 
||
| 31454 | 15  | 
axiomatization Eps :: "('a => bool) => 'a" where
 | 
| 
22690
 
0b08f218f260
replaced axioms/finalconsts by proper axiomatization;
 
wenzelm 
parents: 
21999 
diff
changeset
 | 
16  | 
someI: "P x ==> P (Eps P)"  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
17  | 
|
| 
14872
 
3f2144aebd76
improved symbolic syntax of Eps: \<some> for mode "epsilon";
 
wenzelm 
parents: 
14760 
diff
changeset
 | 
18  | 
syntax (epsilon)  | 
| 
 
3f2144aebd76
improved symbolic syntax of Eps: \<some> for mode "epsilon";
 
wenzelm 
parents: 
14760 
diff
changeset
 | 
19  | 
  "_Eps"        :: "[pttrn, bool] => 'a"    ("(3\<some>_./ _)" [0, 10] 10)
 | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
20  | 
syntax (HOL)  | 
| 12298 | 21  | 
  "_Eps"        :: "[pttrn, bool] => 'a"    ("(3@ _./ _)" [0, 10] 10)
 | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
22  | 
syntax  | 
| 12298 | 23  | 
  "_Eps"        :: "[pttrn, bool] => 'a"    ("(3SOME _./ _)" [0, 10] 10)
 | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
24  | 
translations  | 
| 
22690
 
0b08f218f260
replaced axioms/finalconsts by proper axiomatization;
 
wenzelm 
parents: 
21999 
diff
changeset
 | 
25  | 
"SOME x. P" == "CONST Eps (%x. P)"  | 
| 
13763
 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 
nipkow 
parents: 
13585 
diff
changeset
 | 
26  | 
|
| 
 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 
nipkow 
parents: 
13585 
diff
changeset
 | 
27  | 
print_translation {*
 | 
| 52143 | 28  | 
  [(@{const_syntax Eps}, fn _ => fn [Abs abs] =>
 | 
| 42284 | 29  | 
let val (x, t) = Syntax_Trans.atomic_abs_tr' abs  | 
| 35115 | 30  | 
      in Syntax.const @{syntax_const "_Eps"} $ x $ t end)]
 | 
31  | 
*} -- {* to avoid eta-contraction of body *}
 | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
32  | 
|
| 33057 | 33  | 
definition inv_into :: "'a set => ('a => 'b) => ('b => 'a)" where
 | 
34  | 
"inv_into A f == %x. SOME y. y : A & f y = x"  | 
|
| 
11454
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
35  | 
|
| 32988 | 36  | 
abbreviation inv :: "('a => 'b) => ('b => 'a)" where
 | 
| 33057 | 37  | 
"inv == inv_into UNIV"  | 
| 14760 | 38  | 
|
39  | 
||
40  | 
subsection {*Hilbert's Epsilon-operator*}
 | 
|
41  | 
||
42  | 
text{*Easier to apply than @{text someI} if the witness comes from an
 | 
|
43  | 
existential formula*}  | 
|
44  | 
lemma someI_ex [elim?]: "\<exists>x. P x ==> P (SOME x. P x)"  | 
|
45  | 
apply (erule exE)  | 
|
46  | 
apply (erule someI)  | 
|
47  | 
done  | 
|
48  | 
||
49  | 
text{*Easier to apply than @{text someI} because the conclusion has only one
 | 
|
50  | 
occurrence of @{term P}.*}
 | 
|
51  | 
lemma someI2: "[| P a; !!x. P x ==> Q x |] ==> Q (SOME x. P x)"  | 
|
52  | 
by (blast intro: someI)  | 
|
53  | 
||
54  | 
text{*Easier to apply than @{text someI2} if the witness comes from an
 | 
|
55  | 
existential formula*}  | 
|
56  | 
lemma someI2_ex: "[| \<exists>a. P a; !!x. P x ==> Q x |] ==> Q (SOME x. P x)"  | 
|
57  | 
by (blast intro: someI2)  | 
|
58  | 
||
59  | 
lemma some_equality [intro]:  | 
|
60  | 
"[| P a; !!x. P x ==> x=a |] ==> (SOME x. P x) = a"  | 
|
61  | 
by (blast intro: someI2)  | 
|
62  | 
||
63  | 
lemma some1_equality: "[| EX!x. P x; P a |] ==> (SOME x. P x) = a"  | 
|
| 35216 | 64  | 
by blast  | 
| 14760 | 65  | 
|
66  | 
lemma some_eq_ex: "P (SOME x. P x) = (\<exists>x. P x)"  | 
|
67  | 
by (blast intro: someI)  | 
|
68  | 
||
69  | 
lemma some_eq_trivial [simp]: "(SOME y. y=x) = x"  | 
|
70  | 
apply (rule some_equality)  | 
|
71  | 
apply (rule refl, assumption)  | 
|
72  | 
done  | 
|
73  | 
||
74  | 
lemma some_sym_eq_trivial [simp]: "(SOME y. x=y) = x"  | 
|
75  | 
apply (rule some_equality)  | 
|
76  | 
apply (rule refl)  | 
|
77  | 
apply (erule sym)  | 
|
78  | 
done  | 
|
79  | 
||
80  | 
||
81  | 
subsection{*Axiom of Choice, Proved Using the Description Operator*}
 | 
|
82  | 
||
| 39950 | 83  | 
lemma choice: "\<forall>x. \<exists>y. Q x y ==> \<exists>f. \<forall>x. Q x (f x)"  | 
| 14760 | 84  | 
by (fast elim: someI)  | 
85  | 
||
86  | 
lemma bchoice: "\<forall>x\<in>S. \<exists>y. Q x y ==> \<exists>f. \<forall>x\<in>S. Q x (f x)"  | 
|
87  | 
by (fast elim: someI)  | 
|
88  | 
||
| 50105 | 89  | 
lemma choice_iff: "(\<forall>x. \<exists>y. Q x y) \<longleftrightarrow> (\<exists>f. \<forall>x. Q x (f x))"  | 
90  | 
by (fast elim: someI)  | 
|
91  | 
||
92  | 
lemma choice_iff': "(\<forall>x. P x \<longrightarrow> (\<exists>y. Q x y)) \<longleftrightarrow> (\<exists>f. \<forall>x. P x \<longrightarrow> Q x (f x))"  | 
|
93  | 
by (fast elim: someI)  | 
|
94  | 
||
95  | 
lemma bchoice_iff: "(\<forall>x\<in>S. \<exists>y. Q x y) \<longleftrightarrow> (\<exists>f. \<forall>x\<in>S. Q x (f x))"  | 
|
96  | 
by (fast elim: someI)  | 
|
97  | 
||
98  | 
lemma bchoice_iff': "(\<forall>x\<in>S. P x \<longrightarrow> (\<exists>y. Q x y)) \<longleftrightarrow> (\<exists>f. \<forall>x\<in>S. P x \<longrightarrow> Q x (f x))"  | 
|
99  | 
by (fast elim: someI)  | 
|
| 14760 | 100  | 
|
101  | 
subsection {*Function Inverse*}
 | 
|
102  | 
||
| 33014 | 103  | 
lemma inv_def: "inv f = (%y. SOME x. f x = y)"  | 
| 33057 | 104  | 
by(simp add: inv_into_def)  | 
| 33014 | 105  | 
|
| 33057 | 106  | 
lemma inv_into_into: "x : f ` A ==> inv_into A f x : A"  | 
107  | 
apply (simp add: inv_into_def)  | 
|
| 32988 | 108  | 
apply (fast intro: someI2)  | 
109  | 
done  | 
|
| 14760 | 110  | 
|
| 32988 | 111  | 
lemma inv_id [simp]: "inv id = id"  | 
| 33057 | 112  | 
by (simp add: inv_into_def id_def)  | 
| 14760 | 113  | 
|
| 33057 | 114  | 
lemma inv_into_f_f [simp]:  | 
115  | 
"[| inj_on f A; x : A |] ==> inv_into A f (f x) = x"  | 
|
116  | 
apply (simp add: inv_into_def inj_on_def)  | 
|
| 32988 | 117  | 
apply (blast intro: someI2)  | 
| 14760 | 118  | 
done  | 
119  | 
||
| 32988 | 120  | 
lemma inv_f_f: "inj f ==> inv f (f x) = x"  | 
| 35216 | 121  | 
by simp  | 
| 32988 | 122  | 
|
| 33057 | 123  | 
lemma f_inv_into_f: "y : f`A ==> f (inv_into A f y) = y"  | 
124  | 
apply (simp add: inv_into_def)  | 
|
| 32988 | 125  | 
apply (fast intro: someI2)  | 
126  | 
done  | 
|
127  | 
||
| 33057 | 128  | 
lemma inv_into_f_eq: "[| inj_on f A; x : A; f x = y |] ==> inv_into A f y = x"  | 
| 32988 | 129  | 
apply (erule subst)  | 
| 33057 | 130  | 
apply (fast intro: inv_into_f_f)  | 
| 32988 | 131  | 
done  | 
132  | 
||
133  | 
lemma inv_f_eq: "[| inj f; f x = y |] ==> inv f y = x"  | 
|
| 33057 | 134  | 
by (simp add:inv_into_f_eq)  | 
| 32988 | 135  | 
|
136  | 
lemma inj_imp_inv_eq: "[| inj f; ALL x. f(g x) = x |] ==> inv f = g"  | 
|
| 44921 | 137  | 
by (blast intro: inv_into_f_eq)  | 
| 14760 | 138  | 
|
139  | 
text{*But is it useful?*}
 | 
|
140  | 
lemma inj_transfer:  | 
|
141  | 
assumes injf: "inj f" and minor: "!!y. y \<in> range(f) ==> P(inv f y)"  | 
|
142  | 
shows "P x"  | 
|
143  | 
proof -  | 
|
144  | 
have "f x \<in> range f" by auto  | 
|
145  | 
hence "P(inv f (f x))" by (rule minor)  | 
|
| 33057 | 146  | 
thus "P x" by (simp add: inv_into_f_f [OF injf])  | 
| 14760 | 147  | 
qed  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
148  | 
|
| 14760 | 149  | 
lemma inj_iff: "(inj f) = (inv f o f = id)"  | 
| 
39302
 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 
nipkow 
parents: 
39198 
diff
changeset
 | 
150  | 
apply (simp add: o_def fun_eq_iff)  | 
| 33057 | 151  | 
apply (blast intro: inj_on_inverseI inv_into_f_f)  | 
| 14760 | 152  | 
done  | 
153  | 
||
| 23433 | 154  | 
lemma inv_o_cancel[simp]: "inj f ==> inv f o f = id"  | 
155  | 
by (simp add: inj_iff)  | 
|
156  | 
||
157  | 
lemma o_inv_o_cancel[simp]: "inj f ==> g o inv f o f = g"  | 
|
| 49739 | 158  | 
by (simp add: comp_assoc)  | 
| 23433 | 159  | 
|
| 33057 | 160  | 
lemma inv_into_image_cancel[simp]:  | 
161  | 
"inj_on f A ==> S <= A ==> inv_into A f ` f ` S = S"  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
42284 
diff
changeset
 | 
162  | 
by(fastforce simp: image_def)  | 
| 32988 | 163  | 
|
| 14760 | 164  | 
lemma inj_imp_surj_inv: "inj f ==> surj (inv f)"  | 
| 40702 | 165  | 
by (blast intro!: surjI inv_into_f_f)  | 
| 14760 | 166  | 
|
167  | 
lemma surj_f_inv_f: "surj f ==> f(inv f y) = y"  | 
|
| 40702 | 168  | 
by (simp add: f_inv_into_f)  | 
| 14760 | 169  | 
|
| 33057 | 170  | 
lemma inv_into_injective:  | 
171  | 
assumes eq: "inv_into A f x = inv_into A f y"  | 
|
| 32988 | 172  | 
and x: "x: f`A"  | 
173  | 
and y: "y: f`A"  | 
|
| 14760 | 174  | 
shows "x=y"  | 
175  | 
proof -  | 
|
| 33057 | 176  | 
have "f (inv_into A f x) = f (inv_into A f y)" using eq by simp  | 
177  | 
thus ?thesis by (simp add: f_inv_into_f x y)  | 
|
| 14760 | 178  | 
qed  | 
179  | 
||
| 33057 | 180  | 
lemma inj_on_inv_into: "B <= f`A ==> inj_on (inv_into A f) B"  | 
181  | 
by (blast intro: inj_onI dest: inv_into_injective injD)  | 
|
| 32988 | 182  | 
|
| 33057 | 183  | 
lemma bij_betw_inv_into: "bij_betw f A B ==> bij_betw (inv_into A f) B A"  | 
184  | 
by (auto simp add: bij_betw_def inj_on_inv_into)  | 
|
| 14760 | 185  | 
|
186  | 
lemma surj_imp_inj_inv: "surj f ==> inj (inv f)"  | 
|
| 40702 | 187  | 
by (simp add: inj_on_inv_into)  | 
| 14760 | 188  | 
|
189  | 
lemma surj_iff: "(surj f) = (f o inv f = id)"  | 
|
| 40702 | 190  | 
by (auto intro!: surjI simp: surj_f_inv_f fun_eq_iff[where 'b='a])  | 
191  | 
||
192  | 
lemma surj_iff_all: "surj f \<longleftrightarrow> (\<forall>x. f (inv f x) = x)"  | 
|
193  | 
unfolding surj_iff by (simp add: o_def fun_eq_iff)  | 
|
| 14760 | 194  | 
|
195  | 
lemma surj_imp_inv_eq: "[| surj f; \<forall>x. g(f x) = x |] ==> inv f = g"  | 
|
196  | 
apply (rule ext)  | 
|
197  | 
apply (drule_tac x = "inv f x" in spec)  | 
|
198  | 
apply (simp add: surj_f_inv_f)  | 
|
199  | 
done  | 
|
200  | 
||
201  | 
lemma bij_imp_bij_inv: "bij f ==> bij (inv f)"  | 
|
202  | 
by (simp add: bij_def inj_imp_surj_inv surj_imp_inj_inv)  | 
|
| 12372 | 203  | 
|
| 14760 | 204  | 
lemma inv_equality: "[| !!x. g (f x) = x; !!y. f (g y) = y |] ==> inv f = g"  | 
205  | 
apply (rule ext)  | 
|
| 33057 | 206  | 
apply (auto simp add: inv_into_def)  | 
| 14760 | 207  | 
done  | 
208  | 
||
209  | 
lemma inv_inv_eq: "bij f ==> inv (inv f) = f"  | 
|
210  | 
apply (rule inv_equality)  | 
|
211  | 
apply (auto simp add: bij_def surj_f_inv_f)  | 
|
212  | 
done  | 
|
213  | 
||
214  | 
(** bij(inv f) implies little about f. Consider f::bool=>bool such that  | 
|
215  | 
f(True)=f(False)=True. Then it's consistent with axiom someI that  | 
|
216  | 
inv f could be any function at all, including the identity function.  | 
|
217  | 
If inv f=id then inv f is a bijection, but inj f, surj(f) and  | 
|
218  | 
inv(inv f)=f all fail.  | 
|
219  | 
**)  | 
|
220  | 
||
| 33057 | 221  | 
lemma inv_into_comp:  | 
| 32988 | 222  | 
"[| inj_on f (g ` A); inj_on g A; x : f ` g ` A |] ==>  | 
| 33057 | 223  | 
inv_into A (f o g) x = (inv_into A g o inv_into (g ` A) f) x"  | 
224  | 
apply (rule inv_into_f_eq)  | 
|
| 32988 | 225  | 
apply (fast intro: comp_inj_on)  | 
| 33057 | 226  | 
apply (simp add: inv_into_into)  | 
227  | 
apply (simp add: f_inv_into_f inv_into_into)  | 
|
| 32988 | 228  | 
done  | 
229  | 
||
| 14760 | 230  | 
lemma o_inv_distrib: "[| bij f; bij g |] ==> inv (f o g) = inv g o inv f"  | 
231  | 
apply (rule inv_equality)  | 
|
232  | 
apply (auto simp add: bij_def surj_f_inv_f)  | 
|
233  | 
done  | 
|
234  | 
||
235  | 
lemma image_surj_f_inv_f: "surj f ==> f ` (inv f ` A) = A"  | 
|
236  | 
by (simp add: image_eq_UN surj_f_inv_f)  | 
|
237  | 
||
238  | 
lemma image_inv_f_f: "inj f ==> (inv f) ` (f ` A) = A"  | 
|
239  | 
by (simp add: image_eq_UN)  | 
|
240  | 
||
241  | 
lemma inv_image_comp: "inj f ==> inv f ` (f`X) = X"  | 
|
242  | 
by (auto simp add: image_def)  | 
|
243  | 
||
244  | 
lemma bij_image_Collect_eq: "bij f ==> f ` Collect P = {y. P (inv f y)}"
 | 
|
245  | 
apply auto  | 
|
246  | 
apply (force simp add: bij_is_inj)  | 
|
247  | 
apply (blast intro: bij_is_surj [THEN surj_f_inv_f, symmetric])  | 
|
248  | 
done  | 
|
249  | 
||
250  | 
lemma bij_vimage_eq_inv_image: "bij f ==> f -` A = inv f ` A"  | 
|
251  | 
apply (auto simp add: bij_is_surj [THEN surj_f_inv_f])  | 
|
| 33057 | 252  | 
apply (blast intro: bij_is_inj [THEN inv_into_f_f, symmetric])  | 
| 14760 | 253  | 
done  | 
254  | 
||
| 31380 | 255  | 
lemma finite_fun_UNIVD1:  | 
256  | 
  assumes fin: "finite (UNIV :: ('a \<Rightarrow> 'b) set)"
 | 
|
257  | 
and card: "card (UNIV :: 'b set) \<noteq> Suc 0"  | 
|
258  | 
shows "finite (UNIV :: 'a set)"  | 
|
259  | 
proof -  | 
|
260  | 
from fin have finb: "finite (UNIV :: 'b set)" by (rule finite_fun_UNIVD2)  | 
|
261  | 
with card have "card (UNIV :: 'b set) \<ge> Suc (Suc 0)"  | 
|
262  | 
by (cases "card (UNIV :: 'b set)") (auto simp add: card_eq_0_iff)  | 
|
263  | 
then obtain n where "card (UNIV :: 'b set) = Suc (Suc n)" "n = card (UNIV :: 'b set) - Suc (Suc 0)" by auto  | 
|
264  | 
then obtain b1 b2 where b1b2: "(b1 :: 'b) \<noteq> (b2 :: 'b)" by (auto simp add: card_Suc_eq)  | 
|
265  | 
from fin have "finite (range (\<lambda>f :: 'a \<Rightarrow> 'b. inv f b1))" by (rule finite_imageI)  | 
|
266  | 
moreover have "UNIV = range (\<lambda>f :: 'a \<Rightarrow> 'b. inv f b1)"  | 
|
267  | 
proof (rule UNIV_eq_I)  | 
|
268  | 
fix x :: 'a  | 
|
| 33057 | 269  | 
from b1b2 have "x = inv (\<lambda>y. if y = x then b1 else b2) b1" by (simp add: inv_into_def)  | 
| 31380 | 270  | 
thus "x \<in> range (\<lambda>f\<Colon>'a \<Rightarrow> 'b. inv f b1)" by blast  | 
271  | 
qed  | 
|
272  | 
ultimately show "finite (UNIV :: 'a set)" by simp  | 
|
273  | 
qed  | 
|
| 14760 | 274  | 
|
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
275  | 
lemma image_inv_into_cancel:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
276  | 
assumes SURJ: "f`A=A'" and SUB: "B' \<le> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
277  | 
shows "f `((inv_into A f)`B') = B'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
278  | 
using assms  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
279  | 
proof (auto simp add: f_inv_into_f)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
280  | 
let ?f' = "(inv_into A f)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
281  | 
fix a' assume *: "a' \<in> B'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
282  | 
then have "a' \<in> A'" using SUB by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
283  | 
then have "a' = f (?f' a')"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
284  | 
using SURJ by (auto simp add: f_inv_into_f)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
285  | 
then show "a' \<in> f ` (?f' ` B')" using * by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
286  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
287  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
288  | 
lemma inv_into_inv_into_eq:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
289  | 
assumes "bij_betw f A A'" "a \<in> A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
290  | 
shows "inv_into A' (inv_into A f) a = f a"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
291  | 
proof -  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
292  | 
let ?f' = "inv_into A f" let ?f'' = "inv_into A' ?f'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
293  | 
have 1: "bij_betw ?f' A' A" using assms  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
294  | 
by (auto simp add: bij_betw_inv_into)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
295  | 
obtain a' where 2: "a' \<in> A'" and 3: "?f' a' = a"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
296  | 
using 1 `a \<in> A` unfolding bij_betw_def by force  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
297  | 
hence "?f'' a = a'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
298  | 
using `a \<in> A` 1 3 by (auto simp add: f_inv_into_f bij_betw_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
299  | 
moreover have "f a = a'" using assms 2 3  | 
| 44921 | 300  | 
by (auto simp add: bij_betw_def)  | 
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
301  | 
ultimately show "?f'' a = f a" by simp  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
302  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
303  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
304  | 
lemma inj_on_iff_surj:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
305  | 
  assumes "A \<noteq> {}"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
306  | 
shows "(\<exists>f. inj_on f A \<and> f ` A \<le> A') \<longleftrightarrow> (\<exists>g. g ` A' = A)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
307  | 
proof safe  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
308  | 
fix f assume INJ: "inj_on f A" and INCL: "f ` A \<le> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
309  | 
let ?phi = "\<lambda>a' a. a \<in> A \<and> f a = a'" let ?csi = "\<lambda>a. a \<in> A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
310  | 
let ?g = "\<lambda>a'. if a' \<in> f ` A then (SOME a. ?phi a' a) else (SOME a. ?csi a)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
311  | 
have "?g ` A' = A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
312  | 
proof  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
313  | 
show "?g ` A' \<le> A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
314  | 
proof clarify  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
315  | 
fix a' assume *: "a' \<in> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
316  | 
show "?g a' \<in> A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
317  | 
proof cases  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
318  | 
assume Case1: "a' \<in> f ` A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
319  | 
then obtain a where "?phi a' a" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
320  | 
hence "?phi a' (SOME a. ?phi a' a)" using someI[of "?phi a'" a] by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
321  | 
with Case1 show ?thesis by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
322  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
323  | 
assume Case2: "a' \<notin> f ` A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
324  | 
hence "?csi (SOME a. ?csi a)" using assms someI_ex[of ?csi] by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
325  | 
with Case2 show ?thesis by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
326  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
327  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
328  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
329  | 
show "A \<le> ?g ` A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
330  | 
proof-  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
331  | 
      {fix a assume *: "a \<in> A"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
332  | 
let ?b = "SOME aa. ?phi (f a) aa"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
333  | 
have "?phi (f a) a" using * by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
334  | 
hence 1: "?phi (f a) ?b" using someI[of "?phi(f a)" a] by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
335  | 
hence "?g(f a) = ?b" using * by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
336  | 
moreover have "a = ?b" using 1 INJ * by (auto simp add: inj_on_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
337  | 
ultimately have "?g(f a) = a" by simp  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
338  | 
with INCL * have "?g(f a) = a \<and> f a \<in> A'" by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
339  | 
}  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
340  | 
thus ?thesis by force  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
341  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
342  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
343  | 
thus "\<exists>g. g ` A' = A" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
344  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
345  | 
fix g let ?f = "inv_into A' g"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
346  | 
have "inj_on ?f (g ` A')"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
347  | 
by (auto simp add: inj_on_inv_into)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
348  | 
moreover  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
349  | 
  {fix a' assume *: "a' \<in> A'"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
350  | 
let ?phi = "\<lambda> b'. b' \<in> A' \<and> g b' = g a'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
351  | 
have "?phi a'" using * by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
352  | 
hence "?phi(SOME b'. ?phi b')" using someI[of ?phi] by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
353  | 
hence "?f(g a') \<in> A'" unfolding inv_into_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
354  | 
}  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
355  | 
ultimately show "\<exists>f. inj_on f (g ` A') \<and> f ` g ` A' \<subseteq> A'" by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
356  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
357  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
358  | 
lemma Ex_inj_on_UNION_Sigma:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
359  | 
"\<exists>f. (inj_on f (\<Union> i \<in> I. A i) \<and> f ` (\<Union> i \<in> I. A i) \<le> (SIGMA i : I. A i))"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
360  | 
proof  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
361  | 
let ?phi = "\<lambda> a i. i \<in> I \<and> a \<in> A i"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
362  | 
let ?sm = "\<lambda> a. SOME i. ?phi a i"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
363  | 
let ?f = "\<lambda>a. (?sm a, a)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
364  | 
have "inj_on ?f (\<Union> i \<in> I. A i)" unfolding inj_on_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
365  | 
moreover  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
366  | 
  { { fix i a assume "i \<in> I" and "a \<in> A i"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
367  | 
hence "?sm a \<in> I \<and> a \<in> A(?sm a)" using someI[of "?phi a" i] by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
368  | 
}  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
369  | 
hence "?f ` (\<Union> i \<in> I. A i) \<le> (SIGMA i : I. A i)" by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
370  | 
}  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
371  | 
ultimately  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
372  | 
show "inj_on ?f (\<Union> i \<in> I. A i) \<and> ?f ` (\<Union> i \<in> I. A i) \<le> (SIGMA i : I. A i)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
373  | 
by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
374  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
375  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
376  | 
subsection {* The Cantor-Bernstein Theorem *}
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
377  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
378  | 
lemma Cantor_Bernstein_aux:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
379  | 
shows "\<exists>A' h. A' \<le> A \<and>  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
380  | 
(\<forall>a \<in> A'. a \<notin> g`(B - f ` A')) \<and>  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
381  | 
(\<forall>a \<in> A'. h a = f a) \<and>  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
382  | 
(\<forall>a \<in> A - A'. h a \<in> B - (f ` A') \<and> a = g(h a))"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
383  | 
proof-  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
384  | 
obtain H where H_def: "H = (\<lambda> A'. A - (g`(B - (f ` A'))))" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
385  | 
have 0: "mono H" unfolding mono_def H_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
386  | 
then obtain A' where 1: "H A' = A'" using lfp_unfold by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
387  | 
hence 2: "A' = A - (g`(B - (f ` A')))" unfolding H_def by simp  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
388  | 
hence 3: "A' \<le> A" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
389  | 
have 4: "\<forall>a \<in> A'. a \<notin> g`(B - f ` A')"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
390  | 
using 2 by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
391  | 
have 5: "\<forall>a \<in> A - A'. \<exists>b \<in> B - (f ` A'). a = g b"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
392  | 
using 2 by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
393  | 
(* *)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
394  | 
obtain h where h_def:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
395  | 
"h = (\<lambda> a. if a \<in> A' then f a else (SOME b. b \<in> B - (f ` A') \<and> a = g b))" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
396  | 
hence "\<forall>a \<in> A'. h a = f a" by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
397  | 
moreover  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
398  | 
have "\<forall>a \<in> A - A'. h a \<in> B - (f ` A') \<and> a = g(h a)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
399  | 
proof  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
400  | 
fix a assume *: "a \<in> A - A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
401  | 
let ?phi = "\<lambda> b. b \<in> B - (f ` A') \<and> a = g b"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
402  | 
have "h a = (SOME b. ?phi b)" using h_def * by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
403  | 
moreover have "\<exists>b. ?phi b" using 5 * by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
404  | 
ultimately show "?phi (h a)" using someI_ex[of ?phi] by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
405  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
406  | 
ultimately show ?thesis using 3 4 by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
407  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
408  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
409  | 
theorem Cantor_Bernstein:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
410  | 
assumes INJ1: "inj_on f A" and SUB1: "f ` A \<le> B" and  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
411  | 
INJ2: "inj_on g B" and SUB2: "g ` B \<le> A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
412  | 
shows "\<exists>h. bij_betw h A B"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
413  | 
proof-  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
414  | 
obtain A' and h where 0: "A' \<le> A" and  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
415  | 
1: "\<forall>a \<in> A'. a \<notin> g`(B - f ` A')" and  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
416  | 
2: "\<forall>a \<in> A'. h a = f a" and  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
417  | 
3: "\<forall>a \<in> A - A'. h a \<in> B - (f ` A') \<and> a = g(h a)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
418  | 
using Cantor_Bernstein_aux[of A g B f] by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
419  | 
have "inj_on h A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
420  | 
proof (intro inj_onI)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
421  | 
fix a1 a2  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
422  | 
assume 4: "a1 \<in> A" and 5: "a2 \<in> A" and 6: "h a1 = h a2"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
423  | 
show "a1 = a2"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
424  | 
proof(cases "a1 \<in> A'")  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
425  | 
assume Case1: "a1 \<in> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
426  | 
show ?thesis  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
427  | 
proof(cases "a2 \<in> A'")  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
428  | 
assume Case11: "a2 \<in> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
429  | 
hence "f a1 = f a2" using Case1 2 6 by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
430  | 
thus ?thesis using INJ1 Case1 Case11 0  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
431  | 
unfolding inj_on_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
432  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
433  | 
assume Case12: "a2 \<notin> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
434  | 
hence False using 3 5 2 6 Case1 by force  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
435  | 
thus ?thesis by simp  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
436  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
437  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
438  | 
assume Case2: "a1 \<notin> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
439  | 
show ?thesis  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
440  | 
proof(cases "a2 \<in> A'")  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
441  | 
assume Case21: "a2 \<in> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
442  | 
hence False using 3 4 2 6 Case2 by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
443  | 
thus ?thesis by simp  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
444  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
445  | 
assume Case22: "a2 \<notin> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
446  | 
hence "a1 = g(h a1) \<and> a2 = g(h a2)" using Case2 4 5 3 by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
447  | 
thus ?thesis using 6 by simp  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
448  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
449  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
450  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
451  | 
(* *)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
452  | 
moreover  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
453  | 
have "h ` A = B"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
454  | 
proof safe  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
455  | 
fix a assume "a \<in> A"  | 
| 47988 | 456  | 
thus "h a \<in> B" using SUB1 2 3 by (cases "a \<in> A'") auto  | 
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
457  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
458  | 
fix b assume *: "b \<in> B"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
459  | 
show "b \<in> h ` A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
460  | 
proof(cases "b \<in> f ` A'")  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
461  | 
assume Case1: "b \<in> f ` A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
462  | 
then obtain a where "a \<in> A' \<and> b = f a" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
463  | 
thus ?thesis using 2 0 by force  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
464  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
465  | 
assume Case2: "b \<notin> f ` A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
466  | 
hence "g b \<notin> A'" using 1 * by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
467  | 
hence 4: "g b \<in> A - A'" using * SUB2 by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
468  | 
hence "h(g b) \<in> B \<and> g(h(g b)) = g b"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
469  | 
using 3 by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
470  | 
hence "h(g b) = b" using * INJ2 unfolding inj_on_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
471  | 
thus ?thesis using 4 by force  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
472  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
473  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
474  | 
(* *)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
475  | 
ultimately show ?thesis unfolding bij_betw_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
476  | 
qed  | 
| 14760 | 477  | 
|
478  | 
subsection {*Other Consequences of Hilbert's Epsilon*}
 | 
|
479  | 
||
480  | 
text {*Hilbert's Epsilon and the @{term split} Operator*}
 | 
|
481  | 
||
482  | 
text{*Looping simprule*}
 | 
|
483  | 
lemma split_paired_Eps: "(SOME x. P x) = (SOME (a,b). P(a,b))"  | 
|
| 26347 | 484  | 
by simp  | 
| 14760 | 485  | 
|
486  | 
lemma Eps_split: "Eps (split P) = (SOME xy. P (fst xy) (snd xy))"  | 
|
| 26347 | 487  | 
by (simp add: split_def)  | 
| 14760 | 488  | 
|
489  | 
lemma Eps_split_eq [simp]: "(@(x',y'). x = x' & y = y') = (x,y)"  | 
|
| 26347 | 490  | 
by blast  | 
| 14760 | 491  | 
|
492  | 
||
493  | 
text{*A relation is wellfounded iff it has no infinite descending chain*}
 | 
|
494  | 
lemma wf_iff_no_infinite_down_chain:  | 
|
495  | 
"wf r = (~(\<exists>f. \<forall>i. (f(Suc i),f i) \<in> r))"  | 
|
496  | 
apply (simp only: wf_eq_minimal)  | 
|
497  | 
apply (rule iffI)  | 
|
498  | 
apply (rule notI)  | 
|
499  | 
apply (erule exE)  | 
|
500  | 
 apply (erule_tac x = "{w. \<exists>i. w=f i}" in allE, blast)
 | 
|
501  | 
apply (erule contrapos_np, simp, clarify)  | 
|
502  | 
apply (subgoal_tac "\<forall>n. nat_rec x (%i y. @z. z:Q & (z,y) :r) n \<in> Q")  | 
|
503  | 
apply (rule_tac x = "nat_rec x (%i y. @z. z:Q & (z,y) :r)" in exI)  | 
|
504  | 
apply (rule allI, simp)  | 
|
505  | 
apply (rule someI2_ex, blast, blast)  | 
|
506  | 
apply (rule allI)  | 
|
507  | 
apply (induct_tac "n", simp_all)  | 
|
508  | 
apply (rule someI2_ex, blast+)  | 
|
509  | 
done  | 
|
510  | 
||
| 27760 | 511  | 
lemma wf_no_infinite_down_chainE:  | 
512  | 
assumes "wf r" obtains k where "(f (Suc k), f k) \<notin> r"  | 
|
513  | 
using `wf r` wf_iff_no_infinite_down_chain[of r] by blast  | 
|
514  | 
||
515  | 
||
| 14760 | 516  | 
text{*A dynamically-scoped fact for TFL *}
 | 
| 12298 | 517  | 
lemma tfl_some: "\<forall>P x. P x --> P (Eps P)"  | 
518  | 
by (blast intro: someI)  | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
519  | 
|
| 12298 | 520  | 
|
521  | 
subsection {* Least value operator *}
 | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
522  | 
|
| 
35416
 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 
haftmann 
parents: 
35216 
diff
changeset
 | 
523  | 
definition  | 
| 
 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 
haftmann 
parents: 
35216 
diff
changeset
 | 
524  | 
LeastM :: "['a => 'b::ord, 'a => bool] => 'a" where  | 
| 14760 | 525  | 
"LeastM m P == SOME x. P x & (\<forall>y. P y --> m x <= m y)"  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
526  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
527  | 
syntax  | 
| 12298 | 528  | 
  "_LeastM" :: "[pttrn, 'a => 'b::ord, bool] => 'a"    ("LEAST _ WRT _. _" [0, 4, 10] 10)
 | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
529  | 
translations  | 
| 35115 | 530  | 
"LEAST x WRT m. P" == "CONST LeastM m (%x. P)"  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
531  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
532  | 
lemma LeastMI2:  | 
| 12298 | 533  | 
"P x ==> (!!y. P y ==> m x <= m y)  | 
534  | 
==> (!!x. P x ==> \<forall>y. P y --> m x \<le> m y ==> Q x)  | 
|
535  | 
==> Q (LeastM m P)"  | 
|
| 14760 | 536  | 
apply (simp add: LeastM_def)  | 
| 14208 | 537  | 
apply (rule someI2_ex, blast, blast)  | 
| 12298 | 538  | 
done  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
539  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
540  | 
lemma LeastM_equality:  | 
| 12298 | 541  | 
"P k ==> (!!x. P x ==> m k <= m x)  | 
542  | 
==> m (LEAST x WRT m. P x) = (m k::'a::order)"  | 
|
| 14208 | 543  | 
apply (rule LeastMI2, assumption, blast)  | 
| 12298 | 544  | 
apply (blast intro!: order_antisym)  | 
545  | 
done  | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
546  | 
|
| 
11454
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
547  | 
lemma wf_linord_ex_has_least:  | 
| 14760 | 548  | 
"wf r ==> \<forall>x y. ((x,y):r^+) = ((y,x)~:r^*) ==> P k  | 
549  | 
==> \<exists>x. P x & (!y. P y --> (m x,m y):r^*)"  | 
|
| 12298 | 550  | 
apply (drule wf_trancl [THEN wf_eq_minimal [THEN iffD1]])  | 
| 14208 | 551  | 
apply (drule_tac x = "m`Collect P" in spec, force)  | 
| 12298 | 552  | 
done  | 
| 
11454
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
553  | 
|
| 
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
554  | 
lemma ex_has_least_nat:  | 
| 14760 | 555  | 
"P k ==> \<exists>x. P x & (\<forall>y. P y --> m x <= (m y::nat))"  | 
| 12298 | 556  | 
apply (simp only: pred_nat_trancl_eq_le [symmetric])  | 
557  | 
apply (rule wf_pred_nat [THEN wf_linord_ex_has_least])  | 
|
| 16796 | 558  | 
apply (simp add: less_eq linorder_not_le pred_nat_trancl_eq_le, assumption)  | 
| 12298 | 559  | 
done  | 
| 
11454
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
560  | 
|
| 12298 | 561  | 
lemma LeastM_nat_lemma:  | 
| 14760 | 562  | 
"P k ==> P (LeastM m P) & (\<forall>y. P y --> m (LeastM m P) <= (m y::nat))"  | 
563  | 
apply (simp add: LeastM_def)  | 
|
| 12298 | 564  | 
apply (rule someI_ex)  | 
565  | 
apply (erule ex_has_least_nat)  | 
|
566  | 
done  | 
|
| 
11454
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
567  | 
|
| 45607 | 568  | 
lemmas LeastM_natI = LeastM_nat_lemma [THEN conjunct1]  | 
| 
11454
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
569  | 
|
| 
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
570  | 
lemma LeastM_nat_le: "P x ==> m (LeastM m P) <= (m x::nat)"  | 
| 14208 | 571  | 
by (rule LeastM_nat_lemma [THEN conjunct2, THEN spec, THEN mp], assumption, assumption)  | 
| 
11454
 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 
paulson 
parents: 
11451 
diff
changeset
 | 
572  | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
573  | 
|
| 12298 | 574  | 
subsection {* Greatest value operator *}
 | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
575  | 
|
| 
35416
 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 
haftmann 
parents: 
35216 
diff
changeset
 | 
576  | 
definition  | 
| 
 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 
haftmann 
parents: 
35216 
diff
changeset
 | 
577  | 
GreatestM :: "['a => 'b::ord, 'a => bool] => 'a" where  | 
| 14760 | 578  | 
"GreatestM m P == SOME x. P x & (\<forall>y. P y --> m y <= m x)"  | 
| 12298 | 579  | 
|
| 
35416
 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 
haftmann 
parents: 
35216 
diff
changeset
 | 
580  | 
definition  | 
| 
 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 
haftmann 
parents: 
35216 
diff
changeset
 | 
581  | 
  Greatest :: "('a::ord => bool) => 'a" (binder "GREATEST " 10) where
 | 
| 12298 | 582  | 
"Greatest == GreatestM (%x. x)"  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
583  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
584  | 
syntax  | 
| 35115 | 585  | 
"_GreatestM" :: "[pttrn, 'a => 'b::ord, bool] => 'a"  | 
| 12298 | 586  | 
      ("GREATEST _ WRT _. _" [0, 4, 10] 10)
 | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
587  | 
translations  | 
| 35115 | 588  | 
"GREATEST x WRT m. P" == "CONST GreatestM m (%x. P)"  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
589  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
590  | 
lemma GreatestMI2:  | 
| 12298 | 591  | 
"P x ==> (!!y. P y ==> m y <= m x)  | 
592  | 
==> (!!x. P x ==> \<forall>y. P y --> m y \<le> m x ==> Q x)  | 
|
593  | 
==> Q (GreatestM m P)"  | 
|
| 14760 | 594  | 
apply (simp add: GreatestM_def)  | 
| 14208 | 595  | 
apply (rule someI2_ex, blast, blast)  | 
| 12298 | 596  | 
done  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
597  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
598  | 
lemma GreatestM_equality:  | 
| 12298 | 599  | 
"P k ==> (!!x. P x ==> m x <= m k)  | 
600  | 
==> m (GREATEST x WRT m. P x) = (m k::'a::order)"  | 
|
| 14208 | 601  | 
apply (rule_tac m = m in GreatestMI2, assumption, blast)  | 
| 12298 | 602  | 
apply (blast intro!: order_antisym)  | 
603  | 
done  | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
604  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
605  | 
lemma Greatest_equality:  | 
| 12298 | 606  | 
"P (k::'a::order) ==> (!!x. P x ==> x <= k) ==> (GREATEST x. P x) = k"  | 
| 14760 | 607  | 
apply (simp add: Greatest_def)  | 
| 14208 | 608  | 
apply (erule GreatestM_equality, blast)  | 
| 12298 | 609  | 
done  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
610  | 
|
| 
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
611  | 
lemma ex_has_greatest_nat_lemma:  | 
| 14760 | 612  | 
"P k ==> \<forall>x. P x --> (\<exists>y. P y & ~ ((m y::nat) <= m x))  | 
613  | 
==> \<exists>y. P y & ~ (m y < m k + n)"  | 
|
| 15251 | 614  | 
apply (induct n, force)  | 
| 12298 | 615  | 
apply (force simp add: le_Suc_eq)  | 
616  | 
done  | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
617  | 
|
| 12298 | 618  | 
lemma ex_has_greatest_nat:  | 
| 14760 | 619  | 
"P k ==> \<forall>y. P y --> m y < b  | 
620  | 
==> \<exists>x. P x & (\<forall>y. P y --> (m y::nat) <= m x)"  | 
|
| 12298 | 621  | 
apply (rule ccontr)  | 
622  | 
apply (cut_tac P = P and n = "b - m k" in ex_has_greatest_nat_lemma)  | 
|
| 14208 | 623  | 
apply (subgoal_tac [3] "m k <= b", auto)  | 
| 12298 | 624  | 
done  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
625  | 
|
| 12298 | 626  | 
lemma GreatestM_nat_lemma:  | 
| 14760 | 627  | 
"P k ==> \<forall>y. P y --> m y < b  | 
628  | 
==> P (GreatestM m P) & (\<forall>y. P y --> (m y::nat) <= m (GreatestM m P))"  | 
|
629  | 
apply (simp add: GreatestM_def)  | 
|
| 12298 | 630  | 
apply (rule someI_ex)  | 
| 14208 | 631  | 
apply (erule ex_has_greatest_nat, assumption)  | 
| 12298 | 632  | 
done  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
633  | 
|
| 45607 | 634  | 
lemmas GreatestM_natI = GreatestM_nat_lemma [THEN conjunct1]  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
635  | 
|
| 12298 | 636  | 
lemma GreatestM_nat_le:  | 
| 14760 | 637  | 
"P x ==> \<forall>y. P y --> m y < b  | 
| 12298 | 638  | 
==> (m x::nat) <= m (GreatestM m P)"  | 
| 21020 | 639  | 
apply (blast dest: GreatestM_nat_lemma [THEN conjunct2, THEN spec, of P])  | 
| 12298 | 640  | 
done  | 
641  | 
||
642  | 
||
643  | 
text {* \medskip Specialization to @{text GREATEST}. *}
 | 
|
644  | 
||
| 14760 | 645  | 
lemma GreatestI: "P (k::nat) ==> \<forall>y. P y --> y < b ==> P (GREATEST x. P x)"  | 
646  | 
apply (simp add: Greatest_def)  | 
|
| 14208 | 647  | 
apply (rule GreatestM_natI, auto)  | 
| 12298 | 648  | 
done  | 
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
649  | 
|
| 12298 | 650  | 
lemma Greatest_le:  | 
| 14760 | 651  | 
"P x ==> \<forall>y. P y --> y < b ==> (x::nat) <= (GREATEST x. P x)"  | 
652  | 
apply (simp add: Greatest_def)  | 
|
| 14208 | 653  | 
apply (rule GreatestM_nat_le, auto)  | 
| 12298 | 654  | 
done  | 
655  | 
||
656  | 
||
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
657  | 
subsection {* An aside: bounded accessible part *}
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
658  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
659  | 
text {* Finite monotone eventually stable sequences *}
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
660  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
661  | 
lemma finite_mono_remains_stable_implies_strict_prefix:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
662  | 
fixes f :: "nat \<Rightarrow> 'a::order"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
663  | 
assumes S: "finite (range f)" "mono f" and eq: "\<forall>n. f n = f (Suc n) \<longrightarrow> f (Suc n) = f (Suc (Suc n))"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
664  | 
shows "\<exists>N. (\<forall>n\<le>N. \<forall>m\<le>N. m < n \<longrightarrow> f m < f n) \<and> (\<forall>n\<ge>N. f N = f n)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
665  | 
using assms  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
666  | 
proof -  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
667  | 
have "\<exists>n. f n = f (Suc n)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
668  | 
proof (rule ccontr)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
669  | 
assume "\<not> ?thesis"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
670  | 
then have "\<And>n. f n \<noteq> f (Suc n)" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
671  | 
then have "\<And>n. f n < f (Suc n)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
672  | 
using `mono f` by (auto simp: le_less mono_iff_le_Suc)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
673  | 
with lift_Suc_mono_less_iff[of f]  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
674  | 
have "\<And>n m. n < m \<Longrightarrow> f n < f m" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
675  | 
then have "inj f"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
676  | 
by (auto simp: inj_on_def) (metis linorder_less_linear order_less_imp_not_eq)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
677  | 
with `finite (range f)` have "finite (UNIV::nat set)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
678  | 
by (rule finite_imageD)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
679  | 
then show False by simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
680  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
681  | 
then obtain n where n: "f n = f (Suc n)" ..  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
682  | 
def N \<equiv> "LEAST n. f n = f (Suc n)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
683  | 
have N: "f N = f (Suc N)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
684  | 
unfolding N_def using n by (rule LeastI)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
685  | 
show ?thesis  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
686  | 
proof (intro exI[of _ N] conjI allI impI)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
687  | 
fix n assume "N \<le> n"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
688  | 
then have "\<And>m. N \<le> m \<Longrightarrow> m \<le> n \<Longrightarrow> f m = f N"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
689  | 
proof (induct rule: dec_induct)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
690  | 
case (step n) then show ?case  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
691  | 
using eq[rule_format, of "n - 1"] N  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
692  | 
by (cases n) (auto simp add: le_Suc_eq)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
693  | 
qed simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
694  | 
from this[of n] `N \<le> n` show "f N = f n" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
695  | 
next  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
696  | 
fix n m :: nat assume "m < n" "n \<le> N"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
697  | 
then show "f m < f n"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
698  | 
proof (induct rule: less_Suc_induct[consumes 1])  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
699  | 
case (1 i)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
700  | 
then have "i < N" by simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
701  | 
then have "f i \<noteq> f (Suc i)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
702  | 
unfolding N_def by (rule not_less_Least)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
703  | 
with `mono f` show ?case by (simp add: mono_iff_le_Suc less_le)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
704  | 
qed auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
705  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
706  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
707  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
708  | 
lemma finite_mono_strict_prefix_implies_finite_fixpoint:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
709  | 
fixes f :: "nat \<Rightarrow> 'a set"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
710  | 
assumes S: "\<And>i. f i \<subseteq> S" "finite S"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
711  | 
and inj: "\<exists>N. (\<forall>n\<le>N. \<forall>m\<le>N. m < n \<longrightarrow> f m \<subset> f n) \<and> (\<forall>n\<ge>N. f N = f n)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
712  | 
shows "f (card S) = (\<Union>n. f n)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
713  | 
proof -  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
714  | 
from inj obtain N where inj: "(\<forall>n\<le>N. \<forall>m\<le>N. m < n \<longrightarrow> f m \<subset> f n)" and eq: "(\<forall>n\<ge>N. f N = f n)" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
715  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
716  | 
  { fix i have "i \<le> N \<Longrightarrow> i \<le> card (f i)"
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
717  | 
proof (induct i)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
718  | 
case 0 then show ?case by simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
719  | 
next  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
720  | 
case (Suc i)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
721  | 
with inj[rule_format, of "Suc i" i]  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
722  | 
have "(f i) \<subset> (f (Suc i))" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
723  | 
moreover have "finite (f (Suc i))" using S by (rule finite_subset)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
724  | 
ultimately have "card (f i) < card (f (Suc i))" by (intro psubset_card_mono)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
725  | 
with Suc show ?case using inj by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
726  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
727  | 
}  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
728  | 
then have "N \<le> card (f N)" by simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
729  | 
also have "\<dots> \<le> card S" using S by (intro card_mono)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
730  | 
finally have "f (card S) = f N" using eq by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
731  | 
then show ?thesis using eq inj[rule_format, of N]  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
732  | 
apply auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
733  | 
apply (case_tac "n < N")  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
734  | 
apply (auto simp: not_less)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
735  | 
done  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
736  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
737  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
738  | 
primrec bacc :: "('a \<times> 'a) set \<Rightarrow> nat \<Rightarrow> 'a set" 
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
739  | 
where  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
740  | 
  "bacc r 0 = {x. \<forall> y. (y, x) \<notin> r}"
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
741  | 
| "bacc r (Suc n) = (bacc r n \<union> {x. \<forall>y. (y, x) \<in> r \<longrightarrow> y \<in> bacc r n})"
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
742  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
743  | 
lemma bacc_subseteq_acc:  | 
| 54295 | 744  | 
"bacc r n \<subseteq> Wellfounded.acc r"  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
745  | 
by (induct n) (auto intro: acc.intros)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
746  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
747  | 
lemma bacc_mono:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
748  | 
"n \<le> m \<Longrightarrow> bacc r n \<subseteq> bacc r m"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
749  | 
by (induct rule: dec_induct) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
750  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
751  | 
lemma bacc_upper_bound:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
752  | 
  "bacc (r :: ('a \<times> 'a) set)  (card (UNIV :: 'a::finite set)) = (\<Union>n. bacc r n)"
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
753  | 
proof -  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
754  | 
have "mono (bacc r)" unfolding mono_def by (simp add: bacc_mono)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
755  | 
moreover have "\<forall>n. bacc r n = bacc r (Suc n) \<longrightarrow> bacc r (Suc n) = bacc r (Suc (Suc n))" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
756  | 
moreover have "finite (range (bacc r))" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
757  | 
ultimately show ?thesis  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
758  | 
by (intro finite_mono_strict_prefix_implies_finite_fixpoint)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
759  | 
(auto intro: finite_mono_remains_stable_implies_strict_prefix)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
760  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
761  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
762  | 
lemma acc_subseteq_bacc:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
763  | 
assumes "finite r"  | 
| 54295 | 764  | 
shows "Wellfounded.acc r \<subseteq> (\<Union>n. bacc r n)"  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
765  | 
proof  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
766  | 
fix x  | 
| 54295 | 767  | 
assume "x : Wellfounded.acc r"  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
768  | 
then have "\<exists> n. x : bacc r n"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
769  | 
proof (induct x arbitrary: rule: acc.induct)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
770  | 
case (accI x)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
771  | 
then have "\<forall>y. \<exists> n. (y, x) \<in> r --> y : bacc r n" by simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
772  | 
from choice[OF this] obtain n where n: "\<forall>y. (y, x) \<in> r \<longrightarrow> y \<in> bacc r (n y)" ..  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
773  | 
obtain n where "\<And>y. (y, x) : r \<Longrightarrow> y : bacc r n"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
774  | 
proof  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
775  | 
fix y assume y: "(y, x) : r"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
776  | 
with n have "y : bacc r (n y)" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
777  | 
moreover have "n y <= Max ((%(y, x). n y) ` r)"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
778  | 
using y `finite r` by (auto intro!: Max_ge)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
779  | 
note bacc_mono[OF this, of r]  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
780  | 
ultimately show "y : bacc r (Max ((%(y, x). n y) ` r))" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
781  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
782  | 
then show ?case  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
783  | 
by (auto simp add: Let_def intro!: exI[of _ "Suc n"])  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
784  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
785  | 
then show "x : (UN n. bacc r n)" by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
786  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
787  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
788  | 
lemma acc_bacc_eq:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
789  | 
  fixes A :: "('a :: finite \<times> 'a) set"
 | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
790  | 
assumes "finite A"  | 
| 54295 | 791  | 
shows "Wellfounded.acc A = bacc A (card (UNIV :: 'a set))"  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
792  | 
using assms by (metis acc_subseteq_bacc bacc_subseteq_acc bacc_upper_bound order_eq_iff)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
793  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
794  | 
|
| 
17893
 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 
wenzelm 
parents: 
17702 
diff
changeset
 | 
795  | 
subsection {* Specification package -- Hilbertized version *}
 | 
| 
 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 
wenzelm 
parents: 
17702 
diff
changeset
 | 
796  | 
|
| 
 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 
wenzelm 
parents: 
17702 
diff
changeset
 | 
797  | 
lemma exE_some: "[| Ex P ; c == Eps P |] ==> P c"  | 
| 
 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 
wenzelm 
parents: 
17702 
diff
changeset
 | 
798  | 
by (simp only: someI_ex)  | 
| 
 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 
wenzelm 
parents: 
17702 
diff
changeset
 | 
799  | 
|
| 48891 | 800  | 
ML_file "Tools/choice_specification.ML"  | 
| 14115 | 801  | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents:  
diff
changeset
 | 
802  | 
end  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49739 
diff
changeset
 | 
803  |