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