author | wenzelm |
Fri, 12 May 2000 11:52:44 +0200 | |
changeset 8857 | 7ec405405dd7 |
parent 8310 | cc2340c338f0 |
child 9422 | 4b6bc2b347e5 |
permissions | -rw-r--r-- |
4648 | 1 |
(* Title: HOL/Vimage |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1998 University of Cambridge |
|
5 |
||
6 |
Inverse image of a function |
|
7 |
*) |
|
8 |
||
9 |
(** Basic rules **) |
|
10 |
||
7031 | 11 |
Goalw [vimage_def] "(a : f-``B) = (f a : B)"; |
12 |
by (Blast_tac 1) ; |
|
13 |
qed "vimage_eq"; |
|
4648 | 14 |
|
4680 | 15 |
Addsimps [vimage_eq]; |
16 |
||
7031 | 17 |
Goal "(a : f-``{b}) = (f a = b)"; |
18 |
by (simp_tac (simpset() addsimps [vimage_eq]) 1) ; |
|
19 |
qed "vimage_singleton_eq"; |
|
4648 | 20 |
|
7031 | 21 |
Goalw [vimage_def] |
22 |
"!!A B f. [| f a = b; b:B |] ==> a : f-``B"; |
|
23 |
by (Blast_tac 1) ; |
|
24 |
qed "vimageI"; |
|
4648 | 25 |
|
5095
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
26 |
Goalw [vimage_def] "f a : A ==> a : f -`` A"; |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
27 |
by (Fast_tac 1); |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
28 |
qed "vimageI2"; |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
29 |
|
7031 | 30 |
val major::prems = Goalw [vimage_def] |
31 |
"[| a: f-``B; !!x.[| f a = x; x:B |] ==> P |] ==> P"; |
|
32 |
by (rtac (major RS CollectE) 1); |
|
33 |
by (blast_tac (claset() addIs prems) 1) ; |
|
34 |
qed "vimageE"; |
|
4648 | 35 |
|
5095
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
36 |
Goalw [vimage_def] "a : f -`` A ==> f a : A"; |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
37 |
by (Fast_tac 1); |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
38 |
qed "vimageD"; |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
39 |
|
4648 | 40 |
AddIs [vimageI]; |
41 |
AddSEs [vimageE]; |
|
42 |
||
43 |
||
8175 | 44 |
(*** Equations ***) |
4648 | 45 |
|
5069 | 46 |
Goal "f-``{} = {}"; |
4648 | 47 |
by (Blast_tac 1); |
48 |
qed "vimage_empty"; |
|
49 |
||
5490 | 50 |
Goal "f-``(-A) = -(f-``A)"; |
4660 | 51 |
by (Blast_tac 1); |
52 |
qed "vimage_Compl"; |
|
53 |
||
5069 | 54 |
Goal "f-``(A Un B) = (f-``A) Un (f-``B)"; |
4648 | 55 |
by (Blast_tac 1); |
56 |
qed "vimage_Un"; |
|
57 |
||
5095
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
58 |
Goal "f -`` (A Int B) = (f -`` A) Int (f -`` B)"; |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
59 |
by (Fast_tac 1); |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
60 |
qed "vimage_Int"; |
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
61 |
|
8175 | 62 |
Goal "f -`` (Union A) = (UN X:A. f -`` X)"; |
63 |
by (Blast_tac 1); |
|
64 |
qed "vimage_Union"; |
|
65 |
||
5069 | 66 |
Goal "f-``(UN x:A. B x) = (UN x:A. f -`` B x)"; |
4674 | 67 |
by (Blast_tac 1); |
68 |
qed "vimage_UN"; |
|
69 |
||
7823 | 70 |
Goal "f-``(INT x:A. B x) = (INT x:A. f -`` B x)"; |
71 |
by (Blast_tac 1); |
|
72 |
qed "vimage_INT"; |
|
73 |
||
8310 | 74 |
Goal "f -`` Collect P = {y. P (f y)}"; |
75 |
by (Blast_tac 1); |
|
76 |
qed "vimage_Collect_eq"; |
|
77 |
Addsimps [vimage_Collect_eq]; |
|
78 |
||
79 |
(*A strange result used in Tools/inductive_package*) |
|
80 |
bind_thm ("vimage_Collect", |
|
81 |
allI RS |
|
82 |
prove_goalw thy [vimage_def] |
|
83 |
"! x. P (f x) = Q x ==> f -`` (Collect P) = Collect Q" |
|
84 |
(fn prems => [cut_facts_tac prems 1, Fast_tac 1])); |
|
5095
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
85 |
|
4436c62efceb
Added additional theorems needed for inductive definitions.
berghofe
parents:
5069
diff
changeset
|
86 |
Addsimps [vimage_empty, vimage_Un, vimage_Int]; |
4660 | 87 |
|
4648 | 88 |
(*NOT suitable for rewriting because of the recurrence of {a}*) |
5069 | 89 |
Goal "f-``(insert a B) = (f-``{a}) Un (f-``B)"; |
4648 | 90 |
by (Blast_tac 1); |
91 |
qed "vimage_insert"; |
|
92 |
||
5069 | 93 |
Goal "f-``(A-B) = (f-``A) - (f-``B)"; |
4738 | 94 |
by (Blast_tac 1); |
95 |
qed "vimage_Diff"; |
|
4648 | 96 |
|
5069 | 97 |
Goal "f-``UNIV = UNIV"; |
4648 | 98 |
by (Blast_tac 1); |
99 |
qed "vimage_UNIV"; |
|
100 |
Addsimps [vimage_UNIV]; |
|
101 |
||
4734 | 102 |
(*NOT suitable for rewriting*) |
5069 | 103 |
Goal "f-``B = (UN y: B. f-``{y})"; |
4734 | 104 |
by (Blast_tac 1); |
105 |
qed "vimage_eq_UN"; |
|
106 |
||
8175 | 107 |
(*monotonicity*) |
5143
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
paulson
parents:
5122
diff
changeset
|
108 |
Goal "A<=B ==> f-``A <= f-``B"; |
4648 | 109 |
by (Blast_tac 1); |
110 |
qed "vimage_mono"; |