| author | wenzelm | 
| Sat, 13 May 2006 02:51:40 +0200 | |
| changeset 19629 | c107e7a79559 | 
| parent 19536 | 1a3a3cf8b4fa | 
| child 19656 | 09be06943252 | 
| permissions | -rw-r--r-- | 
| 1475 | 1  | 
(* Title: HOL/Fun.thy  | 
| 923 | 2  | 
ID: $Id$  | 
| 1475 | 3  | 
Author: Tobias Nipkow, Cambridge University Computer Laboratory  | 
| 923 | 4  | 
Copyright 1994 University of Cambridge  | 
| 18154 | 5  | 
*)  | 
| 923 | 6  | 
|
| 18154 | 7  | 
header {* Notions about functions *}
 | 
| 923 | 8  | 
|
| 15510 | 9  | 
theory Fun  | 
| 15140 | 10  | 
imports Typedef  | 
| 15131 | 11  | 
begin  | 
| 2912 | 12  | 
|
| 
12338
 
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
 
wenzelm 
parents: 
12258 
diff
changeset
 | 
13  | 
instance set :: (type) order  | 
| 13585 | 14  | 
by (intro_classes,  | 
15  | 
(assumption | rule subset_refl subset_trans subset_antisym psubset_eq)+)  | 
|
16  | 
||
17  | 
constdefs  | 
|
18  | 
  fun_upd :: "('a => 'b) => 'a => 'b => ('a => 'b)"
 | 
|
19  | 
"fun_upd f a b == % x. if x=a then b else f x"  | 
|
| 6171 | 20  | 
|
| 9141 | 21  | 
nonterminals  | 
22  | 
updbinds updbind  | 
|
| 5305 | 23  | 
syntax  | 
| 13585 | 24  | 
  "_updbind" :: "['a, 'a] => updbind"             ("(2_ :=/ _)")
 | 
25  | 
  ""         :: "updbind => updbinds"             ("_")
 | 
|
26  | 
  "_updbinds":: "[updbind, updbinds] => updbinds" ("_,/ _")
 | 
|
27  | 
  "_Update"  :: "['a, updbinds] => 'a"            ("_/'((_)')" [1000,0] 900)
 | 
|
| 5305 | 28  | 
|
29  | 
translations  | 
|
30  | 
"_Update f (_updbinds b bs)" == "_Update (_Update f b) bs"  | 
|
31  | 
"f(x:=y)" == "fun_upd f x y"  | 
|
| 2912 | 32  | 
|
| 9340 | 33  | 
(* Hint: to define the sum of two functions (or maps), use sum_case.  | 
34  | 
A nice infix syntax could be defined (in Datatype.thy or below) by  | 
|
35  | 
consts  | 
|
36  | 
  fun_sum :: "('a => 'c) => ('b => 'c) => (('a+'b) => 'c)" (infixr "'(+')"80)
 | 
|
37  | 
translations  | 
|
| 13585 | 38  | 
"fun_sum" == sum_case  | 
| 9340 | 39  | 
*)  | 
| 12258 | 40  | 
|
| 6171 | 41  | 
constdefs  | 
| 19536 | 42  | 
  override_on :: "('a => 'b) => ('a => 'b) => 'a set => ('a => 'b)"
 | 
43  | 
"override_on f g A == %a. if a : A then g a else f a"  | 
|
| 6171 | 44  | 
|
| 19536 | 45  | 
id :: "'a => 'a"  | 
46  | 
"id == %x. x"  | 
|
| 13910 | 47  | 
|
| 19536 | 48  | 
comp :: "['b => 'c, 'a => 'b, 'a] => 'c" (infixl "o" 55)  | 
49  | 
"f o g == %x. f(g(x))"  | 
|
| 11123 | 50  | 
|
| 13585 | 51  | 
text{*compatibility*}
 | 
52  | 
lemmas o_def = comp_def  | 
|
| 2912 | 53  | 
|
| 19536 | 54  | 
abbreviation (xsymbols)  | 
55  | 
comp1 (infixl "\<circ>" 55)  | 
|
56  | 
"comp1 == comp"  | 
|
| 13585 | 57  | 
|
| 19536 | 58  | 
abbreviation (HTML output)  | 
59  | 
comp2 (infixl "\<circ>" 55)  | 
|
60  | 
"comp2 == comp"  | 
|
| 9352 | 61  | 
|
| 13585 | 62  | 
constdefs  | 
63  | 
inj_on :: "['a => 'b, 'a set] => bool" (*injective*)  | 
|
| 19363 | 64  | 
"inj_on f A == ! x:A. ! y:A. f(x)=f(y) --> x=y"  | 
| 6171 | 65  | 
|
| 13585 | 66  | 
text{*A common special case: functions injective over the entire domain type.*}
 | 
| 19323 | 67  | 
|
| 19363 | 68  | 
abbreviation  | 
69  | 
"inj f == inj_on f UNIV"  | 
|
| 5852 | 70  | 
|
| 7374 | 71  | 
constdefs  | 
| 13585 | 72  | 
  surj :: "('a => 'b) => bool"                   (*surjective*)
 | 
| 19363 | 73  | 
"surj f == ! y. ? x. y=f(x)"  | 
| 12258 | 74  | 
|
| 13585 | 75  | 
  bij :: "('a => 'b) => bool"                    (*bijective*)
 | 
| 19363 | 76  | 
"bij f == inj f & surj f"  | 
| 12258 | 77  | 
|
| 7374 | 78  | 
|
| 13585 | 79  | 
|
80  | 
text{*As a simplification rule, it replaces all function equalities by
 | 
|
81  | 
first-order equalities.*}  | 
|
82  | 
lemma expand_fun_eq: "(f = g) = (! x. f(x)=g(x))"  | 
|
83  | 
apply (rule iffI)  | 
|
84  | 
apply (simp (no_asm_simp))  | 
|
85  | 
apply (rule ext, simp (no_asm_simp))  | 
|
86  | 
done  | 
|
87  | 
||
88  | 
lemma apply_inverse:  | 
|
89  | 
"[| f(x)=u; !!x. P(x) ==> g(f(x)) = x; P(x) |] ==> x=g(u)"  | 
|
90  | 
by auto  | 
|
91  | 
||
92  | 
||
93  | 
text{*The Identity Function: @{term id}*}
 | 
|
94  | 
lemma id_apply [simp]: "id x = x"  | 
|
95  | 
by (simp add: id_def)  | 
|
96  | 
||
| 
16733
 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 
nipkow 
parents: 
15691 
diff
changeset
 | 
97  | 
lemma inj_on_id[simp]: "inj_on id A"  | 
| 15510 | 98  | 
by (simp add: inj_on_def)  | 
99  | 
||
| 
16733
 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 
nipkow 
parents: 
15691 
diff
changeset
 | 
100  | 
lemma inj_on_id2[simp]: "inj_on (%x. x) A"  | 
| 
 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 
nipkow 
parents: 
15691 
diff
changeset
 | 
101  | 
by (simp add: inj_on_def)  | 
| 
 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 
nipkow 
parents: 
15691 
diff
changeset
 | 
102  | 
|
| 
 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 
nipkow 
parents: 
15691 
diff
changeset
 | 
103  | 
lemma surj_id[simp]: "surj id"  | 
| 15510 | 104  | 
by (simp add: surj_def)  | 
105  | 
||
| 
16733
 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 
nipkow 
parents: 
15691 
diff
changeset
 | 
106  | 
lemma bij_id[simp]: "bij id"  | 
| 15510 | 107  | 
by (simp add: bij_def inj_on_id surj_id)  | 
108  | 
||
109  | 
||
| 13585 | 110  | 
|
111  | 
subsection{*The Composition Operator: @{term "f \<circ> g"}*}
 | 
|
112  | 
||
113  | 
lemma o_apply [simp]: "(f o g) x = f (g x)"  | 
|
114  | 
by (simp add: comp_def)  | 
|
115  | 
||
116  | 
lemma o_assoc: "f o (g o h) = f o g o h"  | 
|
117  | 
by (simp add: comp_def)  | 
|
118  | 
||
119  | 
lemma id_o [simp]: "id o g = g"  | 
|
120  | 
by (simp add: comp_def)  | 
|
121  | 
||
122  | 
lemma o_id [simp]: "f o id = f"  | 
|
123  | 
by (simp add: comp_def)  | 
|
124  | 
||
125  | 
lemma image_compose: "(f o g) ` r = f`(g`r)"  | 
|
126  | 
by (simp add: comp_def, blast)  | 
|
127  | 
||
128  | 
lemma image_eq_UN: "f`A = (UN x:A. {f x})"
 | 
|
129  | 
by blast  | 
|
130  | 
||
131  | 
lemma UN_o: "UNION A (g o f) = UNION (f`A) g"  | 
|
132  | 
by (unfold comp_def, blast)  | 
|
133  | 
||
134  | 
||
135  | 
subsection{*The Injectivity Predicate, @{term inj}*}
 | 
|
136  | 
||
137  | 
text{*NB: @{term inj} now just translates to @{term inj_on}*}
 | 
|
138  | 
||
139  | 
||
140  | 
text{*For Proofs in @{text "Tools/datatype_rep_proofs"}*}
 | 
|
141  | 
lemma datatype_injI:  | 
|
142  | 
"(!! x. ALL y. f(x) = f(y) --> x=y) ==> inj(f)"  | 
|
143  | 
by (simp add: inj_on_def)  | 
|
144  | 
||
| 13637 | 145  | 
theorem range_ex1_eq: "inj f \<Longrightarrow> b : range f = (EX! x. b = f x)"  | 
146  | 
by (unfold inj_on_def, blast)  | 
|
147  | 
||
| 13585 | 148  | 
lemma injD: "[| inj(f); f(x) = f(y) |] ==> x=y"  | 
149  | 
by (simp add: inj_on_def)  | 
|
150  | 
||
151  | 
(*Useful with the simplifier*)  | 
|
152  | 
lemma inj_eq: "inj(f) ==> (f(x) = f(y)) = (x=y)"  | 
|
153  | 
by (force simp add: inj_on_def)  | 
|
154  | 
||
155  | 
||
156  | 
subsection{*The Predicate @{term inj_on}: Injectivity On A Restricted Domain*}
 | 
|
157  | 
||
158  | 
lemma inj_onI:  | 
|
159  | 
"(!! x y. [| x:A; y:A; f(x) = f(y) |] ==> x=y) ==> inj_on f A"  | 
|
160  | 
by (simp add: inj_on_def)  | 
|
161  | 
||
162  | 
lemma inj_on_inverseI: "(!!x. x:A ==> g(f(x)) = x) ==> inj_on f A"  | 
|
163  | 
by (auto dest: arg_cong [of concl: g] simp add: inj_on_def)  | 
|
164  | 
||
165  | 
lemma inj_onD: "[| inj_on f A; f(x)=f(y); x:A; y:A |] ==> x=y"  | 
|
166  | 
by (unfold inj_on_def, blast)  | 
|
167  | 
||
168  | 
lemma inj_on_iff: "[| inj_on f A; x:A; y:A |] ==> (f(x)=f(y)) = (x=y)"  | 
|
169  | 
by (blast dest!: inj_onD)  | 
|
170  | 
||
171  | 
lemma comp_inj_on:  | 
|
172  | 
"[| inj_on f A; inj_on g (f`A) |] ==> inj_on (g o f) A"  | 
|
173  | 
by (simp add: comp_def inj_on_def)  | 
|
174  | 
||
| 15303 | 175  | 
lemma inj_on_imageI: "inj_on (g o f) A \<Longrightarrow> inj_on g (f ` A)"  | 
176  | 
apply(simp add:inj_on_def image_def)  | 
|
177  | 
apply blast  | 
|
178  | 
done  | 
|
179  | 
||
| 15439 | 180  | 
lemma inj_on_image_iff: "\<lbrakk> ALL x:A. ALL y:A. (g(f x) = g(f y)) = (g x = g y);  | 
181  | 
inj_on f A \<rbrakk> \<Longrightarrow> inj_on g (f ` A) = inj_on g A"  | 
|
182  | 
apply(unfold inj_on_def)  | 
|
183  | 
apply blast  | 
|
184  | 
done  | 
|
185  | 
||
| 13585 | 186  | 
lemma inj_on_contraD: "[| inj_on f A; ~x=y; x:A; y:A |] ==> ~ f(x)=f(y)"  | 
187  | 
by (unfold inj_on_def, blast)  | 
|
| 12258 | 188  | 
|
| 13585 | 189  | 
lemma inj_singleton: "inj (%s. {s})"
 | 
190  | 
by (simp add: inj_on_def)  | 
|
191  | 
||
| 15111 | 192  | 
lemma inj_on_empty[iff]: "inj_on f {}"
 | 
193  | 
by(simp add: inj_on_def)  | 
|
194  | 
||
| 15303 | 195  | 
lemma subset_inj_on: "[| inj_on f B; A <= B |] ==> inj_on f A"  | 
| 13585 | 196  | 
by (unfold inj_on_def, blast)  | 
197  | 
||
| 15111 | 198  | 
lemma inj_on_Un:  | 
199  | 
"inj_on f (A Un B) =  | 
|
200  | 
  (inj_on f A & inj_on f B & f`(A-B) Int f`(B-A) = {})"
 | 
|
201  | 
apply(unfold inj_on_def)  | 
|
202  | 
apply (blast intro:sym)  | 
|
203  | 
done  | 
|
204  | 
||
205  | 
lemma inj_on_insert[iff]:  | 
|
206  | 
  "inj_on f (insert a A) = (inj_on f A & f a ~: f`(A-{a}))"
 | 
|
207  | 
apply(unfold inj_on_def)  | 
|
208  | 
apply (blast intro:sym)  | 
|
209  | 
done  | 
|
210  | 
||
211  | 
lemma inj_on_diff: "inj_on f A ==> inj_on f (A-B)"  | 
|
212  | 
apply(unfold inj_on_def)  | 
|
213  | 
apply (blast)  | 
|
214  | 
done  | 
|
215  | 
||
| 13585 | 216  | 
|
217  | 
subsection{*The Predicate @{term surj}: Surjectivity*}
 | 
|
218  | 
||
219  | 
lemma surjI: "(!! x. g(f x) = x) ==> surj g"  | 
|
220  | 
apply (simp add: surj_def)  | 
|
221  | 
apply (blast intro: sym)  | 
|
222  | 
done  | 
|
223  | 
||
224  | 
lemma surj_range: "surj f ==> range f = UNIV"  | 
|
225  | 
by (auto simp add: surj_def)  | 
|
226  | 
||
227  | 
lemma surjD: "surj f ==> EX x. y = f x"  | 
|
228  | 
by (simp add: surj_def)  | 
|
229  | 
||
230  | 
lemma surjE: "surj f ==> (!!x. y = f x ==> C) ==> C"  | 
|
231  | 
by (simp add: surj_def, blast)  | 
|
232  | 
||
233  | 
lemma comp_surj: "[| surj f; surj g |] ==> surj (g o f)"  | 
|
234  | 
apply (simp add: comp_def surj_def, clarify)  | 
|
235  | 
apply (drule_tac x = y in spec, clarify)  | 
|
236  | 
apply (drule_tac x = x in spec, blast)  | 
|
237  | 
done  | 
|
238  | 
||
239  | 
||
240  | 
||
241  | 
subsection{*The Predicate @{term bij}: Bijectivity*}
 | 
|
242  | 
||
243  | 
lemma bijI: "[| inj f; surj f |] ==> bij f"  | 
|
244  | 
by (simp add: bij_def)  | 
|
245  | 
||
246  | 
lemma bij_is_inj: "bij f ==> inj f"  | 
|
247  | 
by (simp add: bij_def)  | 
|
248  | 
||
249  | 
lemma bij_is_surj: "bij f ==> surj f"  | 
|
250  | 
by (simp add: bij_def)  | 
|
251  | 
||
252  | 
||
253  | 
subsection{*Facts About the Identity Function*}
 | 
|
| 5852 | 254  | 
|
| 13585 | 255  | 
text{*We seem to need both the @{term id} forms and the @{term "\<lambda>x. x"}
 | 
256  | 
forms. The latter can arise by rewriting, while @{term id} may be used
 | 
|
257  | 
explicitly.*}  | 
|
258  | 
||
259  | 
lemma image_ident [simp]: "(%x. x) ` Y = Y"  | 
|
260  | 
by blast  | 
|
261  | 
||
262  | 
lemma image_id [simp]: "id ` Y = Y"  | 
|
263  | 
by (simp add: id_def)  | 
|
264  | 
||
265  | 
lemma vimage_ident [simp]: "(%x. x) -` Y = Y"  | 
|
266  | 
by blast  | 
|
267  | 
||
268  | 
lemma vimage_id [simp]: "id -` A = A"  | 
|
269  | 
by (simp add: id_def)  | 
|
270  | 
||
271  | 
lemma vimage_image_eq: "f -` (f ` A) = {y. EX x:A. f x = f y}"
 | 
|
272  | 
by (blast intro: sym)  | 
|
273  | 
||
274  | 
lemma image_vimage_subset: "f ` (f -` A) <= A"  | 
|
275  | 
by blast  | 
|
276  | 
||
277  | 
lemma image_vimage_eq [simp]: "f ` (f -` A) = A Int range f"  | 
|
278  | 
by blast  | 
|
279  | 
||
280  | 
lemma surj_image_vimage_eq: "surj f ==> f ` (f -` A) = A"  | 
|
281  | 
by (simp add: surj_range)  | 
|
282  | 
||
283  | 
lemma inj_vimage_image_eq: "inj f ==> f -` (f ` A) = A"  | 
|
284  | 
by (simp add: inj_on_def, blast)  | 
|
285  | 
||
286  | 
lemma vimage_subsetD: "surj f ==> f -` B <= A ==> B <= f ` A"  | 
|
287  | 
apply (unfold surj_def)  | 
|
288  | 
apply (blast intro: sym)  | 
|
289  | 
done  | 
|
290  | 
||
291  | 
lemma vimage_subsetI: "inj f ==> B <= f ` A ==> f -` B <= A"  | 
|
292  | 
by (unfold inj_on_def, blast)  | 
|
293  | 
||
294  | 
lemma vimage_subset_eq: "bij f ==> (f -` B <= A) = (B <= f ` A)"  | 
|
295  | 
apply (unfold bij_def)  | 
|
296  | 
apply (blast del: subsetI intro: vimage_subsetI vimage_subsetD)  | 
|
297  | 
done  | 
|
298  | 
||
299  | 
lemma image_Int_subset: "f`(A Int B) <= f`A Int f`B"  | 
|
300  | 
by blast  | 
|
301  | 
||
302  | 
lemma image_diff_subset: "f`A - f`B <= f`(A - B)"  | 
|
303  | 
by blast  | 
|
| 5852 | 304  | 
|
| 13585 | 305  | 
lemma inj_on_image_Int:  | 
306  | 
"[| inj_on f C; A<=C; B<=C |] ==> f`(A Int B) = f`A Int f`B"  | 
|
307  | 
apply (simp add: inj_on_def, blast)  | 
|
308  | 
done  | 
|
309  | 
||
310  | 
lemma inj_on_image_set_diff:  | 
|
311  | 
"[| inj_on f C; A<=C; B<=C |] ==> f`(A-B) = f`A - f`B"  | 
|
312  | 
apply (simp add: inj_on_def, blast)  | 
|
313  | 
done  | 
|
314  | 
||
315  | 
lemma image_Int: "inj f ==> f`(A Int B) = f`A Int f`B"  | 
|
316  | 
by (simp add: inj_on_def, blast)  | 
|
317  | 
||
318  | 
lemma image_set_diff: "inj f ==> f`(A-B) = f`A - f`B"  | 
|
319  | 
by (simp add: inj_on_def, blast)  | 
|
320  | 
||
321  | 
lemma inj_image_mem_iff: "inj f ==> (f a : f`A) = (a : A)"  | 
|
322  | 
by (blast dest: injD)  | 
|
323  | 
||
324  | 
lemma inj_image_subset_iff: "inj f ==> (f`A <= f`B) = (A<=B)"  | 
|
325  | 
by (simp add: inj_on_def, blast)  | 
|
326  | 
||
327  | 
lemma inj_image_eq_iff: "inj f ==> (f`A = f`B) = (A = B)"  | 
|
328  | 
by (blast dest: injD)  | 
|
329  | 
||
330  | 
lemma image_UN: "(f ` (UNION A B)) = (UN x:A.(f ` (B x)))"  | 
|
331  | 
by blast  | 
|
332  | 
||
333  | 
(*injectivity's required. Left-to-right inclusion holds even if A is empty*)  | 
|
334  | 
lemma image_INT:  | 
|
335  | 
"[| inj_on f C; ALL x:A. B x <= C; j:A |]  | 
|
336  | 
==> f ` (INTER A B) = (INT x:A. f ` B x)"  | 
|
337  | 
apply (simp add: inj_on_def, blast)  | 
|
338  | 
done  | 
|
339  | 
||
340  | 
(*Compare with image_INT: no use of inj_on, and if f is surjective then  | 
|
341  | 
it doesn't matter whether A is empty*)  | 
|
342  | 
lemma bij_image_INT: "bij f ==> f ` (INTER A B) = (INT x:A. f ` B x)"  | 
|
343  | 
apply (simp add: bij_def)  | 
|
344  | 
apply (simp add: inj_on_def surj_def, blast)  | 
|
345  | 
done  | 
|
346  | 
||
347  | 
lemma surj_Compl_image_subset: "surj f ==> -(f`A) <= f`(-A)"  | 
|
348  | 
by (auto simp add: surj_def)  | 
|
349  | 
||
350  | 
lemma inj_image_Compl_subset: "inj f ==> f`(-A) <= -(f`A)"  | 
|
351  | 
by (auto simp add: inj_on_def)  | 
|
| 5852 | 352  | 
|
| 13585 | 353  | 
lemma bij_image_Compl_eq: "bij f ==> f`(-A) = -(f`A)"  | 
354  | 
apply (simp add: bij_def)  | 
|
355  | 
apply (rule equalityI)  | 
|
356  | 
apply (simp_all (no_asm_simp) add: inj_image_Compl_subset surj_Compl_image_subset)  | 
|
357  | 
done  | 
|
358  | 
||
359  | 
||
360  | 
subsection{*Function Updating*}
 | 
|
361  | 
||
362  | 
lemma fun_upd_idem_iff: "(f(x:=y) = f) = (f x = y)"  | 
|
363  | 
apply (simp add: fun_upd_def, safe)  | 
|
364  | 
apply (erule subst)  | 
|
365  | 
apply (rule_tac [2] ext, auto)  | 
|
366  | 
done  | 
|
367  | 
||
368  | 
(* f x = y ==> f(x:=y) = f *)  | 
|
369  | 
lemmas fun_upd_idem = fun_upd_idem_iff [THEN iffD2, standard]  | 
|
370  | 
||
371  | 
(* f(x := f x) = f *)  | 
|
| 
17084
 
fb0a80aef0be
classical rules must have names for ATP integration
 
paulson 
parents: 
16973 
diff
changeset
 | 
372  | 
lemmas fun_upd_triv = refl [THEN fun_upd_idem]  | 
| 
 
fb0a80aef0be
classical rules must have names for ATP integration
 
paulson 
parents: 
16973 
diff
changeset
 | 
373  | 
declare fun_upd_triv [iff]  | 
| 13585 | 374  | 
|
375  | 
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
 | 
376  | 
by (simp add: fun_upd_def)  | 
| 13585 | 377  | 
|
378  | 
(* fun_upd_apply supersedes these two, but they are useful  | 
|
379  | 
if fun_upd_apply is intentionally removed from the simpset *)  | 
|
380  | 
lemma fun_upd_same: "(f(x:=y)) x = y"  | 
|
381  | 
by simp  | 
|
382  | 
||
383  | 
lemma fun_upd_other: "z~=x ==> (f(x:=y)) z = f z"  | 
|
384  | 
by simp  | 
|
385  | 
||
386  | 
lemma fun_upd_upd [simp]: "f(x:=y,x:=z) = f(x:=z)"  | 
|
387  | 
by (simp add: expand_fun_eq)  | 
|
388  | 
||
389  | 
lemma fun_upd_twist: "a ~= c ==> (m(a:=b))(c:=d) = (m(c:=d))(a:=b)"  | 
|
390  | 
by (rule ext, auto)  | 
|
391  | 
||
| 15303 | 392  | 
lemma inj_on_fun_updI: "\<lbrakk> inj_on f A; y \<notin> f`A \<rbrakk> \<Longrightarrow> inj_on (f(x:=y)) A"  | 
393  | 
by(fastsimp simp:inj_on_def image_def)  | 
|
394  | 
||
| 15510 | 395  | 
lemma fun_upd_image:  | 
396  | 
     "f(x:=y) ` A = (if x \<in> A then insert y (f ` (A-{x})) else f ` A)"
 | 
|
397  | 
by auto  | 
|
398  | 
||
| 15691 | 399  | 
subsection{* @{text override_on} *}
 | 
| 13910 | 400  | 
|
| 15691 | 401  | 
lemma override_on_emptyset[simp]: "override_on f g {} = f"
 | 
402  | 
by(simp add:override_on_def)  | 
|
| 13910 | 403  | 
|
| 15691 | 404  | 
lemma override_on_apply_notin[simp]: "a ~: A ==> (override_on f g A) a = f a"  | 
405  | 
by(simp add:override_on_def)  | 
|
| 13910 | 406  | 
|
| 15691 | 407  | 
lemma override_on_apply_in[simp]: "a : A ==> (override_on f g A) a = g a"  | 
408  | 
by(simp add:override_on_def)  | 
|
| 13910 | 409  | 
|
| 15510 | 410  | 
subsection{* swap *}
 | 
411  | 
||
412  | 
constdefs  | 
|
413  | 
  swap :: "['a, 'a, 'a => 'b] => ('a => 'b)"
 | 
|
414  | 
"swap a b f == f(a := f b, b:= f a)"  | 
|
415  | 
||
416  | 
lemma swap_self: "swap a a f = f"  | 
|
| 15691 | 417  | 
by (simp add: swap_def)  | 
| 15510 | 418  | 
|
419  | 
lemma swap_commute: "swap a b f = swap b a f"  | 
|
420  | 
by (rule ext, simp add: fun_upd_def swap_def)  | 
|
421  | 
||
422  | 
lemma swap_nilpotent [simp]: "swap a b (swap a b f) = f"  | 
|
423  | 
by (rule ext, simp add: fun_upd_def swap_def)  | 
|
424  | 
||
425  | 
lemma inj_on_imp_inj_on_swap:  | 
|
426  | 
"[|inj_on f A; a \<in> A; b \<in> A|] ==> inj_on (swap a b f) A"  | 
|
427  | 
by (simp add: inj_on_def swap_def, blast)  | 
|
428  | 
||
429  | 
lemma inj_on_swap_iff [simp]:  | 
|
430  | 
assumes A: "a \<in> A" "b \<in> A" shows "inj_on (swap a b f) A = inj_on f A"  | 
|
431  | 
proof  | 
|
432  | 
assume "inj_on (swap a b f) A"  | 
|
433  | 
with A have "inj_on (swap a b (swap a b f)) A"  | 
|
| 17589 | 434  | 
by (iprover intro: inj_on_imp_inj_on_swap)  | 
| 15510 | 435  | 
thus "inj_on f A" by simp  | 
436  | 
next  | 
|
437  | 
assume "inj_on f A"  | 
|
| 17589 | 438  | 
with A show "inj_on (swap a b f) A" by (iprover intro: inj_on_imp_inj_on_swap)  | 
| 15510 | 439  | 
qed  | 
440  | 
||
441  | 
lemma surj_imp_surj_swap: "surj f ==> surj (swap a b f)"  | 
|
442  | 
apply (simp add: surj_def swap_def, clarify)  | 
|
443  | 
apply (rule_tac P = "y = f b" in case_split_thm, blast)  | 
|
444  | 
apply (rule_tac P = "y = f a" in case_split_thm, auto)  | 
|
445  | 
  --{*We don't yet have @{text case_tac}*}
 | 
|
446  | 
done  | 
|
447  | 
||
448  | 
lemma surj_swap_iff [simp]: "surj (swap a b f) = surj f"  | 
|
449  | 
proof  | 
|
450  | 
assume "surj (swap a b f)"  | 
|
451  | 
hence "surj (swap a b (swap a b f))" by (rule surj_imp_surj_swap)  | 
|
452  | 
thus "surj f" by simp  | 
|
453  | 
next  | 
|
454  | 
assume "surj f"  | 
|
455  | 
thus "surj (swap a b f)" by (rule surj_imp_surj_swap)  | 
|
456  | 
qed  | 
|
457  | 
||
458  | 
lemma bij_swap_iff: "bij (swap a b f) = bij f"  | 
|
459  | 
by (simp add: bij_def)  | 
|
460  | 
||
461  | 
||
| 13585 | 462  | 
text{*The ML section includes some compatibility bindings and a simproc
 | 
463  | 
for function updates, in addition to the usual ML-bindings of theorems.*}  | 
|
464  | 
ML  | 
|
465  | 
{*
 | 
|
466  | 
val id_def = thm "id_def";  | 
|
467  | 
val inj_on_def = thm "inj_on_def";  | 
|
468  | 
val surj_def = thm "surj_def";  | 
|
469  | 
val bij_def = thm "bij_def";  | 
|
470  | 
val fun_upd_def = thm "fun_upd_def";  | 
|
| 
11451
 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 
paulson 
parents: 
11123 
diff
changeset
 | 
471  | 
|
| 13585 | 472  | 
val o_def = thm "comp_def";  | 
473  | 
val injI = thm "inj_onI";  | 
|
474  | 
val inj_inverseI = thm "inj_on_inverseI";  | 
|
475  | 
val set_cs = claset() delrules [equalityI];  | 
|
476  | 
||
477  | 
val print_translation = [("Pi", dependent_tr' ("@Pi", "op funcset"))];
 | 
|
478  | 
||
479  | 
(* simplifies terms of the form f(...,x:=y,...,x:=z,...) to f(...,x:=z,...) *)  | 
|
480  | 
local  | 
|
| 15531 | 481  | 
fun gen_fun_upd NONE T _ _ = NONE  | 
482  | 
    | gen_fun_upd (SOME f) T x y = SOME (Const ("Fun.fun_upd",T) $ f $ x $ y)
 | 
|
| 13585 | 483  | 
fun dest_fun_T1 (Type (_, T :: Ts)) = T  | 
484  | 
  fun find_double (t as Const ("Fun.fun_upd",T) $ f $ x $ y) =
 | 
|
485  | 
let  | 
|
486  | 
      fun find (Const ("Fun.fun_upd",T) $ g $ v $ w) =
 | 
|
| 15531 | 487  | 
if v aconv x then SOME g else gen_fun_upd (find g) T v w  | 
488  | 
| find t = NONE  | 
|
| 13585 | 489  | 
in (dest_fun_T1 T, gen_fun_upd (find f) T x y) end  | 
490  | 
||
| 16973 | 491  | 
val current_ss = simpset ()  | 
492  | 
fun fun_upd_prover ss =  | 
|
493  | 
rtac eq_reflection 1 THEN rtac ext 1 THEN  | 
|
| 
17877
 
67d5ab1cb0d8
Simplifier.inherit_context instead of Simplifier.inherit_bounds;
 
wenzelm 
parents: 
17589 
diff
changeset
 | 
494  | 
simp_tac (Simplifier.inherit_context ss current_ss) 1  | 
| 13585 | 495  | 
in  | 
496  | 
val fun_upd2_simproc =  | 
|
497  | 
Simplifier.simproc (Theory.sign_of (the_context ()))  | 
|
498  | 
"fun_upd2" ["f(v := w, x := y)"]  | 
|
| 16973 | 499  | 
(fn sg => fn ss => fn t =>  | 
| 15531 | 500  | 
case find_double t of (T, NONE) => NONE  | 
| 16973 | 501  | 
| (T, SOME rhs) =>  | 
| 17956 | 502  | 
SOME (Goal.prove sg [] [] (Term.equals T $ t $ rhs) (K (fun_upd_prover ss))))  | 
| 13585 | 503  | 
end;  | 
504  | 
Addsimprocs[fun_upd2_simproc];  | 
|
| 5852 | 505  | 
|
| 13585 | 506  | 
val expand_fun_eq = thm "expand_fun_eq";  | 
507  | 
val apply_inverse = thm "apply_inverse";  | 
|
508  | 
val id_apply = thm "id_apply";  | 
|
509  | 
val o_apply = thm "o_apply";  | 
|
510  | 
val o_assoc = thm "o_assoc";  | 
|
511  | 
val id_o = thm "id_o";  | 
|
512  | 
val o_id = thm "o_id";  | 
|
513  | 
val image_compose = thm "image_compose";  | 
|
514  | 
val image_eq_UN = thm "image_eq_UN";  | 
|
515  | 
val UN_o = thm "UN_o";  | 
|
516  | 
val datatype_injI = thm "datatype_injI";  | 
|
517  | 
val injD = thm "injD";  | 
|
518  | 
val inj_eq = thm "inj_eq";  | 
|
519  | 
val inj_onI = thm "inj_onI";  | 
|
520  | 
val inj_on_inverseI = thm "inj_on_inverseI";  | 
|
521  | 
val inj_onD = thm "inj_onD";  | 
|
522  | 
val inj_on_iff = thm "inj_on_iff";  | 
|
523  | 
val comp_inj_on = thm "comp_inj_on";  | 
|
524  | 
val inj_on_contraD = thm "inj_on_contraD";  | 
|
525  | 
val inj_singleton = thm "inj_singleton";  | 
|
526  | 
val subset_inj_on = thm "subset_inj_on";  | 
|
527  | 
val surjI = thm "surjI";  | 
|
528  | 
val surj_range = thm "surj_range";  | 
|
529  | 
val surjD = thm "surjD";  | 
|
530  | 
val surjE = thm "surjE";  | 
|
531  | 
val comp_surj = thm "comp_surj";  | 
|
532  | 
val bijI = thm "bijI";  | 
|
533  | 
val bij_is_inj = thm "bij_is_inj";  | 
|
534  | 
val bij_is_surj = thm "bij_is_surj";  | 
|
535  | 
val image_ident = thm "image_ident";  | 
|
536  | 
val image_id = thm "image_id";  | 
|
537  | 
val vimage_ident = thm "vimage_ident";  | 
|
538  | 
val vimage_id = thm "vimage_id";  | 
|
539  | 
val vimage_image_eq = thm "vimage_image_eq";  | 
|
540  | 
val image_vimage_subset = thm "image_vimage_subset";  | 
|
541  | 
val image_vimage_eq = thm "image_vimage_eq";  | 
|
542  | 
val surj_image_vimage_eq = thm "surj_image_vimage_eq";  | 
|
543  | 
val inj_vimage_image_eq = thm "inj_vimage_image_eq";  | 
|
544  | 
val vimage_subsetD = thm "vimage_subsetD";  | 
|
545  | 
val vimage_subsetI = thm "vimage_subsetI";  | 
|
546  | 
val vimage_subset_eq = thm "vimage_subset_eq";  | 
|
547  | 
val image_Int_subset = thm "image_Int_subset";  | 
|
548  | 
val image_diff_subset = thm "image_diff_subset";  | 
|
549  | 
val inj_on_image_Int = thm "inj_on_image_Int";  | 
|
550  | 
val inj_on_image_set_diff = thm "inj_on_image_set_diff";  | 
|
551  | 
val image_Int = thm "image_Int";  | 
|
552  | 
val image_set_diff = thm "image_set_diff";  | 
|
553  | 
val inj_image_mem_iff = thm "inj_image_mem_iff";  | 
|
554  | 
val inj_image_subset_iff = thm "inj_image_subset_iff";  | 
|
555  | 
val inj_image_eq_iff = thm "inj_image_eq_iff";  | 
|
556  | 
val image_UN = thm "image_UN";  | 
|
557  | 
val image_INT = thm "image_INT";  | 
|
558  | 
val bij_image_INT = thm "bij_image_INT";  | 
|
559  | 
val surj_Compl_image_subset = thm "surj_Compl_image_subset";  | 
|
560  | 
val inj_image_Compl_subset = thm "inj_image_Compl_subset";  | 
|
561  | 
val bij_image_Compl_eq = thm "bij_image_Compl_eq";  | 
|
562  | 
val fun_upd_idem_iff = thm "fun_upd_idem_iff";  | 
|
563  | 
val fun_upd_idem = thm "fun_upd_idem";  | 
|
564  | 
val fun_upd_apply = thm "fun_upd_apply";  | 
|
565  | 
val fun_upd_same = thm "fun_upd_same";  | 
|
566  | 
val fun_upd_other = thm "fun_upd_other";  | 
|
567  | 
val fun_upd_upd = thm "fun_upd_upd";  | 
|
568  | 
val fun_upd_twist = thm "fun_upd_twist";  | 
|
| 13637 | 569  | 
val range_ex1_eq = thm "range_ex1_eq";  | 
| 13585 | 570  | 
*}  | 
| 5852 | 571  | 
|
| 2912 | 572  | 
end  |