author | wenzelm |
Sat, 05 Oct 2024 14:58:36 +0200 | |
changeset 81116 | 0fb1e2dd4122 |
parent 81110 | 08165a4e105d |
child 81150 | 3dd8035578b8 |
permissions | -rw-r--r-- |
63588 | 1 |
(* Title: HOL/Set.thy |
2 |
Author: Tobias Nipkow |
|
3 |
Author: Lawrence C Paulson |
|
4 |
Author: Markus Wenzel |
|
5 |
*) |
|
923 | 6 |
|
60758 | 7 |
section \<open>Set theory for higher-order logic\<close> |
11979 | 8 |
|
15131 | 9 |
theory Set |
74123
7c5842b06114
clarified abstract and concrete boolean algebras
haftmann
parents:
74101
diff
changeset
|
10 |
imports Lattices Boolean_Algebras |
15131 | 11 |
begin |
11979 | 12 |
|
60758 | 13 |
subsection \<open>Sets as predicates\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
14 |
|
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
15 |
typedecl 'a set |
3820 | 16 |
|
67443
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67403
diff
changeset
|
17 |
axiomatization Collect :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set" \<comment> \<open>comprehension\<close> |
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67403
diff
changeset
|
18 |
and member :: "'a \<Rightarrow> 'a set \<Rightarrow> bool" \<comment> \<open>membership\<close> |
63588 | 19 |
where mem_Collect_eq [iff, code_unfold]: "member a (Collect P) = P a" |
20 |
and Collect_mem_eq [simp]: "Collect (\<lambda>x. member x A) = A" |
|
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19637
diff
changeset
|
21 |
|
21210 | 22 |
notation |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
23 |
member (\<open>'(\<in>')\<close>) and |
80934 | 24 |
member (\<open>(\<open>notation=\<open>infix \<in>\<close>\<close>_/ \<in> _)\<close> [51, 51] 50) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
25 |
|
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
26 |
abbreviation not_member |
67443
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67403
diff
changeset
|
27 |
where "not_member x A \<equiv> \<not> (x \<in> A)" \<comment> \<open>non-membership\<close> |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
28 |
notation |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
29 |
not_member (\<open>'(\<notin>')\<close>) and |
80934 | 30 |
not_member (\<open>(\<open>notation=\<open>infix \<notin>\<close>\<close>_/ \<notin> _)\<close> [51, 51] 50) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
31 |
|
81110 | 32 |
open_bundle member_ASCII_syntax |
33 |
begin |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
34 |
notation (ASCII) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
35 |
member (\<open>'(:')\<close>) and |
80934 | 36 |
member (\<open>(\<open>notation=\<open>infix :\<close>\<close>_/ : _)\<close> [51, 51] 50) and |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
37 |
not_member (\<open>'(~:')\<close>) and |
80934 | 38 |
not_member (\<open>(\<open>notation=\<open>infix ~:\<close>\<close>_/ ~: _)\<close> [51, 51] 50) |
81110 | 39 |
end |
40 |
||
41107 | 41 |
|
60758 | 42 |
text \<open>Set comprehensions\<close> |
32081 | 43 |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
44 |
syntax |
81096 | 45 |
"_Coll" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a set" (\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{_./ _})\<close>) |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
46 |
translations |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
47 |
"{x. P}" \<rightleftharpoons> "CONST Collect (\<lambda>x. P)" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
48 |
|
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
49 |
syntax (ASCII) |
81096 | 50 |
"_Collect" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a set" (\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{(_/: _)./ _})\<close>) |
32081 | 51 |
syntax |
81096 | 52 |
"_Collect" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a set" (\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{(_/ \<in> _)./ _})\<close>) |
32081 | 53 |
translations |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
54 |
"{p:A. P}" \<rightharpoonup> "CONST Collect (\<lambda>p. p \<in> A \<and> P)" |
32081 | 55 |
|
41107 | 56 |
lemma CollectI: "P a \<Longrightarrow> a \<in> {x. P x}" |
32081 | 57 |
by simp |
58 |
||
41107 | 59 |
lemma CollectD: "a \<in> {x. P x} \<Longrightarrow> P a" |
32081 | 60 |
by simp |
61 |
||
63316 | 62 |
lemma Collect_cong: "(\<And>x. P x = Q x) \<Longrightarrow> {x. P x} = {x. Q x}" |
32081 | 63 |
by simp |
64 |
||
60758 | 65 |
text \<open> |
63316 | 66 |
Simproc for pulling \<open>x = t\<close> in \<open>{x. \<dots> \<and> x = t \<and> \<dots>}\<close> |
67 |
to the front (and similarly for \<open>t = x\<close>): |
|
60758 | 68 |
\<close> |
69 |
||
63316 | 70 |
simproc_setup defined_Collect ("{x. P x \<and> Q x}") = \<open> |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77935
diff
changeset
|
71 |
K (Quantifier1.rearrange_Collect |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59000
diff
changeset
|
72 |
(fn ctxt => |
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59000
diff
changeset
|
73 |
resolve_tac ctxt @{thms Collect_cong} 1 THEN |
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59000
diff
changeset
|
74 |
resolve_tac ctxt @{thms iffI} 1 THEN |
42459 | 75 |
ALLGOALS |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59000
diff
changeset
|
76 |
(EVERY' [REPEAT_DETERM o eresolve_tac ctxt @{thms conjE}, |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77935
diff
changeset
|
77 |
DEPTH_SOLVE_1 o (assume_tac ctxt ORELSE' resolve_tac ctxt @{thms conjI})]))) |
60758 | 78 |
\<close> |
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
79 |
|
32081 | 80 |
lemmas CollectE = CollectD [elim_format] |
81 |
||
41107 | 82 |
lemma set_eqI: |
83 |
assumes "\<And>x. x \<in> A \<longleftrightarrow> x \<in> B" |
|
84 |
shows "A = B" |
|
85 |
proof - |
|
63588 | 86 |
from assms have "{x. x \<in> A} = {x. x \<in> B}" |
87 |
by simp |
|
41107 | 88 |
then show ?thesis by simp |
89 |
qed |
|
90 |
||
63316 | 91 |
lemma set_eq_iff: "A = B \<longleftrightarrow> (\<forall>x. x \<in> A \<longleftrightarrow> x \<in> B)" |
41107 | 92 |
by (auto intro:set_eqI) |
93 |
||
63365 | 94 |
lemma Collect_eqI: |
95 |
assumes "\<And>x. P x = Q x" |
|
96 |
shows "Collect P = Collect Q" |
|
97 |
using assms by (auto intro: set_eqI) |
|
98 |
||
60758 | 99 |
text \<open>Lifting of predicate class instances\<close> |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
100 |
|
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
101 |
instantiation set :: (type) boolean_algebra |
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
102 |
begin |
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
103 |
|
63316 | 104 |
definition less_eq_set |
105 |
where "A \<le> B \<longleftrightarrow> (\<lambda>x. member x A) \<le> (\<lambda>x. member x B)" |
|
106 |
||
107 |
definition less_set |
|
108 |
where "A < B \<longleftrightarrow> (\<lambda>x. member x A) < (\<lambda>x. member x B)" |
|
109 |
||
110 |
definition inf_set |
|
111 |
where "A \<sqinter> B = Collect ((\<lambda>x. member x A) \<sqinter> (\<lambda>x. member x B))" |
|
112 |
||
113 |
definition sup_set |
|
114 |
where "A \<squnion> B = Collect ((\<lambda>x. member x A) \<squnion> (\<lambda>x. member x B))" |
|
115 |
||
116 |
definition bot_set |
|
117 |
where "\<bottom> = Collect \<bottom>" |
|
118 |
||
119 |
definition top_set |
|
120 |
where "\<top> = Collect \<top>" |
|
121 |
||
122 |
definition uminus_set |
|
123 |
where "- A = Collect (- (\<lambda>x. member x A))" |
|
124 |
||
125 |
definition minus_set |
|
126 |
where "A - B = Collect ((\<lambda>x. member x A) - (\<lambda>x. member x B))" |
|
127 |
||
128 |
instance |
|
129 |
by standard |
|
130 |
(simp_all add: less_eq_set_def less_set_def inf_set_def sup_set_def |
|
131 |
bot_set_def top_set_def uminus_set_def minus_set_def |
|
132 |
less_le_not_le sup_inf_distrib1 diff_eq set_eqI fun_eq_iff |
|
133 |
del: inf_apply sup_apply bot_apply top_apply minus_apply uminus_apply) |
|
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
134 |
|
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
135 |
end |
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
136 |
|
60758 | 137 |
text \<open>Set enumerations\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
138 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
139 |
abbreviation empty :: "'a set" (\<open>{}\<close>) |
63316 | 140 |
where "{} \<equiv> bot" |
141 |
||
142 |
definition insert :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a set" |
|
143 |
where insert_compr: "insert a B = {x. x = a \<or> x \<in> B}" |
|
31456 | 144 |
|
145 |
syntax |
|
81090 | 146 |
"_Finset" :: "args \<Rightarrow> 'a set" (\<open>(\<open>indent=1 notation=\<open>mixfix set enumeration\<close>\<close>{_})\<close>) |
31456 | 147 |
translations |
63316 | 148 |
"{x, xs}" \<rightleftharpoons> "CONST insert x {xs}" |
149 |
"{x}" \<rightleftharpoons> "CONST insert x {}" |
|
31456 | 150 |
|
32081 | 151 |
|
60758 | 152 |
subsection \<open>Subsets and bounded quantifiers\<close> |
32081 | 153 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
154 |
abbreviation subset :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
155 |
where "subset \<equiv> less" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
156 |
|
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
157 |
abbreviation subset_eq :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
158 |
where "subset_eq \<equiv> less_eq" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
159 |
|
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
160 |
notation |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
161 |
subset (\<open>'(\<subset>')\<close>) and |
80934 | 162 |
subset (\<open>(\<open>notation=\<open>infix \<subset>\<close>\<close>_/ \<subset> _)\<close> [51, 51] 50) and |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
163 |
subset_eq (\<open>'(\<subseteq>')\<close>) and |
80934 | 164 |
subset_eq (\<open>(\<open>notation=\<open>infix \<subseteq>\<close>\<close>_/ \<subseteq> _)\<close> [51, 51] 50) |
32081 | 165 |
|
166 |
abbreviation (input) |
|
167 |
supset :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where |
|
168 |
"supset \<equiv> greater" |
|
169 |
||
170 |
abbreviation (input) |
|
171 |
supset_eq :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where |
|
172 |
"supset_eq \<equiv> greater_eq" |
|
173 |
||
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
174 |
notation |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
175 |
supset (\<open>'(\<supset>')\<close>) and |
80934 | 176 |
supset (\<open>(\<open>notation=\<open>infix \<supset>\<close>\<close>_/ \<supset> _)\<close> [51, 51] 50) and |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
177 |
supset_eq (\<open>'(\<supseteq>')\<close>) and |
80934 | 178 |
supset_eq (\<open>(\<open>notation=\<open>infix \<supseteq>\<close>\<close>_/ \<supseteq> _)\<close> [51, 51] 50) |
32081 | 179 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
180 |
notation (ASCII output) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
181 |
subset (\<open>'(<')\<close>) and |
80934 | 182 |
subset (\<open>(\<open>notation=\<open>infix <\<close>\<close>_/ < _)\<close> [51, 51] 50) and |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
183 |
subset_eq (\<open>'(<=')\<close>) and |
80934 | 184 |
subset_eq (\<open>(\<open>notation=\<open>infix <=\<close>\<close>_/ <= _)\<close> [51, 51] 50) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
185 |
|
63316 | 186 |
definition Ball :: "'a set \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> bool" |
67443
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67403
diff
changeset
|
187 |
where "Ball A P \<longleftrightarrow> (\<forall>x. x \<in> A \<longrightarrow> P x)" \<comment> \<open>bounded universal quantifiers\<close> |
63316 | 188 |
|
189 |
definition Bex :: "'a set \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> bool" |
|
67443
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67403
diff
changeset
|
190 |
where "Bex A P \<longleftrightarrow> (\<exists>x. x \<in> A \<and> P x)" \<comment> \<open>bounded existential quantifiers\<close> |
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
191 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
192 |
syntax (ASCII) |
80934 | 193 |
"_Ball" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ALL :\<close>\<close>ALL (_/:_)./ _)\<close> [0, 0, 10] 10) |
194 |
"_Bex" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder EX :\<close>\<close>EX (_/:_)./ _)\<close> [0, 0, 10] 10) |
|
195 |
"_Bex1" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder EX! :\<close>\<close>EX! (_/:_)./ _)\<close> [0, 0, 10] 10) |
|
196 |
"_Bleast" :: "id \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a" (\<open>(\<open>indent=3 notation=\<open>binder LEAST :\<close>\<close>LEAST (_/:_)./ _)\<close> [0, 0, 10] 10) |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
197 |
|
62521 | 198 |
syntax (input) |
80934 | 199 |
"_Ball" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ! :\<close>\<close>! (_/:_)./ _)\<close> [0, 0, 10] 10) |
200 |
"_Bex" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ? :\<close>\<close>? (_/:_)./ _)\<close> [0, 0, 10] 10) |
|
201 |
"_Bex1" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ?! :\<close>\<close>?! (_/:_)./ _)\<close> [0, 0, 10] 10) |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
202 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
203 |
syntax |
80934 | 204 |
"_Ball" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<forall>\<close>\<close>\<forall>(_/\<in>_)./ _)\<close> [0, 0, 10] 10) |
205 |
"_Bex" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<exists>\<close>\<close>\<exists>(_/\<in>_)./ _)\<close> [0, 0, 10] 10) |
|
206 |
"_Bex1" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<exists>!\<close>\<close>\<exists>!(_/\<in>_)./ _)\<close> [0, 0, 10] 10) |
|
207 |
"_Bleast" :: "id \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a" (\<open>(\<open>indent=3 notation=\<open>binder LEAST\<close>\<close>LEAST(_/\<in>_)./ _)\<close> [0, 0, 10] 10) |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
208 |
|
80760 | 209 |
syntax_consts |
210 |
"_Ball" \<rightleftharpoons> Ball and |
|
211 |
"_Bex" \<rightleftharpoons> Bex and |
|
212 |
"_Bex1" \<rightleftharpoons> Ex1 and |
|
213 |
"_Bleast" \<rightleftharpoons> Least |
|
214 |
||
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
215 |
translations |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
216 |
"\<forall>x\<in>A. P" \<rightleftharpoons> "CONST Ball A (\<lambda>x. P)" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
217 |
"\<exists>x\<in>A. P" \<rightleftharpoons> "CONST Bex A (\<lambda>x. P)" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
218 |
"\<exists>!x\<in>A. P" \<rightharpoonup> "\<exists>!x. x \<in> A \<and> P" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
219 |
"LEAST x:A. P" \<rightharpoonup> "LEAST x. x \<in> A \<and> P" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
220 |
|
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
221 |
syntax (ASCII output) |
80934 | 222 |
"_setlessAll" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ALL\<close>\<close>ALL _<_./ _)\<close> [0, 0, 10] 10) |
223 |
"_setlessEx" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder EX\<close>\<close>EX _<_./ _)\<close> [0, 0, 10] 10) |
|
224 |
"_setleAll" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ALL\<close>\<close>ALL _<=_./ _)\<close> [0, 0, 10] 10) |
|
225 |
"_setleEx" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder EX\<close>\<close>EX _<=_./ _)\<close> [0, 0, 10] 10) |
|
226 |
"_setleEx1" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder EX!\<close>\<close>EX! _<=_./ _)\<close> [0, 0, 10] 10) |
|
14804
8de39d3e8eb6
Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents:
14752
diff
changeset
|
227 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
228 |
syntax |
80934 | 229 |
"_setlessAll" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<forall>\<close>\<close>\<forall>_\<subset>_./ _)\<close> [0, 0, 10] 10) |
230 |
"_setlessEx" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<exists>\<close>\<close>\<exists>_\<subset>_./ _)\<close> [0, 0, 10] 10) |
|
231 |
"_setleAll" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<forall>\<close>\<close>\<forall>_\<subseteq>_./ _)\<close> [0, 0, 10] 10) |
|
232 |
"_setleEx" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<exists>\<close>\<close>\<exists>_\<subseteq>_./ _)\<close> [0, 0, 10] 10) |
|
233 |
"_setleEx1" :: "[idt, 'a, bool] \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<exists>!\<close>\<close>\<exists>!_\<subseteq>_./ _)\<close> [0, 0, 10] 10) |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
234 |
|
80760 | 235 |
syntax_consts |
236 |
"_setlessAll" "_setleAll" \<rightleftharpoons> All and |
|
237 |
"_setlessEx" "_setleEx" \<rightleftharpoons> Ex and |
|
238 |
"_setleEx1" \<rightleftharpoons> Ex1 |
|
239 |
||
14804
8de39d3e8eb6
Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents:
14752
diff
changeset
|
240 |
translations |
80763 | 241 |
"\<forall>A\<subset>B. P" \<rightharpoonup> "\<forall>A. A \<subset> B \<longrightarrow> P" |
242 |
"\<exists>A\<subset>B. P" \<rightharpoonup> "\<exists>A. A \<subset> B \<and> P" |
|
243 |
"\<forall>A\<subseteq>B. P" \<rightharpoonup> "\<forall>A. A \<subseteq> B \<longrightarrow> P" |
|
244 |
"\<exists>A\<subseteq>B. P" \<rightharpoonup> "\<exists>A. A \<subseteq> B \<and> P" |
|
245 |
"\<exists>!A\<subseteq>B. P" \<rightharpoonup> "\<exists>!A. A \<subseteq> B \<and> P" |
|
14804
8de39d3e8eb6
Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents:
14752
diff
changeset
|
246 |
|
60758 | 247 |
print_translation \<open> |
52143 | 248 |
let |
69593 | 249 |
val All_binder = Mixfix.binder_name \<^const_syntax>\<open>All\<close>; |
250 |
val Ex_binder = Mixfix.binder_name \<^const_syntax>\<open>Ex\<close>; |
|
251 |
val impl = \<^const_syntax>\<open>HOL.implies\<close>; |
|
252 |
val conj = \<^const_syntax>\<open>HOL.conj\<close>; |
|
253 |
val sbset = \<^const_syntax>\<open>subset\<close>; |
|
254 |
val sbset_eq = \<^const_syntax>\<open>subset_eq\<close>; |
|
52143 | 255 |
|
256 |
val trans = |
|
69593 | 257 |
[((All_binder, impl, sbset), \<^syntax_const>\<open>_setlessAll\<close>), |
258 |
((All_binder, impl, sbset_eq), \<^syntax_const>\<open>_setleAll\<close>), |
|
259 |
((Ex_binder, conj, sbset), \<^syntax_const>\<open>_setlessEx\<close>), |
|
260 |
((Ex_binder, conj, sbset_eq), \<^syntax_const>\<open>_setleEx\<close>)]; |
|
52143 | 261 |
|
262 |
fun mk v (v', T) c n P = |
|
263 |
if v = v' andalso not (Term.exists_subterm (fn Free (x, _) => x = v | _ => false) n) |
|
264 |
then Syntax.const c $ Syntax_Trans.mark_bound_body (v', T) $ n $ P |
|
265 |
else raise Match; |
|
266 |
||
267 |
fun tr' q = (q, fn _ => |
|
80662 | 268 |
(fn [Const (\<^syntax_const>\<open>_bound\<close>, _) $ Free (v, \<^Type>\<open>set _\<close>), |
52143 | 269 |
Const (c, _) $ |
69593 | 270 |
(Const (d, _) $ (Const (\<^syntax_const>\<open>_bound\<close>, _) $ Free (v', T)) $ n) $ P] => |
67398 | 271 |
(case AList.lookup (=) trans (q, c, d) of |
52143 | 272 |
NONE => raise Match |
273 |
| SOME l => mk v (v', T) l n P) |
|
274 |
| _ => raise Match)); |
|
275 |
in |
|
276 |
[tr' All_binder, tr' Ex_binder] |
|
277 |
end |
|
60758 | 278 |
\<close> |
279 |
||
280 |
||
281 |
text \<open> |
|
63316 | 282 |
\<^medskip> |
283 |
Translate between \<open>{e | x1\<dots>xn. P}\<close> and \<open>{u. \<exists>x1\<dots>xn. u = e \<and> P}\<close>; |
|
284 |
\<open>{y. \<exists>x1\<dots>xn. y = e \<and> P}\<close> is only translated if \<open>[0..n] \<subseteq> bvs e\<close>. |
|
60758 | 285 |
\<close> |
11979 | 286 |
|
35115 | 287 |
syntax |
80934 | 288 |
"_Setcompr" :: "'a \<Rightarrow> idts \<Rightarrow> bool \<Rightarrow> 'a set" |
289 |
(\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{_ |/_./ _})\<close>) |
|
80760 | 290 |
syntax_consts |
291 |
"_Setcompr" \<rightleftharpoons> Collect |
|
35115 | 292 |
|
60758 | 293 |
parse_translation \<open> |
11979 | 294 |
let |
69593 | 295 |
val ex_tr = snd (Syntax_Trans.mk_binder_tr ("EX ", \<^const_syntax>\<open>Ex\<close>)); |
296 |
||
297 |
fun nvars (Const (\<^syntax_const>\<open>_idts\<close>, _) $ _ $ idts) = nvars idts + 1 |
|
11979 | 298 |
| nvars _ = 1; |
299 |
||
52143 | 300 |
fun setcompr_tr ctxt [e, idts, b] = |
11979 | 301 |
let |
69593 | 302 |
val eq = Syntax.const \<^const_syntax>\<open>HOL.eq\<close> $ Bound (nvars idts) $ e; |
303 |
val P = Syntax.const \<^const_syntax>\<open>HOL.conj\<close> $ eq $ b; |
|
52143 | 304 |
val exP = ex_tr ctxt [idts, P]; |
69593 | 305 |
in Syntax.const \<^const_syntax>\<open>Collect\<close> $ absdummy dummyT exP end; |
306 |
||
307 |
in [(\<^syntax_const>\<open>_Setcompr\<close>, setcompr_tr)] end |
|
60758 | 308 |
\<close> |
309 |
||
310 |
print_translation \<open> |
|
69593 | 311 |
[Syntax_Trans.preserve_binder_abs2_tr' \<^const_syntax>\<open>Ball\<close> \<^syntax_const>\<open>_Ball\<close>, |
312 |
Syntax_Trans.preserve_binder_abs2_tr' \<^const_syntax>\<open>Bex\<close> \<^syntax_const>\<open>_Bex\<close>] |
|
61799 | 313 |
\<close> \<comment> \<open>to avoid eta-contraction of body\<close> |
60758 | 314 |
|
315 |
print_translation \<open> |
|
13763
f94b569cd610
added print translations tha avoid eta contraction for important binders.
nipkow
parents:
13653
diff
changeset
|
316 |
let |
69593 | 317 |
val ex_tr' = snd (Syntax_Trans.mk_binder_tr' (\<^const_syntax>\<open>Ex\<close>, "DUMMY")); |
13763
f94b569cd610
added print translations tha avoid eta contraction for important binders.
nipkow
parents:
13653
diff
changeset
|
318 |
|
52143 | 319 |
fun setcompr_tr' ctxt [Abs (abs as (_, _, P))] = |
13763
f94b569cd610
added print translations tha avoid eta contraction for important binders.
nipkow
parents:
13653
diff
changeset
|
320 |
let |
69593 | 321 |
fun check (Const (\<^const_syntax>\<open>Ex\<close>, _) $ Abs (_, _, P), n) = check (P, n + 1) |
322 |
| check (Const (\<^const_syntax>\<open>HOL.conj\<close>, _) $ |
|
323 |
(Const (\<^const_syntax>\<open>HOL.eq\<close>, _) $ Bound m $ e) $ P, n) = |
|
13763
f94b569cd610
added print translations tha avoid eta contraction for important binders.
nipkow
parents:
13653
diff
changeset
|
324 |
n > 0 andalso m = n andalso not (loose_bvar1 (P, n)) andalso |
67398 | 325 |
subset (=) (0 upto (n - 1), add_loose_bnos (e, 0, [])) |
35115 | 326 |
| check _ = false; |
923 | 327 |
|
11979 | 328 |
fun tr' (_ $ abs) = |
52143 | 329 |
let val _ $ idts $ (_ $ (_ $ _ $ e) $ Q) = ex_tr' ctxt [abs] |
69593 | 330 |
in Syntax.const \<^syntax_const>\<open>_Setcompr\<close> $ e $ idts $ Q end; |
35115 | 331 |
in |
332 |
if check (P, 0) then tr' P |
|
333 |
else |
|
334 |
let |
|
42284 | 335 |
val (x as _ $ Free(xN, _), t) = Syntax_Trans.atomic_abs_tr' abs; |
69593 | 336 |
val M = Syntax.const \<^syntax_const>\<open>_Coll\<close> $ x $ t; |
35115 | 337 |
in |
338 |
case t of |
|
69593 | 339 |
Const (\<^const_syntax>\<open>HOL.conj\<close>, _) $ |
340 |
(Const (\<^const_syntax>\<open>Set.member\<close>, _) $ |
|
341 |
(Const (\<^syntax_const>\<open>_bound\<close>, _) $ Free (yN, _)) $ A) $ P => |
|
342 |
if xN = yN then Syntax.const \<^syntax_const>\<open>_Collect\<close> $ x $ A $ P else M |
|
35115 | 343 |
| _ => M |
344 |
end |
|
13763
f94b569cd610
added print translations tha avoid eta contraction for important binders.
nipkow
parents:
13653
diff
changeset
|
345 |
end; |
69593 | 346 |
in [(\<^const_syntax>\<open>Collect\<close>, setcompr_tr')] end |
60758 | 347 |
\<close> |
348 |
||
63316 | 349 |
simproc_setup defined_Bex ("\<exists>x\<in>A. P x \<and> Q x") = \<open> |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77935
diff
changeset
|
350 |
K (Quantifier1.rearrange_Bex (fn ctxt => unfold_tac ctxt @{thms Bex_def})) |
60758 | 351 |
\<close> |
352 |
||
63316 | 353 |
simproc_setup defined_All ("\<forall>x\<in>A. P x \<longrightarrow> Q x") = \<open> |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77935
diff
changeset
|
354 |
K (Quantifier1.rearrange_Ball (fn ctxt => unfold_tac ctxt @{thms Ball_def})) |
60758 | 355 |
\<close> |
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
356 |
|
63316 | 357 |
lemma ballI [intro!]: "(\<And>x. x \<in> A \<Longrightarrow> P x) \<Longrightarrow> \<forall>x\<in>A. P x" |
11979 | 358 |
by (simp add: Ball_def) |
359 |
||
360 |
lemmas strip = impI allI ballI |
|
361 |
||
63316 | 362 |
lemma bspec [dest?]: "\<forall>x\<in>A. P x \<Longrightarrow> x \<in> A \<Longrightarrow> P x" |
11979 | 363 |
by (simp add: Ball_def) |
364 |
||
63316 | 365 |
text \<open>Gives better instantiation for bound:\<close> |
60758 | 366 |
setup \<open> |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
367 |
map_theory_claset (fn ctxt => |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59000
diff
changeset
|
368 |
ctxt addbefore ("bspec", fn ctxt' => dresolve_tac ctxt' @{thms bspec} THEN' assume_tac ctxt')) |
60758 | 369 |
\<close> |
370 |
||
371 |
ML \<open> |
|
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
372 |
structure Simpdata = |
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
373 |
struct |
63316 | 374 |
open Simpdata; |
69593 | 375 |
val mksimps_pairs = [(\<^const_name>\<open>Ball\<close>, @{thms bspec})] @ mksimps_pairs; |
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
376 |
end; |
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
377 |
|
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
378 |
open Simpdata; |
60758 | 379 |
\<close> |
380 |
||
63316 | 381 |
declaration \<open>fn _ => Simplifier.map_ss (Simplifier.set_mksimps (mksimps mksimps_pairs))\<close> |
382 |
||
383 |
lemma ballE [elim]: "\<forall>x\<in>A. P x \<Longrightarrow> (P x \<Longrightarrow> Q) \<Longrightarrow> (x \<notin> A \<Longrightarrow> Q) \<Longrightarrow> Q" |
|
384 |
unfolding Ball_def by blast |
|
385 |
||
386 |
lemma bexI [intro]: "P x \<Longrightarrow> x \<in> A \<Longrightarrow> \<exists>x\<in>A. P x" |
|
387 |
\<comment> \<open>Normally the best argument order: \<open>P x\<close> constrains the choice of \<open>x \<in> A\<close>.\<close> |
|
388 |
unfolding Bex_def by blast |
|
389 |
||
390 |
lemma rev_bexI [intro?]: "x \<in> A \<Longrightarrow> P x \<Longrightarrow> \<exists>x\<in>A. P x" |
|
391 |
\<comment> \<open>The best argument order when there is only one \<open>x \<in> A\<close>.\<close> |
|
392 |
unfolding Bex_def by blast |
|
393 |
||
394 |
lemma bexCI: "(\<forall>x\<in>A. \<not> P x \<Longrightarrow> P a) \<Longrightarrow> a \<in> A \<Longrightarrow> \<exists>x\<in>A. P x" |
|
395 |
unfolding Bex_def by blast |
|
396 |
||
397 |
lemma bexE [elim!]: "\<exists>x\<in>A. P x \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> P x \<Longrightarrow> Q) \<Longrightarrow> Q" |
|
398 |
unfolding Bex_def by blast |
|
399 |
||
400 |
lemma ball_triv [simp]: "(\<forall>x\<in>A. P) \<longleftrightarrow> ((\<exists>x. x \<in> A) \<longrightarrow> P)" |
|
72610 | 401 |
\<comment> \<open>trivial rewrite rule.\<close> |
11979 | 402 |
by (simp add: Ball_def) |
403 |
||
63316 | 404 |
lemma bex_triv [simp]: "(\<exists>x\<in>A. P) \<longleftrightarrow> ((\<exists>x. x \<in> A) \<and> P)" |
61799 | 405 |
\<comment> \<open>Dual form for existentials.\<close> |
11979 | 406 |
by (simp add: Bex_def) |
407 |
||
63316 | 408 |
lemma bex_triv_one_point1 [simp]: "(\<exists>x\<in>A. x = a) \<longleftrightarrow> a \<in> A" |
11979 | 409 |
by blast |
410 |
||
63316 | 411 |
lemma bex_triv_one_point2 [simp]: "(\<exists>x\<in>A. a = x) \<longleftrightarrow> a \<in> A" |
11979 | 412 |
by blast |
413 |
||
63316 | 414 |
lemma bex_one_point1 [simp]: "(\<exists>x\<in>A. x = a \<and> P x) \<longleftrightarrow> a \<in> A \<and> P a" |
11979 | 415 |
by blast |
416 |
||
63316 | 417 |
lemma bex_one_point2 [simp]: "(\<exists>x\<in>A. a = x \<and> P x) \<longleftrightarrow> a \<in> A \<and> P a" |
11979 | 418 |
by blast |
419 |
||
63316 | 420 |
lemma ball_one_point1 [simp]: "(\<forall>x\<in>A. x = a \<longrightarrow> P x) \<longleftrightarrow> (a \<in> A \<longrightarrow> P a)" |
11979 | 421 |
by blast |
422 |
||
63316 | 423 |
lemma ball_one_point2 [simp]: "(\<forall>x\<in>A. a = x \<longrightarrow> P x) \<longleftrightarrow> (a \<in> A \<longrightarrow> P a)" |
11979 | 424 |
by blast |
425 |
||
63316 | 426 |
lemma ball_conj_distrib: "(\<forall>x\<in>A. P x \<and> Q x) \<longleftrightarrow> (\<forall>x\<in>A. P x) \<and> (\<forall>x\<in>A. Q x)" |
43818 | 427 |
by blast |
428 |
||
63316 | 429 |
lemma bex_disj_distrib: "(\<exists>x\<in>A. P x \<or> Q x) \<longleftrightarrow> (\<exists>x\<in>A. P x) \<or> (\<exists>x\<in>A. Q x)" |
43818 | 430 |
by blast |
431 |
||
11979 | 432 |
|
60758 | 433 |
text \<open>Congruence rules\<close> |
11979 | 434 |
|
16636
1ed737a98198
Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents:
15950
diff
changeset
|
435 |
lemma ball_cong: |
69164 | 436 |
"\<lbrakk> A = B; \<And>x. x \<in> B \<Longrightarrow> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow> |
63316 | 437 |
(\<forall>x\<in>A. P x) \<longleftrightarrow> (\<forall>x\<in>B. Q x)" |
69164 | 438 |
by (simp add: Ball_def) |
439 |
||
69546
27dae626822b
prefer naming convention from datatype package for strong congruence rules
haftmann
parents:
69284
diff
changeset
|
440 |
lemma ball_cong_simp [cong]: |
69164 | 441 |
"\<lbrakk> A = B; \<And>x. x \<in> B =simp=> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow> |
63316 | 442 |
(\<forall>x\<in>A. P x) \<longleftrightarrow> (\<forall>x\<in>B. Q x)" |
69164 | 443 |
by (simp add: simp_implies_def Ball_def) |
16636
1ed737a98198
Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents:
15950
diff
changeset
|
444 |
|
1ed737a98198
Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents:
15950
diff
changeset
|
445 |
lemma bex_cong: |
69164 | 446 |
"\<lbrakk> A = B; \<And>x. x \<in> B \<Longrightarrow> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow> |
63316 | 447 |
(\<exists>x\<in>A. P x) \<longleftrightarrow> (\<exists>x\<in>B. Q x)" |
69164 | 448 |
by (simp add: Bex_def cong: conj_cong) |
449 |
||
69546
27dae626822b
prefer naming convention from datatype package for strong congruence rules
haftmann
parents:
69284
diff
changeset
|
450 |
lemma bex_cong_simp [cong]: |
69164 | 451 |
"\<lbrakk> A = B; \<And>x. x \<in> B =simp=> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow> |
63316 | 452 |
(\<exists>x\<in>A. P x) \<longleftrightarrow> (\<exists>x\<in>B. Q x)" |
69164 | 453 |
by (simp add: simp_implies_def Bex_def cong: conj_cong) |
16636
1ed737a98198
Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents:
15950
diff
changeset
|
454 |
|
59000 | 455 |
lemma bex1_def: "(\<exists>!x\<in>X. P x) \<longleftrightarrow> (\<exists>x\<in>X. P x) \<and> (\<forall>x\<in>X. \<forall>y\<in>X. P x \<longrightarrow> P y \<longrightarrow> x = y)" |
456 |
by auto |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
457 |
|
63316 | 458 |
|
60758 | 459 |
subsection \<open>Basic operations\<close> |
460 |
||
461 |
subsubsection \<open>Subsets\<close> |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
462 |
|
33022
c95102496490
Removal of the unused atpset concept, the atp attribute and some related code.
paulson
parents:
32888
diff
changeset
|
463 |
lemma subsetI [intro!]: "(\<And>x. x \<in> A \<Longrightarrow> x \<in> B) \<Longrightarrow> A \<subseteq> B" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
464 |
by (simp add: less_eq_set_def le_fun_def) |
30352 | 465 |
|
60758 | 466 |
text \<open> |
63316 | 467 |
\<^medskip> |
468 |
Map the type \<open>'a set \<Rightarrow> anything\<close> to just \<open>'a\<close>; for overloading constants |
|
469 |
whose first argument has type \<open>'a set\<close>. |
|
60758 | 470 |
\<close> |
11979 | 471 |
|
63316 | 472 |
lemma subsetD [elim, intro?]: "A \<subseteq> B \<Longrightarrow> c \<in> A \<Longrightarrow> c \<in> B" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
473 |
by (simp add: less_eq_set_def le_fun_def) |
61799 | 474 |
\<comment> \<open>Rule in Modus Ponens style.\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
475 |
|
69712 | 476 |
lemma rev_subsetD [intro?,no_atp]: "c \<in> A \<Longrightarrow> A \<subseteq> B \<Longrightarrow> c \<in> B" |
63588 | 477 |
\<comment> \<open>The same, with reversed premises for use with @{method erule} -- cf. @{thm rev_mp}.\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
478 |
by (rule subsetD) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
479 |
|
69712 | 480 |
lemma subsetCE [elim,no_atp]: "A \<subseteq> B \<Longrightarrow> (c \<notin> A \<Longrightarrow> P) \<Longrightarrow> (c \<in> B \<Longrightarrow> P) \<Longrightarrow> P" |
61799 | 481 |
\<comment> \<open>Classical elimination rule.\<close> |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
482 |
by (auto simp add: less_eq_set_def le_fun_def) |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
483 |
|
63400 | 484 |
lemma subset_eq: "A \<subseteq> B \<longleftrightarrow> (\<forall>x\<in>A. x \<in> B)" |
63316 | 485 |
by blast |
486 |
||
69712 | 487 |
lemma contra_subsetD [no_atp]: "A \<subseteq> B \<Longrightarrow> c \<notin> B \<Longrightarrow> c \<notin> A" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
488 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
489 |
|
45121 | 490 |
lemma subset_refl: "A \<subseteq> A" |
491 |
by (fact order_refl) (* already [iff] *) |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
492 |
|
63316 | 493 |
lemma subset_trans: "A \<subseteq> B \<Longrightarrow> B \<subseteq> C \<Longrightarrow> A \<subseteq> C" |
32081 | 494 |
by (fact order_trans) |
495 |
||
63316 | 496 |
lemma subset_not_subset_eq [code]: "A \<subset> B \<longleftrightarrow> A \<subseteq> B \<and> \<not> B \<subseteq> A" |
46146
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
haftmann
parents:
46137
diff
changeset
|
497 |
by (fact less_le_not_le) |
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
haftmann
parents:
46137
diff
changeset
|
498 |
|
63316 | 499 |
lemma eq_mem_trans: "a = b \<Longrightarrow> b \<in> A \<Longrightarrow> a \<in> A" |
33044 | 500 |
by simp |
501 |
||
32081 | 502 |
lemmas basic_trans_rules [trans] = |
69712 | 503 |
order_trans_rules rev_subsetD subsetD eq_mem_trans |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
504 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
505 |
|
60758 | 506 |
subsubsection \<open>Equality\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
507 |
|
63316 | 508 |
lemma subset_antisym [intro!]: "A \<subseteq> B \<Longrightarrow> B \<subseteq> A \<Longrightarrow> A = B" |
61799 | 509 |
\<comment> \<open>Anti-symmetry of the subset relation.\<close> |
39302
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents:
39213
diff
changeset
|
510 |
by (iprover intro: set_eqI subsetD) |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
511 |
|
63316 | 512 |
text \<open>\<^medskip> Equality rules from ZF set theory -- are they appropriate here?\<close> |
513 |
||
514 |
lemma equalityD1: "A = B \<Longrightarrow> A \<subseteq> B" |
|
34209 | 515 |
by simp |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
516 |
|
63316 | 517 |
lemma equalityD2: "A = B \<Longrightarrow> B \<subseteq> A" |
34209 | 518 |
by simp |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
519 |
|
60758 | 520 |
text \<open> |
63316 | 521 |
\<^medskip> |
522 |
Be careful when adding this to the claset as \<open>subset_empty\<close> is in the |
|
69593 | 523 |
simpset: \<^prop>\<open>A = {}\<close> goes to \<^prop>\<open>{} \<subseteq> A\<close> and \<^prop>\<open>A \<subseteq> {}\<close> |
524 |
and then back to \<^prop>\<open>A = {}\<close>! |
|
60758 | 525 |
\<close> |
30352 | 526 |
|
63316 | 527 |
lemma equalityE: "A = B \<Longrightarrow> (A \<subseteq> B \<Longrightarrow> B \<subseteq> A \<Longrightarrow> P) \<Longrightarrow> P" |
34209 | 528 |
by simp |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
529 |
|
63316 | 530 |
lemma equalityCE [elim]: "A = B \<Longrightarrow> (c \<in> A \<Longrightarrow> c \<in> B \<Longrightarrow> P) \<Longrightarrow> (c \<notin> A \<Longrightarrow> c \<notin> B \<Longrightarrow> P) \<Longrightarrow> P" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
531 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
532 |
|
63316 | 533 |
lemma eqset_imp_iff: "A = B \<Longrightarrow> x \<in> A \<longleftrightarrow> x \<in> B" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
534 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
535 |
|
63316 | 536 |
lemma eqelem_imp_iff: "x = y \<Longrightarrow> x \<in> A \<longleftrightarrow> y \<in> A" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
537 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
538 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
539 |
|
60758 | 540 |
subsubsection \<open>The empty set\<close> |
41082 | 541 |
|
63316 | 542 |
lemma empty_def: "{} = {x. False}" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
543 |
by (simp add: bot_set_def bot_fun_def) |
41082 | 544 |
|
63316 | 545 |
lemma empty_iff [simp]: "c \<in> {} \<longleftrightarrow> False" |
41082 | 546 |
by (simp add: empty_def) |
547 |
||
63316 | 548 |
lemma emptyE [elim!]: "a \<in> {} \<Longrightarrow> P" |
41082 | 549 |
by simp |
550 |
||
551 |
lemma empty_subsetI [iff]: "{} \<subseteq> A" |
|
69593 | 552 |
\<comment> \<open>One effect is to delete the ASSUMPTION \<^prop>\<open>{} \<subseteq> A\<close>\<close> |
41082 | 553 |
by blast |
554 |
||
63316 | 555 |
lemma equals0I: "(\<And>y. y \<in> A \<Longrightarrow> False) \<Longrightarrow> A = {}" |
41082 | 556 |
by blast |
557 |
||
63316 | 558 |
lemma equals0D: "A = {} \<Longrightarrow> a \<notin> A" |
559 |
\<comment> \<open>Use for reasoning about disjointness: \<open>A \<inter> B = {}\<close>\<close> |
|
41082 | 560 |
by blast |
561 |
||
63316 | 562 |
lemma ball_empty [simp]: "Ball {} P \<longleftrightarrow> True" |
41082 | 563 |
by (simp add: Ball_def) |
564 |
||
63316 | 565 |
lemma bex_empty [simp]: "Bex {} P \<longleftrightarrow> False" |
41082 | 566 |
by (simp add: Bex_def) |
567 |
||
568 |
||
60758 | 569 |
subsubsection \<open>The universal set -- UNIV\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
570 |
|
63316 | 571 |
abbreviation UNIV :: "'a set" |
572 |
where "UNIV \<equiv> top" |
|
573 |
||
574 |
lemma UNIV_def: "UNIV = {x. True}" |
|
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
575 |
by (simp add: top_set_def top_fun_def) |
32081 | 576 |
|
63316 | 577 |
lemma UNIV_I [simp]: "x \<in> UNIV" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
578 |
by (simp add: UNIV_def) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
579 |
|
61799 | 580 |
declare UNIV_I [intro] \<comment> \<open>unsafe makes it less likely to cause problems\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
581 |
|
63316 | 582 |
lemma UNIV_witness [intro?]: "\<exists>x. x \<in> UNIV" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
583 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
584 |
|
45121 | 585 |
lemma subset_UNIV: "A \<subseteq> UNIV" |
586 |
by (fact top_greatest) (* already simp *) |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
587 |
|
60758 | 588 |
text \<open> |
63316 | 589 |
\<^medskip> |
590 |
Eta-contracting these two rules (to remove \<open>P\<close>) causes them |
|
591 |
to be ignored because of their interaction with congruence rules. |
|
60758 | 592 |
\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
593 |
|
63316 | 594 |
lemma ball_UNIV [simp]: "Ball UNIV P \<longleftrightarrow> All P" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
595 |
by (simp add: Ball_def) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
596 |
|
63316 | 597 |
lemma bex_UNIV [simp]: "Bex UNIV P \<longleftrightarrow> Ex P" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
598 |
by (simp add: Bex_def) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
599 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
600 |
lemma UNIV_eq_I: "(\<And>x. x \<in> A) \<Longrightarrow> UNIV = A" |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
601 |
by auto |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
602 |
|
63316 | 603 |
lemma UNIV_not_empty [iff]: "UNIV \<noteq> {}" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
604 |
by (blast elim: equalityE) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
605 |
|
51334 | 606 |
lemma empty_not_UNIV[simp]: "{} \<noteq> UNIV" |
63316 | 607 |
by blast |
608 |
||
51334 | 609 |
|
60758 | 610 |
subsubsection \<open>The Powerset operator -- Pow\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
611 |
|
63316 | 612 |
definition Pow :: "'a set \<Rightarrow> 'a set set" |
613 |
where Pow_def: "Pow A = {B. B \<subseteq> A}" |
|
614 |
||
615 |
lemma Pow_iff [iff]: "A \<in> Pow B \<longleftrightarrow> A \<subseteq> B" |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
616 |
by (simp add: Pow_def) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
617 |
|
63316 | 618 |
lemma PowI: "A \<subseteq> B \<Longrightarrow> A \<in> Pow B" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
619 |
by (simp add: Pow_def) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
620 |
|
63316 | 621 |
lemma PowD: "A \<in> Pow B \<Longrightarrow> A \<subseteq> B" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
622 |
by (simp add: Pow_def) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
623 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
624 |
lemma Pow_bottom: "{} \<in> Pow B" |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
625 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
626 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
627 |
lemma Pow_top: "A \<in> Pow A" |
34209 | 628 |
by simp |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
629 |
|
40703
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39910
diff
changeset
|
630 |
lemma Pow_not_empty: "Pow A \<noteq> {}" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39910
diff
changeset
|
631 |
using Pow_top by blast |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
632 |
|
41076
a7fba340058c
primitive definitions of bot/top/inf/sup for bool and fun are named with canonical suffix `_def` rather than `_eq`;
haftmann
parents:
40872
diff
changeset
|
633 |
|
60758 | 634 |
subsubsection \<open>Set complement\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
635 |
|
63316 | 636 |
lemma Compl_iff [simp]: "c \<in> - A \<longleftrightarrow> c \<notin> A" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
637 |
by (simp add: fun_Compl_def uminus_set_def) |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
638 |
|
63316 | 639 |
lemma ComplI [intro!]: "(c \<in> A \<Longrightarrow> False) \<Longrightarrow> c \<in> - A" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
640 |
by (simp add: fun_Compl_def uminus_set_def) blast |
923 | 641 |
|
60758 | 642 |
text \<open> |
63316 | 643 |
\<^medskip> |
644 |
This form, with negated conclusion, works well with the Classical prover. |
|
645 |
Negated assumptions behave like formulae on the right side of the |
|
646 |
notional turnstile \dots |
|
647 |
\<close> |
|
648 |
||
649 |
lemma ComplD [dest!]: "c \<in> - A \<Longrightarrow> c \<notin> A" |
|
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
650 |
by simp |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
651 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
652 |
lemmas ComplE = ComplD [elim_format] |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
653 |
|
63316 | 654 |
lemma Compl_eq: "- A = {x. \<not> x \<in> A}" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
655 |
by blast |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
656 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
657 |
|
60758 | 658 |
subsubsection \<open>Binary intersection\<close> |
41082 | 659 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
660 |
abbreviation inter :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set" (infixl \<open>\<inter>\<close> 70) |
67398 | 661 |
where "(\<inter>) \<equiv> inf" |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
662 |
|
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
663 |
notation (ASCII) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
664 |
inter (infixl \<open>Int\<close> 70) |
41082 | 665 |
|
63316 | 666 |
lemma Int_def: "A \<inter> B = {x. x \<in> A \<and> x \<in> B}" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
667 |
by (simp add: inf_set_def inf_fun_def) |
41082 | 668 |
|
63316 | 669 |
lemma Int_iff [simp]: "c \<in> A \<inter> B \<longleftrightarrow> c \<in> A \<and> c \<in> B" |
670 |
unfolding Int_def by blast |
|
671 |
||
672 |
lemma IntI [intro!]: "c \<in> A \<Longrightarrow> c \<in> B \<Longrightarrow> c \<in> A \<inter> B" |
|
41082 | 673 |
by simp |
674 |
||
63316 | 675 |
lemma IntD1: "c \<in> A \<inter> B \<Longrightarrow> c \<in> A" |
41082 | 676 |
by simp |
677 |
||
63316 | 678 |
lemma IntD2: "c \<in> A \<inter> B \<Longrightarrow> c \<in> B" |
41082 | 679 |
by simp |
680 |
||
63316 | 681 |
lemma IntE [elim!]: "c \<in> A \<inter> B \<Longrightarrow> (c \<in> A \<Longrightarrow> c \<in> B \<Longrightarrow> P) \<Longrightarrow> P" |
41082 | 682 |
by simp |
683 |
||
684 |
||
60758 | 685 |
subsubsection \<open>Binary union\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
686 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
687 |
abbreviation union :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set" (infixl \<open>\<union>\<close> 65) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
688 |
where "union \<equiv> sup" |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
689 |
|
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61799
diff
changeset
|
690 |
notation (ASCII) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
691 |
union (infixl \<open>Un\<close> 65) |
32081 | 692 |
|
63316 | 693 |
lemma Un_def: "A \<union> B = {x. x \<in> A \<or> x \<in> B}" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
694 |
by (simp add: sup_set_def sup_fun_def) |
32081 | 695 |
|
63316 | 696 |
lemma Un_iff [simp]: "c \<in> A \<union> B \<longleftrightarrow> c \<in> A \<or> c \<in> B" |
697 |
unfolding Un_def by blast |
|
698 |
||
699 |
lemma UnI1 [elim?]: "c \<in> A \<Longrightarrow> c \<in> A \<union> B" |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
700 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
701 |
|
63316 | 702 |
lemma UnI2 [elim?]: "c \<in> B \<Longrightarrow> c \<in> A \<union> B" |
703 |
by simp |
|
704 |
||
63588 | 705 |
text \<open>\<^medskip> Classical introduction rule: no commitment to \<open>A\<close> vs. \<open>B\<close>.\<close> |
63316 | 706 |
lemma UnCI [intro!]: "(c \<notin> B \<Longrightarrow> c \<in> A) \<Longrightarrow> c \<in> A \<union> B" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
707 |
by auto |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
708 |
|
63316 | 709 |
lemma UnE [elim!]: "c \<in> A \<union> B \<Longrightarrow> (c \<in> A \<Longrightarrow> P) \<Longrightarrow> (c \<in> B \<Longrightarrow> P) \<Longrightarrow> P" |
710 |
unfolding Un_def by blast |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
711 |
|
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
712 |
lemma insert_def: "insert a B = {x. x = a} \<union> B" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
713 |
by (simp add: insert_compr Un_def) |
32081 | 714 |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
715 |
|
60758 | 716 |
subsubsection \<open>Set difference\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
717 |
|
63316 | 718 |
lemma Diff_iff [simp]: "c \<in> A - B \<longleftrightarrow> c \<in> A \<and> c \<notin> B" |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
719 |
by (simp add: minus_set_def fun_diff_def) |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
720 |
|
63316 | 721 |
lemma DiffI [intro!]: "c \<in> A \<Longrightarrow> c \<notin> B \<Longrightarrow> c \<in> A - B" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
722 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
723 |
|
63316 | 724 |
lemma DiffD1: "c \<in> A - B \<Longrightarrow> c \<in> A" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
725 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
726 |
|
63316 | 727 |
lemma DiffD2: "c \<in> A - B \<Longrightarrow> c \<in> B \<Longrightarrow> P" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
728 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
729 |
|
63316 | 730 |
lemma DiffE [elim!]: "c \<in> A - B \<Longrightarrow> (c \<in> A \<Longrightarrow> c \<notin> B \<Longrightarrow> P) \<Longrightarrow> P" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
731 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
732 |
|
63316 | 733 |
lemma set_diff_eq: "A - B = {x. x \<in> A \<and> x \<notin> B}" |
734 |
by blast |
|
735 |
||
736 |
lemma Compl_eq_Diff_UNIV: "- A = (UNIV - A)" |
|
737 |
by blast |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
738 |
|
78258
71366be2c647
The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents:
78230
diff
changeset
|
739 |
abbreviation sym_diff :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set" where |
71366be2c647
The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents:
78230
diff
changeset
|
740 |
"sym_diff A B \<equiv> ((A - B) \<union> (B-A))" |
71366be2c647
The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents:
78230
diff
changeset
|
741 |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
742 |
|
69593 | 743 |
subsubsection \<open>Augmenting a set -- \<^const>\<open>insert\<close>\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
744 |
|
63316 | 745 |
lemma insert_iff [simp]: "a \<in> insert b A \<longleftrightarrow> a = b \<or> a \<in> A" |
746 |
unfolding insert_def by blast |
|
747 |
||
748 |
lemma insertI1: "a \<in> insert a B" |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
749 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
750 |
|
63316 | 751 |
lemma insertI2: "a \<in> B \<Longrightarrow> a \<in> insert b B" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
752 |
by simp |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
753 |
|
63316 | 754 |
lemma insertE [elim!]: "a \<in> insert b A \<Longrightarrow> (a = b \<Longrightarrow> P) \<Longrightarrow> (a \<in> A \<Longrightarrow> P) \<Longrightarrow> P" |
755 |
unfolding insert_def by blast |
|
756 |
||
757 |
lemma insertCI [intro!]: "(a \<notin> B \<Longrightarrow> a = b) \<Longrightarrow> a \<in> insert b B" |
|
61799 | 758 |
\<comment> \<open>Classical introduction rule.\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
759 |
by auto |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
760 |
|
63316 | 761 |
lemma subset_insert_iff: "A \<subseteq> insert x B \<longleftrightarrow> (if x \<in> A then A - {x} \<subseteq> B else A \<subseteq> B)" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
762 |
by auto |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
763 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
764 |
lemma set_insert: |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
765 |
assumes "x \<in> A" |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
766 |
obtains B where "A = insert x B" and "x \<notin> B" |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
767 |
proof |
63316 | 768 |
show "A = insert x (A - {x})" using assms by blast |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
769 |
show "x \<notin> A - {x}" by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
770 |
qed |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
771 |
|
63316 | 772 |
lemma insert_ident: "x \<notin> A \<Longrightarrow> x \<notin> B \<Longrightarrow> insert x A = insert x B \<longleftrightarrow> A = B" |
773 |
by auto |
|
774 |
||
775 |
lemma insert_eq_iff: |
|
776 |
assumes "a \<notin> A" "b \<notin> B" |
|
777 |
shows "insert a A = insert b B \<longleftrightarrow> |
|
778 |
(if a = b then A = B else \<exists>C. A = insert b C \<and> b \<notin> C \<and> B = insert a C \<and> a \<notin> C)" |
|
779 |
(is "?L \<longleftrightarrow> ?R") |
|
44744 | 780 |
proof |
63316 | 781 |
show ?R if ?L |
782 |
proof (cases "a = b") |
|
783 |
case True |
|
784 |
with assms \<open>?L\<close> show ?R |
|
785 |
by (simp add: insert_ident) |
|
44744 | 786 |
next |
63316 | 787 |
case False |
44744 | 788 |
let ?C = "A - {b}" |
789 |
have "A = insert b ?C \<and> b \<notin> ?C \<and> B = insert a ?C \<and> a \<notin> ?C" |
|
63316 | 790 |
using assms \<open>?L\<close> \<open>a \<noteq> b\<close> by auto |
791 |
then show ?R using \<open>a \<noteq> b\<close> by auto |
|
44744 | 792 |
qed |
63316 | 793 |
show ?L if ?R |
794 |
using that by (auto split: if_splits) |
|
44744 | 795 |
qed |
796 |
||
78230 | 797 |
lemma insert_UNIV[simp]: "insert x UNIV = UNIV" |
63316 | 798 |
by auto |
799 |
||
60057 | 800 |
|
60758 | 801 |
subsubsection \<open>Singletons, using insert\<close> |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
802 |
|
63316 | 803 |
lemma singletonI [intro!]: "a \<in> {a}" |
804 |
\<comment> \<open>Redundant? But unlike \<open>insertCI\<close>, it proves the subgoal immediately!\<close> |
|
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
805 |
by (rule insertI1) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
806 |
|
63316 | 807 |
lemma singletonD [dest!]: "b \<in> {a} \<Longrightarrow> b = a" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
808 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
809 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
810 |
lemmas singletonE = singletonD [elim_format] |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
811 |
|
63316 | 812 |
lemma singleton_iff: "b \<in> {a} \<longleftrightarrow> b = a" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
813 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
814 |
|
63316 | 815 |
lemma singleton_inject [dest!]: "{a} = {b} \<Longrightarrow> a = b" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
816 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
817 |
|
63316 | 818 |
lemma singleton_insert_inj_eq [iff]: "{b} = insert a A \<longleftrightarrow> a = b \<and> A \<subseteq> {b}" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
819 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
820 |
|
63316 | 821 |
lemma singleton_insert_inj_eq' [iff]: "insert a A = {b} \<longleftrightarrow> a = b \<and> A \<subseteq> {b}" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
822 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
823 |
|
63316 | 824 |
lemma subset_singletonD: "A \<subseteq> {x} \<Longrightarrow> A = {} \<or> A = {x}" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
825 |
by fast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
826 |
|
62843
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62521
diff
changeset
|
827 |
lemma subset_singleton_iff: "X \<subseteq> {a} \<longleftrightarrow> X = {} \<or> X = {a}" |
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62521
diff
changeset
|
828 |
by blast |
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62521
diff
changeset
|
829 |
|
71827 | 830 |
lemma subset_singleton_iff_Uniq: "(\<exists>a. A \<subseteq> {a}) \<longleftrightarrow> (\<exists>\<^sub>\<le>\<^sub>1x. x \<in> A)" |
831 |
unfolding Uniq_def by blast |
|
832 |
||
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
833 |
lemma singleton_conv [simp]: "{x. x = a} = {a}" |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
834 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
835 |
|
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
836 |
lemma singleton_conv2 [simp]: "{x. a = x} = {a}" |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
837 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
838 |
|
63316 | 839 |
lemma Diff_single_insert: "A - {x} \<subseteq> B \<Longrightarrow> A \<subseteq> insert x B" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
62083
diff
changeset
|
840 |
by blast |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
62083
diff
changeset
|
841 |
|
63316 | 842 |
lemma subset_Diff_insert: "A \<subseteq> B - insert x C \<longleftrightarrow> A \<subseteq> B - C \<and> x \<notin> A" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
843 |
by blast |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
844 |
|
67091 | 845 |
lemma doubleton_eq_iff: "{a, b} = {c, d} \<longleftrightarrow> a = c \<and> b = d \<or> a = d \<and> b = c" |
30531
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
846 |
by (blast elim: equalityE) |
ab3d61baf66a
reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents:
30352
diff
changeset
|
847 |
|
63316 | 848 |
lemma Un_singleton_iff: "A \<union> B = {x} \<longleftrightarrow> A = {} \<and> B = {x} \<or> A = {x} \<and> B = {} \<or> A = {x} \<and> B = {x}" |
849 |
by auto |
|
850 |
||
851 |
lemma singleton_Un_iff: "{x} = A \<union> B \<longleftrightarrow> A = {} \<and> B = {x} \<or> A = {x} \<and> B = {} \<or> A = {x} \<and> B = {x}" |
|
852 |
by auto |
|
11979 | 853 |
|
56014 | 854 |
|
60758 | 855 |
subsubsection \<open>Image of a set under a function\<close> |
856 |
||
63316 | 857 |
text \<open>Frequently \<open>b\<close> does not have the syntactic form of \<open>f x\<close>.\<close> |
858 |
||
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
859 |
definition image :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'b set" (infixr \<open>`\<close> 90) |
63316 | 860 |
where "f ` A = {y. \<exists>x\<in>A. y = f x}" |
861 |
||
862 |
lemma image_eqI [simp, intro]: "b = f x \<Longrightarrow> x \<in> A \<Longrightarrow> b \<in> f ` A" |
|
863 |
unfolding image_def by blast |
|
864 |
||
865 |
lemma imageI: "x \<in> A \<Longrightarrow> f x \<in> f ` A" |
|
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
866 |
by (rule image_eqI) (rule refl) |
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
867 |
|
63316 | 868 |
lemma rev_image_eqI: "x \<in> A \<Longrightarrow> b = f x \<Longrightarrow> b \<in> f ` A" |
869 |
\<comment> \<open>This version's more effective when we already have the required \<open>x\<close>.\<close> |
|
56014 | 870 |
by (rule image_eqI) |
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
871 |
|
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
872 |
lemma imageE [elim!]: |
63316 | 873 |
assumes "b \<in> (\<lambda>x. f x) ` A" \<comment> \<open>The eta-expansion gives variable-name preservation.\<close> |
56014 | 874 |
obtains x where "b = f x" and "x \<in> A" |
63316 | 875 |
using assms unfolding image_def by blast |
876 |
||
877 |
lemma Compr_image_eq: "{x \<in> f ` A. P x} = f ` {x \<in> A. P (f x)}" |
|
51173 | 878 |
by auto |
879 |
||
63316 | 880 |
lemma image_Un: "f ` (A \<union> B) = f ` A \<union> f ` B" |
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
881 |
by blast |
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
882 |
|
63316 | 883 |
lemma image_iff: "z \<in> f ` A \<longleftrightarrow> (\<exists>x\<in>A. z = f x)" |
56014 | 884 |
by blast |
885 |
||
63316 | 886 |
lemma image_subsetI: "(\<And>x. x \<in> A \<Longrightarrow> f x \<in> B) \<Longrightarrow> f ` A \<subseteq> B" |
61799 | 887 |
\<comment> \<open>Replaces the three steps \<open>subsetI\<close>, \<open>imageE\<close>, |
888 |
\<open>hypsubst\<close>, but breaks too many existing proofs.\<close> |
|
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
889 |
by blast |
11979 | 890 |
|
63316 | 891 |
lemma image_subset_iff: "f ` A \<subseteq> B \<longleftrightarrow> (\<forall>x\<in>A. f x \<in> B)" |
61799 | 892 |
\<comment> \<open>This rewrite rule would confuse users if made default.\<close> |
56014 | 893 |
by blast |
894 |
||
895 |
lemma subset_imageE: |
|
896 |
assumes "B \<subseteq> f ` A" |
|
897 |
obtains C where "C \<subseteq> A" and "B = f ` C" |
|
898 |
proof - |
|
899 |
from assms have "B = f ` {a \<in> A. f a \<in> B}" by fast |
|
900 |
moreover have "{a \<in> A. f a \<in> B} \<subseteq> A" by blast |
|
901 |
ultimately show thesis by (blast intro: that) |
|
902 |
qed |
|
903 |
||
63316 | 904 |
lemma subset_image_iff: "B \<subseteq> f ` A \<longleftrightarrow> (\<exists>AA\<subseteq>A. B = f ` AA)" |
56014 | 905 |
by (blast elim: subset_imageE) |
906 |
||
63316 | 907 |
lemma image_ident [simp]: "(\<lambda>x. x) ` Y = Y" |
56014 | 908 |
by blast |
909 |
||
63316 | 910 |
lemma image_empty [simp]: "f ` {} = {}" |
56014 | 911 |
by blast |
912 |
||
63316 | 913 |
lemma image_insert [simp]: "f ` insert a B = insert (f a) (f ` B)" |
56014 | 914 |
by blast |
915 |
||
63316 | 916 |
lemma image_constant: "x \<in> A \<Longrightarrow> (\<lambda>x. c) ` A = {c}" |
56014 | 917 |
by auto |
918 |
||
63316 | 919 |
lemma image_constant_conv: "(\<lambda>x. c) ` A = (if A = {} then {} else {c})" |
56014 | 920 |
by auto |
921 |
||
63316 | 922 |
lemma image_image: "f ` (g ` A) = (\<lambda>x. f (g x)) ` A" |
56014 | 923 |
by blast |
924 |
||
63316 | 925 |
lemma insert_image [simp]: "x \<in> A \<Longrightarrow> insert (f x) (f ` A) = f ` A" |
56014 | 926 |
by blast |
927 |
||
63316 | 928 |
lemma image_is_empty [iff]: "f ` A = {} \<longleftrightarrow> A = {}" |
56014 | 929 |
by blast |
930 |
||
63316 | 931 |
lemma empty_is_image [iff]: "{} = f ` A \<longleftrightarrow> A = {}" |
56014 | 932 |
by blast |
933 |
||
63316 | 934 |
lemma image_Collect: "f ` {x. P x} = {f x | x. P x}" |
935 |
\<comment> \<open>NOT suitable as a default simp rule: the RHS isn't simpler than the LHS, |
|
56014 | 936 |
with its implicit quantifier and conjunction. Also image enjoys better |
60758 | 937 |
equational properties than does the RHS.\<close> |
56014 | 938 |
by blast |
939 |
||
940 |
lemma if_image_distrib [simp]: |
|
63316 | 941 |
"(\<lambda>x. if P x then f x else g x) ` S = f ` (S \<inter> {x. P x}) \<union> g ` (S \<inter> {x. \<not> P x})" |
56077 | 942 |
by auto |
56014 | 943 |
|
69768 | 944 |
lemma image_cong: |
945 |
"f ` M = g ` N" if "M = N" "\<And>x. x \<in> N \<Longrightarrow> f x = g x" |
|
946 |
using that by (simp add: image_def) |
|
947 |
||
948 |
lemma image_cong_simp [cong]: |
|
949 |
"f ` M = g ` N" if "M = N" "\<And>x. x \<in> N =simp=> f x = g x" |
|
950 |
using that image_cong [of M N f g] by (simp add: simp_implies_def) |
|
56014 | 951 |
|
63316 | 952 |
lemma image_Int_subset: "f ` (A \<inter> B) \<subseteq> f ` A \<inter> f ` B" |
56014 | 953 |
by blast |
954 |
||
63316 | 955 |
lemma image_diff_subset: "f ` A - f ` B \<subseteq> f ` (A - B)" |
56014 | 956 |
by blast |
957 |
||
63398 | 958 |
lemma Setcompr_eq_image: "{f x |x. x \<in> A} = f ` A" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59000
diff
changeset
|
959 |
by blast |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59000
diff
changeset
|
960 |
|
62083 | 961 |
lemma setcompr_eq_image: "{f x |x. P x} = f ` {x. P x}" |
962 |
by auto |
|
963 |
||
63316 | 964 |
lemma ball_imageD: "\<forall>x\<in>f ` A. P x \<Longrightarrow> \<forall>x\<in>A. P (f x)" |
965 |
by simp |
|
966 |
||
967 |
lemma bex_imageD: "\<exists>x\<in>f ` A. P x \<Longrightarrow> \<exists>x\<in>A. P (f x)" |
|
968 |
by auto |
|
969 |
||
67398 | 970 |
lemma image_add_0 [simp]: "(+) (0::'a::comm_monoid_add) ` S = S" |
63007
aa894a49f77d
new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents:
62843
diff
changeset
|
971 |
by auto |
aa894a49f77d
new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents:
62843
diff
changeset
|
972 |
|
77140
9a60c1759543
Lots more new material thanks to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents:
76259
diff
changeset
|
973 |
theorem Cantors_theorem: "\<nexists>f. f ` A = Pow A" |
76259 | 974 |
proof |
975 |
assume "\<exists>f. f ` A = Pow A" |
|
976 |
then obtain f where f: "f ` A = Pow A" .. |
|
977 |
let ?X = "{a \<in> A. a \<notin> f a}" |
|
978 |
have "?X \<in> Pow A" by blast |
|
979 |
then have "?X \<in> f ` A" by (simp only: f) |
|
980 |
then obtain x where "x \<in> A" and "f x = ?X" by blast |
|
981 |
then show False by blast |
|
982 |
qed |
|
56014 | 983 |
|
63316 | 984 |
text \<open>\<^medskip> Range of a function -- just an abbreviation for image!\<close> |
985 |
||
63588 | 986 |
abbreviation range :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b set" \<comment> \<open>of function\<close> |
63316 | 987 |
where "range f \<equiv> f ` UNIV" |
988 |
||
989 |
lemma range_eqI: "b = f x \<Longrightarrow> b \<in> range f" |
|
56014 | 990 |
by simp |
991 |
||
63316 | 992 |
lemma rangeI: "f x \<in> range f" |
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
993 |
by simp |
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
994 |
|
63316 | 995 |
lemma rangeE [elim?]: "b \<in> range (\<lambda>x. f x) \<Longrightarrow> (\<And>x. b = f x \<Longrightarrow> P) \<Longrightarrow> P" |
56014 | 996 |
by (rule imageE) |
997 |
||
74590
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
998 |
lemma range_subsetD: "range f \<subseteq> B \<Longrightarrow> f i \<in> B" |
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
999 |
by blast |
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
1000 |
|
63316 | 1001 |
lemma full_SetCompr_eq: "{u. \<exists>x. u = f x} = range f" |
56014 | 1002 |
by auto |
1003 |
||
63316 | 1004 |
lemma range_composition: "range (\<lambda>x. f (g x)) = f ` range g" |
56077 | 1005 |
by auto |
56014 | 1006 |
|
68780 | 1007 |
lemma range_constant [simp]: "range (\<lambda>_. x) = {x}" |
1008 |
by (simp add: image_constant) |
|
1009 |
||
63398 | 1010 |
lemma range_eq_singletonD: "range f = {a} \<Longrightarrow> f x = a" |
1011 |
by auto |
|
63365 | 1012 |
|
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
1013 |
|
61799 | 1014 |
subsubsection \<open>Some rules with \<open>if\<close>\<close> |
1015 |
||
63316 | 1016 |
text \<open>Elimination of \<open>{x. \<dots> \<and> x = t \<and> \<dots>}\<close>.\<close> |
1017 |
||
1018 |
lemma Collect_conv_if: "{x. x = a \<and> P x} = (if P a then {a} else {})" |
|
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
1019 |
by auto |
32081 | 1020 |
|
63316 | 1021 |
lemma Collect_conv_if2: "{x. a = x \<and> P x} = (if P a then {a} else {})" |
32117
0762b9ad83df
Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents:
32115
diff
changeset
|
1022 |
by auto |
32081 | 1023 |
|
60758 | 1024 |
text \<open> |
62390 | 1025 |
Rewrite rules for boolean case-splitting: faster than \<open>if_split [split]\<close>. |
60758 | 1026 |
\<close> |
32081 | 1027 |
|
63316 | 1028 |
lemma if_split_eq1: "(if Q then x else y) = b \<longleftrightarrow> (Q \<longrightarrow> x = b) \<and> (\<not> Q \<longrightarrow> y = b)" |
62390 | 1029 |
by (rule if_split) |
1030 |
||
63316 | 1031 |
lemma if_split_eq2: "a = (if Q then x else y) \<longleftrightarrow> (Q \<longrightarrow> a = x) \<and> (\<not> Q \<longrightarrow> a = y)" |
62390 | 1032 |
by (rule if_split) |
32081 | 1033 |
|
60758 | 1034 |
text \<open> |
63316 | 1035 |
Split ifs on either side of the membership relation. |
1036 |
Not for \<open>[simp]\<close> -- can cause goals to blow up! |
|
60758 | 1037 |
\<close> |
32081 | 1038 |
|
63316 | 1039 |
lemma if_split_mem1: "(if Q then x else y) \<in> b \<longleftrightarrow> (Q \<longrightarrow> x \<in> b) \<and> (\<not> Q \<longrightarrow> y \<in> b)" |
62390 | 1040 |
by (rule if_split) |
1041 |
||
63316 | 1042 |
lemma if_split_mem2: "(a \<in> (if Q then x else y)) \<longleftrightarrow> (Q \<longrightarrow> a \<in> x) \<and> (\<not> Q \<longrightarrow> a \<in> y)" |
1043 |
by (rule if_split [where P = "\<lambda>S. a \<in> S"]) |
|
62390 | 1044 |
|
1045 |
lemmas split_ifs = if_bool_eq_conj if_split_eq1 if_split_eq2 if_split_mem1 if_split_mem2 |
|
32081 | 1046 |
|
1047 |
(*Would like to add these, but the existing code only searches for the |
|
37677 | 1048 |
outer-level constant, which in this case is just Set.member; we instead need |
32081 | 1049 |
to use term-nets to associate patterns with rules. Also, if a rule fails to |
1050 |
apply, then the formula should be kept. |
|
34974
18b41bba42b5
new theory Algebras.thy for generic algebraic structures
haftmann
parents:
34209
diff
changeset
|
1051 |
[("uminus", Compl_iff RS iffD1), ("minus", [Diff_iff RS iffD1]), |
32081 | 1052 |
("Int", [IntD1,IntD2]), |
1053 |
("Collect", [CollectD]), ("Inter", [InterD]), ("INTER", [INT_D])] |
|
1054 |
*) |
|
1055 |
||
1056 |
||
60758 | 1057 |
subsection \<open>Further operations and lemmas\<close> |
1058 |
||
1059 |
subsubsection \<open>The ``proper subset'' relation\<close> |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1060 |
|
63316 | 1061 |
lemma psubsetI [intro!]: "A \<subseteq> B \<Longrightarrow> A \<noteq> B \<Longrightarrow> A \<subset> B" |
1062 |
unfolding less_le by blast |
|
1063 |
||
1064 |
lemma psubsetE [elim!]: "A \<subset> B \<Longrightarrow> (A \<subseteq> B \<Longrightarrow> \<not> B \<subseteq> A \<Longrightarrow> R) \<Longrightarrow> R" |
|
1065 |
unfolding less_le by blast |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1066 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1067 |
lemma psubset_insert_iff: |
63316 | 1068 |
"A \<subset> insert x B \<longleftrightarrow> (if x \<in> B then A \<subset> B else if x \<in> A then A - {x} \<subset> B else A \<subseteq> B)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1069 |
by (auto simp add: less_le subset_insert_iff) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1070 |
|
63316 | 1071 |
lemma psubset_eq: "A \<subset> B \<longleftrightarrow> A \<subseteq> B \<and> A \<noteq> B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1072 |
by (simp only: less_le) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1073 |
|
63316 | 1074 |
lemma psubset_imp_subset: "A \<subset> B \<Longrightarrow> A \<subseteq> B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1075 |
by (simp add: psubset_eq) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1076 |
|
63316 | 1077 |
lemma psubset_trans: "A \<subset> B \<Longrightarrow> B \<subset> C \<Longrightarrow> A \<subset> C" |
1078 |
unfolding less_le by (auto dest: subset_antisym) |
|
1079 |
||
1080 |
lemma psubsetD: "A \<subset> B \<Longrightarrow> c \<in> A \<Longrightarrow> c \<in> B" |
|
1081 |
unfolding less_le by (auto dest: subsetD) |
|
1082 |
||
1083 |
lemma psubset_subset_trans: "A \<subset> B \<Longrightarrow> B \<subseteq> C \<Longrightarrow> A \<subset> C" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1084 |
by (auto simp add: psubset_eq) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1085 |
|
63316 | 1086 |
lemma subset_psubset_trans: "A \<subseteq> B \<Longrightarrow> B \<subset> C \<Longrightarrow> A \<subset> C" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1087 |
by (auto simp add: psubset_eq) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1088 |
|
63316 | 1089 |
lemma psubset_imp_ex_mem: "A \<subset> B \<Longrightarrow> \<exists>b. b \<in> B - A" |
1090 |
unfolding less_le by blast |
|
1091 |
||
1092 |
lemma atomize_ball: "(\<And>x. x \<in> A \<Longrightarrow> P x) \<equiv> Trueprop (\<forall>x\<in>A. P x)" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1093 |
by (simp only: Ball_def atomize_all atomize_imp) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1094 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1095 |
lemmas [symmetric, rulify] = atomize_ball |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1096 |
and [symmetric, defn] = atomize_ball |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1097 |
|
63316 | 1098 |
lemma image_Pow_mono: "f ` A \<subseteq> B \<Longrightarrow> image f ` Pow A \<subseteq> Pow B" |
1099 |
by blast |
|
1100 |
||
1101 |
lemma image_Pow_surj: "f ` A = B \<Longrightarrow> image f ` Pow A = Pow B" |
|
1102 |
by (blast elim: subset_imageE) |
|
56014 | 1103 |
|
40703
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39910
diff
changeset
|
1104 |
|
60758 | 1105 |
subsubsection \<open>Derived rules involving subsets.\<close> |
1106 |
||
61799 | 1107 |
text \<open>\<open>insert\<close>.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1108 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1109 |
lemma subset_insertI: "B \<subseteq> insert a B" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1110 |
by (rule subsetI) (erule insertI2) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1111 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1112 |
lemma subset_insertI2: "A \<subseteq> B \<Longrightarrow> A \<subseteq> insert b B" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1113 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1114 |
|
63316 | 1115 |
lemma subset_insert: "x \<notin> A \<Longrightarrow> A \<subseteq> insert x B \<longleftrightarrow> A \<subseteq> B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1116 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1117 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1118 |
|
63316 | 1119 |
text \<open>\<^medskip> Finite Union -- the least upper bound of two sets.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1120 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1121 |
lemma Un_upper1: "A \<subseteq> A \<union> B" |
36009 | 1122 |
by (fact sup_ge1) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1123 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1124 |
lemma Un_upper2: "B \<subseteq> A \<union> B" |
36009 | 1125 |
by (fact sup_ge2) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1126 |
|
63316 | 1127 |
lemma Un_least: "A \<subseteq> C \<Longrightarrow> B \<subseteq> C \<Longrightarrow> A \<union> B \<subseteq> C" |
36009 | 1128 |
by (fact sup_least) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1129 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1130 |
|
63316 | 1131 |
text \<open>\<^medskip> Finite Intersection -- the greatest lower bound of two sets.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1132 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1133 |
lemma Int_lower1: "A \<inter> B \<subseteq> A" |
36009 | 1134 |
by (fact inf_le1) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1135 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1136 |
lemma Int_lower2: "A \<inter> B \<subseteq> B" |
36009 | 1137 |
by (fact inf_le2) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1138 |
|
63316 | 1139 |
lemma Int_greatest: "C \<subseteq> A \<Longrightarrow> C \<subseteq> B \<Longrightarrow> C \<subseteq> A \<inter> B" |
36009 | 1140 |
by (fact inf_greatest) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1141 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1142 |
|
63316 | 1143 |
text \<open>\<^medskip> Set difference.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1144 |
|
69284 | 1145 |
lemma Diff_subset[simp]: "A - B \<subseteq> A" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1146 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1147 |
|
63316 | 1148 |
lemma Diff_subset_conv: "A - B \<subseteq> C \<longleftrightarrow> A \<subseteq> B \<union> C" |
1149 |
by blast |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1150 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1151 |
|
60758 | 1152 |
subsubsection \<open>Equalities involving union, intersection, inclusion, etc.\<close> |
1153 |
||
61799 | 1154 |
text \<open>\<open>{}\<close>.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1155 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1156 |
lemma Collect_const [simp]: "{s. P} = (if P then UNIV else {})" |
61799 | 1157 |
\<comment> \<open>supersedes \<open>Collect_False_empty\<close>\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1158 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1159 |
|
63316 | 1160 |
lemma subset_empty [simp]: "A \<subseteq> {} \<longleftrightarrow> A = {}" |
45121 | 1161 |
by (fact bot_unique) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1162 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1163 |
lemma not_psubset_empty [iff]: "\<not> (A < {})" |
45121 | 1164 |
by (fact not_less_bot) (* FIXME: already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1165 |
|
69144
f13b82281715
new theory Abstract_Topology with lots of stuff from HOL Light's metric.sml
paulson <lp15@cam.ac.uk>
parents:
68780
diff
changeset
|
1166 |
lemma Collect_subset [simp]: "{x\<in>A. P x} \<subseteq> A" by auto |
f13b82281715
new theory Abstract_Topology with lots of stuff from HOL Light's metric.sml
paulson <lp15@cam.ac.uk>
parents:
68780
diff
changeset
|
1167 |
|
63316 | 1168 |
lemma Collect_empty_eq [simp]: "Collect P = {} \<longleftrightarrow> (\<forall>x. \<not> P x)" |
1169 |
by blast |
|
1170 |
||
1171 |
lemma empty_Collect_eq [simp]: "{} = Collect P \<longleftrightarrow> (\<forall>x. \<not> P x)" |
|
1172 |
by blast |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1173 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1174 |
lemma Collect_neg_eq: "{x. \<not> P x} = - {x. P x}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1175 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1176 |
|
63316 | 1177 |
lemma Collect_disj_eq: "{x. P x \<or> Q x} = {x. P x} \<union> {x. Q x}" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1178 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1179 |
|
63316 | 1180 |
lemma Collect_imp_eq: "{x. P x \<longrightarrow> Q x} = - {x. P x} \<union> {x. Q x}" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1181 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1182 |
|
63316 | 1183 |
lemma Collect_conj_eq: "{x. P x \<and> Q x} = {x. P x} \<inter> {x. Q x}" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1184 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1185 |
|
59506
4af607652318
Not a simprule, as it complicates proofs
paulson <lp15@cam.ac.uk>
parents:
59504
diff
changeset
|
1186 |
lemma Collect_mono_iff: "Collect P \<subseteq> Collect Q \<longleftrightarrow> (\<forall>x. P x \<longrightarrow> Q x)" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59000
diff
changeset
|
1187 |
by blast |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59000
diff
changeset
|
1188 |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1189 |
|
63316 | 1190 |
text \<open>\<^medskip> \<open>insert\<close>.\<close> |
1191 |
||
1192 |
lemma insert_is_Un: "insert a A = {a} \<union> A" |
|
1193 |
\<comment> \<open>NOT SUITABLE FOR REWRITING since \<open>{a} \<equiv> insert a {}\<close>\<close> |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1194 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1195 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1196 |
lemma insert_not_empty [simp]: "insert a A \<noteq> {}" |
63316 | 1197 |
and empty_not_insert [simp]: "{} \<noteq> insert a A" |
1198 |
by blast+ |
|
1199 |
||
1200 |
lemma insert_absorb: "a \<in> A \<Longrightarrow> insert a A = A" |
|
61799 | 1201 |
\<comment> \<open>\<open>[simp]\<close> causes recursive calls when there are nested inserts\<close> |
63316 | 1202 |
\<comment> \<open>with \<^emph>\<open>quadratic\<close> running time\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1203 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1204 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1205 |
lemma insert_absorb2 [simp]: "insert x (insert x A) = insert x A" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1206 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1207 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1208 |
lemma insert_commute: "insert x (insert y A) = insert y (insert x A)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1209 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1210 |
|
63316 | 1211 |
lemma insert_subset [simp]: "insert x A \<subseteq> B \<longleftrightarrow> x \<in> B \<and> A \<subseteq> B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1212 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1213 |
|
63316 | 1214 |
lemma mk_disjoint_insert: "a \<in> A \<Longrightarrow> \<exists>B. A = insert a B \<and> a \<notin> B" |
61799 | 1215 |
\<comment> \<open>use new \<open>B\<close> rather than \<open>A - {a}\<close> to avoid infinite unfolding\<close> |
63316 | 1216 |
by (rule exI [where x = "A - {a}"]) blast |
1217 |
||
1218 |
lemma insert_Collect: "insert a (Collect P) = {u. u \<noteq> a \<longrightarrow> P u}" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1219 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1220 |
|
63316 | 1221 |
lemma insert_inter_insert [simp]: "insert a A \<inter> insert a B = insert a (A \<inter> B)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1222 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1223 |
|
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53364
diff
changeset
|
1224 |
lemma insert_disjoint [simp]: |
63316 | 1225 |
"insert a A \<inter> B = {} \<longleftrightarrow> a \<notin> B \<and> A \<inter> B = {}" |
1226 |
"{} = insert a A \<inter> B \<longleftrightarrow> a \<notin> B \<and> {} = A \<inter> B" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1227 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1228 |
|
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53364
diff
changeset
|
1229 |
lemma disjoint_insert [simp]: |
63316 | 1230 |
"B \<inter> insert a A = {} \<longleftrightarrow> a \<notin> B \<and> B \<inter> A = {}" |
1231 |
"{} = A \<inter> insert b B \<longleftrightarrow> b \<notin> A \<and> {} = A \<inter> B" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1232 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1233 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1234 |
|
63316 | 1235 |
text \<open>\<^medskip> \<open>Int\<close>\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1236 |
|
45121 | 1237 |
lemma Int_absorb: "A \<inter> A = A" |
1238 |
by (fact inf_idem) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1239 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1240 |
lemma Int_left_absorb: "A \<inter> (A \<inter> B) = A \<inter> B" |
36009 | 1241 |
by (fact inf_left_idem) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1242 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1243 |
lemma Int_commute: "A \<inter> B = B \<inter> A" |
36009 | 1244 |
by (fact inf_commute) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1245 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1246 |
lemma Int_left_commute: "A \<inter> (B \<inter> C) = B \<inter> (A \<inter> C)" |
36009 | 1247 |
by (fact inf_left_commute) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1248 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1249 |
lemma Int_assoc: "(A \<inter> B) \<inter> C = A \<inter> (B \<inter> C)" |
36009 | 1250 |
by (fact inf_assoc) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1251 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1252 |
lemmas Int_ac = Int_assoc Int_left_absorb Int_commute Int_left_commute |
61799 | 1253 |
\<comment> \<open>Intersection is an AC-operator\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1254 |
|
63316 | 1255 |
lemma Int_absorb1: "B \<subseteq> A \<Longrightarrow> A \<inter> B = B" |
36009 | 1256 |
by (fact inf_absorb2) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1257 |
|
63316 | 1258 |
lemma Int_absorb2: "A \<subseteq> B \<Longrightarrow> A \<inter> B = A" |
36009 | 1259 |
by (fact inf_absorb1) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1260 |
|
45121 | 1261 |
lemma Int_empty_left: "{} \<inter> B = {}" |
1262 |
by (fact inf_bot_left) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1263 |
|
45121 | 1264 |
lemma Int_empty_right: "A \<inter> {} = {}" |
1265 |
by (fact inf_bot_right) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1266 |
|
63316 | 1267 |
lemma disjoint_eq_subset_Compl: "A \<inter> B = {} \<longleftrightarrow> A \<subseteq> - B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1268 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1269 |
|
71848
3c7852327787
A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
1270 |
lemma disjoint_iff: "A \<inter> B = {} \<longleftrightarrow> (\<forall>x. x\<in>A \<longrightarrow> x \<notin> B)" |
3c7852327787
A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
1271 |
by blast |
3c7852327787
A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
1272 |
|
63316 | 1273 |
lemma disjoint_iff_not_equal: "A \<inter> B = {} \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>B. x \<noteq> y)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1274 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1275 |
|
45121 | 1276 |
lemma Int_UNIV_left: "UNIV \<inter> B = B" |
1277 |
by (fact inf_top_left) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1278 |
|
45121 | 1279 |
lemma Int_UNIV_right: "A \<inter> UNIV = A" |
1280 |
by (fact inf_top_right) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1281 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1282 |
lemma Int_Un_distrib: "A \<inter> (B \<union> C) = (A \<inter> B) \<union> (A \<inter> C)" |
36009 | 1283 |
by (fact inf_sup_distrib1) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1284 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1285 |
lemma Int_Un_distrib2: "(B \<union> C) \<inter> A = (B \<inter> A) \<union> (C \<inter> A)" |
36009 | 1286 |
by (fact inf_sup_distrib2) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1287 |
|
79099 | 1288 |
lemma Int_UNIV: "A \<inter> B = UNIV \<longleftrightarrow> A = UNIV \<and> B = UNIV" |
45121 | 1289 |
by (fact inf_eq_top_iff) (* already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1290 |
|
79099 | 1291 |
lemma Int_subset_iff: "C \<subseteq> A \<inter> B \<longleftrightarrow> C \<subseteq> A \<and> C \<subseteq> B" |
1292 |
by (fact le_inf_iff) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1293 |
|
63316 | 1294 |
lemma Int_Collect: "x \<in> A \<inter> {x. P x} \<longleftrightarrow> x \<in> A \<and> P x" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1295 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1296 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1297 |
|
63316 | 1298 |
text \<open>\<^medskip> \<open>Un\<close>.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1299 |
|
45121 | 1300 |
lemma Un_absorb: "A \<union> A = A" |
1301 |
by (fact sup_idem) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1302 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1303 |
lemma Un_left_absorb: "A \<union> (A \<union> B) = A \<union> B" |
36009 | 1304 |
by (fact sup_left_idem) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1305 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1306 |
lemma Un_commute: "A \<union> B = B \<union> A" |
36009 | 1307 |
by (fact sup_commute) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1308 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1309 |
lemma Un_left_commute: "A \<union> (B \<union> C) = B \<union> (A \<union> C)" |
36009 | 1310 |
by (fact sup_left_commute) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1311 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1312 |
lemma Un_assoc: "(A \<union> B) \<union> C = A \<union> (B \<union> C)" |
36009 | 1313 |
by (fact sup_assoc) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1314 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1315 |
lemmas Un_ac = Un_assoc Un_left_absorb Un_commute Un_left_commute |
61799 | 1316 |
\<comment> \<open>Union is an AC-operator\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1317 |
|
63316 | 1318 |
lemma Un_absorb1: "A \<subseteq> B \<Longrightarrow> A \<union> B = B" |
36009 | 1319 |
by (fact sup_absorb2) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1320 |
|
63316 | 1321 |
lemma Un_absorb2: "B \<subseteq> A \<Longrightarrow> A \<union> B = A" |
36009 | 1322 |
by (fact sup_absorb1) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1323 |
|
45121 | 1324 |
lemma Un_empty_left: "{} \<union> B = B" |
1325 |
by (fact sup_bot_left) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1326 |
|
45121 | 1327 |
lemma Un_empty_right: "A \<union> {} = A" |
1328 |
by (fact sup_bot_right) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1329 |
|
45121 | 1330 |
lemma Un_UNIV_left: "UNIV \<union> B = UNIV" |
1331 |
by (fact sup_top_left) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1332 |
|
45121 | 1333 |
lemma Un_UNIV_right: "A \<union> UNIV = UNIV" |
1334 |
by (fact sup_top_right) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1335 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1336 |
lemma Un_insert_left [simp]: "(insert a B) \<union> C = insert a (B \<union> C)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1337 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1338 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1339 |
lemma Un_insert_right [simp]: "A \<union> (insert a B) = insert a (A \<union> B)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1340 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1341 |
|
63316 | 1342 |
lemma Int_insert_left: "(insert a B) \<inter> C = (if a \<in> C then insert a (B \<inter> C) else B \<inter> C)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1343 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1344 |
|
63316 | 1345 |
lemma Int_insert_left_if0 [simp]: "a \<notin> C \<Longrightarrow> (insert a B) \<inter> C = B \<inter> C" |
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1346 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1347 |
|
63316 | 1348 |
lemma Int_insert_left_if1 [simp]: "a \<in> C \<Longrightarrow> (insert a B) \<inter> C = insert a (B \<inter> C)" |
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1349 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1350 |
|
63316 | 1351 |
lemma Int_insert_right: "A \<inter> (insert a B) = (if a \<in> A then insert a (A \<inter> B) else A \<inter> B)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1352 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1353 |
|
63316 | 1354 |
lemma Int_insert_right_if0 [simp]: "a \<notin> A \<Longrightarrow> A \<inter> (insert a B) = A \<inter> B" |
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1355 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1356 |
|
63316 | 1357 |
lemma Int_insert_right_if1 [simp]: "a \<in> A \<Longrightarrow> A \<inter> (insert a B) = insert a (A \<inter> B)" |
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1358 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32264
diff
changeset
|
1359 |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1360 |
lemma Un_Int_distrib: "A \<union> (B \<inter> C) = (A \<union> B) \<inter> (A \<union> C)" |
36009 | 1361 |
by (fact sup_inf_distrib1) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1362 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1363 |
lemma Un_Int_distrib2: "(B \<inter> C) \<union> A = (B \<union> A) \<inter> (C \<union> A)" |
36009 | 1364 |
by (fact sup_inf_distrib2) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1365 |
|
63316 | 1366 |
lemma Un_Int_crazy: "(A \<inter> B) \<union> (B \<inter> C) \<union> (C \<inter> A) = (A \<union> B) \<inter> (B \<union> C) \<inter> (C \<union> A)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1367 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1368 |
|
63316 | 1369 |
lemma subset_Un_eq: "A \<subseteq> B \<longleftrightarrow> A \<union> B = B" |
36009 | 1370 |
by (fact le_iff_sup) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1371 |
|
63316 | 1372 |
lemma Un_empty [iff]: "A \<union> B = {} \<longleftrightarrow> A = {} \<and> B = {}" |
45121 | 1373 |
by (fact sup_eq_bot_iff) (* FIXME: already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1374 |
|
79099 | 1375 |
lemma Un_subset_iff: "A \<union> B \<subseteq> C \<longleftrightarrow> A \<subseteq> C \<and> B \<subseteq> C" |
1376 |
by (fact le_sup_iff) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1377 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1378 |
lemma Un_Diff_Int: "(A - B) \<union> (A \<inter> B) = A" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1379 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1380 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1381 |
lemma Diff_Int2: "A \<inter> C - B \<inter> C = A \<inter> C - B" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1382 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1383 |
|
77140
9a60c1759543
Lots more new material thanks to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents:
76259
diff
changeset
|
1384 |
lemma subset_UnE: |
69939
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1385 |
assumes "C \<subseteq> A \<union> B" |
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1386 |
obtains A' B' where "A' \<subseteq> A" "B' \<subseteq> B" "C = A' \<union> B'" |
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1387 |
proof |
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1388 |
show "C \<inter> A \<subseteq> A" "C \<inter> B \<subseteq> B" "C = (C \<inter> A) \<union> (C \<inter> B)" |
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1389 |
using assms by blast+ |
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1390 |
qed |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1391 |
|
72567 | 1392 |
lemma Un_Int_eq [simp]: "(S \<union> T) \<inter> S = S" "(S \<union> T) \<inter> T = T" "S \<inter> (S \<union> T) = S" "T \<inter> (S \<union> T) = T" |
1393 |
by auto |
|
1394 |
||
1395 |
lemma Int_Un_eq [simp]: "(S \<inter> T) \<union> S = S" "(S \<inter> T) \<union> T = T" "S \<union> (S \<inter> T) = S" "T \<union> (S \<inter> T) = T" |
|
1396 |
by auto |
|
1397 |
||
63316 | 1398 |
text \<open>\<^medskip> Set complement\<close> |
1399 |
||
1400 |
lemma Compl_disjoint [simp]: "A \<inter> - A = {}" |
|
36009 | 1401 |
by (fact inf_compl_bot) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1402 |
|
63316 | 1403 |
lemma Compl_disjoint2 [simp]: "- A \<inter> A = {}" |
36009 | 1404 |
by (fact compl_inf_bot) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1405 |
|
63316 | 1406 |
lemma Compl_partition: "A \<union> - A = UNIV" |
36009 | 1407 |
by (fact sup_compl_top) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1408 |
|
63316 | 1409 |
lemma Compl_partition2: "- A \<union> A = UNIV" |
36009 | 1410 |
by (fact compl_sup_top) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1411 |
|
63316 | 1412 |
lemma double_complement: "- (-A) = A" for A :: "'a set" |
45121 | 1413 |
by (fact double_compl) (* already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1414 |
|
63316 | 1415 |
lemma Compl_Un: "- (A \<union> B) = (- A) \<inter> (- B)" |
45121 | 1416 |
by (fact compl_sup) (* already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1417 |
|
63316 | 1418 |
lemma Compl_Int: "- (A \<inter> B) = (- A) \<union> (- B)" |
45121 | 1419 |
by (fact compl_inf) (* already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1420 |
|
63316 | 1421 |
lemma subset_Compl_self_eq: "A \<subseteq> - A \<longleftrightarrow> A = {}" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1422 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1423 |
|
63316 | 1424 |
lemma Un_Int_assoc_eq: "(A \<inter> B) \<union> C = A \<inter> (B \<union> C) \<longleftrightarrow> C \<subseteq> A" |
61799 | 1425 |
\<comment> \<open>Halmos, Naive Set Theory, page 16.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1426 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1427 |
|
63316 | 1428 |
lemma Compl_UNIV_eq: "- UNIV = {}" |
45121 | 1429 |
by (fact compl_top_eq) (* already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1430 |
|
63316 | 1431 |
lemma Compl_empty_eq: "- {} = UNIV" |
45121 | 1432 |
by (fact compl_bot_eq) (* already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1433 |
|
63316 | 1434 |
lemma Compl_subset_Compl_iff [iff]: "- A \<subseteq> - B \<longleftrightarrow> B \<subseteq> A" |
45121 | 1435 |
by (fact compl_le_compl_iff) (* FIXME: already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1436 |
|
63588 | 1437 |
lemma Compl_eq_Compl_iff [iff]: "- A = - B \<longleftrightarrow> A = B" |
1438 |
for A B :: "'a set" |
|
45121 | 1439 |
by (fact compl_eq_compl_iff) (* FIXME: already simp *) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1440 |
|
63316 | 1441 |
lemma Compl_insert: "- insert x A = (- A) - {x}" |
44490 | 1442 |
by blast |
1443 |
||
63316 | 1444 |
text \<open>\<^medskip> Bounded quantifiers. |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1445 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1446 |
The following are not added to the default simpset because |
63316 | 1447 |
(a) they duplicate the body and (b) there are no similar rules for \<open>Int\<close>. |
1448 |
\<close> |
|
1449 |
||
1450 |
lemma ball_Un: "(\<forall>x \<in> A \<union> B. P x) \<longleftrightarrow> (\<forall>x\<in>A. P x) \<and> (\<forall>x\<in>B. P x)" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1451 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1452 |
|
63316 | 1453 |
lemma bex_Un: "(\<exists>x \<in> A \<union> B. P x) \<longleftrightarrow> (\<exists>x\<in>A. P x) \<or> (\<exists>x\<in>B. P x)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1454 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1455 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1456 |
|
63316 | 1457 |
text \<open>\<^medskip> Set difference.\<close> |
1458 |
||
1459 |
lemma Diff_eq: "A - B = A \<inter> (- B)" |
|
79099 | 1460 |
by(rule boolean_algebra_class.diff_eq) |
1461 |
||
1462 |
lemma Diff_eq_empty_iff: "A - B = {} \<longleftrightarrow> A \<subseteq> B" |
|
1463 |
by(rule boolean_algebra_class.diff_shunt_var) (* already simp *) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1464 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1465 |
lemma Diff_cancel [simp]: "A - A = {}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1466 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1467 |
|
63588 | 1468 |
lemma Diff_idemp [simp]: "(A - B) - B = A - B" |
1469 |
for A B :: "'a set" |
|
63316 | 1470 |
by blast |
1471 |
||
1472 |
lemma Diff_triv: "A \<inter> B = {} \<Longrightarrow> A - B = A" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1473 |
by (blast elim: equalityE) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1474 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1475 |
lemma empty_Diff [simp]: "{} - A = {}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1476 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1477 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1478 |
lemma Diff_empty [simp]: "A - {} = A" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1479 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1480 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1481 |
lemma Diff_UNIV [simp]: "A - UNIV = {}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1482 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1483 |
|
63316 | 1484 |
lemma Diff_insert0 [simp]: "x \<notin> A \<Longrightarrow> A - insert x B = A - B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1485 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1486 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1487 |
lemma Diff_insert: "A - insert a B = A - B - {a}" |
63316 | 1488 |
\<comment> \<open>NOT SUITABLE FOR REWRITING since \<open>{a} \<equiv> insert a 0\<close>\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1489 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1490 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1491 |
lemma Diff_insert2: "A - insert a B = A - {a} - B" |
63316 | 1492 |
\<comment> \<open>NOT SUITABLE FOR REWRITING since \<open>{a} \<equiv> insert a 0\<close>\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1493 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1494 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1495 |
lemma insert_Diff_if: "insert x A - B = (if x \<in> B then A - B else insert x (A - B))" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1496 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1497 |
|
63316 | 1498 |
lemma insert_Diff1 [simp]: "x \<in> B \<Longrightarrow> insert x A - B = A - B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1499 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1500 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1501 |
lemma insert_Diff_single[simp]: "insert a (A - {a}) = insert a A" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1502 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1503 |
|
63316 | 1504 |
lemma insert_Diff: "a \<in> A \<Longrightarrow> insert a (A - {a}) = A" |
1505 |
by blast |
|
1506 |
||
1507 |
lemma Diff_insert_absorb: "x \<notin> A \<Longrightarrow> (insert x A) - {x} = A" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1508 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1509 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1510 |
lemma Diff_disjoint [simp]: "A \<inter> (B - A) = {}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1511 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1512 |
|
63316 | 1513 |
lemma Diff_partition: "A \<subseteq> B \<Longrightarrow> A \<union> (B - A) = B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1514 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1515 |
|
63316 | 1516 |
lemma double_diff: "A \<subseteq> B \<Longrightarrow> B \<subseteq> C \<Longrightarrow> B - (C - A) = A" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1517 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1518 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1519 |
lemma Un_Diff_cancel [simp]: "A \<union> (B - A) = A \<union> B" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1520 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1521 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1522 |
lemma Un_Diff_cancel2 [simp]: "(B - A) \<union> A = B \<union> A" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1523 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1524 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1525 |
lemma Diff_Un: "A - (B \<union> C) = (A - B) \<inter> (A - C)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1526 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1527 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1528 |
lemma Diff_Int: "A - (B \<inter> C) = (A - B) \<union> (A - C)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1529 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1530 |
|
61518
ff12606337e9
new lemmas about topology, etc., for Cauchy integral formula
paulson
parents:
61378
diff
changeset
|
1531 |
lemma Diff_Diff_Int: "A - (A - B) = A \<inter> B" |
ff12606337e9
new lemmas about topology, etc., for Cauchy integral formula
paulson
parents:
61378
diff
changeset
|
1532 |
by blast |
ff12606337e9
new lemmas about topology, etc., for Cauchy integral formula
paulson
parents:
61378
diff
changeset
|
1533 |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1534 |
lemma Un_Diff: "(A \<union> B) - C = (A - C) \<union> (B - C)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1535 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1536 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1537 |
lemma Int_Diff: "(A \<inter> B) - C = A \<inter> (B - C)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1538 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1539 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1540 |
lemma Diff_Int_distrib: "C \<inter> (A - B) = (C \<inter> A) - (C \<inter> B)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1541 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1542 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1543 |
lemma Diff_Int_distrib2: "(A - B) \<inter> C = (A \<inter> C) - (B \<inter> C)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1544 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1545 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1546 |
lemma Diff_Compl [simp]: "A - (- B) = A \<inter> B" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1547 |
by auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1548 |
|
63316 | 1549 |
lemma Compl_Diff_eq [simp]: "- (A - B) = - A \<union> B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1550 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1551 |
|
63316 | 1552 |
lemma subset_Compl_singleton [simp]: "A \<subseteq> - {b} \<longleftrightarrow> b \<notin> A" |
62843
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62521
diff
changeset
|
1553 |
by blast |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1554 |
|
69593 | 1555 |
text \<open>\<^medskip> Quantification over type \<^typ>\<open>bool\<close>.\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1556 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1557 |
lemma bool_induct: "P True \<Longrightarrow> P False \<Longrightarrow> P x" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1558 |
by (cases x) auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1559 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1560 |
lemma all_bool_eq: "(\<forall>b. P b) \<longleftrightarrow> P True \<and> P False" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1561 |
by (auto intro: bool_induct) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1562 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1563 |
lemma bool_contrapos: "P x \<Longrightarrow> \<not> P False \<Longrightarrow> P True" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1564 |
by (cases x) auto |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1565 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1566 |
lemma ex_bool_eq: "(\<exists>b. P b) \<longleftrightarrow> P True \<or> P False" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1567 |
by (auto intro: bool_contrapos) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1568 |
|
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53364
diff
changeset
|
1569 |
lemma UNIV_bool: "UNIV = {False, True}" |
43866
8a50dc70cbff
moving UNIV = ... equations to their proper theories
haftmann
parents:
43818
diff
changeset
|
1570 |
by (auto intro: bool_induct) |
8a50dc70cbff
moving UNIV = ... equations to their proper theories
haftmann
parents:
43818
diff
changeset
|
1571 |
|
63316 | 1572 |
text \<open>\<^medskip> \<open>Pow\<close>\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1573 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1574 |
lemma Pow_empty [simp]: "Pow {} = {{}}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1575 |
by (auto simp add: Pow_def) |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1576 |
|
60161 | 1577 |
lemma Pow_singleton_iff [simp]: "Pow X = {Y} \<longleftrightarrow> X = {} \<and> Y = {}" |
63588 | 1578 |
by blast (* somewhat slow *) |
60161 | 1579 |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1580 |
lemma Pow_insert: "Pow (insert a A) = Pow A \<union> (insert a ` Pow A)" |
55143
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
54998
diff
changeset
|
1581 |
by (blast intro: image_eqI [where ?x = "u - {a}" for u]) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1582 |
|
63316 | 1583 |
lemma Pow_Compl: "Pow (- A) = {- B | B. A \<in> Pow B}" |
55143
04448228381d
explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents:
54998
diff
changeset
|
1584 |
by (blast intro: exI [where ?x = "- u" for u]) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1585 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1586 |
lemma Pow_UNIV [simp]: "Pow UNIV = UNIV" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1587 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1588 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1589 |
lemma Un_Pow_subset: "Pow A \<union> Pow B \<subseteq> Pow (A \<union> B)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1590 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1591 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1592 |
lemma Pow_Int_eq [simp]: "Pow (A \<inter> B) = Pow A \<inter> Pow B" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1593 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1594 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1595 |
|
63316 | 1596 |
text \<open>\<^medskip> Miscellany.\<close> |
1597 |
||
74590
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
1598 |
lemma Int_Diff_disjoint: "A \<inter> B \<inter> (A - B) = {}" |
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
1599 |
by blast |
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
1600 |
|
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
1601 |
lemma Int_Diff_Un: "A \<inter> B \<union> (A - B) = A" |
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
1602 |
by blast |
00ffae972fc0
Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents:
74123
diff
changeset
|
1603 |
|
63316 | 1604 |
lemma set_eq_subset: "A = B \<longleftrightarrow> A \<subseteq> B \<and> B \<subseteq> A" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1605 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1606 |
|
63316 | 1607 |
lemma subset_iff: "A \<subseteq> B \<longleftrightarrow> (\<forall>t. t \<in> A \<longrightarrow> t \<in> B)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1608 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1609 |
|
63316 | 1610 |
lemma subset_iff_psubset_eq: "A \<subseteq> B \<longleftrightarrow> A \<subset> B \<or> A = B" |
1611 |
unfolding less_le by blast |
|
1612 |
||
1613 |
lemma all_not_in_conv [simp]: "(\<forall>x. x \<notin> A) \<longleftrightarrow> A = {}" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1614 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1615 |
|
63316 | 1616 |
lemma ex_in_conv: "(\<exists>x. x \<in> A) \<longleftrightarrow> A \<noteq> {}" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1617 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1618 |
|
43967 | 1619 |
lemma ball_simps [simp, no_atp]: |
1620 |
"\<And>A P Q. (\<forall>x\<in>A. P x \<or> Q) \<longleftrightarrow> ((\<forall>x\<in>A. P x) \<or> Q)" |
|
1621 |
"\<And>A P Q. (\<forall>x\<in>A. P \<or> Q x) \<longleftrightarrow> (P \<or> (\<forall>x\<in>A. Q x))" |
|
1622 |
"\<And>A P Q. (\<forall>x\<in>A. P \<longrightarrow> Q x) \<longleftrightarrow> (P \<longrightarrow> (\<forall>x\<in>A. Q x))" |
|
1623 |
"\<And>A P Q. (\<forall>x\<in>A. P x \<longrightarrow> Q) \<longleftrightarrow> ((\<exists>x\<in>A. P x) \<longrightarrow> Q)" |
|
1624 |
"\<And>P. (\<forall>x\<in>{}. P x) \<longleftrightarrow> True" |
|
1625 |
"\<And>P. (\<forall>x\<in>UNIV. P x) \<longleftrightarrow> (\<forall>x. P x)" |
|
1626 |
"\<And>a B P. (\<forall>x\<in>insert a B. P x) \<longleftrightarrow> (P a \<and> (\<forall>x\<in>B. P x))" |
|
1627 |
"\<And>P Q. (\<forall>x\<in>Collect Q. P x) \<longleftrightarrow> (\<forall>x. Q x \<longrightarrow> P x)" |
|
1628 |
"\<And>A P f. (\<forall>x\<in>f`A. P x) \<longleftrightarrow> (\<forall>x\<in>A. P (f x))" |
|
1629 |
"\<And>A P. (\<not> (\<forall>x\<in>A. P x)) \<longleftrightarrow> (\<exists>x\<in>A. \<not> P x)" |
|
1630 |
by auto |
|
1631 |
||
1632 |
lemma bex_simps [simp, no_atp]: |
|
1633 |
"\<And>A P Q. (\<exists>x\<in>A. P x \<and> Q) \<longleftrightarrow> ((\<exists>x\<in>A. P x) \<and> Q)" |
|
1634 |
"\<And>A P Q. (\<exists>x\<in>A. P \<and> Q x) \<longleftrightarrow> (P \<and> (\<exists>x\<in>A. Q x))" |
|
1635 |
"\<And>P. (\<exists>x\<in>{}. P x) \<longleftrightarrow> False" |
|
1636 |
"\<And>P. (\<exists>x\<in>UNIV. P x) \<longleftrightarrow> (\<exists>x. P x)" |
|
67091 | 1637 |
"\<And>a B P. (\<exists>x\<in>insert a B. P x) \<longleftrightarrow> (P a \<or> (\<exists>x\<in>B. P x))" |
43967 | 1638 |
"\<And>P Q. (\<exists>x\<in>Collect Q. P x) \<longleftrightarrow> (\<exists>x. Q x \<and> P x)" |
1639 |
"\<And>A P f. (\<exists>x\<in>f`A. P x) \<longleftrightarrow> (\<exists>x\<in>A. P (f x))" |
|
1640 |
"\<And>A P. (\<not>(\<exists>x\<in>A. P x)) \<longleftrightarrow> (\<forall>x\<in>A. \<not> P x)" |
|
1641 |
by auto |
|
1642 |
||
69939
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1643 |
lemma ex_image_cong_iff [simp, no_atp]: |
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1644 |
"(\<exists>x. x\<in>f`A) \<longleftrightarrow> A \<noteq> {}" "(\<exists>x. x\<in>f`A \<and> P x) \<longleftrightarrow> (\<exists>x\<in>A. P (f x))" |
812ce526da33
new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents:
69768
diff
changeset
|
1645 |
by auto |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1646 |
|
60758 | 1647 |
subsubsection \<open>Monotonicity of various operations\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1648 |
|
63316 | 1649 |
lemma image_mono: "A \<subseteq> B \<Longrightarrow> f ` A \<subseteq> f ` B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1650 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1651 |
|
63316 | 1652 |
lemma Pow_mono: "A \<subseteq> B \<Longrightarrow> Pow A \<subseteq> Pow B" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1653 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1654 |
|
63316 | 1655 |
lemma insert_mono: "C \<subseteq> D \<Longrightarrow> insert a C \<subseteq> insert a D" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1656 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1657 |
|
63316 | 1658 |
lemma Un_mono: "A \<subseteq> C \<Longrightarrow> B \<subseteq> D \<Longrightarrow> A \<union> B \<subseteq> C \<union> D" |
36009 | 1659 |
by (fact sup_mono) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1660 |
|
63316 | 1661 |
lemma Int_mono: "A \<subseteq> C \<Longrightarrow> B \<subseteq> D \<Longrightarrow> A \<inter> B \<subseteq> C \<inter> D" |
36009 | 1662 |
by (fact inf_mono) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1663 |
|
63316 | 1664 |
lemma Diff_mono: "A \<subseteq> C \<Longrightarrow> D \<subseteq> B \<Longrightarrow> A - B \<subseteq> C - D" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1665 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1666 |
|
63316 | 1667 |
lemma Compl_anti_mono: "A \<subseteq> B \<Longrightarrow> - B \<subseteq> - A" |
36009 | 1668 |
by (fact compl_mono) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1669 |
|
63316 | 1670 |
text \<open>\<^medskip> Monotonicity of implications.\<close> |
1671 |
||
1672 |
lemma in_mono: "A \<subseteq> B \<Longrightarrow> x \<in> A \<longrightarrow> x \<in> B" |
|
63588 | 1673 |
by (rule impI) (erule subsetD) |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1674 |
|
63316 | 1675 |
lemma conj_mono: "P1 \<longrightarrow> Q1 \<Longrightarrow> P2 \<longrightarrow> Q2 \<Longrightarrow> (P1 \<and> P2) \<longrightarrow> (Q1 \<and> Q2)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1676 |
by iprover |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1677 |
|
63316 | 1678 |
lemma disj_mono: "P1 \<longrightarrow> Q1 \<Longrightarrow> P2 \<longrightarrow> Q2 \<Longrightarrow> (P1 \<or> P2) \<longrightarrow> (Q1 \<or> Q2)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1679 |
by iprover |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1680 |
|
63316 | 1681 |
lemma imp_mono: "Q1 \<longrightarrow> P1 \<Longrightarrow> P2 \<longrightarrow> Q2 \<Longrightarrow> (P1 \<longrightarrow> P2) \<longrightarrow> (Q1 \<longrightarrow> Q2)" |
33935 | 1682 |
by iprover |
1683 |
||
63316 | 1684 |
lemma imp_refl: "P \<longrightarrow> P" .. |
1685 |
||
1686 |
lemma not_mono: "Q \<longrightarrow> P \<Longrightarrow> \<not> P \<longrightarrow> \<not> Q" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1687 |
by iprover |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1688 |
|
63316 | 1689 |
lemma ex_mono: "(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> (\<exists>x. P x) \<longrightarrow> (\<exists>x. Q x)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1690 |
by iprover |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1691 |
|
63316 | 1692 |
lemma all_mono: "(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> (\<forall>x. P x) \<longrightarrow> (\<forall>x. Q x)" |
1693 |
by iprover |
|
1694 |
||
1695 |
lemma Collect_mono: "(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> Collect P \<subseteq> Collect Q" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1696 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1697 |
|
63316 | 1698 |
lemma Int_Collect_mono: "A \<subseteq> B \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> P x \<longrightarrow> Q x) \<Longrightarrow> A \<inter> Collect P \<subseteq> B \<inter> Collect Q" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1699 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1700 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1701 |
lemmas basic_monos = |
63316 | 1702 |
subset_refl imp_refl disj_mono conj_mono ex_mono Collect_mono in_mono |
1703 |
||
1704 |
lemma eq_to_mono: "a = b \<Longrightarrow> c = d \<Longrightarrow> b \<longrightarrow> d \<Longrightarrow> a \<longrightarrow> c" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1705 |
by iprover |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1706 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1707 |
|
60758 | 1708 |
subsubsection \<open>Inverse image of a function\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1709 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80786
diff
changeset
|
1710 |
definition vimage :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b set \<Rightarrow> 'a set" (infixr \<open>-`\<close> 90) |
63316 | 1711 |
where "f -` B \<equiv> {x. f x \<in> B}" |
1712 |
||
1713 |
lemma vimage_eq [simp]: "a \<in> f -` B \<longleftrightarrow> f a \<in> B" |
|
1714 |
unfolding vimage_def by blast |
|
1715 |
||
1716 |
lemma vimage_singleton_eq: "a \<in> f -` {b} \<longleftrightarrow> f a = b" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1717 |
by simp |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1718 |
|
63316 | 1719 |
lemma vimageI [intro]: "f a = b \<Longrightarrow> b \<in> B \<Longrightarrow> a \<in> f -` B" |
1720 |
unfolding vimage_def by blast |
|
1721 |
||
1722 |
lemma vimageI2: "f a \<in> A \<Longrightarrow> a \<in> f -` A" |
|
1723 |
unfolding vimage_def by fast |
|
1724 |
||
1725 |
lemma vimageE [elim!]: "a \<in> f -` B \<Longrightarrow> (\<And>x. f a = x \<Longrightarrow> x \<in> B \<Longrightarrow> P) \<Longrightarrow> P" |
|
1726 |
unfolding vimage_def by blast |
|
1727 |
||
1728 |
lemma vimageD: "a \<in> f -` A \<Longrightarrow> f a \<in> A" |
|
1729 |
unfolding vimage_def by fast |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1730 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1731 |
lemma vimage_empty [simp]: "f -` {} = {}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1732 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1733 |
|
63316 | 1734 |
lemma vimage_Compl: "f -` (- A) = - (f -` A)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1735 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1736 |
|
63316 | 1737 |
lemma vimage_Un [simp]: "f -` (A \<union> B) = (f -` A) \<union> (f -` B)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1738 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1739 |
|
63316 | 1740 |
lemma vimage_Int [simp]: "f -` (A \<inter> B) = (f -` A) \<inter> (f -` B)" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1741 |
by fast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1742 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1743 |
lemma vimage_Collect_eq [simp]: "f -` Collect P = {y. P (f y)}" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1744 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1745 |
|
63316 | 1746 |
lemma vimage_Collect: "(\<And>x. P (f x) = Q x) \<Longrightarrow> f -` (Collect P) = Collect Q" |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1747 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1748 |
|
63316 | 1749 |
lemma vimage_insert: "f -` (insert a B) = (f -` {a}) \<union> (f -` B)" |
1750 |
\<comment> \<open>NOT suitable for rewriting because of the recurrence of \<open>{a}\<close>.\<close> |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1751 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1752 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1753 |
lemma vimage_Diff: "f -` (A - B) = (f -` A) - (f -` B)" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1754 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1755 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1756 |
lemma vimage_UNIV [simp]: "f -` UNIV = UNIV" |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1757 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1758 |
|
63316 | 1759 |
lemma vimage_mono: "A \<subseteq> B \<Longrightarrow> f -` A \<subseteq> f -` B" |
61799 | 1760 |
\<comment> \<open>monotonicity\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1761 |
by blast |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1762 |
|
63316 | 1763 |
lemma vimage_image_eq: "f -` (f ` A) = {y. \<exists>x\<in>A. f x = f y}" |
1764 |
by (blast intro: sym) |
|
1765 |
||
1766 |
lemma image_vimage_subset: "f ` (f -` A) \<subseteq> A" |
|
1767 |
by blast |
|
1768 |
||
1769 |
lemma image_vimage_eq [simp]: "f ` (f -` A) = A \<inter> range f" |
|
1770 |
by blast |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1771 |
|
55775 | 1772 |
lemma image_subset_iff_subset_vimage: "f ` A \<subseteq> B \<longleftrightarrow> A \<subseteq> f -` B" |
59506
4af607652318
Not a simprule, as it complicates proofs
paulson <lp15@cam.ac.uk>
parents:
59504
diff
changeset
|
1773 |
by blast |
55775 | 1774 |
|
73673 | 1775 |
lemma subset_vimage_iff: "A \<subseteq> f -` B \<longleftrightarrow> (\<forall>x\<in>A. f x \<in> B)" |
1776 |
by auto |
|
1777 |
||
33533
40b44cb20c8c
New theory Probability/Borel.thy, and some associated lemmas
paulson
parents:
33045
diff
changeset
|
1778 |
lemma vimage_const [simp]: "((\<lambda>x. c) -` A) = (if c \<in> A then UNIV else {})" |
40b44cb20c8c
New theory Probability/Borel.thy, and some associated lemmas
paulson
parents:
33045
diff
changeset
|
1779 |
by auto |
40b44cb20c8c
New theory Probability/Borel.thy, and some associated lemmas
paulson
parents:
33045
diff
changeset
|
1780 |
|
52143 | 1781 |
lemma vimage_if [simp]: "((\<lambda>x. if x \<in> B then c else d) -` A) = |
33533
40b44cb20c8c
New theory Probability/Borel.thy, and some associated lemmas
paulson
parents:
33045
diff
changeset
|
1782 |
(if c \<in> A then (if d \<in> A then UNIV else B) |
63316 | 1783 |
else if d \<in> A then - B else {})" |
52143 | 1784 |
by (auto simp add: vimage_def) |
33533
40b44cb20c8c
New theory Probability/Borel.thy, and some associated lemmas
paulson
parents:
33045
diff
changeset
|
1785 |
|
63316 | 1786 |
lemma vimage_inter_cong: "(\<And> w. w \<in> S \<Longrightarrow> f w = g w) \<Longrightarrow> f -` y \<inter> S = g -` y \<inter> S" |
35576 | 1787 |
by auto |
1788 |
||
63316 | 1789 |
lemma vimage_ident [simp]: "(\<lambda>x. x) -` Y = Y" |
43898 | 1790 |
by blast |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1791 |
|
63588 | 1792 |
|
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1793 |
subsubsection \<open>Singleton sets\<close> |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1794 |
|
63316 | 1795 |
definition is_singleton :: "'a set \<Rightarrow> bool" |
1796 |
where "is_singleton A \<longleftrightarrow> (\<exists>x. A = {x})" |
|
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1797 |
|
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1798 |
lemma is_singletonI [simp, intro!]: "is_singleton {x}" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1799 |
unfolding is_singleton_def by simp |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1800 |
|
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1801 |
lemma is_singletonI': "A \<noteq> {} \<Longrightarrow> (\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x = y) \<Longrightarrow> is_singleton A" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1802 |
unfolding is_singleton_def by blast |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1803 |
|
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1804 |
lemma is_singletonE: "is_singleton A \<Longrightarrow> (\<And>x. A = {x} \<Longrightarrow> P) \<Longrightarrow> P" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1805 |
unfolding is_singleton_def by blast |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1806 |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1807 |
|
63316 | 1808 |
subsubsection \<open>Getting the contents of a singleton set\<close> |
1809 |
||
1810 |
definition the_elem :: "'a set \<Rightarrow> 'a" |
|
1811 |
where "the_elem X = (THE x. X = {x})" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1812 |
|
39910 | 1813 |
lemma the_elem_eq [simp]: "the_elem {x} = x" |
1814 |
by (simp add: the_elem_def) |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1815 |
|
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1816 |
lemma is_singleton_the_elem: "is_singleton A \<longleftrightarrow> A = {the_elem A}" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1817 |
by (auto simp: is_singleton_def) |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1818 |
|
56740 | 1819 |
lemma the_elem_image_unique: |
1820 |
assumes "A \<noteq> {}" |
|
63316 | 1821 |
and *: "\<And>y. y \<in> A \<Longrightarrow> f y = f x" |
56740 | 1822 |
shows "the_elem (f ` A) = f x" |
63316 | 1823 |
unfolding the_elem_def |
1824 |
proof (rule the1_equality) |
|
60758 | 1825 |
from \<open>A \<noteq> {}\<close> obtain y where "y \<in> A" by auto |
56740 | 1826 |
with * have "f x = f y" by simp |
60758 | 1827 |
with \<open>y \<in> A\<close> have "f x \<in> f ` A" by blast |
56740 | 1828 |
with * show "f ` A = {f x}" by auto |
1829 |
then show "\<exists>!x. f ` A = {x}" by auto |
|
1830 |
qed |
|
1831 |
||
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1832 |
|
60758 | 1833 |
subsubsection \<open>Monad operation\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1834 |
|
63316 | 1835 |
definition bind :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" |
1836 |
where "bind A f = {x. \<exists>B \<in> f`A. x \<in> B}" |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1837 |
|
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
1838 |
hide_const (open) bind |
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
1839 |
|
63588 | 1840 |
lemma bind_bind: "Set.bind (Set.bind A B) C = Set.bind A (\<lambda>x. Set.bind (B x) C)" |
1841 |
for A :: "'a set" |
|
1842 |
by (auto simp: bind_def) |
|
46036 | 1843 |
|
63316 | 1844 |
lemma empty_bind [simp]: "Set.bind {} f = {}" |
46036 | 1845 |
by (simp add: bind_def) |
1846 |
||
63316 | 1847 |
lemma nonempty_bind_const: "A \<noteq> {} \<Longrightarrow> Set.bind A (\<lambda>_. B) = B" |
63588 | 1848 |
by (auto simp: bind_def) |
46036 | 1849 |
|
1850 |
lemma bind_const: "Set.bind A (\<lambda>_. B) = (if A = {} then {} else B)" |
|
63588 | 1851 |
by (auto simp: bind_def) |
46036 | 1852 |
|
60057 | 1853 |
lemma bind_singleton_conv_image: "Set.bind A (\<lambda>x. {f x}) = f ` A" |
63588 | 1854 |
by (auto simp: bind_def) |
45959
184d36538e51
`set` is now a proper type constructor; added operation for set monad
haftmann
parents:
45909
diff
changeset
|
1855 |
|
63316 | 1856 |
|
60758 | 1857 |
subsubsection \<open>Operations for execution\<close> |
45986
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1858 |
|
63316 | 1859 |
definition is_empty :: "'a set \<Rightarrow> bool" |
1860 |
where [code_abbrev]: "is_empty A \<longleftrightarrow> A = {}" |
|
45986
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1861 |
|
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1862 |
hide_const (open) is_empty |
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1863 |
|
63316 | 1864 |
definition remove :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a set" |
1865 |
where [code_abbrev]: "remove x A = A - {x}" |
|
45986
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1866 |
|
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1867 |
hide_const (open) remove |
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1868 |
|
63316 | 1869 |
lemma member_remove [simp]: "x \<in> Set.remove y A \<longleftrightarrow> x \<in> A \<and> x \<noteq> y" |
46128
53e7cc599f58
interaction of set operations for execution and membership predicate
haftmann
parents:
46127
diff
changeset
|
1870 |
by (simp add: remove_def) |
53e7cc599f58
interaction of set operations for execution and membership predicate
haftmann
parents:
46127
diff
changeset
|
1871 |
|
63316 | 1872 |
definition filter :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'a set" |
1873 |
where [code_abbrev]: "filter P A = {a \<in> A. P a}" |
|
49757
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
49660
diff
changeset
|
1874 |
|
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
49660
diff
changeset
|
1875 |
hide_const (open) filter |
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
49660
diff
changeset
|
1876 |
|
63316 | 1877 |
lemma member_filter [simp]: "x \<in> Set.filter P A \<longleftrightarrow> x \<in> A \<and> P x" |
49757
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
49660
diff
changeset
|
1878 |
by (simp add: filter_def) |
46128
53e7cc599f58
interaction of set operations for execution and membership predicate
haftmann
parents:
46127
diff
changeset
|
1879 |
|
45986
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1880 |
instantiation set :: (equal) equal |
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1881 |
begin |
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1882 |
|
63316 | 1883 |
definition "HOL.equal A B \<longleftrightarrow> A \<subseteq> B \<and> B \<subseteq> A" |
1884 |
||
1885 |
instance by standard (auto simp add: equal_set_def) |
|
45986
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1886 |
|
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1887 |
end |
c9e50153e5ae
moved various set operations to theory Set (resp. Product_Type)
haftmann
parents:
45959
diff
changeset
|
1888 |
|
46127 | 1889 |
|
60758 | 1890 |
text \<open>Misc\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
1891 |
|
63588 | 1892 |
definition pairwise :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool" |
63959
f77dca1abf1b
HOL-Analysis: prove that a starlike set is negligible (based on HOL Light proof ported by L. C. Paulson)
hoelzl
parents:
63952
diff
changeset
|
1893 |
where "pairwise R S \<longleftrightarrow> (\<forall>x \<in> S. \<forall>y \<in> S. x \<noteq> y \<longrightarrow> R x y)" |
63316 | 1894 |
|
70614 | 1895 |
lemma pairwise_alt: "pairwise R S \<longleftrightarrow> (\<forall>x\<in>S. \<forall>y\<in>S-{x}. R x y)" |
1896 |
by (auto simp add: pairwise_def) |
|
1897 |
||
69700
7a92cbec7030
new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents:
69593
diff
changeset
|
1898 |
lemma pairwise_trivial [simp]: "pairwise (\<lambda>i j. j \<noteq> i) I" |
7a92cbec7030
new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents:
69593
diff
changeset
|
1899 |
by (auto simp: pairwise_def) |
7a92cbec7030
new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents:
69593
diff
changeset
|
1900 |
|
67673
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67613
diff
changeset
|
1901 |
lemma pairwiseI [intro?]: |
66802
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1902 |
"pairwise R S" if "\<And>x y. x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x \<noteq> y \<Longrightarrow> R x y" |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1903 |
using that by (simp add: pairwise_def) |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1904 |
|
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1905 |
lemma pairwiseD: |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1906 |
"R x y" and "R y x" |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1907 |
if "pairwise R S" "x \<in> S" and "y \<in> S" and "x \<noteq> y" |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1908 |
using that by (simp_all add: pairwise_def) |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1909 |
|
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1910 |
lemma pairwise_empty [simp]: "pairwise P {}" |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1911 |
by (simp add: pairwise_def) |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1912 |
|
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1913 |
lemma pairwise_singleton [simp]: "pairwise P {A}" |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1914 |
by (simp add: pairwise_def) |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1915 |
|
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1916 |
lemma pairwise_insert: |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1917 |
"pairwise r (insert x s) \<longleftrightarrow> (\<forall>y. y \<in> s \<and> y \<noteq> x \<longrightarrow> r x y \<and> r y x) \<and> pairwise r s" |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1918 |
by (force simp: pairwise_def) |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1919 |
|
63316 | 1920 |
lemma pairwise_subset: "pairwise P S \<Longrightarrow> T \<subseteq> S \<Longrightarrow> pairwise P T" |
63072 | 1921 |
by (force simp: pairwise_def) |
1922 |
||
67673
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67613
diff
changeset
|
1923 |
lemma pairwise_mono: "\<lbrakk>pairwise P A; \<And>x y. P x y \<Longrightarrow> Q x y; B \<subseteq> A\<rbrakk> \<Longrightarrow> pairwise Q B" |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67613
diff
changeset
|
1924 |
by (fastforce simp: pairwise_def) |
63938 | 1925 |
|
67051 | 1926 |
lemma pairwise_imageI: |
1927 |
"pairwise P (f ` A)" |
|
1928 |
if "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<noteq> y \<Longrightarrow> f x \<noteq> f y \<Longrightarrow> P (f x) (f y)" |
|
1929 |
using that by (auto intro: pairwiseI) |
|
1930 |
||
66802
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1931 |
lemma pairwise_image: "pairwise r (f ` s) \<longleftrightarrow> pairwise (\<lambda>x y. (f x \<noteq> f y) \<longrightarrow> r (f x) (f y)) s" |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1932 |
by (force simp: pairwise_def) |
627511c13164
canonical introduction and destruction rules for pairwise
haftmann
parents:
63959
diff
changeset
|
1933 |
|
63588 | 1934 |
definition disjnt :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" |
1935 |
where "disjnt A B \<longleftrightarrow> A \<inter> B = {}" |
|
63316 | 1936 |
|
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63938
diff
changeset
|
1937 |
lemma disjnt_self_iff_empty [simp]: "disjnt S S \<longleftrightarrow> S = {}" |
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63938
diff
changeset
|
1938 |
by (auto simp: disjnt_def) |
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63938
diff
changeset
|
1939 |
|
79566 | 1940 |
lemma disjnt_commute: "disjnt A B = disjnt B A" |
1941 |
by (auto simp: disjnt_def) |
|
1942 |
||
63316 | 1943 |
lemma disjnt_iff: "disjnt A B \<longleftrightarrow> (\<forall>x. \<not> (x \<in> A \<and> x \<in> B))" |
63301 | 1944 |
by (force simp: disjnt_def) |
1945 |
||
63879
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1946 |
lemma disjnt_sym: "disjnt A B \<Longrightarrow> disjnt B A" |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1947 |
using disjnt_iff by blast |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1948 |
|
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1949 |
lemma disjnt_empty1 [simp]: "disjnt {} A" and disjnt_empty2 [simp]: "disjnt A {}" |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1950 |
by (auto simp: disjnt_def) |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1951 |
|
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1952 |
lemma disjnt_insert1 [simp]: "disjnt (insert a X) Y \<longleftrightarrow> a \<notin> Y \<and> disjnt X Y" |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1953 |
by (simp add: disjnt_def) |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1954 |
|
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1955 |
lemma disjnt_insert2 [simp]: "disjnt Y (insert a X) \<longleftrightarrow> a \<notin> Y \<and> disjnt Y X" |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1956 |
by (simp add: disjnt_def) |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1957 |
|
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1958 |
lemma disjnt_subset1 : "\<lbrakk>disjnt X Y; Z \<subseteq> X\<rbrakk> \<Longrightarrow> disjnt Z Y" |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1959 |
by (auto simp: disjnt_def) |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1960 |
|
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1961 |
lemma disjnt_subset2 : "\<lbrakk>disjnt X Y; Z \<subseteq> Y\<rbrakk> \<Longrightarrow> disjnt X Z" |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1962 |
by (auto simp: disjnt_def) |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1963 |
|
69986
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents:
69939
diff
changeset
|
1964 |
lemma disjnt_Un1 [simp]: "disjnt (A \<union> B) C \<longleftrightarrow> disjnt A C \<and> disjnt B C" |
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents:
69939
diff
changeset
|
1965 |
by (auto simp: disjnt_def) |
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents:
69939
diff
changeset
|
1966 |
|
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents:
69939
diff
changeset
|
1967 |
lemma disjnt_Un2 [simp]: "disjnt C (A \<union> B) \<longleftrightarrow> disjnt C A \<and> disjnt C B" |
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents:
69939
diff
changeset
|
1968 |
by (auto simp: disjnt_def) |
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents:
69939
diff
changeset
|
1969 |
|
77935
7f240b0dabd9
More new theorems, and a necessary correction
paulson <lp15@cam.ac.uk>
parents:
77140
diff
changeset
|
1970 |
lemma disjnt_Diff1: "disjnt (X-Y) (U-V)" and disjnt_Diff2: "disjnt (U-V) (X-Y)" if "X \<subseteq> V" |
7f240b0dabd9
More new theorems, and a necessary correction
paulson <lp15@cam.ac.uk>
parents:
77140
diff
changeset
|
1971 |
using that by (auto simp: disjnt_def) |
7f240b0dabd9
More new theorems, and a necessary correction
paulson <lp15@cam.ac.uk>
parents:
77140
diff
changeset
|
1972 |
|
63879
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1973 |
lemma disjoint_image_subset: "\<lbrakk>pairwise disjnt \<A>; \<And>X. X \<in> \<A> \<Longrightarrow> f X \<subseteq> X\<rbrakk> \<Longrightarrow> pairwise disjnt (f `\<A>)" |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1974 |
unfolding disjnt_def pairwise_def by fast |
15bbf6360339
simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents:
63588
diff
changeset
|
1975 |
|
71827 | 1976 |
lemma pairwise_disjnt_iff: "pairwise disjnt \<A> \<longleftrightarrow> (\<forall>x. \<exists>\<^sub>\<le>\<^sub>1 X. X \<in> \<A> \<and> x \<in> X)" |
1977 |
by (auto simp: Uniq_def disjnt_iff pairwise_def) |
|
1978 |
||
73326 | 1979 |
lemma disjnt_insert: \<^marker>\<open>contributor \<open>Lars Hupel\<close>\<close> |
1980 |
\<open>disjnt (insert x M) N\<close> if \<open>x \<notin> N\<close> \<open>disjnt M N\<close> |
|
1981 |
using that by (simp add: disjnt_def) |
|
1982 |
||
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1983 |
lemma Int_emptyI: "(\<And>x. x \<in> A \<Longrightarrow> x \<in> B \<Longrightarrow> False) \<Longrightarrow> A \<inter> B = {}" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1984 |
by blast |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63072
diff
changeset
|
1985 |
|
63365 | 1986 |
lemma in_image_insert_iff: |
1987 |
assumes "\<And>C. C \<in> B \<Longrightarrow> x \<notin> C" |
|
1988 |
shows "A \<in> insert x ` B \<longleftrightarrow> x \<in> A \<and> A - {x} \<in> B" (is "?P \<longleftrightarrow> ?Q") |
|
1989 |
proof |
|
1990 |
assume ?P then show ?Q |
|
1991 |
using assms by auto |
|
1992 |
next |
|
1993 |
assume ?Q |
|
1994 |
then have "x \<in> A" and "A - {x} \<in> B" |
|
1995 |
by simp_all |
|
1996 |
from \<open>A - {x} \<in> B\<close> have "insert x (A - {x}) \<in> insert x ` B" |
|
1997 |
by (rule imageI) |
|
1998 |
also from \<open>x \<in> A\<close> |
|
1999 |
have "insert x (A - {x}) = A" |
|
2000 |
by auto |
|
2001 |
finally show ?P . |
|
2002 |
qed |
|
2003 |
||
45152 | 2004 |
hide_const (open) member not_member |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2005 |
|
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2006 |
lemmas equalityI = subset_antisym |
69712 | 2007 |
lemmas set_mp = subsetD |
2008 |
lemmas set_rev_mp = rev_subsetD |
|
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2009 |
|
60758 | 2010 |
ML \<open> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2011 |
val Ball_def = @{thm Ball_def} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2012 |
val Bex_def = @{thm Bex_def} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2013 |
val CollectD = @{thm CollectD} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2014 |
val CollectE = @{thm CollectE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2015 |
val CollectI = @{thm CollectI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2016 |
val Collect_conj_eq = @{thm Collect_conj_eq} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2017 |
val Collect_mem_eq = @{thm Collect_mem_eq} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2018 |
val IntD1 = @{thm IntD1} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2019 |
val IntD2 = @{thm IntD2} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2020 |
val IntE = @{thm IntE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2021 |
val IntI = @{thm IntI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2022 |
val Int_Collect = @{thm Int_Collect} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2023 |
val UNIV_I = @{thm UNIV_I} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2024 |
val UNIV_witness = @{thm UNIV_witness} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2025 |
val UnE = @{thm UnE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2026 |
val UnI1 = @{thm UnI1} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2027 |
val UnI2 = @{thm UnI2} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2028 |
val ballE = @{thm ballE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2029 |
val ballI = @{thm ballI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2030 |
val bexCI = @{thm bexCI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2031 |
val bexE = @{thm bexE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2032 |
val bexI = @{thm bexI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2033 |
val bex_triv = @{thm bex_triv} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2034 |
val bspec = @{thm bspec} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2035 |
val contra_subsetD = @{thm contra_subsetD} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2036 |
val equalityCE = @{thm equalityCE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2037 |
val equalityD1 = @{thm equalityD1} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2038 |
val equalityD2 = @{thm equalityD2} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2039 |
val equalityE = @{thm equalityE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2040 |
val equalityI = @{thm equalityI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2041 |
val imageE = @{thm imageE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2042 |
val imageI = @{thm imageI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2043 |
val image_Un = @{thm image_Un} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2044 |
val image_insert = @{thm image_insert} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2045 |
val insert_commute = @{thm insert_commute} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2046 |
val insert_iff = @{thm insert_iff} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2047 |
val mem_Collect_eq = @{thm mem_Collect_eq} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2048 |
val rangeE = @{thm rangeE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2049 |
val rangeI = @{thm rangeI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2050 |
val range_eqI = @{thm range_eqI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2051 |
val subsetCE = @{thm subsetCE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2052 |
val subsetD = @{thm subsetD} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2053 |
val subsetI = @{thm subsetI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2054 |
val subset_refl = @{thm subset_refl} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2055 |
val subset_trans = @{thm subset_trans} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2056 |
val vimageD = @{thm vimageD} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2057 |
val vimageE = @{thm vimageE} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2058 |
val vimageI = @{thm vimageI} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2059 |
val vimageI2 = @{thm vimageI2} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2060 |
val vimage_Collect = @{thm vimage_Collect} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2061 |
val vimage_Int = @{thm vimage_Int} |
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2062 |
val vimage_Un = @{thm vimage_Un} |
60758 | 2063 |
\<close> |
32135
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents:
32120
diff
changeset
|
2064 |
|
32077
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents:
32064
diff
changeset
|
2065 |
end |