| author | huffman | 
| Mon, 12 Sep 2011 11:39:29 -0700 | |
| changeset 44906 | 8f3625167c76 | 
| parent 44860 | 56101fa00193 | 
| child 44918 | 6a80fbc4e72c | 
| permissions | -rw-r--r-- | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
1  | 
(* Author: Tobias Nipkow, Lawrence C Paulson and Markus Wenzel; Florian Haftmann, TU Muenchen *)  | 
| 11979 | 2  | 
|
| 44104 | 3  | 
header {* Complete lattices *}
 | 
| 
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
 | 
4  | 
|
| 
44860
 
56101fa00193
renamed theory Complete_Lattice to Complete_Lattices, in accordance with Lattices, Orderings etc.
 
haftmann 
parents: 
44845 
diff
changeset
 | 
5  | 
theory Complete_Lattices  | 
| 32139 | 6  | 
imports Set  | 
7  | 
begin  | 
|
| 
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
 | 
8  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
9  | 
notation  | 
| 
34007
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
10  | 
less_eq (infix "\<sqsubseteq>" 50) and  | 
| 
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
 | 
11  | 
less (infix "\<sqsubset>" 50) and  | 
| 
34007
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
12  | 
inf (infixl "\<sqinter>" 70) and  | 
| 
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
13  | 
sup (infixl "\<squnion>" 65) and  | 
| 32678 | 14  | 
  top ("\<top>") and
 | 
15  | 
  bot ("\<bottom>")
 | 
|
| 
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
 | 
16  | 
|
| 32139 | 17  | 
|
| 32879 | 18  | 
subsection {* Syntactic infimum and supremum operations *}
 | 
19  | 
||
20  | 
class Inf =  | 
|
21  | 
  fixes Inf :: "'a set \<Rightarrow> 'a" ("\<Sqinter>_" [900] 900)
 | 
|
22  | 
||
23  | 
class Sup =  | 
|
24  | 
  fixes Sup :: "'a set \<Rightarrow> 'a" ("\<Squnion>_" [900] 900)
 | 
|
25  | 
||
| 32139 | 26  | 
subsection {* Abstract complete lattices *}
 | 
27  | 
||
| 
34007
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
28  | 
class complete_lattice = bounded_lattice + Inf + Sup +  | 
| 
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
 | 
29  | 
assumes Inf_lower: "x \<in> A \<Longrightarrow> \<Sqinter>A \<sqsubseteq> x"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
30  | 
and Inf_greatest: "(\<And>x. x \<in> A \<Longrightarrow> z \<sqsubseteq> x) \<Longrightarrow> z \<sqsubseteq> \<Sqinter>A"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
31  | 
assumes Sup_upper: "x \<in> A \<Longrightarrow> x \<sqsubseteq> \<Squnion>A"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
32  | 
and Sup_least: "(\<And>x. x \<in> A \<Longrightarrow> x \<sqsubseteq> z) \<Longrightarrow> \<Squnion>A \<sqsubseteq> z"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
33  | 
begin  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
34  | 
|
| 32678 | 35  | 
lemma dual_complete_lattice:  | 
| 44845 | 36  | 
"class.complete_lattice Sup Inf sup (op \<ge>) (op >) inf \<top> \<bottom>"  | 
| 
36635
 
080b755377c0
locale predicates of classes carry a mandatory "class" prefix
 
haftmann 
parents: 
36364 
diff
changeset
 | 
37  | 
by (auto intro!: class.complete_lattice.intro dual_bounded_lattice)  | 
| 
34007
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
38  | 
(unfold_locales, (fact bot_least top_greatest  | 
| 
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
39  | 
Sup_upper Sup_least Inf_lower Inf_greatest)+)  | 
| 32678 | 40  | 
|
| 44040 | 41  | 
definition INFI :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
 | 
42  | 
INF_def: "INFI A f = \<Sqinter>(f ` A)"  | 
|
43  | 
||
44  | 
definition SUPR :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
 | 
|
45  | 
SUP_def: "SUPR A f = \<Squnion>(f ` A)"  | 
|
46  | 
||
47  | 
text {*
 | 
|
48  | 
  Note: must use names @{const INFI} and @{const SUPR} here instead of
 | 
|
49  | 
  @{text INF} and @{text SUP} to allow the following syntax coexist
 | 
|
50  | 
with the plain constant names.  | 
|
51  | 
*}  | 
|
52  | 
||
53  | 
end  | 
|
54  | 
||
55  | 
syntax  | 
|
56  | 
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3INF _./ _)" [0, 10] 10)
 | 
|
57  | 
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3INF _:_./ _)" [0, 0, 10] 10)
 | 
|
58  | 
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3SUP _./ _)" [0, 10] 10)
 | 
|
59  | 
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3SUP _:_./ _)" [0, 0, 10] 10)
 | 
|
60  | 
||
61  | 
syntax (xsymbols)  | 
|
62  | 
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
 | 
|
63  | 
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
 | 
|
64  | 
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
 | 
|
65  | 
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
 | 
|
66  | 
||
67  | 
translations  | 
|
68  | 
"INF x y. B" == "INF x. INF y. B"  | 
|
69  | 
"INF x. B" == "CONST INFI CONST UNIV (%x. B)"  | 
|
70  | 
"INF x. B" == "INF x:CONST UNIV. B"  | 
|
71  | 
"INF x:A. B" == "CONST INFI A (%x. B)"  | 
|
72  | 
"SUP x y. B" == "SUP x. SUP y. B"  | 
|
73  | 
"SUP x. B" == "CONST SUPR CONST UNIV (%x. B)"  | 
|
74  | 
"SUP x. B" == "SUP x:CONST UNIV. B"  | 
|
75  | 
"SUP x:A. B" == "CONST SUPR A (%x. B)"  | 
|
76  | 
||
77  | 
print_translation {*
 | 
|
78  | 
  [Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax INFI} @{syntax_const "_INF"},
 | 
|
79  | 
    Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax SUPR} @{syntax_const "_SUP"}]
 | 
|
80  | 
*} -- {* to avoid eta-contraction of body *}
 | 
|
81  | 
||
82  | 
context complete_lattice  | 
|
83  | 
begin  | 
|
| 
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
 | 
84  | 
|
| 44040 | 85  | 
lemma INF_foundation_dual [no_atp]:  | 
86  | 
"complete_lattice.SUPR Inf = INFI"  | 
|
87  | 
proof (rule ext)+  | 
|
| 44845 | 88  | 
interpret dual: complete_lattice Sup Inf sup "op \<ge>" "op >" inf \<top> \<bottom>  | 
| 44040 | 89  | 
by (fact dual_complete_lattice)  | 
90  | 
fix f :: "'b \<Rightarrow> 'a" and A  | 
|
91  | 
show "complete_lattice.SUPR Inf A f = (\<Sqinter>a\<in>A. f a)"  | 
|
92  | 
by (simp only: dual.SUP_def INF_def)  | 
|
93  | 
qed  | 
|
94  | 
||
95  | 
lemma SUP_foundation_dual [no_atp]:  | 
|
96  | 
"complete_lattice.INFI Sup = SUPR"  | 
|
97  | 
proof (rule ext)+  | 
|
| 44845 | 98  | 
interpret dual: complete_lattice Sup Inf sup "op \<ge>" "op >" inf \<top> \<bottom>  | 
| 44040 | 99  | 
by (fact dual_complete_lattice)  | 
100  | 
fix f :: "'b \<Rightarrow> 'a" and A  | 
|
101  | 
show "complete_lattice.INFI Sup A f = (\<Squnion>a\<in>A. f a)"  | 
|
102  | 
by (simp only: dual.INF_def SUP_def)  | 
|
103  | 
qed  | 
|
104  | 
||
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
105  | 
lemma INF_lower: "i \<in> A \<Longrightarrow> (\<Sqinter>i\<in>A. f i) \<sqsubseteq> f i"  | 
| 44040 | 106  | 
by (auto simp add: INF_def intro: Inf_lower)  | 
107  | 
||
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
108  | 
lemma INF_greatest: "(\<And>i. i \<in> A \<Longrightarrow> u \<sqsubseteq> f i) \<Longrightarrow> u \<sqsubseteq> (\<Sqinter>i\<in>A. f i)"  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
109  | 
by (auto simp add: INF_def intro: Inf_greatest)  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
110  | 
|
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
111  | 
lemma SUP_upper: "i \<in> A \<Longrightarrow> f i \<sqsubseteq> (\<Squnion>i\<in>A. f i)"  | 
| 44040 | 112  | 
by (auto simp add: SUP_def intro: Sup_upper)  | 
113  | 
||
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
114  | 
lemma SUP_least: "(\<And>i. i \<in> A \<Longrightarrow> f i \<sqsubseteq> u) \<Longrightarrow> (\<Squnion>i\<in>A. f i) \<sqsubseteq> u"  | 
| 44040 | 115  | 
by (auto simp add: SUP_def intro: Sup_least)  | 
116  | 
||
117  | 
lemma Inf_lower2: "u \<in> A \<Longrightarrow> u \<sqsubseteq> v \<Longrightarrow> \<Sqinter>A \<sqsubseteq> v"  | 
|
118  | 
using Inf_lower [of u A] by auto  | 
|
119  | 
||
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
120  | 
lemma INF_lower2: "i \<in> A \<Longrightarrow> f i \<sqsubseteq> u \<Longrightarrow> (\<Sqinter>i\<in>A. f i) \<sqsubseteq> u"  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
121  | 
using INF_lower [of i A f] by auto  | 
| 44040 | 122  | 
|
123  | 
lemma Sup_upper2: "u \<in> A \<Longrightarrow> v \<sqsubseteq> u \<Longrightarrow> v \<sqsubseteq> \<Squnion>A"  | 
|
124  | 
using Sup_upper [of u A] by auto  | 
|
125  | 
||
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
126  | 
lemma SUP_upper2: "i \<in> A \<Longrightarrow> u \<sqsubseteq> f i \<Longrightarrow> u \<sqsubseteq> (\<Squnion>i\<in>A. f i)"  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
127  | 
using SUP_upper [of i A f] by auto  | 
| 44040 | 128  | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
129  | 
lemma le_Inf_iff (*[simp]*): "b \<sqsubseteq> \<Sqinter>A \<longleftrightarrow> (\<forall>a\<in>A. b \<sqsubseteq> a)"  | 
| 44040 | 130  | 
by (auto intro: Inf_greatest dest: Inf_lower)  | 
131  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
132  | 
lemma le_INF_iff (*[simp]*): "u \<sqsubseteq> (\<Sqinter>i\<in>A. f i) \<longleftrightarrow> (\<forall>i\<in>A. u \<sqsubseteq> f i)"  | 
| 44040 | 133  | 
by (auto simp add: INF_def le_Inf_iff)  | 
134  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
135  | 
lemma Sup_le_iff (*[simp]*): "\<Squnion>A \<sqsubseteq> b \<longleftrightarrow> (\<forall>a\<in>A. a \<sqsubseteq> b)"  | 
| 44040 | 136  | 
by (auto intro: Sup_least dest: Sup_upper)  | 
137  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
138  | 
lemma SUP_le_iff (*[simp]*): "(\<Squnion>i\<in>A. f i) \<sqsubseteq> u \<longleftrightarrow> (\<forall>i\<in>A. f i \<sqsubseteq> u)"  | 
| 44040 | 139  | 
by (auto simp add: SUP_def Sup_le_iff)  | 
| 
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
 | 
140  | 
|
| 41080 | 141  | 
lemma Inf_empty [simp]:  | 
| 
34007
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
142  | 
  "\<Sqinter>{} = \<top>"
 | 
| 
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
143  | 
by (auto intro: antisym Inf_greatest)  | 
| 
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
 | 
144  | 
|
| 44067 | 145  | 
lemma INF_empty [simp]: "(\<Sqinter>x\<in>{}. f x) = \<top>"
 | 
| 44040 | 146  | 
by (simp add: INF_def)  | 
147  | 
||
| 41080 | 148  | 
lemma Sup_empty [simp]:  | 
| 
34007
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
149  | 
  "\<Squnion>{} = \<bottom>"
 | 
| 
 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 
haftmann 
parents: 
32879 
diff
changeset
 | 
150  | 
by (auto intro: antisym Sup_least)  | 
| 
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
 | 
151  | 
|
| 44067 | 152  | 
lemma SUP_empty [simp]: "(\<Squnion>x\<in>{}. f x) = \<bottom>"
 | 
| 44040 | 153  | 
by (simp add: SUP_def)  | 
154  | 
||
| 41080 | 155  | 
lemma Inf_UNIV [simp]:  | 
156  | 
"\<Sqinter>UNIV = \<bottom>"  | 
|
| 44040 | 157  | 
by (auto intro!: antisym Inf_lower)  | 
| 41080 | 158  | 
|
159  | 
lemma Sup_UNIV [simp]:  | 
|
160  | 
"\<Squnion>UNIV = \<top>"  | 
|
| 44040 | 161  | 
by (auto intro!: antisym Sup_upper)  | 
| 41080 | 162  | 
|
| 44082 | 163  | 
lemma Inf_insert (*[simp]*): "\<Sqinter>insert a A = a \<sqinter> \<Sqinter>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
 | 
164  | 
by (auto intro: le_infI le_infI1 le_infI2 antisym Inf_greatest Inf_lower)  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
165  | 
|
| 44040 | 166  | 
lemma INF_insert: "(\<Sqinter>x\<in>insert a A. f x) = f a \<sqinter> INFI A f"  | 
167  | 
by (simp add: INF_def Inf_insert)  | 
|
168  | 
||
| 44082 | 169  | 
lemma Sup_insert (*[simp]*): "\<Squnion>insert a A = a \<squnion> \<Squnion>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
 | 
170  | 
by (auto intro: le_supI le_supI1 le_supI2 antisym Sup_least Sup_upper)  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
171  | 
|
| 44040 | 172  | 
lemma SUP_insert: "(\<Squnion>x\<in>insert a A. f x) = f a \<squnion> SUPR A f"  | 
173  | 
by (simp add: SUP_def Sup_insert)  | 
|
174  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
175  | 
lemma INF_image (*[simp]*): "(\<Sqinter>x\<in>f`A. g x) = (\<Sqinter>x\<in>A. g (f x))"  | 
| 44068 | 176  | 
by (simp add: INF_def image_image)  | 
177  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
178  | 
lemma SUP_image (*[simp]*): "(\<Squnion>x\<in>f`A. g x) = (\<Squnion>x\<in>A. g (f x))"  | 
| 44068 | 179  | 
by (simp add: SUP_def image_image)  | 
180  | 
||
| 44040 | 181  | 
lemma Inf_Sup: "\<Sqinter>A = \<Squnion>{b. \<forall>a \<in> A. b \<sqsubseteq> a}"
 | 
182  | 
by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)  | 
|
183  | 
||
184  | 
lemma Sup_Inf:  "\<Squnion>A = \<Sqinter>{b. \<forall>a \<in> A. a \<sqsubseteq> b}"
 | 
|
185  | 
by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)  | 
|
186  | 
||
| 43899 | 187  | 
lemma Inf_superset_mono: "B \<subseteq> A \<Longrightarrow> \<Sqinter>A \<sqsubseteq> \<Sqinter>B"  | 
188  | 
by (auto intro: Inf_greatest Inf_lower)  | 
|
189  | 
||
190  | 
lemma Sup_subset_mono: "A \<subseteq> B \<Longrightarrow> \<Squnion>A \<sqsubseteq> \<Squnion>B"  | 
|
191  | 
by (auto intro: Sup_least Sup_upper)  | 
|
192  | 
||
| 44041 | 193  | 
lemma INF_cong:  | 
194  | 
"A = B \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> C x = D x) \<Longrightarrow> (\<Sqinter>x\<in>A. C x) = (\<Sqinter>x\<in>B. D x)"  | 
|
195  | 
by (simp add: INF_def image_def)  | 
|
196  | 
||
197  | 
lemma SUP_cong:  | 
|
198  | 
"A = B \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> C x = D x) \<Longrightarrow> (\<Squnion>x\<in>A. C x) = (\<Squnion>x\<in>B. D x)"  | 
|
199  | 
by (simp add: SUP_def image_def)  | 
|
200  | 
||
| 38705 | 201  | 
lemma Inf_mono:  | 
| 41971 | 202  | 
assumes "\<And>b. b \<in> B \<Longrightarrow> \<exists>a\<in>A. a \<sqsubseteq> b"  | 
| 43741 | 203  | 
shows "\<Sqinter>A \<sqsubseteq> \<Sqinter>B"  | 
| 38705 | 204  | 
proof (rule Inf_greatest)  | 
205  | 
fix b assume "b \<in> B"  | 
|
| 41971 | 206  | 
with assms obtain a where "a \<in> A" and "a \<sqsubseteq> b" by blast  | 
| 43741 | 207  | 
from `a \<in> A` have "\<Sqinter>A \<sqsubseteq> a" by (rule Inf_lower)  | 
208  | 
with `a \<sqsubseteq> b` show "\<Sqinter>A \<sqsubseteq> b" by auto  | 
|
| 38705 | 209  | 
qed  | 
210  | 
||
| 44041 | 211  | 
lemma INF_mono:  | 
212  | 
"(\<And>m. m \<in> B \<Longrightarrow> \<exists>n\<in>A. f n \<sqsubseteq> g m) \<Longrightarrow> (\<Sqinter>n\<in>A. f n) \<sqsubseteq> (\<Sqinter>n\<in>B. g n)"  | 
|
213  | 
by (force intro!: Inf_mono simp: INF_def)  | 
|
214  | 
||
| 41082 | 215  | 
lemma Sup_mono:  | 
| 41971 | 216  | 
assumes "\<And>a. a \<in> A \<Longrightarrow> \<exists>b\<in>B. a \<sqsubseteq> b"  | 
| 43741 | 217  | 
shows "\<Squnion>A \<sqsubseteq> \<Squnion>B"  | 
| 41082 | 218  | 
proof (rule Sup_least)  | 
219  | 
fix a assume "a \<in> A"  | 
|
| 41971 | 220  | 
with assms obtain b where "b \<in> B" and "a \<sqsubseteq> b" by blast  | 
| 43741 | 221  | 
from `b \<in> B` have "b \<sqsubseteq> \<Squnion>B" by (rule Sup_upper)  | 
222  | 
with `a \<sqsubseteq> b` show "a \<sqsubseteq> \<Squnion>B" by auto  | 
|
| 41082 | 223  | 
qed  | 
| 
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
 | 
224  | 
|
| 44041 | 225  | 
lemma SUP_mono:  | 
226  | 
"(\<And>n. n \<in> A \<Longrightarrow> \<exists>m\<in>B. f n \<sqsubseteq> g m) \<Longrightarrow> (\<Squnion>n\<in>A. f n) \<sqsubseteq> (\<Squnion>n\<in>B. g n)"  | 
|
227  | 
by (force intro!: Sup_mono simp: SUP_def)  | 
|
228  | 
||
229  | 
lemma INF_superset_mono:  | 
|
230  | 
"B \<subseteq> A \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> f x \<sqsubseteq> g x) \<Longrightarrow> (\<Sqinter>x\<in>A. f x) \<sqsubseteq> (\<Sqinter>x\<in>B. g x)"  | 
|
231  | 
  -- {* The last inclusion is POSITIVE! *}
 | 
|
232  | 
by (blast intro: INF_mono dest: subsetD)  | 
|
233  | 
||
234  | 
lemma SUP_subset_mono:  | 
|
235  | 
"A \<subseteq> B \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> f x \<sqsubseteq> g x) \<Longrightarrow> (\<Squnion>x\<in>A. f x) \<sqsubseteq> (\<Squnion>x\<in>B. g x)"  | 
|
236  | 
by (blast intro: SUP_mono dest: subsetD)  | 
|
237  | 
||
| 43868 | 238  | 
lemma Inf_less_eq:  | 
239  | 
assumes "\<And>v. v \<in> A \<Longrightarrow> v \<sqsubseteq> u"  | 
|
240  | 
    and "A \<noteq> {}"
 | 
|
241  | 
shows "\<Sqinter>A \<sqsubseteq> u"  | 
|
242  | 
proof -  | 
|
243  | 
  from `A \<noteq> {}` obtain v where "v \<in> A" by blast
 | 
|
244  | 
moreover with assms have "v \<sqsubseteq> u" by blast  | 
|
245  | 
ultimately show ?thesis by (rule Inf_lower2)  | 
|
246  | 
qed  | 
|
247  | 
||
248  | 
lemma less_eq_Sup:  | 
|
249  | 
assumes "\<And>v. v \<in> A \<Longrightarrow> u \<sqsubseteq> v"  | 
|
250  | 
    and "A \<noteq> {}"
 | 
|
251  | 
shows "u \<sqsubseteq> \<Squnion>A"  | 
|
252  | 
proof -  | 
|
253  | 
  from `A \<noteq> {}` obtain v where "v \<in> A" by blast
 | 
|
254  | 
moreover with assms have "u \<sqsubseteq> v" by blast  | 
|
255  | 
ultimately show ?thesis by (rule Sup_upper2)  | 
|
256  | 
qed  | 
|
257  | 
||
| 43899 | 258  | 
lemma less_eq_Inf_inter: "\<Sqinter>A \<squnion> \<Sqinter>B \<sqsubseteq> \<Sqinter>(A \<inter> B)"  | 
| 43868 | 259  | 
by (auto intro: Inf_greatest Inf_lower)  | 
260  | 
||
| 43899 | 261  | 
lemma Sup_inter_less_eq: "\<Squnion>(A \<inter> B) \<sqsubseteq> \<Squnion>A \<sqinter> \<Squnion>B "  | 
| 43868 | 262  | 
by (auto intro: Sup_least Sup_upper)  | 
263  | 
||
264  | 
lemma Inf_union_distrib: "\<Sqinter>(A \<union> B) = \<Sqinter>A \<sqinter> \<Sqinter>B"  | 
|
265  | 
by (rule antisym) (auto intro: Inf_greatest Inf_lower le_infI1 le_infI2)  | 
|
266  | 
||
| 44041 | 267  | 
lemma INF_union:  | 
268  | 
"(\<Sqinter>i \<in> A \<union> B. M i) = (\<Sqinter>i \<in> A. M i) \<sqinter> (\<Sqinter>i\<in>B. M i)"  | 
|
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
269  | 
by (auto intro!: antisym INF_mono intro: le_infI1 le_infI2 INF_greatest INF_lower)  | 
| 44041 | 270  | 
|
| 43868 | 271  | 
lemma Sup_union_distrib: "\<Squnion>(A \<union> B) = \<Squnion>A \<squnion> \<Squnion>B"  | 
272  | 
by (rule antisym) (auto intro: Sup_least Sup_upper le_supI1 le_supI2)  | 
|
273  | 
||
| 44041 | 274  | 
lemma SUP_union:  | 
275  | 
"(\<Squnion>i \<in> A \<union> B. M i) = (\<Squnion>i \<in> A. M i) \<squnion> (\<Squnion>i\<in>B. M i)"  | 
|
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
276  | 
by (auto intro!: antisym SUP_mono intro: le_supI1 le_supI2 SUP_least SUP_upper)  | 
| 44041 | 277  | 
|
278  | 
lemma INF_inf_distrib: "(\<Sqinter>a\<in>A. f a) \<sqinter> (\<Sqinter>a\<in>A. g a) = (\<Sqinter>a\<in>A. f a \<sqinter> g a)"  | 
|
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
279  | 
by (rule antisym) (rule INF_greatest, auto intro: le_infI1 le_infI2 INF_lower INF_mono)  | 
| 44041 | 280  | 
|
281  | 
lemma SUP_sup_distrib: "(\<Squnion>a\<in>A. f a) \<squnion> (\<Squnion>a\<in>A. g a) = (\<Squnion>a\<in>A. f a \<squnion> g a)"  | 
|
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
282  | 
by (rule antisym) (auto intro: le_supI1 le_supI2 SUP_upper SUP_mono,  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
283  | 
rule SUP_least, auto intro: le_supI1 le_supI2 SUP_upper SUP_mono)  | 
| 44041 | 284  | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
285  | 
lemma Inf_top_conv (*[simp]*) [no_atp]:  | 
| 43868 | 286  | 
"\<Sqinter>A = \<top> \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)"  | 
287  | 
"\<top> = \<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)"  | 
|
288  | 
proof -  | 
|
289  | 
show "\<Sqinter>A = \<top> \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)"  | 
|
290  | 
proof  | 
|
291  | 
assume "\<forall>x\<in>A. x = \<top>"  | 
|
292  | 
    then have "A = {} \<or> A = {\<top>}" by auto
 | 
|
| 44083 | 293  | 
then show "\<Sqinter>A = \<top>" by (auto simp add: Inf_insert)  | 
| 43868 | 294  | 
next  | 
295  | 
assume "\<Sqinter>A = \<top>"  | 
|
296  | 
show "\<forall>x\<in>A. x = \<top>"  | 
|
297  | 
proof (rule ccontr)  | 
|
298  | 
assume "\<not> (\<forall>x\<in>A. x = \<top>)"  | 
|
299  | 
then obtain x where "x \<in> A" and "x \<noteq> \<top>" by blast  | 
|
300  | 
then obtain B where "A = insert x B" by blast  | 
|
301  | 
with `\<Sqinter>A = \<top>` `x \<noteq> \<top>` show False by (simp add: Inf_insert)  | 
|
302  | 
qed  | 
|
303  | 
qed  | 
|
304  | 
then show "\<top> = \<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)" by auto  | 
|
305  | 
qed  | 
|
306  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
307  | 
lemma INF_top_conv (*[simp]*):  | 
| 44041 | 308  | 
"(\<Sqinter>x\<in>A. B x) = \<top> \<longleftrightarrow> (\<forall>x\<in>A. B x = \<top>)"  | 
309  | 
"\<top> = (\<Sqinter>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. B x = \<top>)"  | 
|
310  | 
by (auto simp add: INF_def Inf_top_conv)  | 
|
311  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
312  | 
lemma Sup_bot_conv (*[simp]*) [no_atp]:  | 
| 43868 | 313  | 
"\<Squnion>A = \<bottom> \<longleftrightarrow> (\<forall>x\<in>A. x = \<bottom>)" (is ?P)  | 
314  | 
"\<bottom> = \<Squnion>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<bottom>)" (is ?Q)  | 
|
315  | 
proof -  | 
|
| 44845 | 316  | 
interpret dual: complete_lattice Sup Inf sup "op \<ge>" "op >" inf \<top> \<bottom>  | 
| 43868 | 317  | 
by (fact dual_complete_lattice)  | 
318  | 
from dual.Inf_top_conv show ?P and ?Q by simp_all  | 
|
319  | 
qed  | 
|
320  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
321  | 
lemma SUP_bot_conv (*[simp]*):  | 
| 44041 | 322  | 
"(\<Squnion>x\<in>A. B x) = \<bottom> \<longleftrightarrow> (\<forall>x\<in>A. B x = \<bottom>)"  | 
323  | 
"\<bottom> = (\<Squnion>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. B x = \<bottom>)"  | 
|
324  | 
by (auto simp add: SUP_def Sup_bot_conv)  | 
|
325  | 
||
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
326  | 
lemma INF_const [simp]: "A \<noteq> {} \<Longrightarrow> (\<Sqinter>i\<in>A. f) = f"
 | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
327  | 
by (auto intro: antisym INF_lower INF_greatest)  | 
| 
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
 | 
328  | 
|
| 43870 | 329  | 
lemma SUP_const [simp]: "A \<noteq> {} \<Longrightarrow> (\<Squnion>i\<in>A. f) = f"
 | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
330  | 
by (auto intro: antisym SUP_upper SUP_least)  | 
| 43870 | 331  | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
332  | 
lemma INF_top (*[simp]*): "(\<Sqinter>x\<in>A. \<top>) = \<top>"  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
333  | 
  by (cases "A = {}") (simp_all add: INF_empty)
 | 
| 
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
334  | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
335  | 
lemma SUP_bot (*[simp]*): "(\<Squnion>x\<in>A. \<bottom>) = \<bottom>"  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
336  | 
  by (cases "A = {}") (simp_all add: SUP_empty)
 | 
| 
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
337  | 
|
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
338  | 
lemma INF_commute: "(\<Sqinter>i\<in>A. \<Sqinter>j\<in>B. f i j) = (\<Sqinter>j\<in>B. \<Sqinter>i\<in>A. f i j)"  | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
339  | 
by (iprover intro: INF_lower INF_greatest order_trans antisym)  | 
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
340  | 
|
| 43870 | 341  | 
lemma SUP_commute: "(\<Squnion>i\<in>A. \<Squnion>j\<in>B. f i j) = (\<Squnion>j\<in>B. \<Squnion>i\<in>A. f i j)"  | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
342  | 
by (iprover intro: SUP_upper SUP_least order_trans antisym)  | 
| 43870 | 343  | 
|
| 43871 | 344  | 
lemma INF_absorb:  | 
| 43868 | 345  | 
assumes "k \<in> I"  | 
346  | 
shows "A k \<sqinter> (\<Sqinter>i\<in>I. A i) = (\<Sqinter>i\<in>I. A i)"  | 
|
347  | 
proof -  | 
|
348  | 
from assms obtain J where "I = insert k J" by blast  | 
|
349  | 
then show ?thesis by (simp add: INF_insert)  | 
|
350  | 
qed  | 
|
351  | 
||
| 43871 | 352  | 
lemma SUP_absorb:  | 
353  | 
assumes "k \<in> I"  | 
|
354  | 
shows "A k \<squnion> (\<Squnion>i\<in>I. A i) = (\<Squnion>i\<in>I. A i)"  | 
|
355  | 
proof -  | 
|
356  | 
from assms obtain J where "I = insert k J" by blast  | 
|
357  | 
then show ?thesis by (simp add: SUP_insert)  | 
|
358  | 
qed  | 
|
359  | 
||
360  | 
lemma INF_constant:  | 
|
| 43868 | 361  | 
  "(\<Sqinter>y\<in>A. c) = (if A = {} then \<top> else c)"
 | 
362  | 
by (simp add: INF_empty)  | 
|
363  | 
||
| 43871 | 364  | 
lemma SUP_constant:  | 
365  | 
  "(\<Squnion>y\<in>A. c) = (if A = {} then \<bottom> else c)"
 | 
|
366  | 
by (simp add: SUP_empty)  | 
|
367  | 
||
| 43943 | 368  | 
lemma less_INF_D:  | 
369  | 
assumes "y < (\<Sqinter>i\<in>A. f i)" "i \<in> A" shows "y < f i"  | 
|
370  | 
proof -  | 
|
371  | 
note `y < (\<Sqinter>i\<in>A. f i)`  | 
|
372  | 
also have "(\<Sqinter>i\<in>A. f i) \<le> f i" using `i \<in> A`  | 
|
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
373  | 
by (rule INF_lower)  | 
| 43943 | 374  | 
finally show "y < f i" .  | 
375  | 
qed  | 
|
376  | 
||
377  | 
lemma SUP_lessD:  | 
|
378  | 
assumes "(\<Squnion>i\<in>A. f i) < y" "i \<in> A" shows "f i < y"  | 
|
379  | 
proof -  | 
|
380  | 
have "f i \<le> (\<Squnion>i\<in>A. f i)" using `i \<in> A`  | 
|
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
381  | 
by (rule SUP_upper)  | 
| 43943 | 382  | 
also note `(\<Squnion>i\<in>A. f i) < y`  | 
383  | 
finally show "f i < y" .  | 
|
384  | 
qed  | 
|
385  | 
||
| 43873 | 386  | 
lemma INF_UNIV_bool_expand:  | 
| 43868 | 387  | 
"(\<Sqinter>b. A b) = A True \<sqinter> A False"  | 
388  | 
by (simp add: UNIV_bool INF_empty INF_insert inf_commute)  | 
|
389  | 
||
| 43873 | 390  | 
lemma SUP_UNIV_bool_expand:  | 
| 43871 | 391  | 
"(\<Squnion>b. A b) = A True \<squnion> A False"  | 
392  | 
by (simp add: UNIV_bool SUP_empty SUP_insert sup_commute)  | 
|
393  | 
||
| 
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
 | 
394  | 
end  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
395  | 
|
| 44024 | 396  | 
class complete_distrib_lattice = complete_lattice +  | 
| 44039 | 397  | 
assumes sup_Inf: "a \<squnion> \<Sqinter>B = (\<Sqinter>b\<in>B. a \<squnion> b)"  | 
| 44024 | 398  | 
assumes inf_Sup: "a \<sqinter> \<Squnion>B = (\<Squnion>b\<in>B. a \<sqinter> b)"  | 
399  | 
begin  | 
|
400  | 
||
| 44039 | 401  | 
lemma sup_INF:  | 
402  | 
"a \<squnion> (\<Sqinter>b\<in>B. f b) = (\<Sqinter>b\<in>B. a \<squnion> f b)"  | 
|
403  | 
by (simp add: INF_def sup_Inf image_image)  | 
|
404  | 
||
405  | 
lemma inf_SUP:  | 
|
406  | 
"a \<sqinter> (\<Squnion>b\<in>B. f b) = (\<Squnion>b\<in>B. a \<sqinter> f b)"  | 
|
407  | 
by (simp add: SUP_def inf_Sup image_image)  | 
|
408  | 
||
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
409  | 
lemma dual_complete_distrib_lattice:  | 
| 44845 | 410  | 
"class.complete_distrib_lattice Sup Inf sup (op \<ge>) (op >) inf \<top> \<bottom>"  | 
| 44024 | 411  | 
apply (rule class.complete_distrib_lattice.intro)  | 
412  | 
apply (fact dual_complete_lattice)  | 
|
413  | 
apply (rule class.complete_distrib_lattice_axioms.intro)  | 
|
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
414  | 
apply (simp_all only: INF_foundation_dual SUP_foundation_dual inf_Sup sup_Inf)  | 
| 
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
415  | 
done  | 
| 44024 | 416  | 
|
| 44322 | 417  | 
subclass distrib_lattice proof  | 
| 44024 | 418  | 
fix a b c  | 
419  | 
  from sup_Inf have "a \<squnion> \<Sqinter>{b, c} = (\<Sqinter>d\<in>{b, c}. a \<squnion> d)" .
 | 
|
| 44082 | 420  | 
then show "a \<squnion> b \<sqinter> c = (a \<squnion> b) \<sqinter> (a \<squnion> c)" by (simp add: INF_def Inf_insert)  | 
| 44024 | 421  | 
qed  | 
422  | 
||
| 44039 | 423  | 
lemma Inf_sup:  | 
424  | 
"\<Sqinter>B \<squnion> a = (\<Sqinter>b\<in>B. b \<squnion> a)"  | 
|
425  | 
by (simp add: sup_Inf sup_commute)  | 
|
426  | 
||
427  | 
lemma Sup_inf:  | 
|
428  | 
"\<Squnion>B \<sqinter> a = (\<Squnion>b\<in>B. b \<sqinter> a)"  | 
|
429  | 
by (simp add: inf_Sup inf_commute)  | 
|
430  | 
||
431  | 
lemma INF_sup:  | 
|
432  | 
"(\<Sqinter>b\<in>B. f b) \<squnion> a = (\<Sqinter>b\<in>B. f b \<squnion> a)"  | 
|
433  | 
by (simp add: sup_INF sup_commute)  | 
|
434  | 
||
435  | 
lemma SUP_inf:  | 
|
436  | 
"(\<Squnion>b\<in>B. f b) \<sqinter> a = (\<Squnion>b\<in>B. f b \<sqinter> a)"  | 
|
437  | 
by (simp add: inf_SUP inf_commute)  | 
|
438  | 
||
439  | 
lemma Inf_sup_eq_top_iff:  | 
|
440  | 
"(\<Sqinter>B \<squnion> a = \<top>) \<longleftrightarrow> (\<forall>b\<in>B. b \<squnion> a = \<top>)"  | 
|
441  | 
by (simp only: Inf_sup INF_top_conv)  | 
|
442  | 
||
443  | 
lemma Sup_inf_eq_bot_iff:  | 
|
444  | 
"(\<Squnion>B \<sqinter> a = \<bottom>) \<longleftrightarrow> (\<forall>b\<in>B. b \<sqinter> a = \<bottom>)"  | 
|
445  | 
by (simp only: Sup_inf SUP_bot_conv)  | 
|
446  | 
||
447  | 
lemma INF_sup_distrib2:  | 
|
448  | 
"(\<Sqinter>a\<in>A. f a) \<squnion> (\<Sqinter>b\<in>B. g b) = (\<Sqinter>a\<in>A. \<Sqinter>b\<in>B. f a \<squnion> g b)"  | 
|
449  | 
by (subst INF_commute) (simp add: sup_INF INF_sup)  | 
|
450  | 
||
451  | 
lemma SUP_inf_distrib2:  | 
|
452  | 
"(\<Squnion>a\<in>A. f a) \<sqinter> (\<Squnion>b\<in>B. g b) = (\<Squnion>a\<in>A. \<Squnion>b\<in>B. f a \<sqinter> g b)"  | 
|
453  | 
by (subst SUP_commute) (simp add: inf_SUP SUP_inf)  | 
|
454  | 
||
| 44024 | 455  | 
end  | 
456  | 
||
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
457  | 
class complete_boolean_algebra = boolean_algebra + complete_distrib_lattice  | 
| 43873 | 458  | 
begin  | 
459  | 
||
| 43943 | 460  | 
lemma dual_complete_boolean_algebra:  | 
| 44845 | 461  | 
"class.complete_boolean_algebra Sup Inf sup (op \<ge>) (op >) inf \<top> \<bottom> (\<lambda>x y. x \<squnion> - y) uminus"  | 
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
462  | 
by (rule class.complete_boolean_algebra.intro, rule dual_complete_distrib_lattice, rule dual_boolean_algebra)  | 
| 43943 | 463  | 
|
| 43873 | 464  | 
lemma uminus_Inf:  | 
465  | 
"- (\<Sqinter>A) = \<Squnion>(uminus ` A)"  | 
|
466  | 
proof (rule antisym)  | 
|
467  | 
show "- \<Sqinter>A \<le> \<Squnion>(uminus ` A)"  | 
|
468  | 
by (rule compl_le_swap2, rule Inf_greatest, rule compl_le_swap2, rule Sup_upper) simp  | 
|
469  | 
show "\<Squnion>(uminus ` A) \<le> - \<Sqinter>A"  | 
|
470  | 
by (rule Sup_least, rule compl_le_swap1, rule Inf_lower) auto  | 
|
471  | 
qed  | 
|
472  | 
||
| 44041 | 473  | 
lemma uminus_INF: "- (\<Sqinter>x\<in>A. B x) = (\<Squnion>x\<in>A. - B x)"  | 
474  | 
by (simp add: INF_def SUP_def uminus_Inf image_image)  | 
|
475  | 
||
| 43873 | 476  | 
lemma uminus_Sup:  | 
477  | 
"- (\<Squnion>A) = \<Sqinter>(uminus ` A)"  | 
|
478  | 
proof -  | 
|
479  | 
have "\<Squnion>A = - \<Sqinter>(uminus ` A)" by (simp add: image_image uminus_Inf)  | 
|
480  | 
then show ?thesis by simp  | 
|
481  | 
qed  | 
|
482  | 
||
483  | 
lemma uminus_SUP: "- (\<Squnion>x\<in>A. B x) = (\<Sqinter>x\<in>A. - B x)"  | 
|
484  | 
by (simp add: INF_def SUP_def uminus_Sup image_image)  | 
|
485  | 
||
486  | 
end  | 
|
487  | 
||
| 43940 | 488  | 
class complete_linorder = linorder + complete_lattice  | 
489  | 
begin  | 
|
490  | 
||
| 43943 | 491  | 
lemma dual_complete_linorder:  | 
| 44845 | 492  | 
"class.complete_linorder Sup Inf sup (op \<ge>) (op >) inf \<top> \<bottom>"  | 
| 43943 | 493  | 
by (rule class.complete_linorder.intro, rule dual_complete_lattice, rule dual_linorder)  | 
494  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
495  | 
lemma Inf_less_iff (*[simp]*):  | 
| 43940 | 496  | 
"\<Sqinter>S \<sqsubset> a \<longleftrightarrow> (\<exists>x\<in>S. x \<sqsubset> a)"  | 
497  | 
unfolding not_le [symmetric] le_Inf_iff by auto  | 
|
498  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
499  | 
lemma INF_less_iff (*[simp]*):  | 
| 44041 | 500  | 
"(\<Sqinter>i\<in>A. f i) \<sqsubset> a \<longleftrightarrow> (\<exists>x\<in>A. f x \<sqsubset> a)"  | 
501  | 
unfolding INF_def Inf_less_iff by auto  | 
|
502  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
503  | 
lemma less_Sup_iff (*[simp]*):  | 
| 43940 | 504  | 
"a \<sqsubset> \<Squnion>S \<longleftrightarrow> (\<exists>x\<in>S. a \<sqsubset> x)"  | 
505  | 
unfolding not_le [symmetric] Sup_le_iff by auto  | 
|
506  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
507  | 
lemma less_SUP_iff (*[simp]*):  | 
| 43940 | 508  | 
"a \<sqsubset> (\<Squnion>i\<in>A. f i) \<longleftrightarrow> (\<exists>x\<in>A. a \<sqsubset> f x)"  | 
509  | 
unfolding SUP_def less_Sup_iff by auto  | 
|
510  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
511  | 
lemma Sup_eq_top_iff (*[simp]*):  | 
| 43943 | 512  | 
"\<Squnion>A = \<top> \<longleftrightarrow> (\<forall>x<\<top>. \<exists>i\<in>A. x < i)"  | 
513  | 
proof  | 
|
514  | 
assume *: "\<Squnion>A = \<top>"  | 
|
515  | 
show "(\<forall>x<\<top>. \<exists>i\<in>A. x < i)" unfolding * [symmetric]  | 
|
516  | 
proof (intro allI impI)  | 
|
517  | 
fix x assume "x < \<Squnion>A" then show "\<exists>i\<in>A. x < i"  | 
|
518  | 
unfolding less_Sup_iff by auto  | 
|
519  | 
qed  | 
|
520  | 
next  | 
|
521  | 
assume *: "\<forall>x<\<top>. \<exists>i\<in>A. x < i"  | 
|
522  | 
show "\<Squnion>A = \<top>"  | 
|
523  | 
proof (rule ccontr)  | 
|
524  | 
assume "\<Squnion>A \<noteq> \<top>"  | 
|
525  | 
with top_greatest [of "\<Squnion>A"]  | 
|
526  | 
have "\<Squnion>A < \<top>" unfolding le_less by auto  | 
|
527  | 
then have "\<Squnion>A < \<Squnion>A"  | 
|
528  | 
using * unfolding less_Sup_iff by auto  | 
|
529  | 
then show False by auto  | 
|
530  | 
qed  | 
|
531  | 
qed  | 
|
532  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
533  | 
lemma SUP_eq_top_iff (*[simp]*):  | 
| 44041 | 534  | 
"(\<Squnion>i\<in>A. f i) = \<top> \<longleftrightarrow> (\<forall>x<\<top>. \<exists>i\<in>A. x < f i)"  | 
535  | 
unfolding SUP_def Sup_eq_top_iff by auto  | 
|
536  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
537  | 
lemma Inf_eq_bot_iff (*[simp]*):  | 
| 43943 | 538  | 
"\<Sqinter>A = \<bottom> \<longleftrightarrow> (\<forall>x>\<bottom>. \<exists>i\<in>A. i < x)"  | 
539  | 
proof -  | 
|
| 44845 | 540  | 
interpret dual: complete_linorder Sup Inf sup "op \<ge>" "op >" inf \<top> \<bottom>  | 
| 43943 | 541  | 
by (fact dual_complete_linorder)  | 
542  | 
from dual.Sup_eq_top_iff show ?thesis .  | 
|
543  | 
qed  | 
|
544  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
545  | 
lemma INF_eq_bot_iff (*[simp]*):  | 
| 43967 | 546  | 
"(\<Sqinter>i\<in>A. f i) = \<bottom> \<longleftrightarrow> (\<forall>x>\<bottom>. \<exists>i\<in>A. f i < x)"  | 
547  | 
unfolding INF_def Inf_eq_bot_iff by auto  | 
|
548  | 
||
| 43940 | 549  | 
end  | 
550  | 
||
| 43873 | 551  | 
|
| 32139 | 552  | 
subsection {* @{typ bool} and @{typ "_ \<Rightarrow> _"} as complete lattice *}
 | 
| 
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
 | 
553  | 
|
| 44024 | 554  | 
instantiation bool :: complete_lattice  | 
| 
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
 | 
555  | 
begin  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
556  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
557  | 
definition  | 
| 44322 | 558  | 
[simp]: "\<Sqinter>A \<longleftrightarrow> False \<notin> 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
 | 
559  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
560  | 
definition  | 
| 44322 | 561  | 
[simp]: "\<Squnion>A \<longleftrightarrow> True \<in> 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
 | 
562  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
563  | 
instance proof  | 
| 44322 | 564  | 
qed (auto intro: bool_induct)  | 
| 
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
 | 
565  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
566  | 
end  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
567  | 
|
| 43873 | 568  | 
lemma INF_bool_eq [simp]:  | 
| 
32120
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
569  | 
"INFI = Ball"  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
570  | 
proof (rule ext)+  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
571  | 
fix A :: "'a set"  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
572  | 
fix P :: "'a \<Rightarrow> bool"  | 
| 43753 | 573  | 
show "(\<Sqinter>x\<in>A. P x) \<longleftrightarrow> (\<forall>x\<in>A. P x)"  | 
| 44322 | 574  | 
by (auto simp add: INF_def)  | 
| 
32120
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
575  | 
qed  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
576  | 
|
| 43873 | 577  | 
lemma SUP_bool_eq [simp]:  | 
| 
32120
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
578  | 
"SUPR = Bex"  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
579  | 
proof (rule ext)+  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
580  | 
fix A :: "'a set"  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
581  | 
fix P :: "'a \<Rightarrow> bool"  | 
| 43753 | 582  | 
show "(\<Squnion>x\<in>A. P x) \<longleftrightarrow> (\<exists>x\<in>A. P x)"  | 
| 44322 | 583  | 
by (auto simp add: SUP_def)  | 
| 
32120
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
584  | 
qed  | 
| 
 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 
haftmann 
parents: 
32117 
diff
changeset
 | 
585  | 
|
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
586  | 
instance bool :: complete_boolean_algebra proof  | 
| 44322 | 587  | 
qed (auto intro: bool_induct)  | 
| 44024 | 588  | 
|
| 
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
 | 
589  | 
instantiation "fun" :: (type, complete_lattice) complete_lattice  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
590  | 
begin  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
591  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
592  | 
definition  | 
| 44024 | 593  | 
"\<Sqinter>A = (\<lambda>x. \<Sqinter>f\<in>A. f x)"  | 
| 41080 | 594  | 
|
595  | 
lemma Inf_apply:  | 
|
| 44024 | 596  | 
"(\<Sqinter>A) x = (\<Sqinter>f\<in>A. f x)"  | 
| 41080 | 597  | 
by (simp add: Inf_fun_def)  | 
| 
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
 | 
598  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
599  | 
definition  | 
| 44024 | 600  | 
"\<Squnion>A = (\<lambda>x. \<Squnion>f\<in>A. f x)"  | 
| 41080 | 601  | 
|
602  | 
lemma Sup_apply:  | 
|
| 44024 | 603  | 
"(\<Squnion>A) x = (\<Squnion>f\<in>A. f x)"  | 
| 41080 | 604  | 
by (simp add: Sup_fun_def)  | 
| 
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
 | 
605  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
606  | 
instance proof  | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
607  | 
qed (auto simp add: le_fun_def Inf_apply Sup_apply intro: INF_lower INF_greatest SUP_upper SUP_least)  | 
| 
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
 | 
608  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
609  | 
end  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
610  | 
|
| 43873 | 611  | 
lemma INF_apply:  | 
| 41080 | 612  | 
"(\<Sqinter>y\<in>A. f y) x = (\<Sqinter>y\<in>A. f y x)"  | 
| 43872 | 613  | 
by (auto intro: arg_cong [of _ _ Inf] simp add: INF_def Inf_apply)  | 
| 38705 | 614  | 
|
| 43873 | 615  | 
lemma SUP_apply:  | 
| 41080 | 616  | 
"(\<Squnion>y\<in>A. f y) x = (\<Squnion>y\<in>A. f y x)"  | 
| 43872 | 617  | 
by (auto intro: arg_cong [of _ _ Sup] simp add: SUP_def Sup_apply)  | 
| 
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
 | 
618  | 
|
| 44024 | 619  | 
instance "fun" :: (type, complete_distrib_lattice) complete_distrib_lattice proof  | 
620  | 
qed (auto simp add: inf_apply sup_apply Inf_apply Sup_apply INF_def SUP_def inf_Sup sup_Inf image_image)  | 
|
621  | 
||
| 43873 | 622  | 
instance "fun" :: (type, complete_boolean_algebra) complete_boolean_algebra ..  | 
623  | 
||
| 
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
 | 
624  | 
|
| 41082 | 625  | 
subsection {* Inter *}
 | 
626  | 
||
627  | 
abbreviation Inter :: "'a set set \<Rightarrow> 'a set" where  | 
|
628  | 
"Inter S \<equiv> \<Sqinter>S"  | 
|
629  | 
||
630  | 
notation (xsymbols)  | 
|
631  | 
  Inter  ("\<Inter>_" [90] 90)
 | 
|
632  | 
||
633  | 
lemma Inter_eq:  | 
|
634  | 
  "\<Inter>A = {x. \<forall>B \<in> A. x \<in> B}"
 | 
|
635  | 
proof (rule set_eqI)  | 
|
636  | 
fix x  | 
|
637  | 
  have "(\<forall>Q\<in>{P. \<exists>B\<in>A. P \<longleftrightarrow> x \<in> B}. Q) \<longleftrightarrow> (\<forall>B\<in>A. x \<in> B)"
 | 
|
638  | 
by auto  | 
|
639  | 
  then show "x \<in> \<Inter>A \<longleftrightarrow> x \<in> {x. \<forall>B \<in> A. x \<in> B}"
 | 
|
| 44322 | 640  | 
by (simp add: Inf_fun_def) (simp add: mem_def)  | 
| 41082 | 641  | 
qed  | 
642  | 
||
| 43741 | 643  | 
lemma Inter_iff [simp,no_atp]: "A \<in> \<Inter>C \<longleftrightarrow> (\<forall>X\<in>C. A \<in> X)"  | 
| 41082 | 644  | 
by (unfold Inter_eq) blast  | 
645  | 
||
| 43741 | 646  | 
lemma InterI [intro!]: "(\<And>X. X \<in> C \<Longrightarrow> A \<in> X) \<Longrightarrow> A \<in> \<Inter>C"  | 
| 41082 | 647  | 
by (simp add: Inter_eq)  | 
648  | 
||
649  | 
text {*
 | 
|
650  | 
  \medskip A ``destruct'' rule -- every @{term X} in @{term C}
 | 
|
| 43741 | 651  | 
  contains @{term A} as an element, but @{prop "A \<in> X"} can hold when
 | 
652  | 
  @{prop "X \<in> C"} does not!  This rule is analogous to @{text spec}.
 | 
|
| 41082 | 653  | 
*}  | 
654  | 
||
| 43741 | 655  | 
lemma InterD [elim, Pure.elim]: "A \<in> \<Inter>C \<Longrightarrow> X \<in> C \<Longrightarrow> A \<in> X"  | 
| 41082 | 656  | 
by auto  | 
657  | 
||
| 43741 | 658  | 
lemma InterE [elim]: "A \<in> \<Inter>C \<Longrightarrow> (X \<notin> C \<Longrightarrow> R) \<Longrightarrow> (A \<in> X \<Longrightarrow> R) \<Longrightarrow> R"  | 
| 41082 | 659  | 
  -- {* ``Classical'' elimination rule -- does not require proving
 | 
| 43741 | 660  | 
    @{prop "X \<in> C"}. *}
 | 
| 41082 | 661  | 
by (unfold Inter_eq) blast  | 
662  | 
||
| 43741 | 663  | 
lemma Inter_lower: "B \<in> A \<Longrightarrow> \<Inter>A \<subseteq> B"  | 
| 43740 | 664  | 
by (fact Inf_lower)  | 
665  | 
||
| 41082 | 666  | 
lemma Inter_subset:  | 
| 43755 | 667  | 
  "(\<And>X. X \<in> A \<Longrightarrow> X \<subseteq> B) \<Longrightarrow> A \<noteq> {} \<Longrightarrow> \<Inter>A \<subseteq> B"
 | 
| 43740 | 668  | 
by (fact Inf_less_eq)  | 
| 41082 | 669  | 
|
| 43755 | 670  | 
lemma Inter_greatest: "(\<And>X. X \<in> A \<Longrightarrow> C \<subseteq> X) \<Longrightarrow> C \<subseteq> Inter A"  | 
| 43740 | 671  | 
by (fact Inf_greatest)  | 
| 41082 | 672  | 
|
| 44067 | 673  | 
lemma Inter_empty: "\<Inter>{} = UNIV"
 | 
674  | 
by (fact Inf_empty) (* already simp *)  | 
|
| 41082 | 675  | 
|
| 44067 | 676  | 
lemma Inter_UNIV: "\<Inter>UNIV = {}"
 | 
677  | 
by (fact Inf_UNIV) (* already simp *)  | 
|
| 41082 | 678  | 
|
679  | 
lemma Inter_insert [simp]: "\<Inter>(insert a B) = a \<inter> \<Inter>B"  | 
|
| 43739 | 680  | 
by (fact Inf_insert)  | 
| 41082 | 681  | 
|
682  | 
lemma Inter_Un_subset: "\<Inter>A \<union> \<Inter>B \<subseteq> \<Inter>(A \<inter> B)"  | 
|
| 43899 | 683  | 
by (fact less_eq_Inf_inter)  | 
| 41082 | 684  | 
|
685  | 
lemma Inter_Un_distrib: "\<Inter>(A \<union> B) = \<Inter>A \<inter> \<Inter>B"  | 
|
| 43756 | 686  | 
by (fact Inf_union_distrib)  | 
687  | 
||
| 43868 | 688  | 
lemma Inter_UNIV_conv [simp, no_atp]:  | 
| 43741 | 689  | 
"\<Inter>A = UNIV \<longleftrightarrow> (\<forall>x\<in>A. x = UNIV)"  | 
690  | 
"UNIV = \<Inter>A \<longleftrightarrow> (\<forall>x\<in>A. x = UNIV)"  | 
|
| 43801 | 691  | 
by (fact Inf_top_conv)+  | 
| 41082 | 692  | 
|
| 43741 | 693  | 
lemma Inter_anti_mono: "B \<subseteq> A \<Longrightarrow> \<Inter>A \<subseteq> \<Inter>B"  | 
| 43899 | 694  | 
by (fact Inf_superset_mono)  | 
| 41082 | 695  | 
|
696  | 
||
697  | 
subsection {* Intersections of families *}
 | 
|
698  | 
||
699  | 
abbreviation INTER :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
 | 
|
700  | 
"INTER \<equiv> INFI"  | 
|
701  | 
||
| 43872 | 702  | 
text {*
 | 
703  | 
  Note: must use name @{const INTER} here instead of @{text INT}
 | 
|
704  | 
to allow the following syntax coexist with the plain constant name.  | 
|
705  | 
*}  | 
|
706  | 
||
| 41082 | 707  | 
syntax  | 
708  | 
  "_INTER1"     :: "pttrns => 'b set => 'b set"           ("(3INT _./ _)" [0, 10] 10)
 | 
|
709  | 
  "_INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3INT _:_./ _)" [0, 0, 10] 10)
 | 
|
710  | 
||
711  | 
syntax (xsymbols)  | 
|
712  | 
  "_INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>_./ _)" [0, 10] 10)
 | 
|
713  | 
  "_INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>_\<in>_./ _)" [0, 0, 10] 10)
 | 
|
714  | 
||
715  | 
syntax (latex output)  | 
|
716  | 
  "_INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
 | 
|
717  | 
  "_INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 0, 10] 10)
 | 
|
718  | 
||
719  | 
translations  | 
|
720  | 
"INT x y. B" == "INT x. INT y. B"  | 
|
721  | 
"INT x. B" == "CONST INTER CONST UNIV (%x. B)"  | 
|
722  | 
"INT x. B" == "INT x:CONST UNIV. B"  | 
|
723  | 
"INT x:A. B" == "CONST INTER A (%x. B)"  | 
|
724  | 
||
725  | 
print_translation {*
 | 
|
| 42284 | 726  | 
  [Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax INTER} @{syntax_const "_INTER"}]
 | 
| 41082 | 727  | 
*} -- {* to avoid eta-contraction of body *}
 | 
728  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
729  | 
lemma INTER_eq:  | 
| 41082 | 730  | 
  "(\<Inter>x\<in>A. B x) = {y. \<forall>x\<in>A. y \<in> B x}"
 | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
731  | 
by (auto simp add: INF_def)  | 
| 41082 | 732  | 
|
733  | 
lemma Inter_image_eq [simp]:  | 
|
734  | 
"\<Inter>(B`A) = (\<Inter>x\<in>A. B x)"  | 
|
| 43872 | 735  | 
by (rule sym) (fact INF_def)  | 
| 41082 | 736  | 
|
| 43817 | 737  | 
lemma INT_iff [simp]: "b \<in> (\<Inter>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. b \<in> B x)"  | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
738  | 
by (auto simp add: INF_def image_def)  | 
| 41082 | 739  | 
|
| 43817 | 740  | 
lemma INT_I [intro!]: "(\<And>x. x \<in> A \<Longrightarrow> b \<in> B x) \<Longrightarrow> b \<in> (\<Inter>x\<in>A. B x)"  | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
741  | 
by (auto simp add: INF_def image_def)  | 
| 41082 | 742  | 
|
| 43852 | 743  | 
lemma INT_D [elim, Pure.elim]: "b \<in> (\<Inter>x\<in>A. B x) \<Longrightarrow> a \<in> A \<Longrightarrow> b \<in> B a"  | 
| 41082 | 744  | 
by auto  | 
745  | 
||
| 43852 | 746  | 
lemma INT_E [elim]: "b \<in> (\<Inter>x\<in>A. B x) \<Longrightarrow> (b \<in> B a \<Longrightarrow> R) \<Longrightarrow> (a \<notin> A \<Longrightarrow> R) \<Longrightarrow> R"  | 
747  | 
  -- {* "Classical" elimination -- by the Excluded Middle on @{prop "a\<in>A"}. *}
 | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
748  | 
by (auto simp add: INF_def image_def)  | 
| 41082 | 749  | 
|
750  | 
lemma INT_cong [cong]:  | 
|
| 43854 | 751  | 
"A = B \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> C x = D x) \<Longrightarrow> (\<Inter>x\<in>A. C x) = (\<Inter>x\<in>B. D x)"  | 
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
752  | 
by (fact INF_cong)  | 
| 41082 | 753  | 
|
754  | 
lemma Collect_ball_eq: "{x. \<forall>y\<in>A. P x y} = (\<Inter>y\<in>A. {x. P x y})"
 | 
|
755  | 
by blast  | 
|
756  | 
||
757  | 
lemma Collect_all_eq: "{x. \<forall>y. P x y} = (\<Inter>y. {x. P x y})"
 | 
|
758  | 
by blast  | 
|
759  | 
||
| 43817 | 760  | 
lemma INT_lower: "a \<in> A \<Longrightarrow> (\<Inter>x\<in>A. B x) \<subseteq> B a"  | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
761  | 
by (fact INF_lower)  | 
| 41082 | 762  | 
|
| 43817 | 763  | 
lemma INT_greatest: "(\<And>x. x \<in> A \<Longrightarrow> C \<subseteq> B x) \<Longrightarrow> C \<subseteq> (\<Inter>x\<in>A. B x)"  | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
764  | 
by (fact INF_greatest)  | 
| 41082 | 765  | 
|
| 44067 | 766  | 
lemma INT_empty: "(\<Inter>x\<in>{}. B x) = UNIV"
 | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
767  | 
by (fact INF_empty)  | 
| 43854 | 768  | 
|
| 43817 | 769  | 
lemma INT_absorb: "k \<in> I \<Longrightarrow> A k \<inter> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. A i)"  | 
| 43872 | 770  | 
by (fact INF_absorb)  | 
| 41082 | 771  | 
|
| 43854 | 772  | 
lemma INT_subset_iff: "B \<subseteq> (\<Inter>i\<in>I. A i) \<longleftrightarrow> (\<forall>i\<in>I. B \<subseteq> A i)"  | 
| 41082 | 773  | 
by (fact le_INF_iff)  | 
774  | 
||
775  | 
lemma INT_insert [simp]: "(\<Inter>x \<in> insert a A. B x) = B a \<inter> INTER A B"  | 
|
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
776  | 
by (fact INF_insert)  | 
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
777  | 
|
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
778  | 
lemma INT_Un: "(\<Inter>i \<in> A \<union> B. M i) = (\<Inter>i \<in> A. M i) \<inter> (\<Inter>i\<in>B. M i)"  | 
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
779  | 
by (fact INF_union)  | 
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
780  | 
|
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
781  | 
lemma INT_insert_distrib:  | 
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
782  | 
"u \<in> A \<Longrightarrow> (\<Inter>x\<in>A. insert a (B x)) = insert a (\<Inter>x\<in>A. B x)"  | 
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
783  | 
by blast  | 
| 43854 | 784  | 
|
| 41082 | 785  | 
lemma INT_constant [simp]: "(\<Inter>y\<in>A. c) = (if A = {} then UNIV else c)"
 | 
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
786  | 
by (fact INF_constant)  | 
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
787  | 
|
| 43854 | 788  | 
lemma INTER_UNIV_conv [simp]:  | 
| 43817 | 789  | 
"(UNIV = (\<Inter>x\<in>A. B x)) = (\<forall>x\<in>A. B x = UNIV)"  | 
790  | 
"((\<Inter>x\<in>A. B x) = UNIV) = (\<forall>x\<in>A. B x = UNIV)"  | 
|
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
791  | 
by (fact INF_top_conv)+  | 
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
792  | 
|
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
793  | 
lemma INT_bool_eq: "(\<Inter>b. A b) = A True \<inter> A False"  | 
| 43873 | 794  | 
by (fact INF_UNIV_bool_expand)  | 
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
795  | 
|
| 
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
796  | 
lemma INT_anti_mono:  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
797  | 
"A \<subseteq> B \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> f x \<subseteq> g x) \<Longrightarrow> (\<Inter>x\<in>B. f x) \<subseteq> (\<Inter>x\<in>A. g x)"  | 
| 
43865
 
db18f4d0cc7d
further generalization from sets to complete lattices
 
haftmann 
parents: 
43854 
diff
changeset
 | 
798  | 
  -- {* The last inclusion is POSITIVE! *}
 | 
| 43940 | 799  | 
by (fact INF_superset_mono)  | 
| 41082 | 800  | 
|
801  | 
lemma Pow_INT_eq: "Pow (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. Pow (B x))"  | 
|
802  | 
by blast  | 
|
803  | 
||
| 43817 | 804  | 
lemma vimage_INT: "f -` (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. f -` B x)"  | 
| 41082 | 805  | 
by blast  | 
806  | 
||
807  | 
||
| 32139 | 808  | 
subsection {* Union *}
 | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
809  | 
|
| 
32587
 
caa5ada96a00
Inter and Union are mere abbreviations for Inf and Sup
 
haftmann 
parents: 
32436 
diff
changeset
 | 
810  | 
abbreviation Union :: "'a set set \<Rightarrow> 'a set" where  | 
| 
 
caa5ada96a00
Inter and Union are mere abbreviations for Inf and Sup
 
haftmann 
parents: 
32436 
diff
changeset
 | 
811  | 
"Union S \<equiv> \<Squnion>S"  | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
812  | 
|
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
813  | 
notation (xsymbols)  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
814  | 
  Union  ("\<Union>_" [90] 90)
 | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
815  | 
|
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
816  | 
lemma Union_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
 | 
817  | 
  "\<Union>A = {x. \<exists>B \<in> A. x \<in> B}"
 | 
| 
39302
 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 
nipkow 
parents: 
38705 
diff
changeset
 | 
818  | 
proof (rule set_eqI)  | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
819  | 
fix 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
 | 
820  | 
  have "(\<exists>Q\<in>{P. \<exists>B\<in>A. P \<longleftrightarrow> x \<in> B}. Q) \<longleftrightarrow> (\<exists>B\<in>A. x \<in> B)"
 | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
821  | 
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
 | 
822  | 
  then show "x \<in> \<Union>A \<longleftrightarrow> x \<in> {x. \<exists>B\<in>A. x \<in> B}"
 | 
| 44322 | 823  | 
by (simp add: Sup_fun_def) (simp add: mem_def)  | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
824  | 
qed  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
825  | 
|
| 
35828
 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 
blanchet 
parents: 
35629 
diff
changeset
 | 
826  | 
lemma Union_iff [simp, no_atp]:  | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
827  | 
"A \<in> \<Union>C \<longleftrightarrow> (\<exists>X\<in>C. A\<in>X)"  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
828  | 
by (unfold Union_eq) blast  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
829  | 
|
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
830  | 
lemma UnionI [intro]:  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
831  | 
"X \<in> C \<Longrightarrow> A \<in> X \<Longrightarrow> A \<in> \<Union>C"  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
832  | 
  -- {* The order of the premises presupposes that @{term C} is rigid;
 | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
833  | 
    @{term A} may be flexible. *}
 | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
834  | 
by auto  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
835  | 
|
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
836  | 
lemma UnionE [elim!]:  | 
| 43817 | 837  | 
"A \<in> \<Union>C \<Longrightarrow> (\<And>X. A \<in> X \<Longrightarrow> X \<in> C \<Longrightarrow> R) \<Longrightarrow> R"  | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
838  | 
by auto  | 
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
839  | 
|
| 43817 | 840  | 
lemma Union_upper: "B \<in> A \<Longrightarrow> B \<subseteq> \<Union>A"  | 
| 43901 | 841  | 
by (fact Sup_upper)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
842  | 
|
| 43817 | 843  | 
lemma Union_least: "(\<And>X. X \<in> A \<Longrightarrow> X \<subseteq> C) \<Longrightarrow> \<Union>A \<subseteq> C"  | 
| 43901 | 844  | 
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
 | 
845  | 
|
| 43817 | 846  | 
lemma Union_empty [simp]: "\<Union>{} = {}"
 | 
| 43901 | 847  | 
by (fact Sup_empty)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
848  | 
|
| 43817 | 849  | 
lemma Union_UNIV [simp]: "\<Union>UNIV = UNIV"  | 
| 43901 | 850  | 
by (fact Sup_UNIV)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
851  | 
|
| 43817 | 852  | 
lemma Union_insert [simp]: "\<Union>insert a B = a \<union> \<Union>B"  | 
| 43901 | 853  | 
by (fact Sup_insert)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
854  | 
|
| 43817 | 855  | 
lemma Union_Un_distrib [simp]: "\<Union>(A \<union> B) = \<Union>A \<union> \<Union>B"  | 
| 43901 | 856  | 
by (fact Sup_union_distrib)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
857  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
858  | 
lemma Union_Int_subset: "\<Union>(A \<inter> B) \<subseteq> \<Union>A \<inter> \<Union>B"  | 
| 43901 | 859  | 
by (fact Sup_inter_less_eq)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
860  | 
|
| 43817 | 861  | 
lemma Union_empty_conv [simp,no_atp]: "(\<Union>A = {}) \<longleftrightarrow> (\<forall>x\<in>A. x = {})"
 | 
| 43901 | 862  | 
by (fact Sup_bot_conv)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
863  | 
|
| 43817 | 864  | 
lemma empty_Union_conv [simp,no_atp]: "({} = \<Union>A) \<longleftrightarrow> (\<forall>x\<in>A. x = {})"
 | 
| 43901 | 865  | 
by (fact Sup_bot_conv)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
866  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
867  | 
lemma subset_Pow_Union: "A \<subseteq> Pow (\<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
 | 
868  | 
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
 | 
869  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
870  | 
lemma Union_Pow_eq [simp]: "\<Union>(Pow 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
 | 
871  | 
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
 | 
872  | 
|
| 43817 | 873  | 
lemma Union_mono: "A \<subseteq> B \<Longrightarrow> \<Union>A \<subseteq> \<Union>B"  | 
| 43901 | 874  | 
by (fact Sup_subset_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
 | 
875  | 
|
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
876  | 
|
| 32139 | 877  | 
subsection {* Unions of families *}
 | 
| 
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
 | 
878  | 
|
| 
32606
 
b5c3a8a75772
INTER and UNION are mere abbreviations for INFI and SUPR
 
haftmann 
parents: 
32587 
diff
changeset
 | 
879  | 
abbreviation UNION :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
 | 
| 
 
b5c3a8a75772
INTER and UNION are mere abbreviations for INFI and SUPR
 
haftmann 
parents: 
32587 
diff
changeset
 | 
880  | 
"UNION \<equiv> SUPR"  | 
| 
32077
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
881  | 
|
| 43872 | 882  | 
text {*
 | 
883  | 
  Note: must use name @{const UNION} here instead of @{text UN}
 | 
|
884  | 
to allow the following syntax coexist with the plain constant name.  | 
|
885  | 
*}  | 
|
886  | 
||
| 
32077
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
887  | 
syntax  | 
| 35115 | 888  | 
  "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3UN _./ _)" [0, 10] 10)
 | 
| 
36364
 
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
 
huffman 
parents: 
35828 
diff
changeset
 | 
889  | 
  "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3UN _:_./ _)" [0, 0, 10] 10)
 | 
| 
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
 | 
890  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
891  | 
syntax (xsymbols)  | 
| 35115 | 892  | 
  "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>_./ _)" [0, 10] 10)
 | 
| 
36364
 
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
 
huffman 
parents: 
35828 
diff
changeset
 | 
893  | 
  "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>_\<in>_./ _)" [0, 0, 10] 10)
 | 
| 
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
 | 
894  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
895  | 
syntax (latex output)  | 
| 35115 | 896  | 
  "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
 | 
| 
36364
 
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
 
huffman 
parents: 
35828 
diff
changeset
 | 
897  | 
  "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 0, 10] 10)
 | 
| 
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
 | 
898  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
899  | 
translations  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
900  | 
"UN x y. B" == "UN x. UN y. B"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
901  | 
"UN x. B" == "CONST UNION CONST UNIV (%x. B)"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
902  | 
"UN x. B" == "UN x:CONST UNIV. B"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
903  | 
"UN x:A. B" == "CONST UNION A (%x. B)"  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
904  | 
|
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
905  | 
text {*
 | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
906  | 
Note the difference between ordinary xsymbol syntax of indexed  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
907  | 
  unions and intersections (e.g.\ @{text"\<Union>a\<^isub>1\<in>A\<^isub>1. B"})
 | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
908  | 
  and their \LaTeX\ rendition: @{term"\<Union>a\<^isub>1\<in>A\<^isub>1. B"}. The
 | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
909  | 
former does not make the index expression a subscript of the  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
910  | 
union/intersection symbol because this leads to problems with nested  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
911  | 
subscripts in Proof General.  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
912  | 
*}  | 
| 
 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 
haftmann 
parents: 
32064 
diff
changeset
 | 
913  | 
|
| 35115 | 914  | 
print_translation {*
 | 
| 42284 | 915  | 
  [Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax UNION} @{syntax_const "_UNION"}]
 | 
| 35115 | 916  | 
*} -- {* to avoid eta-contraction of body *}
 | 
| 
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
 | 
917  | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
918  | 
lemma UNION_eq [no_atp]:  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
919  | 
  "(\<Union>x\<in>A. B x) = {y. \<exists>x\<in>A. y \<in> B x}"
 | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
920  | 
by (auto simp add: SUP_def)  | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
921  | 
|
| 
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
922  | 
lemma Union_image_eq [simp]:  | 
| 43817 | 923  | 
"\<Union>(B ` A) = (\<Union>x\<in>A. B x)"  | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
924  | 
by (auto simp add: UNION_eq)  | 
| 
32115
 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 
haftmann 
parents: 
32082 
diff
changeset
 | 
925  | 
|
| 43852 | 926  | 
lemma UN_iff [simp]: "(b \<in> (\<Union>x\<in>A. B x)) = (\<exists>x\<in>A. b \<in> B x)"  | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
927  | 
by (auto simp add: SUP_def image_def)  | 
| 11979 | 928  | 
|
| 43852 | 929  | 
lemma UN_I [intro]: "a \<in> A \<Longrightarrow> b \<in> B a \<Longrightarrow> b \<in> (\<Union>x\<in>A. B x)"  | 
| 11979 | 930  | 
  -- {* The order of the premises presupposes that @{term A} is rigid;
 | 
931  | 
    @{term b} may be flexible. *}
 | 
|
932  | 
by auto  | 
|
933  | 
||
| 43852 | 934  | 
lemma UN_E [elim!]: "b \<in> (\<Union>x\<in>A. B x) \<Longrightarrow> (\<And>x. x\<in>A \<Longrightarrow> b \<in> B x \<Longrightarrow> R) \<Longrightarrow> R"  | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
935  | 
by (auto simp add: SUP_def image_def)  | 
| 923 | 936  | 
|
| 11979 | 937  | 
lemma UN_cong [cong]:  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
938  | 
"A = B \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> C x = D x) \<Longrightarrow> (\<Union>x\<in>A. C x) = (\<Union>x\<in>B. D x)"  | 
| 
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
939  | 
by (fact SUP_cong)  | 
| 11979 | 940  | 
|
| 29691 | 941  | 
lemma strong_UN_cong:  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
942  | 
"A = B \<Longrightarrow> (\<And>x. x \<in> B =simp=> C x = D x) \<Longrightarrow> (\<Union>x\<in>A. C x) = (\<Union>x\<in>B. D x)"  | 
| 
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
943  | 
by (unfold simp_implies_def) (fact UN_cong)  | 
| 29691 | 944  | 
|
| 43817 | 945  | 
lemma image_eq_UN: "f ` A = (\<Union>x\<in>A. {f x})"
 | 
| 
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
 | 
946  | 
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
 | 
947  | 
|
| 43817 | 948  | 
lemma UN_upper: "a \<in> A \<Longrightarrow> B a \<subseteq> (\<Union>x\<in>A. B x)"  | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
949  | 
by (fact SUP_upper)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
950  | 
|
| 43817 | 951  | 
lemma UN_least: "(\<And>x. x \<in> A \<Longrightarrow> B x \<subseteq> C) \<Longrightarrow> (\<Union>x\<in>A. B x) \<subseteq> C"  | 
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
952  | 
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
 | 
953  | 
|
| 
35828
 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 
blanchet 
parents: 
35629 
diff
changeset
 | 
954  | 
lemma Collect_bex_eq [no_atp]: "{x. \<exists>y\<in>A. P x y} = (\<Union>y\<in>A. {x. P x 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
 | 
955  | 
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
 | 
956  | 
|
| 43817 | 957  | 
lemma UN_insert_distrib: "u \<in> A \<Longrightarrow> (\<Union>x\<in>A. insert a (B x)) = insert a (\<Union>x\<in>A. B 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
 | 
958  | 
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
 | 
959  | 
|
| 44067 | 960  | 
lemma UN_empty [no_atp]: "(\<Union>x\<in>{}. B x) = {}"
 | 
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
961  | 
by (fact SUP_empty)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
962  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
963  | 
lemma UN_empty2 [simp]: "(\<Union>x\<in>A. {}) = {}"
 | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
964  | 
by (fact SUP_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
 | 
965  | 
|
| 43817 | 966  | 
lemma UN_absorb: "k \<in> I \<Longrightarrow> A k \<union> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. A i)"  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
967  | 
by (fact SUP_absorb)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
968  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
969  | 
lemma UN_insert [simp]: "(\<Union>x\<in>insert a A. B x) = B a \<union> UNION A B"  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
970  | 
by (fact SUP_insert)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
971  | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
972  | 
lemma UN_Un [simp]: "(\<Union>i \<in> A \<union> B. M i) = (\<Union>i\<in>A. M i) \<union> (\<Union>i\<in>B. M i)"  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
973  | 
by (fact SUP_union)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
974  | 
|
| 43967 | 975  | 
lemma UN_UN_flatten: "(\<Union>x \<in> (\<Union>y\<in>A. B y). C x) = (\<Union>y\<in>A. \<Union>x\<in>B y. C 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
 | 
976  | 
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
 | 
977  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
978  | 
lemma UN_subset_iff: "((\<Union>i\<in>I. A i) \<subseteq> B) = (\<forall>i\<in>I. A i \<subseteq> B)"  | 
| 35629 | 979  | 
by (fact SUP_le_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
 | 
980  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
981  | 
lemma UN_constant [simp]: "(\<Union>y\<in>A. c) = (if A = {} then {} else c)"
 | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
982  | 
by (fact SUP_constant)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
983  | 
|
| 43944 | 984  | 
lemma image_Union: "f ` \<Union>S = (\<Union>x\<in>S. f ` 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
 | 
985  | 
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
 | 
986  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
987  | 
lemma UNION_empty_conv[simp]:  | 
| 43817 | 988  | 
  "{} = (\<Union>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. B x = {})"
 | 
989  | 
  "(\<Union>x\<in>A. B x) = {} \<longleftrightarrow> (\<forall>x\<in>A. B x = {})"
 | 
|
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
990  | 
by (fact SUP_bot_conv)+  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
991  | 
|
| 
35828
 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 
blanchet 
parents: 
35629 
diff
changeset
 | 
992  | 
lemma Collect_ex_eq [no_atp]: "{x. \<exists>y. P x y} = (\<Union>y. {x. P x 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
 | 
993  | 
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
 | 
994  | 
|
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
995  | 
lemma ball_UN: "(\<forall>z \<in> UNION A B. P z) \<longleftrightarrow> (\<forall>x\<in>A. \<forall>z \<in> B x. P z)"  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
996  | 
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
 | 
997  | 
|
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
998  | 
lemma bex_UN: "(\<exists>z \<in> UNION A B. P z) \<longleftrightarrow> (\<exists>x\<in>A. \<exists>z\<in>B x. P z)"  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
999  | 
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
 | 
1000  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1001  | 
lemma Un_eq_UN: "A \<union> B = (\<Union>b. if b then A else 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
 | 
1002  | 
by (auto simp add: split_if_mem2)  | 
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1003  | 
|
| 43817 | 1004  | 
lemma UN_bool_eq: "(\<Union>b. A b) = (A True \<union> A False)"  | 
| 
43900
 
7162691e740b
generalization; various notation and proof tuning
 
haftmann 
parents: 
43899 
diff
changeset
 | 
1005  | 
by (fact SUP_UNIV_bool_expand)  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1006  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1007  | 
lemma UN_Pow_subset: "(\<Union>x\<in>A. Pow (B x)) \<subseteq> Pow (\<Union>x\<in>A. B 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
 | 
1008  | 
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
 | 
1009  | 
|
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1010  | 
lemma UN_mono:  | 
| 43817 | 1011  | 
"A \<subseteq> B \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> f x \<subseteq> g x) \<Longrightarrow>  | 
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1012  | 
(\<Union>x\<in>A. f x) \<subseteq> (\<Union>x\<in>B. g x)"  | 
| 43940 | 1013  | 
by (fact SUP_subset_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
 | 
1014  | 
|
| 43817 | 1015  | 
lemma vimage_Union: "f -` (\<Union>A) = (\<Union>X\<in>A. f -` 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
 | 
1016  | 
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
 | 
1017  | 
|
| 43817 | 1018  | 
lemma vimage_UN: "f -` (\<Union>x\<in>A. B x) = (\<Union>x\<in>A. f -` B 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
 | 
1019  | 
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
 | 
1020  | 
|
| 43817 | 1021  | 
lemma vimage_eq_UN: "f -` B = (\<Union>y\<in>B. f -` {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
 | 
1022  | 
  -- {* NOT suitable for rewriting *}
 | 
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1023  | 
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
 | 
1024  | 
|
| 43817 | 1025  | 
lemma image_UN: "f ` UNION A B = (\<Union>x\<in>A. f ` B x)"  | 
1026  | 
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
 | 
1027  | 
|
| 11979 | 1028  | 
|
| 32139 | 1029  | 
subsection {* Distributive laws *}
 | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1030  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1031  | 
lemma Int_Union: "A \<inter> \<Union>B = (\<Union>C\<in>B. A \<inter> C)"  | 
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
1032  | 
by (fact inf_Sup)  | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1033  | 
|
| 44039 | 1034  | 
lemma Un_Inter: "A \<union> \<Inter>B = (\<Inter>C\<in>B. A \<union> C)"  | 
1035  | 
by (fact sup_Inf)  | 
|
1036  | 
||
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1037  | 
lemma Int_Union2: "\<Union>B \<inter> A = (\<Union>C\<in>B. C \<inter> A)"  | 
| 44039 | 1038  | 
by (fact Sup_inf)  | 
1039  | 
||
1040  | 
lemma INT_Int_distrib: "(\<Inter>i\<in>I. A i \<inter> B i) = (\<Inter>i\<in>I. A i) \<inter> (\<Inter>i\<in>I. B i)"  | 
|
1041  | 
by (rule sym) (rule INF_inf_distrib)  | 
|
1042  | 
||
1043  | 
lemma UN_Un_distrib: "(\<Union>i\<in>I. A i \<union> B i) = (\<Union>i\<in>I. A i) \<union> (\<Union>i\<in>I. B i)"  | 
|
1044  | 
by (rule sym) (rule SUP_sup_distrib)  | 
|
1045  | 
||
1046  | 
lemma Int_Inter_image: "(\<Inter>x\<in>C. A x \<inter> B x) = \<Inter>(A ` C) \<inter> \<Inter>(B ` C)"  | 
|
1047  | 
by (simp only: INT_Int_distrib INF_def)  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1048  | 
|
| 43817 | 1049  | 
lemma Un_Union_image: "(\<Union>x\<in>C. A x \<union> B x) = \<Union>(A ` C) \<union> \<Union>(B ` C)"  | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1050  | 
  -- {* Devlin, Fundamentals of Contemporary Set Theory, page 12, exercise 5: *}
 | 
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1051  | 
  -- {* Union of a family of unions *}
 | 
| 44039 | 1052  | 
by (simp only: UN_Un_distrib SUP_def)  | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1053  | 
|
| 44039 | 1054  | 
lemma Un_INT_distrib: "B \<union> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. B \<union> A i)"  | 
1055  | 
by (fact sup_INF)  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1056  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1057  | 
lemma Int_UN_distrib: "B \<inter> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. B \<inter> A i)"  | 
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1058  | 
  -- {* Halmos, Naive Set Theory, page 35. *}
 | 
| 44039 | 1059  | 
by (fact inf_SUP)  | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1060  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1061  | 
lemma Int_UN_distrib2: "(\<Union>i\<in>I. A i) \<inter> (\<Union>j\<in>J. B j) = (\<Union>i\<in>I. \<Union>j\<in>J. A i \<inter> B j)"  | 
| 44039 | 1062  | 
by (fact SUP_inf_distrib2)  | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1063  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1064  | 
lemma Un_INT_distrib2: "(\<Inter>i\<in>I. A i) \<union> (\<Inter>j\<in>J. B j) = (\<Inter>i\<in>I. \<Inter>j\<in>J. A i \<union> B j)"  | 
| 44039 | 1065  | 
by (fact INF_sup_distrib2)  | 
1066  | 
||
1067  | 
lemma Union_disjoint: "(\<Union>C \<inter> A = {}) \<longleftrightarrow> (\<forall>B\<in>C. B \<inter> A = {})"
 | 
|
1068  | 
by (fact Sup_inf_eq_bot_iff)  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1069  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1070  | 
|
| 32139 | 1071  | 
subsection {* Complement *}
 | 
| 
32135
 
f645b51e8e54
set 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  | 
|
| 43873 | 1073  | 
lemma Compl_INT [simp]: "- (\<Inter>x\<in>A. B x) = (\<Union>x\<in>A. -B x)"  | 
1074  | 
by (fact uminus_INF)  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1075  | 
|
| 43873 | 1076  | 
lemma Compl_UN [simp]: "- (\<Union>x\<in>A. B x) = (\<Inter>x\<in>A. -B x)"  | 
1077  | 
by (fact uminus_SUP)  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1078  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1079  | 
|
| 32139 | 1080  | 
subsection {* Miniscoping and maxiscoping *}
 | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1081  | 
|
| 13860 | 1082  | 
text {* \medskip Miniscoping: pushing in quantifiers and big Unions
 | 
1083  | 
and Intersections. *}  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1084  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1085  | 
lemma UN_simps [simp]:  | 
| 43817 | 1086  | 
  "\<And>a B C. (\<Union>x\<in>C. insert a (B x)) = (if C={} then {} else insert a (\<Union>x\<in>C. B x))"
 | 
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
1087  | 
  "\<And>A B C. (\<Union>x\<in>C. A x \<union> B) = ((if C={} then {} else (\<Union>x\<in>C. A x) \<union> B))"
 | 
| 43852 | 1088  | 
  "\<And>A B C. (\<Union>x\<in>C. A \<union> B x) = ((if C={} then {} else A \<union> (\<Union>x\<in>C. B x)))"
 | 
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
1089  | 
"\<And>A B C. (\<Union>x\<in>C. A x \<inter> B) = ((\<Union>x\<in>C. A x) \<inter> B)"  | 
| 43852 | 1090  | 
"\<And>A B C. (\<Union>x\<in>C. A \<inter> B x) = (A \<inter>(\<Union>x\<in>C. B x))"  | 
1091  | 
"\<And>A B C. (\<Union>x\<in>C. A x - B) = ((\<Union>x\<in>C. A x) - B)"  | 
|
1092  | 
"\<And>A B C. (\<Union>x\<in>C. A - B x) = (A - (\<Inter>x\<in>C. B x))"  | 
|
1093  | 
"\<And>A B. (\<Union>x\<in>\<Union>A. B x) = (\<Union>y\<in>A. \<Union>x\<in>y. B x)"  | 
|
1094  | 
"\<And>A B C. (\<Union>z\<in>UNION A B. C z) = (\<Union>x\<in>A. \<Union>z\<in>B x. C z)"  | 
|
| 43831 | 1095  | 
"\<And>A B f. (\<Union>x\<in>f`A. B x) = (\<Union>a\<in>A. B (f a))"  | 
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1096  | 
by auto  | 
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1097  | 
|
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1098  | 
lemma INT_simps [simp]:  | 
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
1099  | 
  "\<And>A B C. (\<Inter>x\<in>C. A x \<inter> B) = (if C={} then UNIV else (\<Inter>x\<in>C. A x) \<inter> B)"
 | 
| 43831 | 1100  | 
  "\<And>A B C. (\<Inter>x\<in>C. A \<inter> B x) = (if C={} then UNIV else A \<inter>(\<Inter>x\<in>C. B x))"
 | 
| 43852 | 1101  | 
  "\<And>A B C. (\<Inter>x\<in>C. A x - B) = (if C={} then UNIV else (\<Inter>x\<in>C. A x) - B)"
 | 
1102  | 
  "\<And>A B C. (\<Inter>x\<in>C. A - B x) = (if C={} then UNIV else A - (\<Union>x\<in>C. B x))"
 | 
|
| 43817 | 1103  | 
"\<And>a B C. (\<Inter>x\<in>C. insert a (B x)) = insert a (\<Inter>x\<in>C. B x)"  | 
| 43852 | 1104  | 
"\<And>A B C. (\<Inter>x\<in>C. A x \<union> B) = ((\<Inter>x\<in>C. A x) \<union> B)"  | 
1105  | 
"\<And>A B C. (\<Inter>x\<in>C. A \<union> B x) = (A \<union> (\<Inter>x\<in>C. B x))"  | 
|
1106  | 
"\<And>A B. (\<Inter>x\<in>\<Union>A. B x) = (\<Inter>y\<in>A. \<Inter>x\<in>y. B x)"  | 
|
1107  | 
"\<And>A B C. (\<Inter>z\<in>UNION A B. C z) = (\<Inter>x\<in>A. \<Inter>z\<in>B x. C z)"  | 
|
1108  | 
"\<And>A B f. (\<Inter>x\<in>f`A. B x) = (\<Inter>a\<in>A. B (f a))"  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1109  | 
by auto  | 
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1110  | 
|
| 43967 | 1111  | 
lemma UN_ball_bex_simps [simp, no_atp]:  | 
| 43852 | 1112  | 
"\<And>A P. (\<forall>x\<in>\<Union>A. P x) \<longleftrightarrow> (\<forall>y\<in>A. \<forall>x\<in>y. P x)"  | 
| 43967 | 1113  | 
"\<And>A B P. (\<forall>x\<in>UNION A B. P x) = (\<forall>a\<in>A. \<forall>x\<in> B a. P x)"  | 
| 43852 | 1114  | 
"\<And>A P. (\<exists>x\<in>\<Union>A. P x) \<longleftrightarrow> (\<exists>y\<in>A. \<exists>x\<in>y. P x)"  | 
1115  | 
"\<And>A B P. (\<exists>x\<in>UNION A B. P x) \<longleftrightarrow> (\<exists>a\<in>A. \<exists>x\<in>B a. P x)"  | 
|
| 
12897
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1116  | 
by auto  | 
| 
 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 
wenzelm 
parents: 
12633 
diff
changeset
 | 
1117  | 
|
| 43943 | 1118  | 
|
| 13860 | 1119  | 
text {* \medskip Maxiscoping: pulling out big Unions and Intersections. *}
 | 
1120  | 
||
1121  | 
lemma UN_extend_simps:  | 
|
| 43817 | 1122  | 
  "\<And>a B C. insert a (\<Union>x\<in>C. B x) = (if C={} then {a} else (\<Union>x\<in>C. insert a (B x)))"
 | 
| 
44032
 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 
haftmann 
parents: 
44029 
diff
changeset
 | 
1123  | 
  "\<And>A B C. (\<Union>x\<in>C. A x) \<union> B = (if C={} then B else (\<Union>x\<in>C. A x \<union> B))"
 | 
| 43852 | 1124  | 
  "\<And>A B C. A \<union> (\<Union>x\<in>C. B x) = (if C={} then A else (\<Union>x\<in>C. A \<union> B x))"
 | 
1125  | 
"\<And>A B C. ((\<Union>x\<in>C. A x) \<inter> B) = (\<Union>x\<in>C. A x \<inter> B)"  | 
|
1126  | 
"\<And>A B C. (A \<inter> (\<Union>x\<in>C. B x)) = (\<Union>x\<in>C. A \<inter> B x)"  | 
|
| 43817 | 1127  | 
"\<And>A B C. ((\<Union>x\<in>C. A x) - B) = (\<Union>x\<in>C. A x - B)"  | 
1128  | 
"\<And>A B C. (A - (\<Inter>x\<in>C. B x)) = (\<Union>x\<in>C. A - B x)"  | 
|
| 43852 | 1129  | 
"\<And>A B. (\<Union>y\<in>A. \<Union>x\<in>y. B x) = (\<Union>x\<in>\<Union>A. B x)"  | 
1130  | 
"\<And>A B C. (\<Union>x\<in>A. \<Union>z\<in>B x. C z) = (\<Union>z\<in>UNION A B. C z)"  | 
|
| 43831 | 1131  | 
"\<And>A B f. (\<Union>a\<in>A. B (f a)) = (\<Union>x\<in>f`A. B x)"  | 
| 13860 | 1132  | 
by auto  | 
1133  | 
||
1134  | 
lemma INT_extend_simps:  | 
|
| 43852 | 1135  | 
  "\<And>A B C. (\<Inter>x\<in>C. A x) \<inter> B = (if C={} then B else (\<Inter>x\<in>C. A x \<inter> B))"
 | 
1136  | 
  "\<And>A B C. A \<inter> (\<Inter>x\<in>C. B x) = (if C={} then A else (\<Inter>x\<in>C. A \<inter> B x))"
 | 
|
1137  | 
  "\<And>A B C. (\<Inter>x\<in>C. A x) - B = (if C={} then UNIV - B else (\<Inter>x\<in>C. A x - B))"
 | 
|
1138  | 
  "\<And>A B C. A - (\<Union>x\<in>C. B x) = (if C={} then A else (\<Inter>x\<in>C. A - B x))"
 | 
|
| 43817 | 1139  | 
"\<And>a B C. insert a (\<Inter>x\<in>C. B x) = (\<Inter>x\<in>C. insert a (B x))"  | 
| 43852 | 1140  | 
"\<And>A B C. ((\<Inter>x\<in>C. A x) \<union> B) = (\<Inter>x\<in>C. A x \<union> B)"  | 
1141  | 
"\<And>A B C. A \<union> (\<Inter>x\<in>C. B x) = (\<Inter>x\<in>C. A \<union> B x)"  | 
|
1142  | 
"\<And>A B. (\<Inter>y\<in>A. \<Inter>x\<in>y. B x) = (\<Inter>x\<in>\<Union>A. B x)"  | 
|
1143  | 
"\<And>A B C. (\<Inter>x\<in>A. \<Inter>z\<in>B x. C z) = (\<Inter>z\<in>UNION A B. C z)"  | 
|
1144  | 
"\<And>A B f. (\<Inter>a\<in>A. B (f a)) = (\<Inter>x\<in>f`A. B x)"  | 
|
| 13860 | 1145  | 
by auto  | 
1146  | 
||
1147  | 
||
| 43872 | 1148  | 
text {* Legacy names *}
 | 
1149  | 
||
| 44083 | 1150  | 
lemma (in complete_lattice) Inf_singleton [simp]:  | 
| 44082 | 1151  | 
  "\<Sqinter>{a} = a"
 | 
| 44083 | 1152  | 
by (simp add: Inf_insert)  | 
| 44082 | 1153  | 
|
| 44083 | 1154  | 
lemma (in complete_lattice) Sup_singleton [simp]:  | 
| 44082 | 1155  | 
  "\<Squnion>{a} = a"
 | 
| 44083 | 1156  | 
by (simp add: Sup_insert)  | 
| 44082 | 1157  | 
|
| 44083 | 1158  | 
lemma (in complete_lattice) Inf_binary:  | 
| 44082 | 1159  | 
  "\<Sqinter>{a, b} = a \<sqinter> b"
 | 
1160  | 
by (simp add: Inf_insert)  | 
|
1161  | 
||
| 44083 | 1162  | 
lemma (in complete_lattice) Sup_binary:  | 
| 44082 | 1163  | 
  "\<Squnion>{a, b} = a \<squnion> b"
 | 
1164  | 
by (simp add: Sup_insert)  | 
|
1165  | 
||
| 43872 | 1166  | 
lemmas (in complete_lattice) INFI_def = INF_def  | 
1167  | 
lemmas (in complete_lattice) SUPR_def = SUP_def  | 
|
| 
44103
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
1168  | 
lemmas (in complete_lattice) INF_leI = INF_lower  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
1169  | 
lemmas (in complete_lattice) INF_leI2 = INF_lower2  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
1170  | 
lemmas (in complete_lattice) le_INFI = INF_greatest  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
1171  | 
lemmas (in complete_lattice) le_SUPI = SUP_upper  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
1172  | 
lemmas (in complete_lattice) le_SUPI2 = SUP_upper2  | 
| 
 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 
haftmann 
parents: 
44085 
diff
changeset
 | 
1173  | 
lemmas (in complete_lattice) SUP_leI = SUP_least  | 
| 43943 | 1174  | 
lemmas (in complete_lattice) less_INFD = less_INF_D  | 
| 43940 | 1175  | 
|
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1176  | 
lemmas INFI_apply = INF_apply  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1177  | 
lemmas SUPR_apply = SUP_apply  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1178  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1179  | 
text {* Grep and put to news from here *}
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1180  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1181  | 
lemma (in complete_lattice) INF_eq:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1182  | 
  "(\<Sqinter>x\<in>A. B x) = \<Sqinter>({Y. \<exists>x\<in>A. Y = B x})"
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1183  | 
by (simp add: INF_def image_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1184  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1185  | 
lemma (in complete_lattice) SUP_eq:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1186  | 
  "(\<Squnion>x\<in>A. B x) = \<Squnion>({Y. \<exists>x\<in>A. Y = B x})"
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1187  | 
by (simp add: SUP_def image_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1188  | 
|
| 43940 | 1189  | 
lemma (in complete_lattice) INF_subset:  | 
1190  | 
"B \<subseteq> A \<Longrightarrow> INFI A f \<sqsubseteq> INFI B f"  | 
|
1191  | 
by (rule INF_superset_mono) auto  | 
|
1192  | 
||
| 
44085
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1193  | 
lemma (in complete_lattice) INF_UNIV_range:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1194  | 
"(\<Sqinter>x. f x) = \<Sqinter>range f"  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1195  | 
by (fact INF_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1196  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1197  | 
lemma (in complete_lattice) SUP_UNIV_range:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1198  | 
"(\<Squnion>x. f x) = \<Squnion>range f"  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1199  | 
by (fact SUP_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1200  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1201  | 
lemma Int_eq_Inter: "A \<inter> B = \<Inter>{A, B}"
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1202  | 
by (simp add: Inf_insert)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1203  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1204  | 
lemma INTER_eq_Inter_image:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1205  | 
"(\<Inter>x\<in>A. B x) = \<Inter>(B`A)"  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1206  | 
by (fact INF_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1207  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1208  | 
lemma Inter_def:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1209  | 
"\<Inter>S = (\<Inter>x\<in>S. x)"  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1210  | 
by (simp add: INTER_eq_Inter_image image_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1211  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1212  | 
lemmas INTER_def = INTER_eq  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1213  | 
lemmas UNION_def = UNION_eq  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1214  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1215  | 
lemma INT_eq: "(\<Inter>x\<in>A. B x) = \<Inter>({Y. \<exists>x\<in>A. Y = B x})"
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1216  | 
by (fact INF_eq)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1217  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1218  | 
lemma Un_eq_Union: "A \<union> B = \<Union>{A, B}"
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1219  | 
by blast  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1220  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1221  | 
lemma UNION_eq_Union_image:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1222  | 
"(\<Union>x\<in>A. B x) = \<Union>(B ` A)"  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1223  | 
by (fact SUP_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1224  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1225  | 
lemma Union_def:  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1226  | 
"\<Union>S = (\<Union>x\<in>S. x)"  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1227  | 
by (simp add: UNION_eq_Union_image image_def)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1228  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1229  | 
lemma UN_singleton [simp]: "(\<Union>x\<in>A. {x}) = A"
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1230  | 
by blast  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1231  | 
|
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1232  | 
lemma UN_eq: "(\<Union>x\<in>A. B x) = \<Union>({Y. \<exists>x\<in>A. Y = B x})"
 | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1233  | 
by (fact SUP_eq)  | 
| 
 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 
haftmann 
parents: 
44084 
diff
changeset
 | 
1234  | 
|
| 43872 | 1235  | 
|
1236  | 
text {* Finally *}
 | 
|
1237  | 
||
| 
32135
 
f645b51e8e54
set 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  | 
no_notation  | 
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1239  | 
less_eq (infix "\<sqsubseteq>" 50) and  | 
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1240  | 
less (infix "\<sqsubset>" 50) and  | 
| 41082 | 1241  | 
  bot ("\<bottom>") and
 | 
1242  | 
  top ("\<top>") and
 | 
|
| 
32135
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1243  | 
inf (infixl "\<sqinter>" 70) and  | 
| 
 
f645b51e8e54
set 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  | 
sup (infixl "\<squnion>" 65) and  | 
| 
 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 
haftmann 
parents: 
32120 
diff
changeset
 | 
1245  | 
  Inf  ("\<Sqinter>_" [900] 900) and
 | 
| 41082 | 1246  | 
  Sup  ("\<Squnion>_" [900] 900)
 | 
| 
32135
 
f645b51e8e54
set 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  | 
|
| 41080 | 1248  | 
no_syntax (xsymbols)  | 
| 41082 | 1249  | 
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
 | 
1250  | 
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
 | 
|
| 41080 | 1251  | 
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
 | 
1252  | 
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
 | 
|
1253  | 
||
| 30596 | 1254  | 
lemmas mem_simps =  | 
1255  | 
insert_iff empty_iff Un_iff Int_iff Compl_iff Diff_iff  | 
|
1256  | 
mem_Collect_eq UN_iff Union_iff INT_iff Inter_iff  | 
|
1257  | 
  -- {* Each of these has ALREADY been added @{text "[simp]"} above. *}
 | 
|
| 21669 | 1258  | 
|
| 11979 | 1259  | 
end  |