| author | wenzelm | 
| Fri, 15 Apr 2016 14:27:59 +0200 | |
| changeset 62991 | 35f1475e9ced | 
| parent 62683 | ddd1c864408b | 
| child 63040 | eb4ddd18d635 | 
| 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 | |
| 60758 | 6 | section \<open>Hilbert's Epsilon-Operator and the Axiom of Choice\<close> | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 7 | |
| 15131 | 8 | theory Hilbert_Choice | 
| 61859 | 9 | imports Wellfounded | 
| 56270 
ce9c7a527c4b
removed unused 'ax_specification', to give 'specification' a chance to become localized;
 wenzelm parents: 
55811diff
changeset | 10 | keywords "specification" :: thy_goal | 
| 15131 | 11 | begin | 
| 12298 | 12 | |
| 60758 | 13 | subsection \<open>Hilbert's epsilon\<close> | 
| 12298 | 14 | |
| 31454 | 15 | axiomatization Eps :: "('a => bool) => 'a" where
 | 
| 22690 
0b08f218f260
replaced axioms/finalconsts by proper axiomatization;
 wenzelm parents: 
21999diff
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: 
14760diff
changeset | 18 | syntax (epsilon) | 
| 
3f2144aebd76
improved symbolic syntax of Eps: \<some> for mode "epsilon";
 wenzelm parents: 
14760diff
changeset | 19 |   "_Eps"        :: "[pttrn, bool] => 'a"    ("(3\<some>_./ _)" [0, 10] 10)
 | 
| 62521 | 20 | syntax (input) | 
| 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: 
21999diff
changeset | 25 | "SOME x. P" == "CONST Eps (%x. P)" | 
| 13763 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13585diff
changeset | 26 | |
| 60758 | 27 | print_translation \<open> | 
| 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)]
 | 
| 61799 | 31 | \<close> \<comment> \<open>to avoid eta-contraction of body\<close> | 
| 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: 
11451diff
changeset | 35 | |
| 32988 | 36 | abbreviation inv :: "('a => 'b) => ('b => 'a)" where
 | 
| 33057 | 37 | "inv == inv_into UNIV" | 
| 14760 | 38 | |
| 39 | ||
| 60758 | 40 | subsection \<open>Hilbert's Epsilon-operator\<close> | 
| 14760 | 41 | |
| 61799 | 42 | text\<open>Easier to apply than \<open>someI\<close> if the witness comes from an | 
| 60758 | 43 | existential formula\<close> | 
| 14760 | 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 | ||
| 61799 | 49 | text\<open>Easier to apply than \<open>someI\<close> because the conclusion has only one | 
| 60758 | 50 | occurrence of @{term P}.\<close>
 | 
| 14760 | 51 | lemma someI2: "[| P a; !!x. P x ==> Q x |] ==> Q (SOME x. P x)" | 
| 60974 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 52 | by (blast intro: someI) | 
| 14760 | 53 | |
| 61799 | 54 | text\<open>Easier to apply than \<open>someI2\<close> if the witness comes from an | 
| 60758 | 55 | existential formula\<close> | 
| 60974 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 56 | |
| 14760 | 57 | lemma someI2_ex: "[| \<exists>a. P a; !!x. P x ==> Q x |] ==> Q (SOME x. P x)" | 
| 60974 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 58 | by (blast intro: someI2) | 
| 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 59 | |
| 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 60 | lemma someI2_bex: "[| \<exists>a\<in>A. P a; !!x. x \<in> A \<and> P x ==> Q x |] ==> Q (SOME x. x \<in> A \<and> P x)" | 
| 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 61 | by (blast intro: someI2) | 
| 14760 | 62 | |
| 63 | lemma some_equality [intro]: | |
| 64 | "[| P a; !!x. P x ==> x=a |] ==> (SOME x. P x) = a" | |
| 65 | by (blast intro: someI2) | |
| 66 | ||
| 67 | lemma some1_equality: "[| EX!x. P x; P a |] ==> (SOME x. P x) = a" | |
| 35216 | 68 | by blast | 
| 14760 | 69 | |
| 70 | lemma some_eq_ex: "P (SOME x. P x) = (\<exists>x. P x)" | |
| 71 | by (blast intro: someI) | |
| 72 | ||
| 59000 | 73 | lemma some_in_eq: "(SOME x. x \<in> A) \<in> A \<longleftrightarrow> A \<noteq> {}"
 | 
| 74 | unfolding ex_in_conv[symmetric] by (rule some_eq_ex) | |
| 75 | ||
| 14760 | 76 | lemma some_eq_trivial [simp]: "(SOME y. y=x) = x" | 
| 77 | apply (rule some_equality) | |
| 78 | apply (rule refl, assumption) | |
| 79 | done | |
| 80 | ||
| 81 | lemma some_sym_eq_trivial [simp]: "(SOME y. x=y) = x" | |
| 82 | apply (rule some_equality) | |
| 83 | apply (rule refl) | |
| 84 | apply (erule sym) | |
| 85 | done | |
| 86 | ||
| 87 | ||
| 60758 | 88 | subsection\<open>Axiom of Choice, Proved Using the Description Operator\<close> | 
| 14760 | 89 | |
| 39950 | 90 | lemma choice: "\<forall>x. \<exists>y. Q x y ==> \<exists>f. \<forall>x. Q x (f x)" | 
| 14760 | 91 | by (fast elim: someI) | 
| 92 | ||
| 93 | lemma bchoice: "\<forall>x\<in>S. \<exists>y. Q x y ==> \<exists>f. \<forall>x\<in>S. Q x (f x)" | |
| 94 | by (fast elim: someI) | |
| 95 | ||
| 50105 | 96 | lemma choice_iff: "(\<forall>x. \<exists>y. Q x y) \<longleftrightarrow> (\<exists>f. \<forall>x. Q x (f x))" | 
| 97 | by (fast elim: someI) | |
| 98 | ||
| 99 | 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))" | |
| 100 | by (fast elim: someI) | |
| 101 | ||
| 102 | lemma bchoice_iff: "(\<forall>x\<in>S. \<exists>y. Q x y) \<longleftrightarrow> (\<exists>f. \<forall>x\<in>S. Q x (f x))" | |
| 103 | by (fast elim: someI) | |
| 104 | ||
| 105 | 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))" | |
| 106 | by (fast elim: someI) | |
| 14760 | 107 | |
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56740diff
changeset | 108 | lemma dependent_nat_choice: | 
| 60974 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 109 | assumes 1: "\<exists>x. P 0 x" and | 
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57275diff
changeset | 110 | 2: "\<And>x n. P n x \<Longrightarrow> \<exists>y. P (Suc n) y \<and> Q n x y" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57275diff
changeset | 111 | shows "\<exists>f. \<forall>n. P n (f n) \<and> Q n (f n) (f (Suc n))" | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56740diff
changeset | 112 | proof (intro exI allI conjI) | 
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57275diff
changeset | 113 | fix n def f \<equiv> "rec_nat (SOME x. P 0 x) (\<lambda>n x. SOME y. P (Suc n) y \<and> Q n x y)" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57275diff
changeset | 114 | have "P 0 (f 0)" "\<And>n. P n (f n) \<Longrightarrow> P (Suc n) (f (Suc n)) \<and> Q n (f n) (f (Suc n))" | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56740diff
changeset | 115 | using someI_ex[OF 1] someI_ex[OF 2] by (simp_all add: f_def) | 
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57275diff
changeset | 116 | then show "P n (f n)" "Q n (f n) (f (Suc n))" | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56740diff
changeset | 117 | by (induct n) auto | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56740diff
changeset | 118 | qed | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56740diff
changeset | 119 | |
| 58074 | 120 | |
| 60758 | 121 | subsection \<open>Function Inverse\<close> | 
| 14760 | 122 | |
| 33014 | 123 | lemma inv_def: "inv f = (%y. SOME x. f x = y)" | 
| 33057 | 124 | by(simp add: inv_into_def) | 
| 33014 | 125 | |
| 33057 | 126 | lemma inv_into_into: "x : f ` A ==> inv_into A f x : A" | 
| 127 | apply (simp add: inv_into_def) | |
| 32988 | 128 | apply (fast intro: someI2) | 
| 129 | done | |
| 14760 | 130 | |
| 32988 | 131 | lemma inv_id [simp]: "inv id = id" | 
| 33057 | 132 | by (simp add: inv_into_def id_def) | 
| 14760 | 133 | |
| 33057 | 134 | lemma inv_into_f_f [simp]: | 
| 135 | "[| inj_on f A; x : A |] ==> inv_into A f (f x) = x" | |
| 136 | apply (simp add: inv_into_def inj_on_def) | |
| 32988 | 137 | apply (blast intro: someI2) | 
| 14760 | 138 | done | 
| 139 | ||
| 32988 | 140 | lemma inv_f_f: "inj f ==> inv f (f x) = x" | 
| 35216 | 141 | by simp | 
| 32988 | 142 | |
| 33057 | 143 | lemma f_inv_into_f: "y : f`A ==> f (inv_into A f y) = y" | 
| 144 | apply (simp add: inv_into_def) | |
| 32988 | 145 | apply (fast intro: someI2) | 
| 146 | done | |
| 147 | ||
| 33057 | 148 | lemma inv_into_f_eq: "[| inj_on f A; x : A; f x = y |] ==> inv_into A f y = x" | 
| 32988 | 149 | apply (erule subst) | 
| 33057 | 150 | apply (fast intro: inv_into_f_f) | 
| 32988 | 151 | done | 
| 152 | ||
| 153 | lemma inv_f_eq: "[| inj f; f x = y |] ==> inv f y = x" | |
| 33057 | 154 | by (simp add:inv_into_f_eq) | 
| 32988 | 155 | |
| 156 | lemma inj_imp_inv_eq: "[| inj f; ALL x. f(g x) = x |] ==> inv f = g" | |
| 44921 | 157 | by (blast intro: inv_into_f_eq) | 
| 14760 | 158 | |
| 60758 | 159 | text\<open>But is it useful?\<close> | 
| 14760 | 160 | lemma inj_transfer: | 
| 161 | assumes injf: "inj f" and minor: "!!y. y \<in> range(f) ==> P(inv f y)" | |
| 162 | shows "P x" | |
| 163 | proof - | |
| 164 | have "f x \<in> range f" by auto | |
| 165 | hence "P(inv f (f x))" by (rule minor) | |
| 33057 | 166 | thus "P x" by (simp add: inv_into_f_f [OF injf]) | 
| 14760 | 167 | qed | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 168 | |
| 14760 | 169 | 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: 
39198diff
changeset | 170 | apply (simp add: o_def fun_eq_iff) | 
| 33057 | 171 | apply (blast intro: inj_on_inverseI inv_into_f_f) | 
| 14760 | 172 | done | 
| 173 | ||
| 23433 | 174 | lemma inv_o_cancel[simp]: "inj f ==> inv f o f = id" | 
| 175 | by (simp add: inj_iff) | |
| 176 | ||
| 177 | lemma o_inv_o_cancel[simp]: "inj f ==> g o inv f o f = g" | |
| 49739 | 178 | by (simp add: comp_assoc) | 
| 23433 | 179 | |
| 33057 | 180 | lemma inv_into_image_cancel[simp]: | 
| 181 | "inj_on f A ==> S <= A ==> inv_into A f ` f ` S = S" | |
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
42284diff
changeset | 182 | by(fastforce simp: image_def) | 
| 32988 | 183 | |
| 14760 | 184 | lemma inj_imp_surj_inv: "inj f ==> surj (inv f)" | 
| 40702 | 185 | by (blast intro!: surjI inv_into_f_f) | 
| 14760 | 186 | |
| 187 | lemma surj_f_inv_f: "surj f ==> f(inv f y) = y" | |
| 40702 | 188 | by (simp add: f_inv_into_f) | 
| 14760 | 189 | |
| 33057 | 190 | lemma inv_into_injective: | 
| 191 | assumes eq: "inv_into A f x = inv_into A f y" | |
| 32988 | 192 | and x: "x: f`A" | 
| 193 | and y: "y: f`A" | |
| 14760 | 194 | shows "x=y" | 
| 195 | proof - | |
| 33057 | 196 | have "f (inv_into A f x) = f (inv_into A f y)" using eq by simp | 
| 197 | thus ?thesis by (simp add: f_inv_into_f x y) | |
| 14760 | 198 | qed | 
| 199 | ||
| 33057 | 200 | lemma inj_on_inv_into: "B <= f`A ==> inj_on (inv_into A f) B" | 
| 201 | by (blast intro: inj_onI dest: inv_into_injective injD) | |
| 32988 | 202 | |
| 33057 | 203 | lemma bij_betw_inv_into: "bij_betw f A B ==> bij_betw (inv_into A f) B A" | 
| 204 | by (auto simp add: bij_betw_def inj_on_inv_into) | |
| 14760 | 205 | |
| 206 | lemma surj_imp_inj_inv: "surj f ==> inj (inv f)" | |
| 40702 | 207 | by (simp add: inj_on_inv_into) | 
| 14760 | 208 | |
| 209 | lemma surj_iff: "(surj f) = (f o inv f = id)" | |
| 40702 | 210 | by (auto intro!: surjI simp: surj_f_inv_f fun_eq_iff[where 'b='a]) | 
| 211 | ||
| 212 | lemma surj_iff_all: "surj f \<longleftrightarrow> (\<forall>x. f (inv f x) = x)" | |
| 213 | unfolding surj_iff by (simp add: o_def fun_eq_iff) | |
| 14760 | 214 | |
| 215 | lemma surj_imp_inv_eq: "[| surj f; \<forall>x. g(f x) = x |] ==> inv f = g" | |
| 216 | apply (rule ext) | |
| 217 | apply (drule_tac x = "inv f x" in spec) | |
| 218 | apply (simp add: surj_f_inv_f) | |
| 219 | done | |
| 220 | ||
| 221 | lemma bij_imp_bij_inv: "bij f ==> bij (inv f)" | |
| 222 | by (simp add: bij_def inj_imp_surj_inv surj_imp_inj_inv) | |
| 12372 | 223 | |
| 14760 | 224 | lemma inv_equality: "[| !!x. g (f x) = x; !!y. f (g y) = y |] ==> inv f = g" | 
| 225 | apply (rule ext) | |
| 33057 | 226 | apply (auto simp add: inv_into_def) | 
| 14760 | 227 | done | 
| 228 | ||
| 229 | lemma inv_inv_eq: "bij f ==> inv (inv f) = f" | |
| 230 | apply (rule inv_equality) | |
| 231 | apply (auto simp add: bij_def surj_f_inv_f) | |
| 232 | done | |
| 233 | ||
| 234 | (** bij(inv f) implies little about f. Consider f::bool=>bool such that | |
| 235 | f(True)=f(False)=True. Then it's consistent with axiom someI that | |
| 236 | inv f could be any function at all, including the identity function. | |
| 237 | If inv f=id then inv f is a bijection, but inj f, surj(f) and | |
| 238 | inv(inv f)=f all fail. | |
| 239 | **) | |
| 240 | ||
| 33057 | 241 | lemma inv_into_comp: | 
| 32988 | 242 | "[| inj_on f (g ` A); inj_on g A; x : f ` g ` A |] ==> | 
| 33057 | 243 | inv_into A (f o g) x = (inv_into A g o inv_into (g ` A) f) x" | 
| 244 | apply (rule inv_into_f_eq) | |
| 32988 | 245 | apply (fast intro: comp_inj_on) | 
| 33057 | 246 | apply (simp add: inv_into_into) | 
| 247 | apply (simp add: f_inv_into_f inv_into_into) | |
| 32988 | 248 | done | 
| 249 | ||
| 14760 | 250 | lemma o_inv_distrib: "[| bij f; bij g |] ==> inv (f o g) = inv g o inv f" | 
| 251 | apply (rule inv_equality) | |
| 252 | apply (auto simp add: bij_def surj_f_inv_f) | |
| 253 | done | |
| 254 | ||
| 255 | lemma image_surj_f_inv_f: "surj f ==> f ` (inv f ` A) = A" | |
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
61859diff
changeset | 256 | by (simp add: surj_f_inv_f image_comp comp_def) | 
| 14760 | 257 | |
| 56740 | 258 | lemma image_inv_f_f: "inj f ==> inv f ` (f ` A) = A" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
61859diff
changeset | 259 | by simp | 
| 14760 | 260 | |
| 56740 | 261 | lemma inv_image_comp: "inj f ==> inv f ` (f ` X) = X" | 
| 262 | by (fact image_inv_f_f) | |
| 14760 | 263 | |
| 264 | lemma bij_image_Collect_eq: "bij f ==> f ` Collect P = {y. P (inv f y)}"
 | |
| 265 | apply auto | |
| 266 | apply (force simp add: bij_is_inj) | |
| 267 | apply (blast intro: bij_is_surj [THEN surj_f_inv_f, symmetric]) | |
| 268 | done | |
| 269 | ||
| 60974 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 270 | lemma bij_vimage_eq_inv_image: "bij f ==> f -` A = inv f ` A" | 
| 14760 | 271 | apply (auto simp add: bij_is_surj [THEN surj_f_inv_f]) | 
| 33057 | 272 | apply (blast intro: bij_is_inj [THEN inv_into_f_f, symmetric]) | 
| 14760 | 273 | done | 
| 274 | ||
| 31380 | 275 | lemma finite_fun_UNIVD1: | 
| 276 |   assumes fin: "finite (UNIV :: ('a \<Rightarrow> 'b) set)"
 | |
| 277 | and card: "card (UNIV :: 'b set) \<noteq> Suc 0" | |
| 278 | shows "finite (UNIV :: 'a set)" | |
| 279 | proof - | |
| 280 | from fin have finb: "finite (UNIV :: 'b set)" by (rule finite_fun_UNIVD2) | |
| 281 | with card have "card (UNIV :: 'b set) \<ge> Suc (Suc 0)" | |
| 282 | by (cases "card (UNIV :: 'b set)") (auto simp add: card_eq_0_iff) | |
| 283 | then obtain n where "card (UNIV :: 'b set) = Suc (Suc n)" "n = card (UNIV :: 'b set) - Suc (Suc 0)" by auto | |
| 284 | then obtain b1 b2 where b1b2: "(b1 :: 'b) \<noteq> (b2 :: 'b)" by (auto simp add: card_Suc_eq) | |
| 285 | from fin have "finite (range (\<lambda>f :: 'a \<Rightarrow> 'b. inv f b1))" by (rule finite_imageI) | |
| 286 | moreover have "UNIV = range (\<lambda>f :: 'a \<Rightarrow> 'b. inv f b1)" | |
| 287 | proof (rule UNIV_eq_I) | |
| 288 | fix x :: 'a | |
| 33057 | 289 | from b1b2 have "x = inv (\<lambda>y. if y = x then b1 else b2) b1" by (simp add: inv_into_def) | 
| 61076 | 290 | thus "x \<in> range (\<lambda>f::'a \<Rightarrow> 'b. inv f b1)" by blast | 
| 31380 | 291 | qed | 
| 292 | ultimately show "finite (UNIV :: 'a set)" by simp | |
| 293 | qed | |
| 14760 | 294 | |
| 60758 | 295 | text \<open> | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 296 | Every infinite set contains a countable subset. More precisely we | 
| 61799 | 297 | show that a set \<open>S\<close> is infinite if and only if there exists an | 
| 298 | injective function from the naturals into \<open>S\<close>. | |
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 299 | |
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 300 | The ``only if'' direction is harder because it requires the | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 301 | construction of a sequence of pairwise different elements of an | 
| 61799 | 302 | infinite set \<open>S\<close>. The idea is to construct a sequence of | 
| 303 | non-empty and infinite subsets of \<open>S\<close> obtained by successively | |
| 304 | removing elements of \<open>S\<close>. | |
| 60758 | 305 | \<close> | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 306 | |
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 307 | lemma infinite_countable_subset: | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 308 | assumes inf: "\<not> finite (S::'a set)" | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 309 | shows "\<exists>f. inj (f::nat \<Rightarrow> 'a) \<and> range f \<subseteq> S" | 
| 61799 | 310 | \<comment> \<open>Courtesy of Stephan Merz\<close> | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 311 | proof - | 
| 55415 | 312 |   def Sseq \<equiv> "rec_nat S (\<lambda>n T. T - {SOME e. e \<in> T})"
 | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 313 | def pick \<equiv> "\<lambda>n. (SOME e. e \<in> Sseq n)" | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 314 |   { fix n have "Sseq n \<subseteq> S" "\<not> finite (Sseq n)" by (induct n) (auto simp add: Sseq_def inf) }
 | 
| 55811 | 315 | moreover then have *: "\<And>n. pick n \<in> Sseq n" | 
| 316 | unfolding pick_def by (subst (asm) finite.simps) (auto simp add: ex_in_conv intro: someI_ex) | |
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 317 | ultimately have "range pick \<subseteq> S" by auto | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 318 | moreover | 
| 60974 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 paulson <lp15@cam.ac.uk> parents: 
60758diff
changeset | 319 |   { fix n m
 | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 320 | have "pick n \<notin> Sseq (n + Suc m)" by (induct m) (auto simp add: Sseq_def pick_def) | 
| 55811 | 321 | with * have "pick n \<noteq> pick (n + Suc m)" by auto | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 322 | } | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 323 | then have "inj pick" by (intro linorder_injI) (auto simp add: less_iff_Suc_add) | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 324 | ultimately show ?thesis by blast | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 325 | qed | 
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 326 | |
| 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 327 | lemma infinite_iff_countable_subset: "\<not> finite S \<longleftrightarrow> (\<exists>f. inj (f::nat \<Rightarrow> 'a) \<and> range f \<subseteq> S)" | 
| 61799 | 328 | \<comment> \<open>Courtesy of Stephan Merz\<close> | 
| 55811 | 329 | using finite_imageD finite_subset infinite_UNIV_char_0 infinite_countable_subset by auto | 
| 54578 
9387251b6a46
eliminated dependence of BNF on Infinite_Set by moving 3 theorems from the latter to Main
 traytel parents: 
54295diff
changeset | 330 | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 331 | lemma image_inv_into_cancel: | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 332 | 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: 
40702diff
changeset | 333 | 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: 
40702diff
changeset | 334 | using assms | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 335 | 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: 
40702diff
changeset | 336 | 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: 
40702diff
changeset | 337 | 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: 
40702diff
changeset | 338 | 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: 
40702diff
changeset | 339 | 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: 
40702diff
changeset | 340 | 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: 
40702diff
changeset | 341 | 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: 
40702diff
changeset | 342 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 343 | |
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 344 | 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: 
40702diff
changeset | 345 | 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: 
40702diff
changeset | 346 | 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: 
40702diff
changeset | 347 | proof - | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 348 | 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: 
40702diff
changeset | 349 | 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: 
40702diff
changeset | 350 | 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: 
40702diff
changeset | 351 | obtain a' where 2: "a' \<in> A'" and 3: "?f' a' = a" | 
| 60758 | 352 | using 1 \<open>a \<in> A\<close> unfolding bij_betw_def by force | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 353 | hence "?f'' a = a'" | 
| 60758 | 354 | using \<open>a \<in> A\<close> 1 3 by (auto simp add: f_inv_into_f bij_betw_def) | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 355 | moreover have "f a = a'" using assms 2 3 | 
| 44921 | 356 | 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: 
40702diff
changeset | 357 | 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: 
40702diff
changeset | 358 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 359 | |
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 360 | lemma inj_on_iff_surj: | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 361 |   assumes "A \<noteq> {}"
 | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 362 | 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: 
40702diff
changeset | 363 | proof safe | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 364 | 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: 
40702diff
changeset | 365 | 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: 
40702diff
changeset | 366 | 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: 
40702diff
changeset | 367 | have "?g ` A' = A" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 368 | proof | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 369 | show "?g ` A' \<le> A" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 370 | proof clarify | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 371 | 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: 
40702diff
changeset | 372 | show "?g a' \<in> A" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 373 | proof cases | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 374 | 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: 
40702diff
changeset | 375 | 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: 
40702diff
changeset | 376 | 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: 
40702diff
changeset | 377 | 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: 
40702diff
changeset | 378 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 379 | 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: 
40702diff
changeset | 380 | 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: 
40702diff
changeset | 381 | 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: 
40702diff
changeset | 382 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 383 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 384 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 385 | show "A \<le> ?g ` A'" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 386 | proof- | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 387 |       {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: 
40702diff
changeset | 388 | 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: 
40702diff
changeset | 389 | 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: 
40702diff
changeset | 390 | 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: 
40702diff
changeset | 391 | 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: 
40702diff
changeset | 392 | 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: 
40702diff
changeset | 393 | 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: 
40702diff
changeset | 394 | 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: 
40702diff
changeset | 395 | } | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 396 | thus ?thesis by force | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 397 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 398 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 399 | 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: 
40702diff
changeset | 400 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 401 | 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: 
40702diff
changeset | 402 | 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: 
40702diff
changeset | 403 | 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: 
40702diff
changeset | 404 | moreover | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 405 |   {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: 
40702diff
changeset | 406 | 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: 
40702diff
changeset | 407 | 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: 
40702diff
changeset | 408 | 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: 
40702diff
changeset | 409 | 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: 
40702diff
changeset | 410 | } | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 411 | 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: 
40702diff
changeset | 412 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 413 | |
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 414 | lemma Ex_inj_on_UNION_Sigma: | 
| 60585 | 415 | "\<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))" | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 416 | proof | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 417 | 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: 
40702diff
changeset | 418 | 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: 
40702diff
changeset | 419 | let ?f = "\<lambda>a. (?sm a, a)" | 
| 60585 | 420 | have "inj_on ?f (\<Union>i \<in> I. A i)" unfolding inj_on_def by auto | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 421 | moreover | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 422 |   { { 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: 
40702diff
changeset | 423 | 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: 
40702diff
changeset | 424 | } | 
| 60585 | 425 | hence "?f ` (\<Union>i \<in> I. A i) \<le> (SIGMA i : I. A i)" by auto | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 426 | } | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 427 | ultimately | 
| 60585 | 428 | show "inj_on ?f (\<Union>i \<in> I. A i) \<and> ?f ` (\<Union>i \<in> I. A i) \<le> (SIGMA i : I. A i)" | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 429 | by auto | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 430 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 431 | |
| 56608 | 432 | lemma inv_unique_comp: | 
| 433 | assumes fg: "f \<circ> g = id" | |
| 434 | and gf: "g \<circ> f = id" | |
| 435 | shows "inv f = g" | |
| 436 | using fg gf inv_equality[of g f] by (auto simp add: fun_eq_iff) | |
| 437 | ||
| 438 | ||
| 60758 | 439 | subsection \<open>The Cantor-Bernstein Theorem\<close> | 
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 440 | |
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 441 | lemma Cantor_Bernstein_aux: | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 442 | 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: 
40702diff
changeset | 443 | (\<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: 
40702diff
changeset | 444 | (\<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: 
40702diff
changeset | 445 | (\<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: 
40702diff
changeset | 446 | proof- | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 447 | 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: 
40702diff
changeset | 448 | 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: 
40702diff
changeset | 449 | 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: 
40702diff
changeset | 450 | 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: 
40702diff
changeset | 451 | 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: 
40702diff
changeset | 452 | 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: 
40702diff
changeset | 453 | using 2 by blast | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 454 | 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: 
40702diff
changeset | 455 | using 2 by blast | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 456 | (* *) | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 457 | obtain h where h_def: | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 458 | "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: 
40702diff
changeset | 459 | 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: 
40702diff
changeset | 460 | moreover | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 461 | 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: 
40702diff
changeset | 462 | proof | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 463 | 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: 
40702diff
changeset | 464 | 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: 
40702diff
changeset | 465 | 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: 
40702diff
changeset | 466 | 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: 
40702diff
changeset | 467 | 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: 
40702diff
changeset | 468 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 469 | 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: 
40702diff
changeset | 470 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 471 | |
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 472 | theorem Cantor_Bernstein: | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 473 | 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: 
40702diff
changeset | 474 | 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: 
40702diff
changeset | 475 | 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: 
40702diff
changeset | 476 | proof- | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 477 | 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: 
40702diff
changeset | 478 | 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: 
40702diff
changeset | 479 | 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: 
40702diff
changeset | 480 | 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: 
40702diff
changeset | 481 | 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: 
40702diff
changeset | 482 | have "inj_on h A" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 483 | proof (intro inj_onI) | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 484 | fix a1 a2 | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 485 | 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: 
40702diff
changeset | 486 | show "a1 = a2" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 487 | proof(cases "a1 \<in> A'") | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 488 | assume Case1: "a1 \<in> A'" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 489 | show ?thesis | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 490 | proof(cases "a2 \<in> A'") | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 491 | assume Case11: "a2 \<in> A'" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 492 | 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: 
40702diff
changeset | 493 | 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: 
40702diff
changeset | 494 | 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: 
40702diff
changeset | 495 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 496 | assume Case12: "a2 \<notin> A'" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 497 | 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: 
40702diff
changeset | 498 | thus ?thesis by simp | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 499 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 500 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 501 | assume Case2: "a1 \<notin> A'" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 502 | show ?thesis | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 503 | proof(cases "a2 \<in> A'") | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 504 | assume Case21: "a2 \<in> A'" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 505 | 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: 
40702diff
changeset | 506 | thus ?thesis by simp | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 507 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 508 | assume Case22: "a2 \<notin> A'" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 509 | 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: 
40702diff
changeset | 510 | 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: 
40702diff
changeset | 511 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 512 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 513 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 514 | (* *) | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 515 | moreover | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 516 | have "h ` A = B" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 517 | proof safe | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 518 | fix a assume "a \<in> A" | 
| 47988 | 519 | 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: 
40702diff
changeset | 520 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 521 | 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: 
40702diff
changeset | 522 | show "b \<in> h ` A" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 523 | 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: 
40702diff
changeset | 524 | 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: 
40702diff
changeset | 525 | 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: 
40702diff
changeset | 526 | 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: 
40702diff
changeset | 527 | next | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 528 | 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: 
40702diff
changeset | 529 | 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: 
40702diff
changeset | 530 | 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: 
40702diff
changeset | 531 | 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: 
40702diff
changeset | 532 | using 3 by auto | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 533 | 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: 
40702diff
changeset | 534 | 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: 
40702diff
changeset | 535 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 536 | qed | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 537 | (* *) | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 538 | 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: 
40702diff
changeset | 539 | qed | 
| 14760 | 540 | |
| 60758 | 541 | subsection \<open>Other Consequences of Hilbert's Epsilon\<close> | 
| 14760 | 542 | |
| 60758 | 543 | text \<open>Hilbert's Epsilon and the @{term split} Operator\<close>
 | 
| 14760 | 544 | |
| 60758 | 545 | text\<open>Looping simprule\<close> | 
| 14760 | 546 | lemma split_paired_Eps: "(SOME x. P x) = (SOME (a,b). P(a,b))" | 
| 26347 | 547 | by simp | 
| 14760 | 548 | |
| 61424 
c3658c18b7bc
prod_case as canonical name for product type eliminator
 haftmann parents: 
61076diff
changeset | 549 | lemma Eps_case_prod: "Eps (case_prod P) = (SOME xy. P (fst xy) (snd xy))" | 
| 26347 | 550 | by (simp add: split_def) | 
| 14760 | 551 | |
| 61424 
c3658c18b7bc
prod_case as canonical name for product type eliminator
 haftmann parents: 
61076diff
changeset | 552 | lemma Eps_case_prod_eq [simp]: "(@(x',y'). x = x' & y = y') = (x,y)" | 
| 26347 | 553 | by blast | 
| 14760 | 554 | |
| 555 | ||
| 60758 | 556 | text\<open>A relation is wellfounded iff it has no infinite descending chain\<close> | 
| 14760 | 557 | lemma wf_iff_no_infinite_down_chain: | 
| 558 | "wf r = (~(\<exists>f. \<forall>i. (f(Suc i),f i) \<in> r))" | |
| 559 | apply (simp only: wf_eq_minimal) | |
| 560 | apply (rule iffI) | |
| 561 | apply (rule notI) | |
| 562 | apply (erule exE) | |
| 563 |  apply (erule_tac x = "{w. \<exists>i. w=f i}" in allE, blast)
 | |
| 564 | apply (erule contrapos_np, simp, clarify) | |
| 55415 | 565 | apply (subgoal_tac "\<forall>n. rec_nat x (%i y. @z. z:Q & (z,y) :r) n \<in> Q") | 
| 566 | apply (rule_tac x = "rec_nat x (%i y. @z. z:Q & (z,y) :r)" in exI) | |
| 14760 | 567 | apply (rule allI, simp) | 
| 568 | apply (rule someI2_ex, blast, blast) | |
| 569 | apply (rule allI) | |
| 570 | apply (induct_tac "n", simp_all) | |
| 571 | apply (rule someI2_ex, blast+) | |
| 572 | done | |
| 573 | ||
| 27760 | 574 | lemma wf_no_infinite_down_chainE: | 
| 575 | assumes "wf r" obtains k where "(f (Suc k), f k) \<notin> r" | |
| 60758 | 576 | using \<open>wf r\<close> wf_iff_no_infinite_down_chain[of r] by blast | 
| 27760 | 577 | |
| 578 | ||
| 60758 | 579 | text\<open>A dynamically-scoped fact for TFL\<close> | 
| 12298 | 580 | lemma tfl_some: "\<forall>P x. P x --> P (Eps P)" | 
| 581 | by (blast intro: someI) | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 582 | |
| 12298 | 583 | |
| 60758 | 584 | subsection \<open>Least value operator\<close> | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 585 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35216diff
changeset | 586 | definition | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35216diff
changeset | 587 | LeastM :: "['a => 'b::ord, 'a => bool] => 'a" where | 
| 14760 | 588 | "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 | 589 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 590 | syntax | 
| 12298 | 591 |   "_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 | 592 | translations | 
| 35115 | 593 | "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 | 594 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 595 | lemma LeastMI2: | 
| 12298 | 596 | "P x ==> (!!y. P y ==> m x <= m y) | 
| 597 | ==> (!!x. P x ==> \<forall>y. P y --> m x \<le> m y ==> Q x) | |
| 598 | ==> Q (LeastM m P)" | |
| 14760 | 599 | apply (simp add: LeastM_def) | 
| 14208 | 600 | apply (rule someI2_ex, blast, blast) | 
| 12298 | 601 | done | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 602 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 603 | lemma LeastM_equality: | 
| 12298 | 604 | "P k ==> (!!x. P x ==> m k <= m x) | 
| 605 | ==> m (LEAST x WRT m. P x) = (m k::'a::order)" | |
| 14208 | 606 | apply (rule LeastMI2, assumption, blast) | 
| 12298 | 607 | apply (blast intro!: order_antisym) | 
| 608 | done | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 609 | |
| 11454 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 paulson parents: 
11451diff
changeset | 610 | lemma wf_linord_ex_has_least: | 
| 14760 | 611 | "wf r ==> \<forall>x y. ((x,y):r^+) = ((y,x)~:r^*) ==> P k | 
| 612 | ==> \<exists>x. P x & (!y. P y --> (m x,m y):r^*)" | |
| 12298 | 613 | apply (drule wf_trancl [THEN wf_eq_minimal [THEN iffD1]]) | 
| 14208 | 614 | apply (drule_tac x = "m`Collect P" in spec, force) | 
| 12298 | 615 | done | 
| 11454 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 paulson parents: 
11451diff
changeset | 616 | |
| 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 paulson parents: 
11451diff
changeset | 617 | lemma ex_has_least_nat: | 
| 14760 | 618 | "P k ==> \<exists>x. P x & (\<forall>y. P y --> m x <= (m y::nat))" | 
| 12298 | 619 | apply (simp only: pred_nat_trancl_eq_le [symmetric]) | 
| 620 | apply (rule wf_pred_nat [THEN wf_linord_ex_has_least]) | |
| 16796 | 621 | apply (simp add: less_eq linorder_not_le pred_nat_trancl_eq_le, assumption) | 
| 12298 | 622 | done | 
| 11454 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 paulson parents: 
11451diff
changeset | 623 | |
| 12298 | 624 | lemma LeastM_nat_lemma: | 
| 14760 | 625 | "P k ==> P (LeastM m P) & (\<forall>y. P y --> m (LeastM m P) <= (m y::nat))" | 
| 626 | apply (simp add: LeastM_def) | |
| 12298 | 627 | apply (rule someI_ex) | 
| 628 | apply (erule ex_has_least_nat) | |
| 629 | done | |
| 11454 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 paulson parents: 
11451diff
changeset | 630 | |
| 45607 | 631 | lemmas LeastM_natI = LeastM_nat_lemma [THEN conjunct1] | 
| 11454 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 paulson parents: 
11451diff
changeset | 632 | |
| 
7514e5e21cb8
Hilbert restructuring: Wellfounded_Relations no longer needs Hilbert_Choice
 paulson parents: 
11451diff
changeset | 633 | lemma LeastM_nat_le: "P x ==> m (LeastM m P) <= (m x::nat)" | 
| 14208 | 634 | 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: 
11451diff
changeset | 635 | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 636 | |
| 60758 | 637 | subsection \<open>Greatest value operator\<close> | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 638 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35216diff
changeset | 639 | definition | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35216diff
changeset | 640 | GreatestM :: "['a => 'b::ord, 'a => bool] => 'a" where | 
| 14760 | 641 | "GreatestM m P == SOME x. P x & (\<forall>y. P y --> m y <= m x)" | 
| 12298 | 642 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35216diff
changeset | 643 | definition | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35216diff
changeset | 644 |   Greatest :: "('a::ord => bool) => 'a" (binder "GREATEST " 10) where
 | 
| 12298 | 645 | "Greatest == GreatestM (%x. x)" | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 646 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 647 | syntax | 
| 35115 | 648 | "_GreatestM" :: "[pttrn, 'a => 'b::ord, bool] => 'a" | 
| 12298 | 649 |       ("GREATEST _ WRT _. _" [0, 4, 10] 10)
 | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 650 | translations | 
| 35115 | 651 | "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 | 652 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 653 | lemma GreatestMI2: | 
| 12298 | 654 | "P x ==> (!!y. P y ==> m y <= m x) | 
| 655 | ==> (!!x. P x ==> \<forall>y. P y --> m y \<le> m x ==> Q x) | |
| 656 | ==> Q (GreatestM m P)" | |
| 14760 | 657 | apply (simp add: GreatestM_def) | 
| 14208 | 658 | apply (rule someI2_ex, blast, blast) | 
| 12298 | 659 | done | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 660 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 661 | lemma GreatestM_equality: | 
| 12298 | 662 | "P k ==> (!!x. P x ==> m x <= m k) | 
| 663 | ==> m (GREATEST x WRT m. P x) = (m k::'a::order)" | |
| 14208 | 664 | apply (rule_tac m = m in GreatestMI2, assumption, blast) | 
| 12298 | 665 | apply (blast intro!: order_antisym) | 
| 666 | done | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 667 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 668 | lemma Greatest_equality: | 
| 12298 | 669 | "P (k::'a::order) ==> (!!x. P x ==> x <= k) ==> (GREATEST x. P x) = k" | 
| 14760 | 670 | apply (simp add: Greatest_def) | 
| 14208 | 671 | apply (erule GreatestM_equality, blast) | 
| 12298 | 672 | done | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 673 | |
| 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 674 | lemma ex_has_greatest_nat_lemma: | 
| 14760 | 675 | "P k ==> \<forall>x. P x --> (\<exists>y. P y & ~ ((m y::nat) <= m x)) | 
| 676 | ==> \<exists>y. P y & ~ (m y < m k + n)" | |
| 15251 | 677 | apply (induct n, force) | 
| 12298 | 678 | apply (force simp add: le_Suc_eq) | 
| 679 | done | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 680 | |
| 12298 | 681 | lemma ex_has_greatest_nat: | 
| 14760 | 682 | "P k ==> \<forall>y. P y --> m y < b | 
| 683 | ==> \<exists>x. P x & (\<forall>y. P y --> (m y::nat) <= m x)" | |
| 12298 | 684 | apply (rule ccontr) | 
| 685 | apply (cut_tac P = P and n = "b - m k" in ex_has_greatest_nat_lemma) | |
| 14208 | 686 | apply (subgoal_tac [3] "m k <= b", auto) | 
| 12298 | 687 | done | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 688 | |
| 12298 | 689 | lemma GreatestM_nat_lemma: | 
| 14760 | 690 | "P k ==> \<forall>y. P y --> m y < b | 
| 691 | ==> P (GreatestM m P) & (\<forall>y. P y --> (m y::nat) <= m (GreatestM m P))" | |
| 692 | apply (simp add: GreatestM_def) | |
| 12298 | 693 | apply (rule someI_ex) | 
| 14208 | 694 | apply (erule ex_has_greatest_nat, assumption) | 
| 12298 | 695 | done | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 696 | |
| 45607 | 697 | lemmas GreatestM_natI = GreatestM_nat_lemma [THEN conjunct1] | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 698 | |
| 12298 | 699 | lemma GreatestM_nat_le: | 
| 14760 | 700 | "P x ==> \<forall>y. P y --> m y < b | 
| 12298 | 701 | ==> (m x::nat) <= m (GreatestM m P)" | 
| 21020 | 702 | apply (blast dest: GreatestM_nat_lemma [THEN conjunct2, THEN spec, of P]) | 
| 12298 | 703 | done | 
| 704 | ||
| 705 | ||
| 61799 | 706 | text \<open>\medskip Specialization to \<open>GREATEST\<close>.\<close> | 
| 12298 | 707 | |
| 14760 | 708 | lemma GreatestI: "P (k::nat) ==> \<forall>y. P y --> y < b ==> P (GREATEST x. P x)" | 
| 709 | apply (simp add: Greatest_def) | |
| 14208 | 710 | apply (rule GreatestM_natI, auto) | 
| 12298 | 711 | done | 
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 712 | |
| 12298 | 713 | lemma Greatest_le: | 
| 14760 | 714 | "P x ==> \<forall>y. P y --> y < b ==> (x::nat) <= (GREATEST x. P x)" | 
| 715 | apply (simp add: Greatest_def) | |
| 14208 | 716 | apply (rule GreatestM_nat_le, auto) | 
| 12298 | 717 | done | 
| 718 | ||
| 719 | ||
| 60758 | 720 | subsection \<open>An aside: bounded accessible part\<close> | 
| 49948 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 721 | |
| 60758 | 722 | text \<open>Finite monotone eventually stable sequences\<close> | 
| 49948 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 723 | |
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 724 | lemma finite_mono_remains_stable_implies_strict_prefix: | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 725 | fixes f :: "nat \<Rightarrow> 'a::order" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 726 | 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: 
49739diff
changeset | 727 | 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: 
49739diff
changeset | 728 | using assms | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 729 | proof - | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 730 | have "\<exists>n. f n = f (Suc n)" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 731 | proof (rule ccontr) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 732 | assume "\<not> ?thesis" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 733 | 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: 
49739diff
changeset | 734 | then have "\<And>n. f n < f (Suc n)" | 
| 60758 | 735 | using \<open>mono f\<close> by (auto simp: le_less mono_iff_le_Suc) | 
| 49948 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 736 | with lift_Suc_mono_less_iff[of f] | 
| 55811 | 737 | have *: "\<And>n m. n < m \<Longrightarrow> f n < f m" by auto | 
| 738 | have "inj f" | |
| 739 | proof (intro injI) | |
| 740 | fix x y | |
| 741 | assume "f x = f y" | |
| 742 | then show "x = y" by (cases x y rule: linorder_cases) (auto dest: *) | |
| 743 | qed | |
| 60758 | 744 | with \<open>finite (range f)\<close> have "finite (UNIV::nat set)" | 
| 49948 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 745 | by (rule finite_imageD) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 746 | then show False by simp | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 747 | qed | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 748 | then obtain n where n: "f n = f (Suc n)" .. | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 749 | def N \<equiv> "LEAST n. f n = f (Suc n)" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 750 | have N: "f N = f (Suc N)" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 751 | unfolding N_def using n by (rule LeastI) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 752 | show ?thesis | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 753 | proof (intro exI[of _ N] conjI allI impI) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 754 | fix n assume "N \<le> n" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 755 | 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: 
49739diff
changeset | 756 | proof (induct rule: dec_induct) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 757 | case (step n) then show ?case | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 758 | using eq[rule_format, of "n - 1"] N | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 759 | by (cases n) (auto simp add: le_Suc_eq) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 760 | qed simp | 
| 60758 | 761 | from this[of n] \<open>N \<le> n\<close> show "f N = f n" by auto | 
| 49948 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 762 | next | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 763 | fix n m :: nat assume "m < n" "n \<le> N" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 764 | then show "f m < f n" | 
| 62683 | 765 | proof (induct rule: less_Suc_induct) | 
| 49948 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 766 | case (1 i) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 767 | then have "i < N" by simp | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 768 | then have "f i \<noteq> f (Suc i)" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 769 | unfolding N_def by (rule not_less_Least) | 
| 60758 | 770 | with \<open>mono f\<close> show ?case by (simp add: mono_iff_le_Suc less_le) | 
| 49948 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 771 | qed auto | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 772 | qed | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 773 | qed | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 774 | |
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 775 | lemma finite_mono_strict_prefix_implies_finite_fixpoint: | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 776 | fixes f :: "nat \<Rightarrow> 'a set" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 777 | assumes S: "\<And>i. f i \<subseteq> S" "finite S" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 778 | 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: 
49739diff
changeset | 779 | shows "f (card S) = (\<Union>n. f n)" | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 780 | proof - | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 781 | 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: 
49739diff
changeset | 782 | |
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 783 |   { 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: 
49739diff
changeset | 784 | proof (induct i) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 785 | case 0 then show ?case by simp | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 786 | next | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 787 | case (Suc i) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 788 | with inj[rule_format, of "Suc i" i] | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 789 | have "(f i) \<subset> (f (Suc i))" by auto | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 790 | 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: 
49739diff
changeset | 791 | 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: 
49739diff
changeset | 792 | with Suc show ?case using inj by auto | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 793 | qed | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 794 | } | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 795 | then have "N \<le> card (f N)" by simp | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 796 | 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: 
49739diff
changeset | 797 | 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: 
49739diff
changeset | 798 | then show ?thesis using eq inj[rule_format, of N] | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 799 | apply auto | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 800 | apply (case_tac "n < N") | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 801 | apply (auto simp: not_less) | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 802 | done | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 803 | qed | 
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 804 | |
| 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 haftmann parents: 
49739diff
changeset | 805 | |
| 60758 | 806 | subsection \<open>More on injections, bijections, and inverses\<close> | 
| 55020 | 807 | |
| 808 | lemma infinite_imp_bij_betw: | |
| 809 | assumes INF: "\<not> finite A" | |
| 810 | shows "\<exists>h. bij_betw h A (A - {a})"
 | |
| 811 | proof(cases "a \<in> A") | |
| 812 |   assume Case1: "a \<notin> A"  hence "A - {a} = A" by blast
 | |
| 813 | thus ?thesis using bij_betw_id[of A] by auto | |
| 814 | next | |
| 815 | assume Case2: "a \<in> A" | |
| 816 |   have "\<not> finite (A - {a})" using INF by auto
 | |
| 817 |   with infinite_iff_countable_subset[of "A - {a}"] obtain f::"nat \<Rightarrow> 'a"
 | |
| 818 |   where 1: "inj f" and 2: "f ` UNIV \<le> A - {a}" by blast
 | |
| 819 | obtain g where g_def: "g = (\<lambda> n. if n = 0 then a else f (Suc n))" by blast | |
| 820 | obtain A' where A'_def: "A' = g ` UNIV" by blast | |
| 821 | have temp: "\<forall>y. f y \<noteq> a" using 2 by blast | |
| 822 | have 3: "inj_on g UNIV \<and> g ` UNIV \<le> A \<and> a \<in> g ` UNIV" | |
| 823 | proof(auto simp add: Case2 g_def, unfold inj_on_def, intro ballI impI, | |
| 824 | case_tac "x = 0", auto simp add: 2) | |
| 825 | fix y assume "a = (if y = 0 then a else f (Suc y))" | |
| 826 | thus "y = 0" using temp by (case_tac "y = 0", auto) | |
| 827 | next | |
| 828 | fix x y | |
| 829 | assume "f (Suc x) = (if y = 0 then a else f (Suc y))" | |
| 830 | thus "x = y" using 1 temp unfolding inj_on_def by (case_tac "y = 0", auto) | |
| 831 | next | |
| 832 | fix n show "f (Suc n) \<in> A" using 2 by blast | |
| 833 | qed | |
| 834 | hence 4: "bij_betw g UNIV A' \<and> a \<in> A' \<and> A' \<le> A" | |
| 835 | using inj_on_imp_bij_betw[of g] unfolding A'_def by auto | |
| 836 | hence 5: "bij_betw (inv g) A' UNIV" | |
| 837 | by (auto simp add: bij_betw_inv_into) | |
| 838 | (* *) | |
| 839 | obtain n where "g n = a" using 3 by auto | |
| 840 |   hence 6: "bij_betw g (UNIV - {n}) (A' - {a})"
 | |
| 841 | using 3 4 unfolding A'_def | |
| 842 | by clarify (rule bij_betw_subset, auto simp: image_set_diff) | |
| 843 | (* *) | |
| 844 | obtain v where v_def: "v = (\<lambda> m. if m < n then m else Suc m)" by blast | |
| 845 |   have 7: "bij_betw v UNIV (UNIV - {n})"
 | |
| 846 | proof(unfold bij_betw_def inj_on_def, intro conjI, clarify) | |
| 847 | fix m1 m2 assume "v m1 = v m2" | |
| 848 | thus "m1 = m2" | |
| 849 | by(case_tac "m1 < n", case_tac "m2 < n", | |
| 850 | auto simp add: inj_on_def v_def, case_tac "m2 < n", auto) | |
| 851 | next | |
| 852 |     show "v ` UNIV = UNIV - {n}"
 | |
| 853 | proof(auto simp add: v_def) | |
| 854 |       fix m assume *: "m \<noteq> n" and **: "m \<notin> Suc ` {m'. \<not> m' < n}"
 | |
| 855 |       {assume "n \<le> m" with * have 71: "Suc n \<le> m" by auto
 | |
| 856 | then obtain m' where 72: "m = Suc m'" using Suc_le_D by auto | |
| 857 | with 71 have "n \<le> m'" by auto | |
| 858 | with 72 ** have False by auto | |
| 859 | } | |
| 860 | thus "m < n" by force | |
| 861 | qed | |
| 862 | qed | |
| 863 | (* *) | |
| 864 | obtain h' where h'_def: "h' = g o v o (inv g)" by blast | |
| 865 |   hence 8: "bij_betw h' A' (A' - {a})" using 5 7 6
 | |
| 866 | by (auto simp add: bij_betw_trans) | |
| 867 | (* *) | |
| 868 | obtain h where h_def: "h = (\<lambda> b. if b \<in> A' then h' b else b)" by blast | |
| 869 | have "\<forall>b \<in> A'. h b = h' b" unfolding h_def by auto | |
| 870 |   hence "bij_betw h  A' (A' - {a})" using 8 bij_betw_cong[of A' h] by auto
 | |
| 871 | moreover | |
| 872 |   {have "\<forall>b \<in> A - A'. h b = b" unfolding h_def by auto
 | |
| 873 | hence "bij_betw h (A - A') (A - A')" | |
| 874 | using bij_betw_cong[of "A - A'" h id] bij_betw_id[of "A - A'"] by auto | |
| 875 | } | |
| 876 | moreover | |
| 877 |   have "(A' Int (A - A') = {} \<and> A' \<union> (A - A') = A) \<and>
 | |
| 878 |         ((A' - {a}) Int (A - A') = {} \<and> (A' - {a}) \<union> (A - A') = A - {a})"
 | |
| 879 | using 4 by blast | |
| 880 |   ultimately have "bij_betw h A (A - {a})"
 | |
| 881 |   using bij_betw_combine[of h A' "A' - {a}" "A - A'" "A - A'"] by simp
 | |
| 882 | thus ?thesis by blast | |
| 883 | qed | |
| 884 | ||
| 885 | lemma infinite_imp_bij_betw2: | |
| 886 | assumes INF: "\<not> finite A" | |
| 887 | shows "\<exists>h. bij_betw h A (A \<union> {a})"
 | |
| 888 | proof(cases "a \<in> A") | |
| 889 |   assume Case1: "a \<in> A"  hence "A \<union> {a} = A" by blast
 | |
| 890 | thus ?thesis using bij_betw_id[of A] by auto | |
| 891 | next | |
| 892 |   let ?A' = "A \<union> {a}"
 | |
| 893 |   assume Case2: "a \<notin> A" hence "A = ?A' - {a}" by blast
 | |
| 894 | moreover have "\<not> finite ?A'" using INF by auto | |
| 895 | ultimately obtain f where "bij_betw f ?A' A" | |
| 896 | using infinite_imp_bij_betw[of ?A' a] by auto | |
| 897 | hence "bij_betw(inv_into ?A' f) A ?A'" using bij_betw_inv_into by blast | |
| 898 | thus ?thesis by auto | |
| 899 | qed | |
| 900 | ||
| 901 | lemma bij_betw_inv_into_left: | |
| 902 | assumes BIJ: "bij_betw f A A'" and IN: "a \<in> A" | |
| 903 | shows "(inv_into A f) (f a) = a" | |
| 904 | using assms unfolding bij_betw_def | |
| 905 | by clarify (rule inv_into_f_f) | |
| 906 | ||
| 907 | lemma bij_betw_inv_into_right: | |
| 908 | assumes "bij_betw f A A'" "a' \<in> A'" | |
| 909 | shows "f(inv_into A f a') = a'" | |
| 910 | using assms unfolding bij_betw_def using f_inv_into_f by force | |
| 911 | ||
| 912 | lemma bij_betw_inv_into_subset: | |
| 913 | assumes BIJ: "bij_betw f A A'" and | |
| 914 | SUB: "B \<le> A" and IM: "f ` B = B'" | |
| 915 | shows "bij_betw (inv_into A f) B' B" | |
| 916 | using assms unfolding bij_betw_def | |
| 917 | by (auto intro: inj_on_inv_into) | |
| 918 | ||
| 919 | ||
| 60758 | 920 | subsection \<open>Specification package -- Hilbertized version\<close> | 
| 17893 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 wenzelm parents: 
17702diff
changeset | 921 | |
| 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 wenzelm parents: 
17702diff
changeset | 922 | lemma exE_some: "[| Ex P ; c == Eps P |] ==> P c" | 
| 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 wenzelm parents: 
17702diff
changeset | 923 | by (simp only: someI_ex) | 
| 
aef5a6d11c2a
added lemma exE_some (from specification_package.ML);
 wenzelm parents: 
17702diff
changeset | 924 | |
| 48891 | 925 | ML_file "Tools/choice_specification.ML" | 
| 14115 | 926 | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: diff
changeset | 927 | end |