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