| author | blanchet | 
| Tue, 11 Jun 2013 18:50:09 -0400 | |
| changeset 52367 | 2f5e6ad6e91f | 
| parent 51717 | 9e7d1c139569 | 
| child 52435 | 6646bb548c6b | 
| permissions | -rw-r--r-- | 
| 1475 | 1  | 
(* Title: HOL/Fun.thy  | 
2  | 
Author: Tobias Nipkow, Cambridge University Computer Laboratory  | 
|
| 923 | 3  | 
Copyright 1994 University of Cambridge  | 
| 18154 | 4  | 
*)  | 
| 923 | 5  | 
|
| 18154 | 6  | 
header {* Notions about functions *}
 | 
| 923 | 7  | 
|
| 15510 | 8  | 
theory Fun  | 
| 
44860
 
56101fa00193
renamed theory Complete_Lattice to Complete_Lattices, in accordance with Lattices, Orderings etc.
 
haftmann 
parents: 
44744 
diff
changeset
 | 
9  | 
imports Complete_Lattices  | 
| 
46950
 
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
 
wenzelm 
parents: 
46586 
diff
changeset
 | 
10  | 
keywords "enriched_type" :: thy_goal  | 
| 15131 | 11  | 
begin  | 
| 2912 | 12  | 
|
| 26147 | 13  | 
lemma apply_inverse:  | 
| 26357 | 14  | 
"f x = u \<Longrightarrow> (\<And>x. P x \<Longrightarrow> g (f x) = x) \<Longrightarrow> P x \<Longrightarrow> x = g u"  | 
| 26147 | 15  | 
by auto  | 
| 2912 | 16  | 
|
| 12258 | 17  | 
|
| 26147 | 18  | 
subsection {* The Identity Function @{text id} *}
 | 
| 6171 | 19  | 
|
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
20  | 
definition id :: "'a \<Rightarrow> 'a" where  | 
| 
22744
 
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
 
haftmann 
parents: 
22577 
diff
changeset
 | 
21  | 
"id = (\<lambda>x. x)"  | 
| 13910 | 22  | 
|
| 26147 | 23  | 
lemma id_apply [simp]: "id x = x"  | 
24  | 
by (simp add: id_def)  | 
|
25  | 
||
| 47579 | 26  | 
lemma image_id [simp]: "image id = id"  | 
27  | 
by (simp add: id_def fun_eq_iff)  | 
|
| 26147 | 28  | 
|
| 47579 | 29  | 
lemma vimage_id [simp]: "vimage id = id"  | 
30  | 
by (simp add: id_def fun_eq_iff)  | 
|
| 26147 | 31  | 
|
32  | 
||
33  | 
subsection {* The Composition Operator @{text "f \<circ> g"} *}
 | 
|
34  | 
||
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
35  | 
definition comp :: "('b \<Rightarrow> 'c) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'c" (infixl "o" 55) where
 | 
| 
22744
 
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
 
haftmann 
parents: 
22577 
diff
changeset
 | 
36  | 
"f o g = (\<lambda>x. f (g x))"  | 
| 11123 | 37  | 
|
| 21210 | 38  | 
notation (xsymbols)  | 
| 
19656
 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 
wenzelm 
parents: 
19536 
diff
changeset
 | 
39  | 
comp (infixl "\<circ>" 55)  | 
| 
 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 
wenzelm 
parents: 
19536 
diff
changeset
 | 
40  | 
|
| 21210 | 41  | 
notation (HTML output)  | 
| 
19656
 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 
wenzelm 
parents: 
19536 
diff
changeset
 | 
42  | 
comp (infixl "\<circ>" 55)  | 
| 
 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 
wenzelm 
parents: 
19536 
diff
changeset
 | 
43  | 
|
| 49739 | 44  | 
lemma comp_apply [simp]: "(f o g) x = f (g x)"  | 
45  | 
by (simp add: comp_def)  | 
|
| 13585 | 46  | 
|
| 49739 | 47  | 
lemma comp_assoc: "(f o g) o h = f o (g o h)"  | 
48  | 
by (simp add: fun_eq_iff)  | 
|
| 13585 | 49  | 
|
| 49739 | 50  | 
lemma id_comp [simp]: "id o g = g"  | 
51  | 
by (simp add: fun_eq_iff)  | 
|
| 13585 | 52  | 
|
| 49739 | 53  | 
lemma comp_id [simp]: "f o id = f"  | 
54  | 
by (simp add: fun_eq_iff)  | 
|
55  | 
||
56  | 
lemma comp_eq_dest:  | 
|
| 34150 | 57  | 
"a o b = c o d \<Longrightarrow> a (b v) = c (d v)"  | 
| 49739 | 58  | 
by (simp add: fun_eq_iff)  | 
| 34150 | 59  | 
|
| 49739 | 60  | 
lemma comp_eq_elim:  | 
| 34150 | 61  | 
"a o b = c o d \<Longrightarrow> ((\<And>v. a (b v) = c (d v)) \<Longrightarrow> R) \<Longrightarrow> R"  | 
| 49739 | 62  | 
by (simp add: fun_eq_iff)  | 
| 34150 | 63  | 
|
| 49739 | 64  | 
lemma image_comp:  | 
65  | 
"(f o g) ` r = f ` (g ` r)"  | 
|
| 33044 | 66  | 
by auto  | 
67  | 
||
| 49739 | 68  | 
lemma vimage_comp:  | 
69  | 
"(g \<circ> f) -` x = f -` (g -` x)"  | 
|
70  | 
by auto  | 
|
71  | 
||
72  | 
lemma INF_comp:  | 
|
73  | 
"INFI A (g \<circ> f) = INFI (f ` A) g"  | 
|
74  | 
by (simp add: INF_def image_comp)  | 
|
75  | 
||
76  | 
lemma SUP_comp:  | 
|
77  | 
"SUPR A (g \<circ> f) = SUPR (f ` A) g"  | 
|
78  | 
by (simp add: SUP_def image_comp)  | 
|
| 13585 | 79  | 
|
80  | 
||
| 
26588
 
d83271bfaba5
removed syntax from monad combinators; renamed mbind to scomp
 
haftmann 
parents: 
26357 
diff
changeset
 | 
81  | 
subsection {* The Forward Composition Operator @{text fcomp} *}
 | 
| 26357 | 82  | 
|
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
83  | 
definition fcomp :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'c) \<Rightarrow> 'a \<Rightarrow> 'c" (infixl "\<circ>>" 60) where
 | 
| 37751 | 84  | 
"f \<circ>> g = (\<lambda>x. g (f x))"  | 
| 26357 | 85  | 
|
| 37751 | 86  | 
lemma fcomp_apply [simp]: "(f \<circ>> g) x = g (f x)"  | 
| 26357 | 87  | 
by (simp add: fcomp_def)  | 
88  | 
||
| 37751 | 89  | 
lemma fcomp_assoc: "(f \<circ>> g) \<circ>> h = f \<circ>> (g \<circ>> h)"  | 
| 26357 | 90  | 
by (simp add: fcomp_def)  | 
91  | 
||
| 37751 | 92  | 
lemma id_fcomp [simp]: "id \<circ>> g = g"  | 
| 26357 | 93  | 
by (simp add: fcomp_def)  | 
94  | 
||
| 37751 | 95  | 
lemma fcomp_id [simp]: "f \<circ>> id = f"  | 
| 26357 | 96  | 
by (simp add: fcomp_def)  | 
97  | 
||
| 
31202
 
52d332f8f909
pretty printing of functional combinators for evaluation code
 
haftmann 
parents: 
31080 
diff
changeset
 | 
98  | 
code_const fcomp  | 
| 
 
52d332f8f909
pretty printing of functional combinators for evaluation code
 
haftmann 
parents: 
31080 
diff
changeset
 | 
99  | 
(Eval infixl 1 "#>")  | 
| 
 
52d332f8f909
pretty printing of functional combinators for evaluation code
 
haftmann 
parents: 
31080 
diff
changeset
 | 
100  | 
|
| 37751 | 101  | 
no_notation fcomp (infixl "\<circ>>" 60)  | 
| 
26588
 
d83271bfaba5
removed syntax from monad combinators; renamed mbind to scomp
 
haftmann 
parents: 
26357 
diff
changeset
 | 
102  | 
|
| 26357 | 103  | 
|
| 40602 | 104  | 
subsection {* Mapping functions *}
 | 
105  | 
||
106  | 
definition map_fun :: "('c \<Rightarrow> 'a) \<Rightarrow> ('b \<Rightarrow> 'd) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'c \<Rightarrow> 'd" where
 | 
|
107  | 
"map_fun f g h = g \<circ> h \<circ> f"  | 
|
108  | 
||
109  | 
lemma map_fun_apply [simp]:  | 
|
110  | 
"map_fun f g h x = g (h (f x))"  | 
|
111  | 
by (simp add: map_fun_def)  | 
|
112  | 
||
113  | 
||
| 40702 | 114  | 
subsection {* Injectivity and Bijectivity *}
 | 
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
115  | 
|
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
116  | 
definition inj_on :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> bool" where -- "injective"
 | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
117  | 
"inj_on f A \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>A. f x = f y \<longrightarrow> x = y)"  | 
| 26147 | 118  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
119  | 
definition bij_betw :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> bool" where -- "bijective"
 | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
120  | 
"bij_betw f A B \<longleftrightarrow> inj_on f A \<and> f ` A = B"  | 
| 26147 | 121  | 
|
| 40702 | 122  | 
text{*A common special case: functions injective, surjective or bijective over
 | 
123  | 
the entire domain type.*}  | 
|
| 26147 | 124  | 
|
125  | 
abbreviation  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
126  | 
"inj f \<equiv> inj_on f UNIV"  | 
| 26147 | 127  | 
|
| 40702 | 128  | 
abbreviation surj :: "('a \<Rightarrow> 'b) \<Rightarrow> bool" where -- "surjective"
 | 
129  | 
"surj f \<equiv> (range f = UNIV)"  | 
|
| 13585 | 130  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
131  | 
abbreviation  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
132  | 
"bij f \<equiv> bij_betw f UNIV UNIV"  | 
| 26147 | 133  | 
|
| 
43705
 
8e421a529a48
added translation to fix critical pair between abbreviations for surj and ~=
 
nipkow 
parents: 
42903 
diff
changeset
 | 
134  | 
text{* The negated case: *}
 | 
| 
 
8e421a529a48
added translation to fix critical pair between abbreviations for surj and ~=
 
nipkow 
parents: 
42903 
diff
changeset
 | 
135  | 
translations  | 
| 
 
8e421a529a48
added translation to fix critical pair between abbreviations for surj and ~=
 
nipkow 
parents: 
42903 
diff
changeset
 | 
136  | 
"\<not> CONST surj f" <= "CONST range f \<noteq> CONST UNIV"  | 
| 
 
8e421a529a48
added translation to fix critical pair between abbreviations for surj and ~=
 
nipkow 
parents: 
42903 
diff
changeset
 | 
137  | 
|
| 26147 | 138  | 
lemma injI:  | 
139  | 
assumes "\<And>x y. f x = f y \<Longrightarrow> x = y"  | 
|
140  | 
shows "inj f"  | 
|
141  | 
using assms unfolding inj_on_def by auto  | 
|
| 13585 | 142  | 
|
| 13637 | 143  | 
theorem range_ex1_eq: "inj f \<Longrightarrow> b : range f = (EX! x. b = f x)"  | 
144  | 
by (unfold inj_on_def, blast)  | 
|
145  | 
||
| 13585 | 146  | 
lemma injD: "[| inj(f); f(x) = f(y) |] ==> x=y"  | 
147  | 
by (simp add: inj_on_def)  | 
|
148  | 
||
| 32988 | 149  | 
lemma inj_on_eq_iff: "inj_on f A ==> x:A ==> y:A ==> (f(x) = f(y)) = (x=y)"  | 
| 13585 | 150  | 
by (force simp add: inj_on_def)  | 
151  | 
||
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
152  | 
lemma inj_on_cong:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
153  | 
"(\<And> a. a : A \<Longrightarrow> f a = g a) \<Longrightarrow> inj_on f A = inj_on g A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
154  | 
unfolding inj_on_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
155  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
156  | 
lemma inj_on_strict_subset:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
157  | 
"\<lbrakk> inj_on f B; A < B \<rbrakk> \<Longrightarrow> f`A < f`B"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
158  | 
unfolding inj_on_def unfolding image_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
159  | 
|
| 38620 | 160  | 
lemma inj_comp:  | 
161  | 
"inj f \<Longrightarrow> inj g \<Longrightarrow> inj (f \<circ> g)"  | 
|
162  | 
by (simp add: inj_on_def)  | 
|
163  | 
||
164  | 
lemma inj_fun: "inj f \<Longrightarrow> inj (\<lambda>x y. f x)"  | 
|
| 
39302
 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 
nipkow 
parents: 
39213 
diff
changeset
 | 
165  | 
by (simp add: inj_on_def fun_eq_iff)  | 
| 38620 | 166  | 
|
| 32988 | 167  | 
lemma inj_eq: "inj f ==> (f(x) = f(y)) = (x=y)"  | 
168  | 
by (simp add: inj_on_eq_iff)  | 
|
169  | 
||
| 26147 | 170  | 
lemma inj_on_id[simp]: "inj_on id A"  | 
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
171  | 
by (simp add: inj_on_def)  | 
| 13585 | 172  | 
|
| 26147 | 173  | 
lemma inj_on_id2[simp]: "inj_on (%x. x) A"  | 
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
174  | 
by (simp add: inj_on_def)  | 
| 26147 | 175  | 
|
| 46586 | 176  | 
lemma inj_on_Int: "inj_on f A \<or> inj_on f B \<Longrightarrow> inj_on f (A \<inter> B)"  | 
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
177  | 
unfolding inj_on_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
178  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
179  | 
lemma inj_on_INTER:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
180  | 
  "\<lbrakk>I \<noteq> {}; \<And> i. i \<in> I \<Longrightarrow> inj_on f (A i)\<rbrakk> \<Longrightarrow> inj_on f (\<Inter> i \<in> I. A i)"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
181  | 
unfolding inj_on_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
182  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
183  | 
lemma inj_on_Inter:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
184  | 
  "\<lbrakk>S \<noteq> {}; \<And> A. A \<in> S \<Longrightarrow> inj_on f A\<rbrakk> \<Longrightarrow> inj_on f (Inter S)"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
185  | 
unfolding inj_on_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
186  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
187  | 
lemma inj_on_UNION_chain:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
188  | 
assumes CH: "\<And> i j. \<lbrakk>i \<in> I; j \<in> I\<rbrakk> \<Longrightarrow> A i \<le> A j \<or> A j \<le> A i" and  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
189  | 
INJ: "\<And> i. i \<in> I \<Longrightarrow> inj_on f (A i)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
190  | 
shows "inj_on f (\<Union> i \<in> I. A i)"  | 
| 
49905
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
191  | 
proof -  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
192  | 
  {
 | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
193  | 
fix i j x y  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
194  | 
assume *: "i \<in> I" "j \<in> I" and **: "x \<in> A i" "y \<in> A j"  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
195  | 
and ***: "f x = f y"  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
196  | 
have "x = y"  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
197  | 
proof -  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
198  | 
      {
 | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
199  | 
assume "A i \<le> A j"  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
200  | 
with ** have "x \<in> A j" by auto  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
201  | 
with INJ * ** *** have ?thesis  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
202  | 
by(auto simp add: inj_on_def)  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
203  | 
}  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
204  | 
moreover  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
205  | 
      {
 | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
206  | 
assume "A j \<le> A i"  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
207  | 
with ** have "y \<in> A i" by auto  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
208  | 
with INJ * ** *** have ?thesis  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
209  | 
by(auto simp add: inj_on_def)  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
210  | 
}  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
211  | 
ultimately show ?thesis using CH * by blast  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
212  | 
qed  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
213  | 
}  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
214  | 
then show ?thesis by (unfold inj_on_def UNION_eq) auto  | 
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
215  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
216  | 
|
| 40702 | 217  | 
lemma surj_id: "surj id"  | 
218  | 
by simp  | 
|
| 26147 | 219  | 
|
| 
39101
 
606432dd1896
Revert bij_betw changes to simp set (Problem in afp/Ordinals_and_Cardinals)
 
hoelzl 
parents: 
39076 
diff
changeset
 | 
220  | 
lemma bij_id[simp]: "bij id"  | 
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
221  | 
by (simp add: bij_betw_def)  | 
| 13585 | 222  | 
|
223  | 
lemma inj_onI:  | 
|
224  | 
"(!! x y. [| x:A; y:A; f(x) = f(y) |] ==> x=y) ==> inj_on f A"  | 
|
225  | 
by (simp add: inj_on_def)  | 
|
226  | 
||
227  | 
lemma inj_on_inverseI: "(!!x. x:A ==> g(f(x)) = x) ==> inj_on f A"  | 
|
228  | 
by (auto dest: arg_cong [of concl: g] simp add: inj_on_def)  | 
|
229  | 
||
230  | 
lemma inj_onD: "[| inj_on f A; f(x)=f(y); x:A; y:A |] ==> x=y"  | 
|
231  | 
by (unfold inj_on_def, blast)  | 
|
232  | 
||
233  | 
lemma inj_on_iff: "[| inj_on f A; x:A; y:A |] ==> (f(x)=f(y)) = (x=y)"  | 
|
234  | 
by (blast dest!: inj_onD)  | 
|
235  | 
||
236  | 
lemma comp_inj_on:  | 
|
237  | 
"[| inj_on f A; inj_on g (f`A) |] ==> inj_on (g o f) A"  | 
|
238  | 
by (simp add: comp_def inj_on_def)  | 
|
239  | 
||
| 15303 | 240  | 
lemma inj_on_imageI: "inj_on (g o f) A \<Longrightarrow> inj_on g (f ` A)"  | 
241  | 
apply(simp add:inj_on_def image_def)  | 
|
242  | 
apply blast  | 
|
243  | 
done  | 
|
244  | 
||
| 15439 | 245  | 
lemma inj_on_image_iff: "\<lbrakk> ALL x:A. ALL y:A. (g(f x) = g(f y)) = (g x = g y);  | 
246  | 
inj_on f A \<rbrakk> \<Longrightarrow> inj_on g (f ` A) = inj_on g A"  | 
|
247  | 
apply(unfold inj_on_def)  | 
|
248  | 
apply blast  | 
|
249  | 
done  | 
|
250  | 
||
| 13585 | 251  | 
lemma inj_on_contraD: "[| inj_on f A; ~x=y; x:A; y:A |] ==> ~ f(x)=f(y)"  | 
252  | 
by (unfold inj_on_def, blast)  | 
|
| 12258 | 253  | 
|
| 13585 | 254  | 
lemma inj_singleton: "inj (%s. {s})"
 | 
255  | 
by (simp add: inj_on_def)  | 
|
256  | 
||
| 15111 | 257  | 
lemma inj_on_empty[iff]: "inj_on f {}"
 | 
258  | 
by(simp add: inj_on_def)  | 
|
259  | 
||
| 15303 | 260  | 
lemma subset_inj_on: "[| inj_on f B; A <= B |] ==> inj_on f A"  | 
| 13585 | 261  | 
by (unfold inj_on_def, blast)  | 
262  | 
||
| 15111 | 263  | 
lemma inj_on_Un:  | 
264  | 
"inj_on f (A Un B) =  | 
|
265  | 
  (inj_on f A & inj_on f B & f`(A-B) Int f`(B-A) = {})"
 | 
|
266  | 
apply(unfold inj_on_def)  | 
|
267  | 
apply (blast intro:sym)  | 
|
268  | 
done  | 
|
269  | 
||
270  | 
lemma inj_on_insert[iff]:  | 
|
271  | 
  "inj_on f (insert a A) = (inj_on f A & f a ~: f`(A-{a}))"
 | 
|
272  | 
apply(unfold inj_on_def)  | 
|
273  | 
apply (blast intro:sym)  | 
|
274  | 
done  | 
|
275  | 
||
276  | 
lemma inj_on_diff: "inj_on f A ==> inj_on f (A-B)"  | 
|
277  | 
apply(unfold inj_on_def)  | 
|
278  | 
apply (blast)  | 
|
279  | 
done  | 
|
280  | 
||
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
281  | 
lemma comp_inj_on_iff:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
282  | 
"inj_on f A \<Longrightarrow> inj_on f' (f ` A) \<longleftrightarrow> inj_on (f' o f) A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
283  | 
by(auto simp add: comp_inj_on inj_on_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
284  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
285  | 
lemma inj_on_imageI2:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
286  | 
"inj_on (f' o f) A \<Longrightarrow> inj_on f A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
287  | 
by(auto simp add: comp_inj_on inj_on_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
288  | 
|
| 
51598
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
289  | 
lemma inj_img_insertE:  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
290  | 
assumes "inj_on f A"  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
291  | 
assumes "x \<notin> B" and "insert x B = f ` A"  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
292  | 
obtains x' A' where "x' \<notin> A'" and "A = insert x' A'"  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
293  | 
and "x = f x'" and "B = f ` A'"  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
294  | 
proof -  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
295  | 
from assms have "x \<in> f ` A" by auto  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
296  | 
then obtain x' where *: "x' \<in> A" "x = f x'" by auto  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
297  | 
  then have "A = insert x' (A - {x'})" by auto
 | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
298  | 
  with assms * have "B = f ` (A - {x'})"
 | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
299  | 
by (auto dest: inj_on_contraD)  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
300  | 
  have "x' \<notin> A - {x'}" by simp
 | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
301  | 
  from `x' \<notin> A - {x'}` `A = insert x' (A - {x'})` `x = f x'` `B = image f (A - {x'})`
 | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
302  | 
show ?thesis ..  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
303  | 
qed  | 
| 
 
5dbe537087aa
generalized lemma fold_image thanks to Peter Lammich
 
haftmann 
parents: 
49905 
diff
changeset
 | 
304  | 
|
| 40702 | 305  | 
lemma surj_def: "surj f \<longleftrightarrow> (\<forall>y. \<exists>x. y = f x)"  | 
306  | 
by auto  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
307  | 
|
| 40702 | 308  | 
lemma surjI: assumes *: "\<And> x. g (f x) = x" shows "surj g"  | 
309  | 
using *[symmetric] by auto  | 
|
| 13585 | 310  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
311  | 
lemma surjD: "surj f \<Longrightarrow> \<exists>x. y = f x"  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
312  | 
by (simp add: surj_def)  | 
| 13585 | 313  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
314  | 
lemma surjE: "surj f \<Longrightarrow> (\<And>x. y = f x \<Longrightarrow> C) \<Longrightarrow> C"  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
315  | 
by (simp add: surj_def, blast)  | 
| 13585 | 316  | 
|
317  | 
lemma comp_surj: "[| surj f; surj g |] ==> surj (g o f)"  | 
|
318  | 
apply (simp add: comp_def surj_def, clarify)  | 
|
319  | 
apply (drule_tac x = y in spec, clarify)  | 
|
320  | 
apply (drule_tac x = x in spec, blast)  | 
|
321  | 
done  | 
|
322  | 
||
| 39074 | 323  | 
lemma bij_betw_imp_surj: "bij_betw f A UNIV \<Longrightarrow> surj f"  | 
| 40702 | 324  | 
unfolding bij_betw_def by auto  | 
| 39074 | 325  | 
|
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
326  | 
lemma bij_betw_empty1:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
327  | 
  assumes "bij_betw f {} A"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
328  | 
  shows "A = {}"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
329  | 
using assms unfolding bij_betw_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
330  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
331  | 
lemma bij_betw_empty2:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
332  | 
  assumes "bij_betw f A {}"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
333  | 
  shows "A = {}"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
334  | 
using assms unfolding bij_betw_def by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
335  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
336  | 
lemma inj_on_imp_bij_betw:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
337  | 
"inj_on f A \<Longrightarrow> bij_betw f A (f ` A)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
338  | 
unfolding bij_betw_def by simp  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
339  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
340  | 
lemma bij_def: "bij f \<longleftrightarrow> inj f \<and> surj f"  | 
| 40702 | 341  | 
unfolding bij_betw_def ..  | 
| 39074 | 342  | 
|
| 13585 | 343  | 
lemma bijI: "[| inj f; surj f |] ==> bij f"  | 
344  | 
by (simp add: bij_def)  | 
|
345  | 
||
346  | 
lemma bij_is_inj: "bij f ==> inj f"  | 
|
347  | 
by (simp add: bij_def)  | 
|
348  | 
||
349  | 
lemma bij_is_surj: "bij f ==> surj f"  | 
|
350  | 
by (simp add: bij_def)  | 
|
351  | 
||
| 
26105
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
352  | 
lemma bij_betw_imp_inj_on: "bij_betw f A B \<Longrightarrow> inj_on f A"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
353  | 
by (simp add: bij_betw_def)  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
354  | 
|
| 31438 | 355  | 
lemma bij_betw_trans:  | 
356  | 
"bij_betw f A B \<Longrightarrow> bij_betw g B C \<Longrightarrow> bij_betw (g o f) A C"  | 
|
357  | 
by(auto simp add:bij_betw_def comp_inj_on)  | 
|
358  | 
||
| 40702 | 359  | 
lemma bij_comp: "bij f \<Longrightarrow> bij g \<Longrightarrow> bij (g o f)"  | 
360  | 
by (rule bij_betw_trans)  | 
|
361  | 
||
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
362  | 
lemma bij_betw_comp_iff:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
363  | 
"bij_betw f A A' \<Longrightarrow> bij_betw f' A' A'' \<longleftrightarrow> bij_betw (f' o f) A A''"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
364  | 
by(auto simp add: bij_betw_def inj_on_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
365  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
366  | 
lemma bij_betw_comp_iff2:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
367  | 
assumes BIJ: "bij_betw f' A' A''" and IM: "f ` A \<le> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
368  | 
shows "bij_betw f A A' \<longleftrightarrow> bij_betw (f' o f) A A''"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
369  | 
using assms  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
370  | 
proof(auto simp add: bij_betw_comp_iff)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
371  | 
assume *: "bij_betw (f' \<circ> f) A A''"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
372  | 
thus "bij_betw f A A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
373  | 
using IM  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
374  | 
proof(auto simp add: bij_betw_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
375  | 
assume "inj_on (f' \<circ> f) A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
376  | 
thus "inj_on f A" using inj_on_imageI2 by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
377  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
378  | 
fix a' assume **: "a' \<in> A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
379  | 
hence "f' a' \<in> A''" using BIJ unfolding bij_betw_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
380  | 
then obtain a where 1: "a \<in> A \<and> f'(f a) = f' a'" using *  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
381  | 
unfolding bij_betw_def by force  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
382  | 
hence "f a \<in> A'" using IM by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
383  | 
hence "f a = a'" using BIJ ** 1 unfolding bij_betw_def inj_on_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
384  | 
thus "a' \<in> f ` A" using 1 by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
385  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
386  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
387  | 
|
| 
26105
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
388  | 
lemma bij_betw_inv: assumes "bij_betw f A B" shows "EX g. bij_betw g B A"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
389  | 
proof -  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
390  | 
have i: "inj_on f A" and s: "f ` A = B"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
391  | 
using assms by(auto simp:bij_betw_def)  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
392  | 
let ?P = "%b a. a:A \<and> f a = b" let ?g = "%b. The (?P b)"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
393  | 
  { fix a b assume P: "?P b a"
 | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
394  | 
hence ex1: "\<exists>a. ?P b a" using s unfolding image_def by blast  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
395  | 
hence uex1: "\<exists>!a. ?P b a" by(blast dest:inj_onD[OF i])  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
396  | 
hence " ?g b = a" using the1_equality[OF uex1, OF P] P by simp  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
397  | 
} note g = this  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
398  | 
have "inj_on ?g B"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
399  | 
proof(rule inj_onI)  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
400  | 
fix x y assume "x:B" "y:B" "?g x = ?g y"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
401  | 
from s `x:B` obtain a1 where a1: "?P x a1" unfolding image_def by blast  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
402  | 
from s `y:B` obtain a2 where a2: "?P y a2" unfolding image_def by blast  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
403  | 
from g[OF a1] a1 g[OF a2] a2 `?g x = ?g y` show "x=y" by simp  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
404  | 
qed  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
405  | 
moreover have "?g ` B = A"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
406  | 
proof(auto simp:image_def)  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
407  | 
fix b assume "b:B"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
408  | 
with s obtain a where P: "?P b a" unfolding image_def by blast  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
409  | 
thus "?g b \<in> A" using g[OF P] by auto  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
410  | 
next  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
411  | 
fix a assume "a:A"  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
412  | 
then obtain b where P: "?P b a" using s unfolding image_def by blast  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
413  | 
then have "b:B" using s unfolding image_def by blast  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
414  | 
with g[OF P] show "\<exists>b\<in>B. a = ?g b" by blast  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
415  | 
qed  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
416  | 
ultimately show ?thesis by(auto simp:bij_betw_def)  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
417  | 
qed  | 
| 
 
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
 
nipkow 
parents: 
25886 
diff
changeset
 | 
418  | 
|
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
419  | 
lemma bij_betw_cong:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
420  | 
"(\<And> a. a \<in> A \<Longrightarrow> f a = g a) \<Longrightarrow> bij_betw f A A' = bij_betw g A A'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
421  | 
unfolding bij_betw_def inj_on_def by force  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
422  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
423  | 
lemma bij_betw_id[intro, simp]:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
424  | 
"bij_betw id A A"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
425  | 
unfolding bij_betw_def id_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
426  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
427  | 
lemma bij_betw_id_iff:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
428  | 
"bij_betw id A B \<longleftrightarrow> A = B"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
429  | 
by(auto simp add: bij_betw_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
430  | 
|
| 39075 | 431  | 
lemma bij_betw_combine:  | 
432  | 
  assumes "bij_betw f A B" "bij_betw f C D" "B \<inter> D = {}"
 | 
|
433  | 
shows "bij_betw f (A \<union> C) (B \<union> D)"  | 
|
434  | 
using assms unfolding bij_betw_def inj_on_Un image_Un by auto  | 
|
435  | 
||
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
436  | 
lemma bij_betw_UNION_chain:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
437  | 
assumes CH: "\<And> i j. \<lbrakk>i \<in> I; j \<in> I\<rbrakk> \<Longrightarrow> A i \<le> A j \<or> A j \<le> A i" and  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
438  | 
BIJ: "\<And> i. i \<in> I \<Longrightarrow> bij_betw f (A i) (A' i)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
439  | 
shows "bij_betw f (\<Union> i \<in> I. A i) (\<Union> i \<in> I. A' i)"  | 
| 
49905
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
440  | 
proof (unfold bij_betw_def, auto)  | 
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
441  | 
have "\<And> i. i \<in> I \<Longrightarrow> inj_on f (A i)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
442  | 
using BIJ bij_betw_def[of f] by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
443  | 
thus "inj_on f (\<Union> i \<in> I. A i)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
444  | 
using CH inj_on_UNION_chain[of I A f] by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
445  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
446  | 
fix i x  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
447  | 
assume *: "i \<in> I" "x \<in> A i"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
448  | 
hence "f x \<in> A' i" using BIJ bij_betw_def[of f] by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
449  | 
thus "\<exists>j \<in> I. f x \<in> A' j" using * by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
450  | 
next  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
451  | 
fix i x'  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
452  | 
assume *: "i \<in> I" "x' \<in> A' i"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
453  | 
hence "\<exists>x \<in> A i. x' = f x" using BIJ bij_betw_def[of f] by blast  | 
| 
49905
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
454  | 
then have "\<exists>j \<in> I. \<exists>x \<in> A j. x' = f x"  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
455  | 
using * by blast  | 
| 
 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 
haftmann 
parents: 
49739 
diff
changeset
 | 
456  | 
then show "x' \<in> f ` (\<Union>x\<in>I. A x)" by (simp add: image_def)  | 
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
457  | 
qed  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
458  | 
|
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
459  | 
lemma bij_betw_subset:  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
460  | 
assumes BIJ: "bij_betw f A A'" and  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
461  | 
SUB: "B \<le> A" and IM: "f ` B = B'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
462  | 
shows "bij_betw f B B'"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
463  | 
using assms  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
464  | 
by(unfold bij_betw_def inj_on_def, auto simp add: inj_on_def)  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
465  | 
|
| 13585 | 466  | 
lemma surj_image_vimage_eq: "surj f ==> f ` (f -` A) = A"  | 
| 40702 | 467  | 
by simp  | 
| 13585 | 468  | 
|
| 42903 | 469  | 
lemma surj_vimage_empty:  | 
470  | 
  assumes "surj f" shows "f -` A = {} \<longleftrightarrow> A = {}"
 | 
|
471  | 
using surj_image_vimage_eq[OF `surj f`, of A]  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44860 
diff
changeset
 | 
472  | 
by (intro iffI) fastforce+  | 
| 42903 | 473  | 
|
| 13585 | 474  | 
lemma inj_vimage_image_eq: "inj f ==> f -` (f ` A) = A"  | 
475  | 
by (simp add: inj_on_def, blast)  | 
|
476  | 
||
477  | 
lemma vimage_subsetD: "surj f ==> f -` B <= A ==> B <= f ` A"  | 
|
| 40702 | 478  | 
by (blast intro: sym)  | 
| 13585 | 479  | 
|
480  | 
lemma vimage_subsetI: "inj f ==> B <= f ` A ==> f -` B <= A"  | 
|
481  | 
by (unfold inj_on_def, blast)  | 
|
482  | 
||
483  | 
lemma vimage_subset_eq: "bij f ==> (f -` B <= A) = (B <= f ` A)"  | 
|
484  | 
apply (unfold bij_def)  | 
|
485  | 
apply (blast del: subsetI intro: vimage_subsetI vimage_subsetD)  | 
|
486  | 
done  | 
|
487  | 
||
| 31438 | 488  | 
lemma inj_on_Un_image_eq_iff: "inj_on f (A \<union> B) \<Longrightarrow> f ` A = f ` B \<longleftrightarrow> A = B"  | 
489  | 
by(blast dest: inj_onD)  | 
|
490  | 
||
| 13585 | 491  | 
lemma inj_on_image_Int:  | 
492  | 
"[| inj_on f C; A<=C; B<=C |] ==> f`(A Int B) = f`A Int f`B"  | 
|
493  | 
apply (simp add: inj_on_def, blast)  | 
|
494  | 
done  | 
|
495  | 
||
496  | 
lemma inj_on_image_set_diff:  | 
|
497  | 
"[| inj_on f C; A<=C; B<=C |] ==> f`(A-B) = f`A - f`B"  | 
|
498  | 
apply (simp add: inj_on_def, blast)  | 
|
499  | 
done  | 
|
500  | 
||
501  | 
lemma image_Int: "inj f ==> f`(A Int B) = f`A Int f`B"  | 
|
502  | 
by (simp add: inj_on_def, blast)  | 
|
503  | 
||
504  | 
lemma image_set_diff: "inj f ==> f`(A-B) = f`A - f`B"  | 
|
505  | 
by (simp add: inj_on_def, blast)  | 
|
506  | 
||
507  | 
lemma inj_image_mem_iff: "inj f ==> (f a : f`A) = (a : A)"  | 
|
508  | 
by (blast dest: injD)  | 
|
509  | 
||
510  | 
lemma inj_image_subset_iff: "inj f ==> (f`A <= f`B) = (A<=B)"  | 
|
511  | 
by (simp add: inj_on_def, blast)  | 
|
512  | 
||
513  | 
lemma inj_image_eq_iff: "inj f ==> (f`A = f`B) = (A = B)"  | 
|
514  | 
by (blast dest: injD)  | 
|
515  | 
||
516  | 
(*injectivity's required. Left-to-right inclusion holds even if A is empty*)  | 
|
517  | 
lemma image_INT:  | 
|
518  | 
"[| inj_on f C; ALL x:A. B x <= C; j:A |]  | 
|
519  | 
==> f ` (INTER A B) = (INT x:A. f ` B x)"  | 
|
520  | 
apply (simp add: inj_on_def, blast)  | 
|
521  | 
done  | 
|
522  | 
||
523  | 
(*Compare with image_INT: no use of inj_on, and if f is surjective then  | 
|
524  | 
it doesn't matter whether A is empty*)  | 
|
525  | 
lemma bij_image_INT: "bij f ==> f ` (INTER A B) = (INT x:A. f ` B x)"  | 
|
526  | 
apply (simp add: bij_def)  | 
|
527  | 
apply (simp add: inj_on_def surj_def, blast)  | 
|
528  | 
done  | 
|
529  | 
||
530  | 
lemma surj_Compl_image_subset: "surj f ==> -(f`A) <= f`(-A)"  | 
|
| 40702 | 531  | 
by auto  | 
| 13585 | 532  | 
|
533  | 
lemma inj_image_Compl_subset: "inj f ==> f`(-A) <= -(f`A)"  | 
|
534  | 
by (auto simp add: inj_on_def)  | 
|
| 5852 | 535  | 
|
| 13585 | 536  | 
lemma bij_image_Compl_eq: "bij f ==> f`(-A) = -(f`A)"  | 
537  | 
apply (simp add: bij_def)  | 
|
538  | 
apply (rule equalityI)  | 
|
539  | 
apply (simp_all (no_asm_simp) add: inj_image_Compl_subset surj_Compl_image_subset)  | 
|
540  | 
done  | 
|
541  | 
||
| 41657 | 542  | 
lemma inj_vimage_singleton: "inj f \<Longrightarrow> f -` {a} \<subseteq> {THE x. f x = a}"
 | 
543  | 
  -- {* The inverse image of a singleton under an injective function
 | 
|
544  | 
is included in a singleton. *}  | 
|
545  | 
apply (auto simp add: inj_on_def)  | 
|
546  | 
apply (blast intro: the_equality [symmetric])  | 
|
547  | 
done  | 
|
548  | 
||
| 43991 | 549  | 
lemma inj_on_vimage_singleton:  | 
550  | 
  "inj_on f A \<Longrightarrow> f -` {a} \<inter> A \<subseteq> {THE x. x \<in> A \<and> f x = a}"
 | 
|
551  | 
by (auto simp add: inj_on_def intro: the_equality [symmetric])  | 
|
552  | 
||
| 
35584
 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 
hoelzl 
parents: 
35580 
diff
changeset
 | 
553  | 
lemma (in ordered_ab_group_add) inj_uminus[simp, intro]: "inj_on uminus A"  | 
| 35580 | 554  | 
by (auto intro!: inj_onI)  | 
| 13585 | 555  | 
|
| 
35584
 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 
hoelzl 
parents: 
35580 
diff
changeset
 | 
556  | 
lemma (in linorder) strict_mono_imp_inj_on: "strict_mono f \<Longrightarrow> inj_on f A"  | 
| 
 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 
hoelzl 
parents: 
35580 
diff
changeset
 | 
557  | 
by (auto intro!: inj_onI dest: strict_mono_eq)  | 
| 
 
768f8d92b767
generalized inj_uminus; added strict_mono_imp_inj_on
 
hoelzl 
parents: 
35580 
diff
changeset
 | 
558  | 
|
| 41657 | 559  | 
|
| 13585 | 560  | 
subsection{*Function Updating*}
 | 
561  | 
||
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
562  | 
definition fun_upd :: "('a => 'b) => 'a => 'b => ('a => 'b)" where
 | 
| 26147 | 563  | 
"fun_upd f a b == % x. if x=a then b else f x"  | 
564  | 
||
| 
41229
 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 
wenzelm 
parents: 
40969 
diff
changeset
 | 
565  | 
nonterminal updbinds and updbind  | 
| 
 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 
wenzelm 
parents: 
40969 
diff
changeset
 | 
566  | 
|
| 26147 | 567  | 
syntax  | 
568  | 
  "_updbind" :: "['a, 'a] => updbind"             ("(2_ :=/ _)")
 | 
|
569  | 
  ""         :: "updbind => updbinds"             ("_")
 | 
|
570  | 
  "_updbinds":: "[updbind, updbinds] => updbinds" ("_,/ _")
 | 
|
| 35115 | 571  | 
  "_Update"  :: "['a, updbinds] => 'a"            ("_/'((_)')" [1000, 0] 900)
 | 
| 26147 | 572  | 
|
573  | 
translations  | 
|
| 35115 | 574  | 
"_Update f (_updbinds b bs)" == "_Update (_Update f b) bs"  | 
575  | 
"f(x:=y)" == "CONST fun_upd f x y"  | 
|
| 26147 | 576  | 
|
577  | 
(* Hint: to define the sum of two functions (or maps), use sum_case.  | 
|
578  | 
A nice infix syntax could be defined (in Datatype.thy or below) by  | 
|
| 35115 | 579  | 
notation  | 
580  | 
sum_case (infixr "'(+')"80)  | 
|
| 26147 | 581  | 
*)  | 
582  | 
||
| 13585 | 583  | 
lemma fun_upd_idem_iff: "(f(x:=y) = f) = (f x = y)"  | 
584  | 
apply (simp add: fun_upd_def, safe)  | 
|
585  | 
apply (erule subst)  | 
|
586  | 
apply (rule_tac [2] ext, auto)  | 
|
587  | 
done  | 
|
588  | 
||
| 45603 | 589  | 
lemma fun_upd_idem: "f x = y ==> f(x:=y) = f"  | 
590  | 
by (simp only: fun_upd_idem_iff)  | 
|
| 13585 | 591  | 
|
| 45603 | 592  | 
lemma fun_upd_triv [iff]: "f(x := f x) = f"  | 
593  | 
by (simp only: fun_upd_idem)  | 
|
| 13585 | 594  | 
|
595  | 
lemma fun_upd_apply [simp]: "(f(x:=y))z = (if z=x then y else f z)"  | 
|
| 
17084
 
fb0a80aef0be
classical rules must have names for ATP integration
 
paulson 
parents: 
16973 
diff
changeset
 | 
596  | 
by (simp add: fun_upd_def)  | 
| 13585 | 597  | 
|
598  | 
(* fun_upd_apply supersedes these two, but they are useful  | 
|
599  | 
if fun_upd_apply is intentionally removed from the simpset *)  | 
|
600  | 
lemma fun_upd_same: "(f(x:=y)) x = y"  | 
|
601  | 
by simp  | 
|
602  | 
||
603  | 
lemma fun_upd_other: "z~=x ==> (f(x:=y)) z = f z"  | 
|
604  | 
by simp  | 
|
605  | 
||
606  | 
lemma fun_upd_upd [simp]: "f(x:=y,x:=z) = f(x:=z)"  | 
|
| 
39302
 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 
nipkow 
parents: 
39213 
diff
changeset
 | 
607  | 
by (simp add: fun_eq_iff)  | 
| 13585 | 608  | 
|
609  | 
lemma fun_upd_twist: "a ~= c ==> (m(a:=b))(c:=d) = (m(c:=d))(a:=b)"  | 
|
610  | 
by (rule ext, auto)  | 
|
611  | 
||
| 15303 | 612  | 
lemma inj_on_fun_updI: "\<lbrakk> inj_on f A; y \<notin> f`A \<rbrakk> \<Longrightarrow> inj_on (f(x:=y)) A"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44860 
diff
changeset
 | 
613  | 
by (fastforce simp:inj_on_def image_def)  | 
| 15303 | 614  | 
|
| 15510 | 615  | 
lemma fun_upd_image:  | 
616  | 
     "f(x:=y) ` A = (if x \<in> A then insert y (f ` (A-{x})) else f ` A)"
 | 
|
617  | 
by auto  | 
|
618  | 
||
| 31080 | 619  | 
lemma fun_upd_comp: "f \<circ> (g(x := y)) = (f \<circ> g)(x := f y)"  | 
| 44921 | 620  | 
by auto  | 
| 31080 | 621  | 
|
| 44744 | 622  | 
lemma UNION_fun_upd:  | 
623  | 
  "UNION J (A(i:=B)) = (UNION (J-{i}) A \<union> (if i\<in>J then B else {}))"
 | 
|
624  | 
by (auto split: if_splits)  | 
|
625  | 
||
| 26147 | 626  | 
|
627  | 
subsection {* @{text override_on} *}
 | 
|
628  | 
||
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
629  | 
definition override_on :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'a \<Rightarrow> 'b" where
 | 
| 26147 | 630  | 
"override_on f g A = (\<lambda>a. if a \<in> A then g a else f a)"  | 
| 13910 | 631  | 
|
| 15691 | 632  | 
lemma override_on_emptyset[simp]: "override_on f g {} = f"
 | 
633  | 
by(simp add:override_on_def)  | 
|
| 13910 | 634  | 
|
| 15691 | 635  | 
lemma override_on_apply_notin[simp]: "a ~: A ==> (override_on f g A) a = f a"  | 
636  | 
by(simp add:override_on_def)  | 
|
| 13910 | 637  | 
|
| 15691 | 638  | 
lemma override_on_apply_in[simp]: "a : A ==> (override_on f g A) a = g a"  | 
639  | 
by(simp add:override_on_def)  | 
|
| 13910 | 640  | 
|
| 26147 | 641  | 
|
642  | 
subsection {* @{text swap} *}
 | 
|
| 15510 | 643  | 
|
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
644  | 
definition swap :: "'a \<Rightarrow> 'a \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b)" where
 | 
| 
22744
 
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
 
haftmann 
parents: 
22577 
diff
changeset
 | 
645  | 
"swap a b f = f (a := f b, b:= f a)"  | 
| 15510 | 646  | 
|
| 34101 | 647  | 
lemma swap_self [simp]: "swap a a f = f"  | 
| 15691 | 648  | 
by (simp add: swap_def)  | 
| 15510 | 649  | 
|
650  | 
lemma swap_commute: "swap a b f = swap b a f"  | 
|
651  | 
by (rule ext, simp add: fun_upd_def swap_def)  | 
|
652  | 
||
653  | 
lemma swap_nilpotent [simp]: "swap a b (swap a b f) = f"  | 
|
654  | 
by (rule ext, simp add: fun_upd_def swap_def)  | 
|
655  | 
||
| 34145 | 656  | 
lemma swap_triple:  | 
657  | 
assumes "a \<noteq> c" and "b \<noteq> c"  | 
|
658  | 
shows "swap a b (swap b c (swap a b f)) = swap a c f"  | 
|
| 
39302
 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 
nipkow 
parents: 
39213 
diff
changeset
 | 
659  | 
using assms by (simp add: fun_eq_iff swap_def)  | 
| 34145 | 660  | 
|
| 34101 | 661  | 
lemma comp_swap: "f \<circ> swap a b g = swap a b (f \<circ> g)"  | 
662  | 
by (rule ext, simp add: fun_upd_def swap_def)  | 
|
663  | 
||
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
664  | 
lemma swap_image_eq [simp]:  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
665  | 
assumes "a \<in> A" "b \<in> A" shows "swap a b f ` A = f ` A"  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
666  | 
proof -  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
667  | 
have subset: "\<And>f. swap a b f ` A \<subseteq> f ` A"  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
668  | 
using assms by (auto simp: image_iff swap_def)  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
669  | 
then have "swap a b (swap a b f) ` A \<subseteq> (swap a b f) ` A" .  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
670  | 
with subset[of f] show ?thesis by auto  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
671  | 
qed  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
672  | 
|
| 15510 | 673  | 
lemma inj_on_imp_inj_on_swap:  | 
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
674  | 
"\<lbrakk>inj_on f A; a \<in> A; b \<in> A\<rbrakk> \<Longrightarrow> inj_on (swap a b f) A"  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
675  | 
by (simp add: inj_on_def swap_def, blast)  | 
| 15510 | 676  | 
|
677  | 
lemma inj_on_swap_iff [simp]:  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
678  | 
assumes A: "a \<in> A" "b \<in> A" shows "inj_on (swap a b f) A \<longleftrightarrow> inj_on f A"  | 
| 39075 | 679  | 
proof  | 
| 15510 | 680  | 
assume "inj_on (swap a b f) A"  | 
| 39075 | 681  | 
with A have "inj_on (swap a b (swap a b f)) A"  | 
682  | 
by (iprover intro: inj_on_imp_inj_on_swap)  | 
|
683  | 
thus "inj_on f A" by simp  | 
|
| 15510 | 684  | 
next  | 
685  | 
assume "inj_on f A"  | 
|
| 34209 | 686  | 
with A show "inj_on (swap a b f) A" by (iprover intro: inj_on_imp_inj_on_swap)  | 
| 15510 | 687  | 
qed  | 
688  | 
||
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
689  | 
lemma surj_imp_surj_swap: "surj f \<Longrightarrow> surj (swap a b f)"  | 
| 40702 | 690  | 
by simp  | 
| 15510 | 691  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
692  | 
lemma surj_swap_iff [simp]: "surj (swap a b f) \<longleftrightarrow> surj f"  | 
| 40702 | 693  | 
by simp  | 
| 
21547
 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 
haftmann 
parents: 
21327 
diff
changeset
 | 
694  | 
|
| 
39076
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
695  | 
lemma bij_betw_swap_iff [simp]:  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
696  | 
"\<lbrakk> x \<in> A; y \<in> A \<rbrakk> \<Longrightarrow> bij_betw (swap x y f) A B \<longleftrightarrow> bij_betw f A B"  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
697  | 
by (auto simp: bij_betw_def)  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
698  | 
|
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
699  | 
lemma bij_swap_iff [simp]: "bij (swap a b f) \<longleftrightarrow> bij f"  | 
| 
 
b3a9b6734663
Introduce surj_on and replace surj and bij by abbreviations.
 
hoelzl 
parents: 
39075 
diff
changeset
 | 
700  | 
by simp  | 
| 39075 | 701  | 
|
| 
36176
 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 
wenzelm 
parents: 
35584 
diff
changeset
 | 
702  | 
hide_const (open) swap  | 
| 
21547
 
9c9fdf4c2949
moved order arities for fun and bool to Fun/Orderings
 
haftmann 
parents: 
21327 
diff
changeset
 | 
703  | 
|
| 31949 | 704  | 
subsection {* Inversion of injective functions *}
 | 
705  | 
||
| 33057 | 706  | 
definition the_inv_into :: "'a set => ('a => 'b) => ('b => 'a)" where
 | 
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
707  | 
"the_inv_into A f == %x. THE y. y : A & f y = x"  | 
| 32961 | 708  | 
|
| 33057 | 709  | 
lemma the_inv_into_f_f:  | 
710  | 
"[| inj_on f A; x : A |] ==> the_inv_into A f (f x) = x"  | 
|
711  | 
apply (simp add: the_inv_into_def inj_on_def)  | 
|
| 34209 | 712  | 
apply blast  | 
| 32961 | 713  | 
done  | 
714  | 
||
| 33057 | 715  | 
lemma f_the_inv_into_f:  | 
716  | 
"inj_on f A ==> y : f`A ==> f (the_inv_into A f y) = y"  | 
|
717  | 
apply (simp add: the_inv_into_def)  | 
|
| 32961 | 718  | 
apply (rule the1I2)  | 
719  | 
apply(blast dest: inj_onD)  | 
|
720  | 
apply blast  | 
|
721  | 
done  | 
|
722  | 
||
| 33057 | 723  | 
lemma the_inv_into_into:  | 
724  | 
"[| inj_on f A; x : f ` A; A <= B |] ==> the_inv_into A f x : B"  | 
|
725  | 
apply (simp add: the_inv_into_def)  | 
|
| 32961 | 726  | 
apply (rule the1I2)  | 
727  | 
apply(blast dest: inj_onD)  | 
|
728  | 
apply blast  | 
|
729  | 
done  | 
|
730  | 
||
| 33057 | 731  | 
lemma the_inv_into_onto[simp]:  | 
732  | 
"inj_on f A ==> the_inv_into A f ` (f ` A) = A"  | 
|
733  | 
by (fast intro:the_inv_into_into the_inv_into_f_f[symmetric])  | 
|
| 32961 | 734  | 
|
| 33057 | 735  | 
lemma the_inv_into_f_eq:  | 
736  | 
"[| inj_on f A; f x = y; x : A |] ==> the_inv_into A f y = x"  | 
|
| 32961 | 737  | 
apply (erule subst)  | 
| 33057 | 738  | 
apply (erule the_inv_into_f_f, assumption)  | 
| 32961 | 739  | 
done  | 
740  | 
||
| 33057 | 741  | 
lemma the_inv_into_comp:  | 
| 32961 | 742  | 
"[| inj_on f (g ` A); inj_on g A; x : f ` g ` A |] ==>  | 
| 33057 | 743  | 
the_inv_into A (f o g) x = (the_inv_into A g o the_inv_into (g ` A) f) x"  | 
744  | 
apply (rule the_inv_into_f_eq)  | 
|
| 32961 | 745  | 
apply (fast intro: comp_inj_on)  | 
| 33057 | 746  | 
apply (simp add: f_the_inv_into_f the_inv_into_into)  | 
747  | 
apply (simp add: the_inv_into_into)  | 
|
| 32961 | 748  | 
done  | 
749  | 
||
| 33057 | 750  | 
lemma inj_on_the_inv_into:  | 
751  | 
"inj_on f A \<Longrightarrow> inj_on (the_inv_into A f) (f ` A)"  | 
|
752  | 
by (auto intro: inj_onI simp: image_def the_inv_into_f_f)  | 
|
| 32961 | 753  | 
|
| 33057 | 754  | 
lemma bij_betw_the_inv_into:  | 
755  | 
"bij_betw f A B \<Longrightarrow> bij_betw (the_inv_into A f) B A"  | 
|
756  | 
by (auto simp add: bij_betw_def inj_on_the_inv_into the_inv_into_into)  | 
|
| 32961 | 757  | 
|
| 
32998
 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 
berghofe 
parents: 
32988 
diff
changeset
 | 
758  | 
abbreviation the_inv :: "('a \<Rightarrow> 'b) \<Rightarrow> ('b \<Rightarrow> 'a)" where
 | 
| 33057 | 759  | 
"the_inv f \<equiv> the_inv_into UNIV f"  | 
| 
32998
 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 
berghofe 
parents: 
32988 
diff
changeset
 | 
760  | 
|
| 
 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 
berghofe 
parents: 
32988 
diff
changeset
 | 
761  | 
lemma the_inv_f_f:  | 
| 
 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 
berghofe 
parents: 
32988 
diff
changeset
 | 
762  | 
assumes "inj f"  | 
| 
 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 
berghofe 
parents: 
32988 
diff
changeset
 | 
763  | 
shows "the_inv f (f x) = x" using assms UNIV_I  | 
| 33057 | 764  | 
by (rule the_inv_into_f_f)  | 
| 
32998
 
31b19fa0de0b
Renamed inv to the_inv and turned it into an abbreviation (based on the_inv_onto).
 
berghofe 
parents: 
32988 
diff
changeset
 | 
765  | 
|
| 
44277
 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 
haftmann 
parents: 
43991 
diff
changeset
 | 
766  | 
|
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
767  | 
subsection {* Cantor's Paradox *}
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
768  | 
|
| 42238 | 769  | 
lemma Cantors_paradox [no_atp]:  | 
| 
40703
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
770  | 
"\<not>(\<exists>f. f ` A = Pow A)"  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
771  | 
proof clarify  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
772  | 
fix f assume "f ` A = Pow A" hence *: "Pow A \<le> f ` A" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
773  | 
  let ?X = "{a \<in> A. a \<notin> f a}"
 | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
774  | 
have "?X \<in> Pow A" unfolding Pow_def by auto  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
775  | 
with * obtain x where "x \<in> A \<and> f x = ?X" by blast  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
776  | 
thus False by best  | 
| 
 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 
hoelzl 
parents: 
40702 
diff
changeset
 | 
777  | 
qed  | 
| 31949 | 778  | 
|
| 40969 | 779  | 
subsection {* Setup *} 
 | 
780  | 
||
781  | 
subsubsection {* Proof tools *}
 | 
|
| 22845 | 782  | 
|
783  | 
text {* simplifies terms of the form
 | 
|
784  | 
f(...,x:=y,...,x:=z,...) to f(...,x:=z,...) *}  | 
|
785  | 
||
| 24017 | 786  | 
simproc_setup fun_upd2 ("f(v := w, x := y)") = {* fn _ =>
 | 
| 22845 | 787  | 
let  | 
788  | 
fun gen_fun_upd NONE T _ _ = NONE  | 
|
| 24017 | 789  | 
    | gen_fun_upd (SOME f) T x y = SOME (Const (@{const_name fun_upd}, T) $ f $ x $ y)
 | 
| 22845 | 790  | 
fun dest_fun_T1 (Type (_, T :: Ts)) = T  | 
791  | 
  fun find_double (t as Const (@{const_name fun_upd},T) $ f $ x $ y) =
 | 
|
792  | 
let  | 
|
793  | 
      fun find (Const (@{const_name fun_upd},T) $ g $ v $ w) =
 | 
|
794  | 
if v aconv x then SOME g else gen_fun_upd (find g) T v w  | 
|
795  | 
| find t = NONE  | 
|
796  | 
in (dest_fun_T1 T, gen_fun_upd (find f) T x y) end  | 
|
| 24017 | 797  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51598 
diff
changeset
 | 
798  | 
  val ss = simpset_of @{context}
 | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51598 
diff
changeset
 | 
799  | 
|
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51598 
diff
changeset
 | 
800  | 
fun proc ctxt ct =  | 
| 24017 | 801  | 
let  | 
802  | 
val t = Thm.term_of ct  | 
|
803  | 
in  | 
|
804  | 
case find_double t of  | 
|
805  | 
(T, NONE) => NONE  | 
|
806  | 
| (T, SOME rhs) =>  | 
|
| 27330 | 807  | 
SOME (Goal.prove ctxt [] [] (Logic.mk_equals (t, rhs))  | 
| 24017 | 808  | 
(fn _ =>  | 
809  | 
rtac eq_reflection 1 THEN  | 
|
810  | 
rtac ext 1 THEN  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51598 
diff
changeset
 | 
811  | 
simp_tac (put_simpset ss ctxt) 1))  | 
| 24017 | 812  | 
end  | 
813  | 
in proc end  | 
|
| 22845 | 814  | 
*}  | 
815  | 
||
816  | 
||
| 40969 | 817  | 
subsubsection {* Code generator *}
 | 
| 21870 | 818  | 
|
819  | 
code_const "op \<circ>"  | 
|
820  | 
(SML infixl 5 "o")  | 
|
821  | 
(Haskell infixr 9 ".")  | 
|
822  | 
||
| 21906 | 823  | 
code_const "id"  | 
824  | 
(Haskell "id")  | 
|
825  | 
||
| 40969 | 826  | 
|
827  | 
subsubsection {* Functorial structure of types *}
 | 
|
828  | 
||
| 48891 | 829  | 
ML_file "Tools/enriched_type.ML"  | 
| 40969 | 830  | 
|
| 
47488
 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 
haftmann 
parents: 
46950 
diff
changeset
 | 
831  | 
enriched_type map_fun: map_fun  | 
| 
 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 
haftmann 
parents: 
46950 
diff
changeset
 | 
832  | 
by (simp_all add: fun_eq_iff)  | 
| 
 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 
haftmann 
parents: 
46950 
diff
changeset
 | 
833  | 
|
| 
 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 
haftmann 
parents: 
46950 
diff
changeset
 | 
834  | 
enriched_type vimage  | 
| 49739 | 835  | 
by (simp_all add: fun_eq_iff vimage_comp)  | 
836  | 
||
837  | 
text {* Legacy theorem names *}
 | 
|
838  | 
||
839  | 
lemmas o_def = comp_def  | 
|
840  | 
lemmas o_apply = comp_apply  | 
|
841  | 
lemmas o_assoc = comp_assoc [symmetric]  | 
|
842  | 
lemmas id_o = id_comp  | 
|
843  | 
lemmas o_id = comp_id  | 
|
844  | 
lemmas o_eq_dest = comp_eq_dest  | 
|
845  | 
lemmas o_eq_elim = comp_eq_elim  | 
|
846  | 
lemmas image_compose = image_comp  | 
|
847  | 
lemmas vimage_compose = vimage_comp  | 
|
| 
47488
 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 
haftmann 
parents: 
46950 
diff
changeset
 | 
848  | 
|
| 2912 | 849  | 
end  | 
| 
47488
 
be6dd389639d
centralized enriched_type declaration, thanks to in-situ available Isar commands
 
haftmann 
parents: 
46950 
diff
changeset
 | 
850  |