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