src/HOL/Complete_Lattice.thy
author haftmann
Thu, 14 Jul 2011 00:16:41 +0200
changeset 44681 d53350bc65a4
parent 44678 58791b75cf1f
child 44682 fcc5d3ffb6f5
permissions -rw-r--r--
tuned notation
haftmann@32139
     1
(*  Author:     Tobias Nipkow, Lawrence C Paulson and Markus Wenzel; Florian Haftmann, TU Muenchen *)
clasohm@923
     2
haftmann@32139
     3
header {* Complete lattices, with special focus on sets *}
clasohm@923
     4
haftmann@32139
     5
theory Complete_Lattice
haftmann@32139
     6
imports Set
nipkow@15131
     7
begin
wenzelm@2261
     8
haftmann@44681
     9
lemma ball_conj_distrib:
haftmann@44681
    10
  "(\<forall>x\<in>A. P x \<and> Q x) \<longleftrightarrow> ((\<forall>x\<in>A. P x) \<and> (\<forall>x\<in>A. Q x))"
haftmann@44681
    11
  by blast
haftmann@44681
    12
haftmann@44681
    13
lemma bex_disj_distrib:
haftmann@44681
    14
  "(\<exists>x\<in>A. P x \<or> Q x) \<longleftrightarrow> ((\<exists>x\<in>A. P x) \<or> (\<exists>x\<in>A. Q x))"
haftmann@44681
    15
  by blast
haftmann@44681
    16
haftmann@32135
    17
notation
haftmann@33998
    18
  less_eq (infix "\<sqsubseteq>" 50) and
haftmann@32135
    19
  less (infix "\<sqsubset>" 50) and
haftmann@33998
    20
  inf (infixl "\<sqinter>" 70) and
haftmann@33998
    21
  sup (infixl "\<squnion>" 65) and
haftmann@32678
    22
  top ("\<top>") and
haftmann@32678
    23
  bot ("\<bottom>")
haftmann@32135
    24
haftmann@32139
    25
haftmann@32879
    26
subsection {* Syntactic infimum and supremum operations *}
haftmann@32879
    27
haftmann@32879
    28
class Inf =
haftmann@32879
    29
  fixes Inf :: "'a set \<Rightarrow> 'a" ("\<Sqinter>_" [900] 900)
haftmann@32879
    30
haftmann@32879
    31
class Sup =
haftmann@32879
    32
  fixes Sup :: "'a set \<Rightarrow> 'a" ("\<Squnion>_" [900] 900)
haftmann@32879
    33
haftmann@32139
    34
subsection {* Abstract complete lattices *}
haftmann@32139
    35
haftmann@33998
    36
class complete_lattice = bounded_lattice + Inf + Sup +
haftmann@32135
    37
  assumes Inf_lower: "x \<in> A \<Longrightarrow> \<Sqinter>A \<sqsubseteq> x"
haftmann@32135
    38
     and Inf_greatest: "(\<And>x. x \<in> A \<Longrightarrow> z \<sqsubseteq> x) \<Longrightarrow> z \<sqsubseteq> \<Sqinter>A"
haftmann@32135
    39
  assumes Sup_upper: "x \<in> A \<Longrightarrow> x \<sqsubseteq> \<Squnion>A"
haftmann@32135
    40
     and Sup_least: "(\<And>x. x \<in> A \<Longrightarrow> x \<sqsubseteq> z) \<Longrightarrow> \<Squnion>A \<sqsubseteq> z"
haftmann@32135
    41
begin
haftmann@32135
    42
haftmann@32678
    43
lemma dual_complete_lattice:
haftmann@36623
    44
  "class.complete_lattice Sup Inf (op \<ge>) (op >) (op \<squnion>) (op \<sqinter>) \<top> \<bottom>"
haftmann@36623
    45
  by (auto intro!: class.complete_lattice.intro dual_bounded_lattice)
haftmann@33998
    46
    (unfold_locales, (fact bot_least top_greatest
haftmann@33998
    47
        Sup_upper Sup_least Inf_lower Inf_greatest)+)
haftmann@32678
    48
haftmann@33998
    49
lemma Inf_Sup: "\<Sqinter>A = \<Squnion>{b. \<forall>a \<in> A. b \<sqsubseteq> a}"
haftmann@32135
    50
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
haftmann@32135
    51
haftmann@33998
    52
lemma Sup_Inf:  "\<Squnion>A = \<Sqinter>{b. \<forall>a \<in> A. a \<sqsubseteq> b}"
haftmann@32135
    53
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
haftmann@32135
    54
haftmann@41328
    55
lemma Inf_empty [simp]:
haftmann@33998
    56
  "\<Sqinter>{} = \<top>"
haftmann@33998
    57
  by (auto intro: antisym Inf_greatest)
haftmann@32135
    58
haftmann@41328
    59
lemma Sup_empty [simp]:
haftmann@33998
    60
  "\<Squnion>{} = \<bottom>"
haftmann@33998
    61
  by (auto intro: antisym Sup_least)
haftmann@32135
    62
haftmann@41328
    63
lemma Inf_UNIV [simp]:
haftmann@41328
    64
  "\<Sqinter>UNIV = \<bottom>"
haftmann@41328
    65
  by (simp add: Sup_Inf Sup_empty [symmetric])
haftmann@41328
    66
haftmann@41328
    67
lemma Sup_UNIV [simp]:
haftmann@41328
    68
  "\<Squnion>UNIV = \<top>"
haftmann@41328
    69
  by (simp add: Inf_Sup Inf_empty [symmetric])
haftmann@41328
    70
haftmann@32135
    71
lemma Inf_insert: "\<Sqinter>insert a A = a \<sqinter> \<Sqinter>A"
haftmann@32135
    72
  by (auto intro: le_infI le_infI1 le_infI2 antisym Inf_greatest Inf_lower)
haftmann@32135
    73
haftmann@32135
    74
lemma Sup_insert: "\<Squnion>insert a A = a \<squnion> \<Squnion>A"
haftmann@32135
    75
  by (auto intro: le_supI le_supI1 le_supI2 antisym Sup_least Sup_upper)
haftmann@32135
    76
haftmann@32135
    77
lemma Inf_singleton [simp]:
haftmann@32135
    78
  "\<Sqinter>{a} = a"
haftmann@32135
    79
  by (auto intro: antisym Inf_lower Inf_greatest)
haftmann@32135
    80
haftmann@32135
    81
lemma Sup_singleton [simp]:
haftmann@32135
    82
  "\<Squnion>{a} = a"
haftmann@32135
    83
  by (auto intro: antisym Sup_upper Sup_least)
haftmann@32135
    84
haftmann@32135
    85
lemma Inf_binary:
haftmann@32135
    86
  "\<Sqinter>{a, b} = a \<sqinter> b"
haftmann@33998
    87
  by (simp add: Inf_empty Inf_insert)
haftmann@32135
    88
haftmann@32135
    89
lemma Sup_binary:
haftmann@32135
    90
  "\<Squnion>{a, b} = a \<squnion> b"
haftmann@33998
    91
  by (simp add: Sup_empty Sup_insert)
haftmann@32135
    92
haftmann@44616
    93
lemma le_Inf_iff: "b \<sqsubseteq> \<Sqinter>A \<longleftrightarrow> (\<forall>a\<in>A. b \<sqsubseteq> a)"
haftmann@41330
    94
  by (auto intro: Inf_greatest dest: Inf_lower)
haftmann@41330
    95
haftmann@44594
    96
lemma Sup_le_iff: "\<Squnion>A \<sqsubseteq> b \<longleftrightarrow> (\<forall>a\<in>A. a \<sqsubseteq> b)"
huffman@35629
    97
  by (auto intro: Sup_least dest: Sup_upper)
huffman@35629
    98
haftmann@41330
    99
lemma Inf_mono:
hoelzl@42842
   100
  assumes "\<And>b. b \<in> B \<Longrightarrow> \<exists>a\<in>A. a \<sqsubseteq> b"
haftmann@44594
   101
  shows "\<Sqinter>A \<sqsubseteq> \<Sqinter>B"
haftmann@41330
   102
proof (rule Inf_greatest)
haftmann@41330
   103
  fix b assume "b \<in> B"
hoelzl@42842
   104
  with assms obtain a where "a \<in> A" and "a \<sqsubseteq> b" by blast
haftmann@44594
   105
  from `a \<in> A` have "\<Sqinter>A \<sqsubseteq> a" by (rule Inf_lower)
haftmann@44594
   106
  with `a \<sqsubseteq> b` show "\<Sqinter>A \<sqsubseteq> b" by auto
haftmann@41330
   107
qed
huffman@35629
   108
hoelzl@38943
   109
lemma Sup_mono:
hoelzl@42842
   110
  assumes "\<And>a. a \<in> A \<Longrightarrow> \<exists>b\<in>B. a \<sqsubseteq> b"
haftmann@44594
   111
  shows "\<Squnion>A \<sqsubseteq> \<Squnion>B"
hoelzl@38943
   112
proof (rule Sup_least)
hoelzl@38943
   113
  fix a assume "a \<in> A"
hoelzl@42842
   114
  with assms obtain b where "b \<in> B" and "a \<sqsubseteq> b" by blast
haftmann@44594
   115
  from `b \<in> B` have "b \<sqsubseteq> \<Squnion>B" by (rule Sup_upper)
haftmann@44594
   116
  with `a \<sqsubseteq> b` show "a \<sqsubseteq> \<Squnion>B" by auto
hoelzl@38943
   117
qed
hoelzl@38943
   118
hoelzl@42842
   119
lemma top_le:
haftmann@44594
   120
  "\<top> \<sqsubseteq> x \<Longrightarrow> x = \<top>"
hoelzl@42842
   121
  by (rule antisym) auto
hoelzl@42842
   122
hoelzl@42842
   123
lemma le_bot:
haftmann@44594
   124
  "x \<sqsubseteq> \<bottom> \<Longrightarrow> x = \<bottom>"
hoelzl@42842
   125
  by (rule antisym) auto
hoelzl@42842
   126
haftmann@44594
   127
lemma not_less_bot[simp]: "\<not> (x \<sqsubset> \<bottom>)"
hoelzl@42842
   128
  using bot_least[of x] by (auto simp: le_less)
hoelzl@42842
   129
haftmann@44594
   130
lemma not_top_less[simp]: "\<not> (\<top> \<sqsubset> x)"
hoelzl@42842
   131
  using top_greatest[of x] by (auto simp: le_less)
hoelzl@42842
   132
haftmann@44594
   133
lemma Sup_upper2: "u \<in> A \<Longrightarrow> v \<sqsubseteq> u \<Longrightarrow> v \<sqsubseteq> \<Squnion>A"
hoelzl@42842
   134
  using Sup_upper[of u A] by auto
hoelzl@42842
   135
haftmann@44594
   136
lemma Inf_lower2: "u \<in> A \<Longrightarrow> u \<sqsubseteq> v \<Longrightarrow> \<Sqinter>A \<sqsubseteq> v"
hoelzl@42842
   137
  using Inf_lower[of u A] by auto
hoelzl@42842
   138
haftmann@41330
   139
definition INFI :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
haftmann@41330
   140
  "INFI A f = \<Sqinter> (f ` A)"
hoelzl@38943
   141
haftmann@32135
   142
definition SUPR :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
haftmann@32135
   143
  "SUPR A f = \<Squnion> (f ` A)"
haftmann@32135
   144
clasohm@923
   145
end
haftmann@32135
   146
haftmann@32135
   147
syntax
haftmann@41330
   148
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3INF _./ _)" [0, 10] 10)
haftmann@41330
   149
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3INF _:_./ _)" [0, 0, 10] 10)
haftmann@41328
   150
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3SUP _./ _)" [0, 10] 10)
haftmann@41328
   151
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3SUP _:_./ _)" [0, 0, 10] 10)
haftmann@41328
   152
haftmann@41328
   153
syntax (xsymbols)
haftmann@41330
   154
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
haftmann@41330
   155
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
haftmann@41328
   156
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
haftmann@41328
   157
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
haftmann@32135
   158
haftmann@32135
   159
translations
haftmann@41330
   160
  "INF x y. B"   == "INF x. INF y. B"
haftmann@41330
   161
  "INF x. B"     == "CONST INFI CONST UNIV (%x. B)"
haftmann@41330
   162
  "INF x. B"     == "INF x:CONST UNIV. B"
haftmann@41330
   163
  "INF x:A. B"   == "CONST INFI A (%x. B)"
haftmann@32135
   164
  "SUP x y. B"   == "SUP x. SUP y. B"
haftmann@32135
   165
  "SUP x. B"     == "CONST SUPR CONST UNIV (%x. B)"
haftmann@32135
   166
  "SUP x. B"     == "SUP x:CONST UNIV. B"
haftmann@32135
   167
  "SUP x:A. B"   == "CONST SUPR A (%x. B)"
haftmann@32135
   168
wenzelm@35118
   169
print_translation {*
wenzelm@43156
   170
  [Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax INFI} @{syntax_const "_INF"},
wenzelm@43156
   171
    Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax SUPR} @{syntax_const "_SUP"}]
wenzelm@35118
   172
*} -- {* to avoid eta-contraction of body *}
haftmann@32135
   173
haftmann@32135
   174
context complete_lattice
haftmann@32135
   175
begin
haftmann@32135
   176
hoelzl@42842
   177
lemma SUP_cong: "(\<And>x. x \<in> A \<Longrightarrow> f x = g x) \<Longrightarrow> SUPR A f = SUPR A g"
hoelzl@42842
   178
  by (simp add: SUPR_def cong: image_cong)
hoelzl@42842
   179
hoelzl@42842
   180
lemma INF_cong: "(\<And>x. x \<in> A \<Longrightarrow> f x = g x) \<Longrightarrow> INFI A f = INFI A g"
hoelzl@42842
   181
  by (simp add: INFI_def cong: image_cong)
hoelzl@42842
   182
haftmann@44594
   183
lemma le_SUPI: "i \<in> A \<Longrightarrow> M i \<sqsubseteq> (\<Squnion>i\<in>A. M i)"
haftmann@32135
   184
  by (auto simp add: SUPR_def intro: Sup_upper)
haftmann@32135
   185
haftmann@44594
   186
lemma le_SUPI2: "i \<in> A \<Longrightarrow> u \<sqsubseteq> M i \<Longrightarrow> u \<sqsubseteq> (\<Squnion>i\<in>A. M i)"
hoelzl@42842
   187
  using le_SUPI[of i A M] by auto
hoelzl@42842
   188
haftmann@44594
   189
lemma SUP_leI: "(\<And>i. i \<in> A \<Longrightarrow> M i \<sqsubseteq> u) \<Longrightarrow> (\<Squnion>i\<in>A. M i) \<sqsubseteq> u"
haftmann@32135
   190
  by (auto simp add: SUPR_def intro: Sup_least)
haftmann@32135
   191
haftmann@44594
   192
lemma INF_leI: "i \<in> A \<Longrightarrow> (\<Sqinter>i\<in>A. M i) \<sqsubseteq> M i"
haftmann@32135
   193
  by (auto simp add: INFI_def intro: Inf_lower)
haftmann@32135
   194
haftmann@44594
   195
lemma INF_leI2: "i \<in> A \<Longrightarrow> M i \<sqsubseteq> u \<Longrightarrow> (\<Sqinter>i\<in>A. M i) \<sqsubseteq> u"
hoelzl@42842
   196
  using INF_leI[of i A M] by auto
hoelzl@42842
   197
haftmann@44594
   198
lemma le_INFI: "(\<And>i. i \<in> A \<Longrightarrow> u \<sqsubseteq> M i) \<Longrightarrow> u \<sqsubseteq> (\<Sqinter>i\<in>A. M i)"
haftmann@32135
   199
  by (auto simp add: INFI_def intro: Inf_greatest)
haftmann@32135
   200
haftmann@44615
   201
lemma SUP_le_iff: "(\<Squnion>i\<in>A. M i) \<sqsubseteq> u \<longleftrightarrow> (\<forall>i \<in> A. M i \<sqsubseteq> u)"
huffman@35629
   202
  unfolding SUPR_def by (auto simp add: Sup_le_iff)
huffman@35629
   203
haftmann@44615
   204
lemma le_INF_iff: "u \<sqsubseteq> (\<Sqinter>i\<in>A. M i) \<longleftrightarrow> (\<forall>i \<in> A. u \<sqsubseteq> M i)"
huffman@35629
   205
  unfolding INFI_def by (auto simp add: le_Inf_iff)
huffman@35629
   206
haftmann@44615
   207
lemma INF_const[simp]: "A \<noteq> {} \<Longrightarrow> (\<Sqinter>i\<in>A. M) = M"
haftmann@41330
   208
  by (auto intro: antisym INF_leI le_INFI)
haftmann@41330
   209
haftmann@44615
   210
lemma SUP_const[simp]: "A \<noteq> {} \<Longrightarrow> (\<Squnion>i\<in>A. M) = M"
haftmann@32135
   211
  by (auto intro: antisym SUP_leI le_SUPI)
haftmann@32135
   212
haftmann@41330
   213
lemma INF_mono:
haftmann@44615
   214
  "(\<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)"
haftmann@41330
   215
  by (force intro!: Inf_mono simp: INFI_def)
haftmann@32135
   216
hoelzl@38943
   217
lemma SUP_mono:
haftmann@44615
   218
  "(\<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)"
hoelzl@38943
   219
  by (force intro!: Sup_mono simp: SUPR_def)
hoelzl@38943
   220
haftmann@44615
   221
lemma INF_subset:  "A \<subseteq> B \<Longrightarrow> INFI B f \<sqsubseteq> INFI A f"
haftmann@41330
   222
  by (intro INF_mono) auto
hoelzl@38943
   223
haftmann@44615
   224
lemma SUP_subset:  "A \<subseteq> B \<Longrightarrow> SUPR A f \<sqsubseteq> SUPR B f"
hoelzl@41114
   225
  by (intro SUP_mono) auto
hoelzl@41114
   226
haftmann@44615
   227
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)"
haftmann@41330
   228
  by (iprover intro: INF_leI le_INFI order_trans antisym)
hoelzl@41114
   229
haftmann@44615
   230
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)"
hoelzl@41114
   231
  by (iprover intro: SUP_leI le_SUPI order_trans antisym)
hoelzl@41114
   232
haftmann@41330
   233
end
hoelzl@41114
   234
haftmann@41330
   235
lemma Inf_less_iff:
haftmann@41330
   236
  fixes a :: "'a\<Colon>{complete_lattice,linorder}"
haftmann@44615
   237
  shows "\<Sqinter>S \<sqsubset> a \<longleftrightarrow> (\<exists>x\<in>S. x \<sqsubset> a)"
haftmann@44616
   238
  unfolding not_le [symmetric] le_Inf_iff by auto
haftmann@32135
   239
hoelzl@38943
   240
lemma less_Sup_iff:
hoelzl@38943
   241
  fixes a :: "'a\<Colon>{complete_lattice,linorder}"
haftmann@44615
   242
  shows "a \<sqsubset> \<Squnion>S \<longleftrightarrow> (\<exists>x\<in>S. a \<sqsubset> x)"
haftmann@44616
   243
  unfolding not_le [symmetric] Sup_le_iff by auto
hoelzl@38943
   244
haftmann@41330
   245
lemma INF_less_iff:
haftmann@41330
   246
  fixes a :: "'a::{complete_lattice,linorder}"
haftmann@44615
   247
  shows "(\<Sqinter>i\<in>A. f i) \<sqsubset> a \<longleftrightarrow> (\<exists>x\<in>A. f x \<sqsubset> a)"
haftmann@41330
   248
  unfolding INFI_def Inf_less_iff by auto
haftmann@32135
   249
hoelzl@41114
   250
lemma less_SUP_iff:
hoelzl@41114
   251
  fixes a :: "'a::{complete_lattice,linorder}"
haftmann@44615
   252
  shows "a \<sqsubset> (\<Squnion>i\<in>A. f i) \<longleftrightarrow> (\<exists>x\<in>A. a \<sqsubset> f x)"
hoelzl@41114
   253
  unfolding SUPR_def less_Sup_iff by auto
hoelzl@41114
   254
haftmann@32139
   255
subsection {* @{typ bool} and @{typ "_ \<Rightarrow> _"} as complete lattice *}
haftmann@32135
   256
haftmann@32135
   257
instantiation bool :: complete_lattice
haftmann@32135
   258
begin
haftmann@32135
   259
haftmann@32135
   260
definition
haftmann@41328
   261
  "\<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x)"
haftmann@32135
   262
haftmann@32135
   263
definition
haftmann@41328
   264
  "\<Squnion>A \<longleftrightarrow> (\<exists>x\<in>A. x)"
haftmann@32135
   265
haftmann@32135
   266
instance proof
haftmann@32135
   267
qed (auto simp add: Inf_bool_def Sup_bool_def le_bool_def)
haftmann@32135
   268
haftmann@32135
   269
end
haftmann@32135
   270
haftmann@41328
   271
lemma INFI_bool_eq [simp]:
haftmann@32135
   272
  "INFI = Ball"
haftmann@32135
   273
proof (rule ext)+
haftmann@32135
   274
  fix A :: "'a set"
haftmann@32135
   275
  fix P :: "'a \<Rightarrow> bool"
haftmann@44615
   276
  show "(\<Sqinter>x\<in>A. P x) \<longleftrightarrow> (\<forall>x\<in>A. P x)"
haftmann@32135
   277
    by (auto simp add: Ball_def INFI_def Inf_bool_def)
haftmann@32135
   278
qed
haftmann@32135
   279
haftmann@41328
   280
lemma SUPR_bool_eq [simp]:
haftmann@32135
   281
  "SUPR = Bex"
haftmann@32135
   282
proof (rule ext)+
haftmann@32135
   283
  fix A :: "'a set"
haftmann@32135
   284
  fix P :: "'a \<Rightarrow> bool"
haftmann@44615
   285
  show "(\<Squnion>x\<in>A. P x) \<longleftrightarrow> (\<exists>x\<in>A. P x)"
haftmann@32135
   286
    by (auto simp add: Bex_def SUPR_def Sup_bool_def)
haftmann@32135
   287
qed
haftmann@32135
   288
haftmann@32135
   289
instantiation "fun" :: (type, complete_lattice) complete_lattice
haftmann@32135
   290
begin
haftmann@32135
   291
haftmann@32135
   292
definition
haftmann@41328
   293
  "\<Sqinter>A = (\<lambda>x. \<Sqinter>{y. \<exists>f\<in>A. y = f x})"
haftmann@41328
   294
haftmann@41328
   295
lemma Inf_apply:
haftmann@41328
   296
  "(\<Sqinter>A) x = \<Sqinter>{y. \<exists>f\<in>A. y = f x}"
haftmann@41328
   297
  by (simp add: Inf_fun_def)
haftmann@32135
   298
haftmann@32135
   299
definition
haftmann@41328
   300
  "\<Squnion>A = (\<lambda>x. \<Squnion>{y. \<exists>f\<in>A. y = f x})"
haftmann@41328
   301
haftmann@41328
   302
lemma Sup_apply:
haftmann@41328
   303
  "(\<Squnion>A) x = \<Squnion>{y. \<exists>f\<in>A. y = f x}"
haftmann@41328
   304
  by (simp add: Sup_fun_def)
haftmann@32135
   305
haftmann@32135
   306
instance proof
haftmann@41328
   307
qed (auto simp add: le_fun_def Inf_apply Sup_apply
haftmann@32135
   308
  intro: Inf_lower Sup_upper Inf_greatest Sup_least)
haftmann@32135
   309
haftmann@32135
   310
end
haftmann@32135
   311
haftmann@41328
   312
lemma INFI_apply:
haftmann@41328
   313
  "(\<Sqinter>y\<in>A. f y) x = (\<Sqinter>y\<in>A. f y x)"
haftmann@41328
   314
  by (auto intro: arg_cong [of _ _ Inf] simp add: INFI_def Inf_apply)
hoelzl@38943
   315
haftmann@41328
   316
lemma SUPR_apply:
haftmann@41328
   317
  "(\<Squnion>y\<in>A. f y) x = (\<Squnion>y\<in>A. f y x)"
haftmann@41328
   318
  by (auto intro: arg_cong [of _ _ Sup] simp add: SUPR_def Sup_apply)
haftmann@32135
   319
haftmann@32135
   320
haftmann@41330
   321
subsection {* Inter *}
haftmann@41330
   322
haftmann@41330
   323
abbreviation Inter :: "'a set set \<Rightarrow> 'a set" where
haftmann@41330
   324
  "Inter S \<equiv> \<Sqinter>S"
haftmann@41330
   325
  
haftmann@41330
   326
notation (xsymbols)
haftmann@41330
   327
  Inter  ("\<Inter>_" [90] 90)
haftmann@41330
   328
haftmann@41330
   329
lemma Inter_eq:
haftmann@41330
   330
  "\<Inter>A = {x. \<forall>B \<in> A. x \<in> B}"
haftmann@41330
   331
proof (rule set_eqI)
haftmann@41330
   332
  fix x
haftmann@41330
   333
  have "(\<forall>Q\<in>{P. \<exists>B\<in>A. P \<longleftrightarrow> x \<in> B}. Q) \<longleftrightarrow> (\<forall>B\<in>A. x \<in> B)"
haftmann@41330
   334
    by auto
haftmann@41330
   335
  then show "x \<in> \<Inter>A \<longleftrightarrow> x \<in> {x. \<forall>B \<in> A. x \<in> B}"
haftmann@41330
   336
    by (simp add: Inf_fun_def Inf_bool_def) (simp add: mem_def)
haftmann@41330
   337
qed
haftmann@41330
   338
haftmann@44594
   339
lemma Inter_iff [simp,no_atp]: "A \<in> \<Inter>C \<longleftrightarrow> (\<forall>X\<in>C. A \<in> X)"
haftmann@41330
   340
  by (unfold Inter_eq) blast
haftmann@41330
   341
haftmann@44594
   342
lemma InterI [intro!]: "(\<And>X. X \<in> C \<Longrightarrow> A \<in> X) \<Longrightarrow> A \<in> \<Inter>C"
haftmann@41330
   343
  by (simp add: Inter_eq)
haftmann@41330
   344
haftmann@41330
   345
text {*
haftmann@41330
   346
  \medskip A ``destruct'' rule -- every @{term X} in @{term C}
haftmann@44594
   347
  contains @{term A} as an element, but @{prop "A \<in> X"} can hold when
haftmann@44594
   348
  @{prop "X \<in> C"} does not!  This rule is analogous to @{text spec}.
haftmann@41330
   349
*}
haftmann@41330
   350
haftmann@44594
   351
lemma InterD [elim, Pure.elim]: "A \<in> \<Inter>C \<Longrightarrow> X \<in> C \<Longrightarrow> A \<in> X"
haftmann@41330
   352
  by auto
haftmann@41330
   353
haftmann@44594
   354
lemma InterE [elim]: "A \<in> \<Inter>C \<Longrightarrow> (X \<notin> C \<Longrightarrow> R) \<Longrightarrow> (A \<in> X \<Longrightarrow> R) \<Longrightarrow> R"
haftmann@41330
   355
  -- {* ``Classical'' elimination rule -- does not require proving
haftmann@44594
   356
    @{prop "X \<in> C"}. *}
haftmann@41330
   357
  by (unfold Inter_eq) blast
haftmann@41330
   358
haftmann@44594
   359
lemma Inter_lower: "B \<in> A \<Longrightarrow> \<Inter>A \<subseteq> B"
haftmann@44593
   360
  by (fact Inf_lower)
haftmann@44593
   361
haftmann@44593
   362
lemma (in complete_lattice) Inf_less_eq:
haftmann@44593
   363
  assumes "\<And>v. v \<in> A \<Longrightarrow> v \<sqsubseteq> u"
haftmann@44593
   364
    and "A \<noteq> {}"
haftmann@44615
   365
  shows "\<Sqinter>A \<sqsubseteq> u"
haftmann@44593
   366
proof -
haftmann@44593
   367
  from `A \<noteq> {}` obtain v where "v \<in> A" by blast
haftmann@44593
   368
  moreover with assms have "v \<sqsubseteq> u" by blast
haftmann@44593
   369
  ultimately show ?thesis by (rule Inf_lower2)
haftmann@44593
   370
qed
haftmann@41330
   371
haftmann@41330
   372
lemma Inter_subset:
haftmann@44617
   373
  "(\<And>X. X \<in> A \<Longrightarrow> X \<subseteq> B) \<Longrightarrow> A \<noteq> {} \<Longrightarrow> \<Inter>A \<subseteq> B"
haftmann@44593
   374
  by (fact Inf_less_eq)
haftmann@41330
   375
haftmann@44617
   376
lemma Inter_greatest: "(\<And>X. X \<in> A \<Longrightarrow> C \<subseteq> X) \<Longrightarrow> C \<subseteq> Inter A"
haftmann@44593
   377
  by (fact Inf_greatest)
haftmann@41330
   378
haftmann@41330
   379
lemma Int_eq_Inter: "A \<inter> B = \<Inter>{A, B}"
haftmann@44592
   380
  by (fact Inf_binary [symmetric])
haftmann@41330
   381
haftmann@41330
   382
lemma Inter_empty [simp]: "\<Inter>{} = UNIV"
haftmann@41330
   383
  by (fact Inf_empty)
haftmann@41330
   384
haftmann@41330
   385
lemma Inter_UNIV [simp]: "\<Inter>UNIV = {}"
haftmann@44592
   386
  by (fact Inf_UNIV)
haftmann@41330
   387
haftmann@41330
   388
lemma Inter_insert [simp]: "\<Inter>(insert a B) = a \<inter> \<Inter>B"
haftmann@44592
   389
  by (fact Inf_insert)
haftmann@41330
   390
haftmann@44594
   391
lemma (in complete_lattice) Inf_inter_less: "\<Sqinter>A \<squnion> \<Sqinter>B \<sqsubseteq> \<Sqinter>(A \<inter> B)"
haftmann@44594
   392
  by (auto intro: Inf_greatest Inf_lower)
haftmann@44594
   393
haftmann@41330
   394
lemma Inter_Un_subset: "\<Inter>A \<union> \<Inter>B \<subseteq> \<Inter>(A \<inter> B)"
haftmann@44594
   395
  by (fact Inf_inter_less)
haftmann@44594
   396
haftmann@44618
   397
lemma (in complete_lattice) Inf_union_distrib: "\<Sqinter>(A \<union> B) = \<Sqinter>A \<sqinter> \<Sqinter>B"
haftmann@44618
   398
  by (rule antisym) (auto intro: Inf_greatest Inf_lower le_infI1 le_infI2)
haftmann@41330
   399
haftmann@41330
   400
lemma Inter_Un_distrib: "\<Inter>(A \<union> B) = \<Inter>A \<inter> \<Inter>B"
haftmann@44618
   401
  by (fact Inf_union_distrib)
haftmann@44618
   402
haftmann@44665
   403
lemma (in complete_lattice) Inf_top_conv [no_atp]:
haftmann@44665
   404
  "\<Sqinter>A = \<top> \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)"
haftmann@44665
   405
  "\<top> = \<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)"
haftmann@44665
   406
proof -
haftmann@44665
   407
  show "\<Sqinter>A = \<top> \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)"
haftmann@44665
   408
  proof
haftmann@44665
   409
    assume "\<forall>x\<in>A. x = \<top>"
haftmann@44665
   410
    then have "A = {} \<or> A = {\<top>}" by auto
haftmann@44665
   411
    then show "\<Sqinter>A = \<top>" by auto
haftmann@44665
   412
  next
haftmann@44665
   413
    assume "\<Sqinter>A = \<top>"
haftmann@44665
   414
    show "\<forall>x\<in>A. x = \<top>"
haftmann@44665
   415
    proof (rule ccontr)
haftmann@44665
   416
      assume "\<not> (\<forall>x\<in>A. x = \<top>)"
haftmann@44665
   417
      then obtain x where "x \<in> A" and "x \<noteq> \<top>" by blast
haftmann@44665
   418
      then obtain B where "A = insert x B" by blast
haftmann@44665
   419
      with `\<Sqinter>A = \<top>` `x \<noteq> \<top>` show False by (simp add: Inf_insert)
haftmann@44665
   420
    qed
haftmann@44665
   421
  qed
haftmann@44665
   422
  then show "\<top> = \<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)" by auto
haftmann@44665
   423
qed
haftmann@41330
   424
haftmann@41330
   425
lemma Inter_UNIV_conv [simp,no_atp]:
haftmann@44594
   426
  "\<Inter>A = UNIV \<longleftrightarrow> (\<forall>x\<in>A. x = UNIV)"
haftmann@44594
   427
  "UNIV = \<Inter>A \<longleftrightarrow> (\<forall>x\<in>A. x = UNIV)"
haftmann@44665
   428
  by (fact Inf_top_conv)+
haftmann@41330
   429
haftmann@44618
   430
lemma (in complete_lattice) Inf_anti_mono: "B \<subseteq> A \<Longrightarrow> \<Sqinter>A \<sqsubseteq> \<Sqinter>B"
haftmann@44618
   431
  by (auto intro: Inf_greatest Inf_lower)
haftmann@44618
   432
haftmann@44594
   433
lemma Inter_anti_mono: "B \<subseteq> A \<Longrightarrow> \<Inter>A \<subseteq> \<Inter>B"
haftmann@44618
   434
  by (fact Inf_anti_mono)
haftmann@41330
   435
haftmann@41330
   436
haftmann@41330
   437
subsection {* Intersections of families *}
haftmann@41330
   438
haftmann@41330
   439
abbreviation INTER :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
haftmann@41330
   440
  "INTER \<equiv> INFI"
haftmann@41330
   441
haftmann@41330
   442
syntax
haftmann@41330
   443
  "_INTER1"     :: "pttrns => 'b set => 'b set"           ("(3INT _./ _)" [0, 10] 10)
haftmann@41330
   444
  "_INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3INT _:_./ _)" [0, 0, 10] 10)
haftmann@41330
   445
haftmann@41330
   446
syntax (xsymbols)
haftmann@41330
   447
  "_INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>_./ _)" [0, 10] 10)
haftmann@41330
   448
  "_INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>_\<in>_./ _)" [0, 0, 10] 10)
haftmann@41330
   449
haftmann@41330
   450
syntax (latex output)
haftmann@41330
   451
  "_INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
haftmann@41330
   452
  "_INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 0, 10] 10)
haftmann@41330
   453
haftmann@41330
   454
translations
haftmann@41330
   455
  "INT x y. B"  == "INT x. INT y. B"
haftmann@41330
   456
  "INT x. B"    == "CONST INTER CONST UNIV (%x. B)"
haftmann@41330
   457
  "INT x. B"    == "INT x:CONST UNIV. B"
haftmann@41330
   458
  "INT x:A. B"  == "CONST INTER A (%x. B)"
haftmann@41330
   459
haftmann@41330
   460
print_translation {*
wenzelm@43156
   461
  [Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax INTER} @{syntax_const "_INTER"}]
haftmann@41330
   462
*} -- {* to avoid eta-contraction of body *}
haftmann@41330
   463
haftmann@41330
   464
lemma INTER_eq_Inter_image:
haftmann@41330
   465
  "(\<Inter>x\<in>A. B x) = \<Inter>(B`A)"
haftmann@41330
   466
  by (fact INFI_def)
haftmann@41330
   467
  
haftmann@41330
   468
lemma Inter_def:
haftmann@41330
   469
  "\<Inter>S = (\<Inter>x\<in>S. x)"
haftmann@41330
   470
  by (simp add: INTER_eq_Inter_image image_def)
haftmann@41330
   471
haftmann@41330
   472
lemma INTER_def:
haftmann@41330
   473
  "(\<Inter>x\<in>A. B x) = {y. \<forall>x\<in>A. y \<in> B x}"
haftmann@41330
   474
  by (auto simp add: INTER_eq_Inter_image Inter_eq)
haftmann@41330
   475
haftmann@41330
   476
lemma Inter_image_eq [simp]:
haftmann@41330
   477
  "\<Inter>(B`A) = (\<Inter>x\<in>A. B x)"
haftmann@44665
   478
  by (rule sym) (fact INFI_def)
haftmann@41330
   479
haftmann@44681
   480
lemma INT_iff [simp]: "b \<in> (\<Inter>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. b \<in> B x)"
haftmann@41330
   481
  by (unfold INTER_def) blast
haftmann@41330
   482
haftmann@44681
   483
lemma INT_I [intro!]: "(\<And>x. x \<in> A \<Longrightarrow> b \<in> B x) \<Longrightarrow> b \<in> (\<Inter>x\<in>A. B x)"
haftmann@41330
   484
  by (unfold INTER_def) blast
haftmann@41330
   485
haftmann@44681
   486
lemma INT_D [elim, Pure.elim]: "b : (\<Inter>x\<in>A. B x) \<Longrightarrow> a:A \<Longrightarrow> b: B a"
haftmann@41330
   487
  by auto
haftmann@41330
   488
haftmann@44681
   489
lemma INT_E [elim]: "b : (\<Inter>x\<in>A. B x) \<Longrightarrow> (b: B a \<Longrightarrow> R) \<Longrightarrow> (a~:A \<Longrightarrow> R) \<Longrightarrow> R"
haftmann@41330
   490
  -- {* "Classical" elimination -- by the Excluded Middle on @{prop "a:A"}. *}
haftmann@41330
   491
  by (unfold INTER_def) blast
haftmann@41330
   492
haftmann@41330
   493
lemma INT_cong [cong]:
haftmann@44681
   494
    "A = B \<Longrightarrow> (\<And>x. x:B \<Longrightarrow> C x = D x) \<Longrightarrow> (\<Inter>x\<in>A. C x) = (\<Inter>x\<in>B. D x)"
haftmann@41330
   495
  by (simp add: INTER_def)
haftmann@41330
   496
haftmann@41330
   497
lemma Collect_ball_eq: "{x. \<forall>y\<in>A. P x y} = (\<Inter>y\<in>A. {x. P x y})"
haftmann@41330
   498
  by blast
haftmann@41330
   499
haftmann@41330
   500
lemma Collect_all_eq: "{x. \<forall>y. P x y} = (\<Inter>y. {x. P x y})"
haftmann@41330
   501
  by blast
haftmann@41330
   502
haftmann@44681
   503
lemma INT_lower: "a \<in> A \<Longrightarrow> (\<Inter>x\<in>A. B x) \<subseteq> B a"
haftmann@41330
   504
  by (fact INF_leI)
haftmann@41330
   505
haftmann@44681
   506
lemma INT_greatest: "(\<And>x. x \<in> A \<Longrightarrow> C \<subseteq> B x) \<Longrightarrow> C \<subseteq> (\<Inter>x\<in>A. B x)"
haftmann@41330
   507
  by (fact le_INFI)
haftmann@41330
   508
haftmann@41330
   509
lemma INT_empty [simp]: "(\<Inter>x\<in>{}. B x) = UNIV"
haftmann@41330
   510
  by blast
haftmann@41330
   511
haftmann@44681
   512
lemma INT_absorb: "k \<in> I \<Longrightarrow> A k \<inter> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. A i)"
haftmann@41330
   513
  by blast
haftmann@41330
   514
haftmann@41330
   515
lemma INT_subset_iff: "(B \<subseteq> (\<Inter>i\<in>I. A i)) = (\<forall>i\<in>I. B \<subseteq> A i)"
haftmann@41330
   516
  by (fact le_INF_iff)
haftmann@41330
   517
haftmann@41330
   518
lemma INT_insert [simp]: "(\<Inter>x \<in> insert a A. B x) = B a \<inter> INTER A B"
haftmann@41330
   519
  by blast
haftmann@41330
   520
haftmann@41330
   521
lemma INT_Un: "(\<Inter>i \<in> A \<union> B. M i) = (\<Inter>i \<in> A. M i) \<inter> (\<Inter>i\<in>B. M i)"
haftmann@41330
   522
  by blast
haftmann@41330
   523
haftmann@41330
   524
lemma INT_insert_distrib:
haftmann@44681
   525
    "u \<in> A \<Longrightarrow> (\<Inter>x\<in>A. insert a (B x)) = insert a (\<Inter>x\<in>A. B x)"
haftmann@41330
   526
  by blast
haftmann@41330
   527
haftmann@41330
   528
lemma INT_constant [simp]: "(\<Inter>y\<in>A. c) = (if A = {} then UNIV else c)"
haftmann@41330
   529
  by auto
haftmann@41330
   530
haftmann@41330
   531
lemma INT_eq: "(\<Inter>x\<in>A. B x) = \<Inter>({Y. \<exists>x\<in>A. Y = B x})"
haftmann@41330
   532
  -- {* Look: it has an \emph{existential} quantifier *}
haftmann@41330
   533
  by blast
haftmann@41330
   534
haftmann@41330
   535
lemma INTER_UNIV_conv[simp]:
haftmann@44681
   536
 "(UNIV = (\<Inter>x\<in>A. B x)) = (\<forall>x\<in>A. B x = UNIV)"
haftmann@44681
   537
 "((\<Inter>x\<in>A. B x) = UNIV) = (\<forall>x\<in>A. B x = UNIV)"
haftmann@41330
   538
by blast+
haftmann@41330
   539
haftmann@44681
   540
lemma INT_bool_eq: "(\<Inter>b. A b) = (A True \<inter> A False)"
haftmann@41330
   541
  by (auto intro: bool_induct)
haftmann@41330
   542
haftmann@41330
   543
lemma Pow_INT_eq: "Pow (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. Pow (B x))"
haftmann@41330
   544
  by blast
haftmann@41330
   545
haftmann@41330
   546
lemma INT_anti_mono:
haftmann@44681
   547
  "B \<subseteq> A \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> f x \<subseteq> g x) \<Longrightarrow>
haftmann@41330
   548
    (\<Inter>x\<in>A. f x) \<subseteq> (\<Inter>x\<in>A. g x)"
haftmann@41330
   549
  -- {* The last inclusion is POSITIVE! *}
haftmann@41330
   550
  by (blast dest: subsetD)
haftmann@41330
   551
haftmann@44681
   552
lemma vimage_INT: "f -` (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. f -` B x)"
haftmann@41330
   553
  by blast
haftmann@41330
   554
haftmann@41330
   555
haftmann@32139
   556
subsection {* Union *}
haftmann@32135
   557
haftmann@32587
   558
abbreviation Union :: "'a set set \<Rightarrow> 'a set" where
haftmann@32587
   559
  "Union S \<equiv> \<Squnion>S"
haftmann@32135
   560
haftmann@32135
   561
notation (xsymbols)
haftmann@32135
   562
  Union  ("\<Union>_" [90] 90)
haftmann@32135
   563
haftmann@32135
   564
lemma Union_eq:
haftmann@32135
   565
  "\<Union>A = {x. \<exists>B \<in> A. x \<in> B}"
nipkow@39535
   566
proof (rule set_eqI)
haftmann@32135
   567
  fix x
haftmann@32135
   568
  have "(\<exists>Q\<in>{P. \<exists>B\<in>A. P \<longleftrightarrow> x \<in> B}. Q) \<longleftrightarrow> (\<exists>B\<in>A. x \<in> B)"
haftmann@32135
   569
    by auto
haftmann@32135
   570
  then show "x \<in> \<Union>A \<longleftrightarrow> x \<in> {x. \<exists>B\<in>A. x \<in> B}"
haftmann@32587
   571
    by (simp add: Sup_fun_def Sup_bool_def) (simp add: mem_def)
haftmann@32135
   572
qed
haftmann@32135
   573
blanchet@35828
   574
lemma Union_iff [simp, no_atp]:
haftmann@32135
   575
  "A \<in> \<Union>C \<longleftrightarrow> (\<exists>X\<in>C. A\<in>X)"
haftmann@32135
   576
  by (unfold Union_eq) blast
haftmann@32135
   577
haftmann@32135
   578
lemma UnionI [intro]:
haftmann@32135
   579
  "X \<in> C \<Longrightarrow> A \<in> X \<Longrightarrow> A \<in> \<Union>C"
haftmann@32135
   580
  -- {* The order of the premises presupposes that @{term C} is rigid;
haftmann@32135
   581
    @{term A} may be flexible. *}
haftmann@32135
   582
  by auto
haftmann@32135
   583
haftmann@32135
   584
lemma UnionE [elim!]:
haftmann@44681
   585
  "A \<in> \<Union>C \<Longrightarrow> (\<And>X. A \<in> X \<Longrightarrow> X \<in> C \<Longrightarrow> R) \<Longrightarrow> R"
haftmann@32135
   586
  by auto
haftmann@32135
   587
haftmann@44681
   588
lemma Union_upper: "B \<in> A \<Longrightarrow> B \<subseteq> \<Union>A"
haftmann@32135
   589
  by (iprover intro: subsetI UnionI)
haftmann@32135
   590
haftmann@44681
   591
lemma Union_least: "(\<And>X. X \<in> A \<Longrightarrow> X \<subseteq> C) \<Longrightarrow> \<Union>A \<subseteq> C"
haftmann@32135
   592
  by (iprover intro: subsetI elim: UnionE dest: subsetD)
haftmann@32135
   593
haftmann@32135
   594
lemma Un_eq_Union: "A \<union> B = \<Union>{A, B}"
haftmann@32135
   595
  by blast
haftmann@32135
   596
haftmann@44681
   597
lemma Union_empty [simp]: "\<Union>{} = {}"
haftmann@32135
   598
  by blast
haftmann@32135
   599
haftmann@44681
   600
lemma Union_UNIV [simp]: "\<Union>UNIV = UNIV"
haftmann@32135
   601
  by blast
haftmann@32135
   602
haftmann@44681
   603
lemma Union_insert [simp]: "\<Union>insert a B = a \<union> \<Union>B"
haftmann@32135
   604
  by blast
haftmann@32135
   605
haftmann@44681
   606
lemma Union_Un_distrib [simp]: "\<Union>(A \<union> B) = \<Union>A \<union> \<Union>B"
haftmann@32135
   607
  by blast
haftmann@32135
   608
haftmann@32135
   609
lemma Union_Int_subset: "\<Union>(A \<inter> B) \<subseteq> \<Union>A \<inter> \<Union>B"
haftmann@32135
   610
  by blast
haftmann@32135
   611
haftmann@44681
   612
lemma Union_empty_conv [simp,no_atp]: "(\<Union>A = {}) \<longleftrightarrow> (\<forall>x\<in>A. x = {})"
haftmann@32135
   613
  by blast
haftmann@32135
   614
haftmann@44681
   615
lemma empty_Union_conv [simp,no_atp]: "({} = \<Union>A) \<longleftrightarrow> (\<forall>x\<in>A. x = {})"
haftmann@32135
   616
  by blast
haftmann@32135
   617
haftmann@44681
   618
lemma Union_disjoint: "(\<Union>C \<inter> A = {}) \<longleftrightarrow> (\<forall>B\<in>C. B \<inter> A = {})"
haftmann@32135
   619
  by blast
haftmann@32135
   620
haftmann@32135
   621
lemma subset_Pow_Union: "A \<subseteq> Pow (\<Union>A)"
haftmann@32135
   622
  by blast
haftmann@32135
   623
haftmann@32135
   624
lemma Union_Pow_eq [simp]: "\<Union>(Pow A) = A"
haftmann@32135
   625
  by blast
haftmann@32135
   626
haftmann@44681
   627
lemma Union_mono: "A \<subseteq> B \<Longrightarrow> \<Union>A \<subseteq> \<Union>B"
haftmann@32135
   628
  by blast
haftmann@32135
   629
haftmann@32135
   630
haftmann@32139
   631
subsection {* Unions of families *}
haftmann@32135
   632
haftmann@32606
   633
abbreviation UNION :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
haftmann@32606
   634
  "UNION \<equiv> SUPR"
haftmann@32135
   635
haftmann@32135
   636
syntax
wenzelm@35118
   637
  "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3UN _./ _)" [0, 10] 10)
huffman@36360
   638
  "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3UN _:_./ _)" [0, 0, 10] 10)
haftmann@32135
   639
haftmann@32135
   640
syntax (xsymbols)
wenzelm@35118
   641
  "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>_./ _)" [0, 10] 10)
huffman@36360
   642
  "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>_\<in>_./ _)" [0, 0, 10] 10)
haftmann@32135
   643
haftmann@32135
   644
syntax (latex output)
wenzelm@35118
   645
  "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
huffman@36360
   646
  "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 0, 10] 10)
haftmann@32135
   647
haftmann@32135
   648
translations
haftmann@32135
   649
  "UN x y. B"   == "UN x. UN y. B"
haftmann@32135
   650
  "UN x. B"     == "CONST UNION CONST UNIV (%x. B)"
haftmann@32135
   651
  "UN x. B"     == "UN x:CONST UNIV. B"
haftmann@32135
   652
  "UN x:A. B"   == "CONST UNION A (%x. B)"
haftmann@32135
   653
haftmann@32135
   654
text {*
haftmann@32135
   655
  Note the difference between ordinary xsymbol syntax of indexed
haftmann@32135
   656
  unions and intersections (e.g.\ @{text"\<Union>a\<^isub>1\<in>A\<^isub>1. B"})
haftmann@32135
   657
  and their \LaTeX\ rendition: @{term"\<Union>a\<^isub>1\<in>A\<^isub>1. B"}. The
haftmann@32135
   658
  former does not make the index expression a subscript of the
haftmann@32135
   659
  union/intersection symbol because this leads to problems with nested
haftmann@32135
   660
  subscripts in Proof General.
haftmann@32135
   661
*}
haftmann@32135
   662
wenzelm@35118
   663
print_translation {*
wenzelm@43156
   664
  [Syntax_Trans.preserve_binder_abs2_tr' @{const_syntax UNION} @{syntax_const "_UNION"}]
wenzelm@35118
   665
*} -- {* to avoid eta-contraction of body *}
haftmann@32135
   666
haftmann@32135
   667
lemma UNION_eq_Union_image:
haftmann@44681
   668
  "(\<Union>x\<in>A. B x) = \<Union>(B ` A)"
haftmann@32606
   669
  by (fact SUPR_def)
haftmann@32135
   670
haftmann@32135
   671
lemma Union_def:
haftmann@32135
   672
  "\<Union>S = (\<Union>x\<in>S. x)"
haftmann@32135
   673
  by (simp add: UNION_eq_Union_image image_def)
haftmann@32135
   674
blanchet@35828
   675
lemma UNION_def [no_atp]:
haftmann@32135
   676
  "(\<Union>x\<in>A. B x) = {y. \<exists>x\<in>A. y \<in> B x}"
haftmann@32135
   677
  by (auto simp add: UNION_eq_Union_image Union_eq)
haftmann@32135
   678
  
haftmann@32135
   679
lemma Union_image_eq [simp]:
haftmann@44681
   680
  "\<Union>(B ` A) = (\<Union>x\<in>A. B x)"
haftmann@32135
   681
  by (rule sym) (fact UNION_eq_Union_image)
haftmann@32135
   682
  
haftmann@44681
   683
lemma UN_iff [simp]: "(b: (\<Union>x\<in>A. B x)) = (\<exists>x\<in>A. b: B x)"
haftmann@32135
   684
  by (unfold UNION_def) blast
haftmann@32135
   685
haftmann@44681
   686
lemma UN_I [intro]: "a:A \<Longrightarrow> b: B a \<Longrightarrow> b: (\<Union>x\<in>A. B x)"
haftmann@32135
   687
  -- {* The order of the premises presupposes that @{term A} is rigid;
haftmann@32135
   688
    @{term b} may be flexible. *}
haftmann@32135
   689
  by auto
haftmann@32135
   690
haftmann@44681
   691
lemma UN_E [elim!]: "b : (\<Union>x\<in>A. B x) \<Longrightarrow> (\<And>x. x:A \<Longrightarrow> b: B x \<Longrightarrow> R) \<Longrightarrow> R"
haftmann@32135
   692
  by (unfold UNION_def) blast
haftmann@32135
   693
haftmann@32135
   694
lemma UN_cong [cong]:
haftmann@44681
   695
    "A = B \<Longrightarrow> (\<And>x. x:B \<Longrightarrow> C x = D x) \<Longrightarrow> (\<Union>x\<in>A. C x) = (\<Union>x\<in>B. D x)"
haftmann@32135
   696
  by (simp add: UNION_def)
haftmann@32135
   697
haftmann@32135
   698
lemma strong_UN_cong:
haftmann@44681
   699
    "A = B \<Longrightarrow> (\<And>x. x:B =simp=> C x = D x) \<Longrightarrow> (\<Union>x\<in>A. C x) = (\<Union>x\<in>B. D x)"
haftmann@32135
   700
  by (simp add: UNION_def simp_implies_def)
haftmann@32135
   701
haftmann@44681
   702
lemma image_eq_UN: "f ` A = (\<Union>x\<in>A. {f x})"
haftmann@32135
   703
  by blast
haftmann@32135
   704
haftmann@44681
   705
lemma UN_upper: "a \<in> A \<Longrightarrow> B a \<subseteq> (\<Union>x\<in>A. B x)"
haftmann@32606
   706
  by (fact le_SUPI)
haftmann@32135
   707
haftmann@44681
   708
lemma UN_least: "(\<And>x. x \<in> A \<Longrightarrow> B x \<subseteq> C) \<Longrightarrow> (\<Union>x\<in>A. B x) \<subseteq> C"
haftmann@32135
   709
  by (iprover intro: subsetI elim: UN_E dest: subsetD)
haftmann@32135
   710
blanchet@35828
   711
lemma Collect_bex_eq [no_atp]: "{x. \<exists>y\<in>A. P x y} = (\<Union>y\<in>A. {x. P x y})"
haftmann@32135
   712
  by blast
haftmann@32135
   713
haftmann@44681
   714
lemma UN_insert_distrib: "u \<in> A \<Longrightarrow> (\<Union>x\<in>A. insert a (B x)) = insert a (\<Union>x\<in>A. B x)"
haftmann@32135
   715
  by blast
haftmann@32135
   716
blanchet@35828
   717
lemma UN_empty [simp,no_atp]: "(\<Union>x\<in>{}. B x) = {}"
haftmann@32135
   718
  by blast
haftmann@32135
   719
haftmann@32135
   720
lemma UN_empty2 [simp]: "(\<Union>x\<in>A. {}) = {}"
haftmann@32135
   721
  by blast
haftmann@32135
   722
haftmann@32135
   723
lemma UN_singleton [simp]: "(\<Union>x\<in>A. {x}) = A"
haftmann@32135
   724
  by blast
haftmann@32135
   725
haftmann@44681
   726
lemma UN_absorb: "k \<in> I \<Longrightarrow> A k \<union> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. A i)"
haftmann@32135
   727
  by auto
haftmann@32135
   728
haftmann@32135
   729
lemma UN_insert [simp]: "(\<Union>x\<in>insert a A. B x) = B a \<union> UNION A B"
haftmann@32135
   730
  by blast
haftmann@32135
   731
haftmann@32135
   732
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)"
haftmann@32135
   733
  by blast
haftmann@32135
   734
haftmann@32135
   735
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)"
haftmann@32135
   736
  by blast
haftmann@32135
   737
haftmann@32135
   738
lemma UN_subset_iff: "((\<Union>i\<in>I. A i) \<subseteq> B) = (\<forall>i\<in>I. A i \<subseteq> B)"
huffman@35629
   739
  by (fact SUP_le_iff)
haftmann@32135
   740
haftmann@32135
   741
lemma image_Union: "f ` \<Union>S = (\<Union>x\<in>S. f ` x)"
haftmann@32135
   742
  by blast
haftmann@32135
   743
haftmann@32135
   744
lemma UN_constant [simp]: "(\<Union>y\<in>A. c) = (if A = {} then {} else c)"
haftmann@32135
   745
  by auto
haftmann@32135
   746
haftmann@32135
   747
lemma UN_eq: "(\<Union>x\<in>A. B x) = \<Union>({Y. \<exists>x\<in>A. Y = B x})"
haftmann@32135
   748
  by blast
haftmann@32135
   749
haftmann@32135
   750
lemma UNION_empty_conv[simp]:
haftmann@44681
   751
  "{} = (\<Union>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. B x = {})"
haftmann@44681
   752
  "(\<Union>x\<in>A. B x) = {} \<longleftrightarrow> (\<forall>x\<in>A. B x = {})"
haftmann@32135
   753
by blast+
haftmann@32135
   754
blanchet@35828
   755
lemma Collect_ex_eq [no_atp]: "{x. \<exists>y. P x y} = (\<Union>y. {x. P x y})"
haftmann@32135
   756
  by blast
haftmann@32135
   757
haftmann@32135
   758
lemma ball_UN: "(\<forall>z \<in> UNION A B. P z) = (\<forall>x\<in>A. \<forall>z \<in> B x. P z)"
haftmann@32135
   759
  by blast
haftmann@32135
   760
haftmann@32135
   761
lemma bex_UN: "(\<exists>z \<in> UNION A B. P z) = (\<exists>x\<in>A. \<exists>z\<in>B x. P z)"
haftmann@32135
   762
  by blast
haftmann@32135
   763
haftmann@32135
   764
lemma Un_eq_UN: "A \<union> B = (\<Union>b. if b then A else B)"
haftmann@32135
   765
  by (auto simp add: split_if_mem2)
haftmann@32135
   766
haftmann@44681
   767
lemma UN_bool_eq: "(\<Union>b. A b) = (A True \<union> A False)"
haftmann@32135
   768
  by (auto intro: bool_contrapos)
haftmann@32135
   769
haftmann@32135
   770
lemma UN_Pow_subset: "(\<Union>x\<in>A. Pow (B x)) \<subseteq> Pow (\<Union>x\<in>A. B x)"
haftmann@32135
   771
  by blast
haftmann@32135
   772
haftmann@32135
   773
lemma UN_mono:
haftmann@44681
   774
  "A \<subseteq> B \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> f x \<subseteq> g x) \<Longrightarrow>
haftmann@32135
   775
    (\<Union>x\<in>A. f x) \<subseteq> (\<Union>x\<in>B. g x)"
haftmann@32135
   776
  by (blast dest: subsetD)
haftmann@32135
   777
haftmann@44681
   778
lemma vimage_Union: "f -` (\<Union>A) = (\<Union>X\<in>A. f -` X)"
haftmann@32135
   779
  by blast
haftmann@32135
   780
haftmann@44681
   781
lemma vimage_UN: "f -` (\<Union>x\<in>A. B x) = (\<Union>x\<in>A. f -` B x)"
haftmann@32135
   782
  by blast
haftmann@32135
   783
haftmann@44681
   784
lemma vimage_eq_UN: "f -` B = (\<Union>y\<in>B. f -` {y})"
haftmann@32135
   785
  -- {* NOT suitable for rewriting *}
haftmann@32135
   786
  by blast
haftmann@32135
   787
haftmann@44681
   788
lemma image_UN: "f ` UNION A B = (\<Union>x\<in>A. f ` B x)"
haftmann@44681
   789
  by blast
haftmann@32135
   790
haftmann@32135
   791
haftmann@32139
   792
subsection {* Distributive laws *}
haftmann@32135
   793
haftmann@32135
   794
lemma Int_Union: "A \<inter> \<Union>B = (\<Union>C\<in>B. A \<inter> C)"
haftmann@32135
   795
  by blast
haftmann@32135
   796
haftmann@32135
   797
lemma Int_Union2: "\<Union>B \<inter> A = (\<Union>C\<in>B. C \<inter> A)"
haftmann@32135
   798
  by blast
haftmann@32135
   799
haftmann@44681
   800
lemma Un_Union_image: "(\<Union>x\<in>C. A x \<union> B x) = \<Union>(A ` C) \<union> \<Union>(B ` C)"
haftmann@32135
   801
  -- {* Devlin, Fundamentals of Contemporary Set Theory, page 12, exercise 5: *}
haftmann@32135
   802
  -- {* Union of a family of unions *}
haftmann@32135
   803
  by blast
haftmann@32135
   804
haftmann@32135
   805
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)"
haftmann@32135
   806
  -- {* Equivalent version *}
haftmann@32135
   807
  by blast
haftmann@32135
   808
haftmann@32135
   809
lemma Un_Inter: "A \<union> \<Inter>B = (\<Inter>C\<in>B. A \<union> C)"
haftmann@32135
   810
  by blast
haftmann@32135
   811
haftmann@44681
   812
lemma Int_Inter_image: "(\<Inter>x\<in>C. A x \<inter> B x) = \<Inter>(A ` C) \<inter> \<Inter>(B ` C)"
haftmann@32135
   813
  by blast
haftmann@32135
   814
haftmann@32135
   815
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)"
haftmann@32135
   816
  -- {* Equivalent version *}
haftmann@32135
   817
  by blast
haftmann@32135
   818
haftmann@32135
   819
lemma Int_UN_distrib: "B \<inter> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. B \<inter> A i)"
haftmann@32135
   820
  -- {* Halmos, Naive Set Theory, page 35. *}
haftmann@32135
   821
  by blast
haftmann@32135
   822
haftmann@32135
   823
lemma Un_INT_distrib: "B \<union> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. B \<union> A i)"
haftmann@32135
   824
  by blast
haftmann@32135
   825
haftmann@32135
   826
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)"
haftmann@32135
   827
  by blast
haftmann@32135
   828
haftmann@32135
   829
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)"
haftmann@32135
   830
  by blast
haftmann@32135
   831
haftmann@32135
   832
haftmann@32139
   833
subsection {* Complement *}
haftmann@32135
   834
haftmann@44681
   835
lemma Compl_UN [simp]: "- (\<Union>x\<in>A. B x) = (\<Inter>x\<in>A. -B x)"
haftmann@32135
   836
  by blast
haftmann@32135
   837
haftmann@44681
   838
lemma Compl_INT [simp]: "- (\<Inter>x\<in>A. B x) = (\<Union>x\<in>A. -B x)"
haftmann@32135
   839
  by blast
haftmann@32135
   840
haftmann@32135
   841
haftmann@32139
   842
subsection {* Miniscoping and maxiscoping *}
haftmann@32135
   843
haftmann@32135
   844
text {* \medskip Miniscoping: pushing in quantifiers and big Unions
haftmann@32135
   845
           and Intersections. *}
haftmann@32135
   846
haftmann@32135
   847
lemma UN_simps [simp]:
haftmann@44681
   848
  "\<And>a B C. (\<Union>x\<in>C. insert a (B x)) = (if C={} then {} else insert a (\<Union>x\<in>C. B x))"
haftmann@44681
   849
  "\<And>A B C. (\<Union>x\<in>C. A x Un B)   = ((if C={} then {} else (\<Union>x\<in>C. A x) Un B))"
haftmann@44681
   850
  "\<And>A B C. (\<Union>x\<in>C. A Un B x)   = ((if C={} then {} else A Un (\<Union>x\<in>C. B x)))"
haftmann@44681
   851
  "\<And>A B C. (\<Union>x\<in>C. A x Int B)  = ((\<Union>x\<in>C. A x) Int B)"
haftmann@44681
   852
  "\<And>A B C. (\<Union>x\<in>C. A Int B x)  = (A Int (\<Union>x\<in>C. B x))"
haftmann@44681
   853
  "\<And>A B C. (\<Union>x\<in>C. A x - B)    = ((\<Union>x\<in>C. A x) - B)"
haftmann@44681
   854
  "\<And>A B C. (\<Union>x\<in>C. A - B x)    = (A - (\<Inter>x\<in>C. B x))"
haftmann@44681
   855
  "\<And>A B. (UN x: \<Union>A. B x) = (UN y:A. UN x:y. B x)"
haftmann@44681
   856
  "\<And>A B C. (UN z: UNION A B. C z) = (UN  x:A. UN z: B(x). C z)"
haftmann@44681
   857
  "\<And>A B f. (UN x:f`A. B x)     = (UN a:A. B (f a))"
haftmann@32135
   858
  by auto
haftmann@32135
   859
haftmann@32135
   860
lemma INT_simps [simp]:
haftmann@44681
   861
  "\<And>A B C. (\<Inter>x\<in>C. A x Int B) = (if C={} then UNIV else (\<Inter>x\<in>C. A x) Int B)"
haftmann@44681
   862
  "\<And>A B C. (\<Inter>x\<in>C. A Int B x) = (if C={} then UNIV else A Int (\<Inter>x\<in>C. B x))"
haftmann@44681
   863
  "\<And>A B C. (\<Inter>x\<in>C. A x - B)   = (if C={} then UNIV else (\<Inter>x\<in>C. A x) - B)"
haftmann@44681
   864
  "\<And>A B C. (\<Inter>x\<in>C. A - B x)   = (if C={} then UNIV else A - (\<Union>x\<in>C. B x))"
haftmann@44681
   865
  "\<And>a B C. (\<Inter>x\<in>C. insert a (B x)) = insert a (\<Inter>x\<in>C. B x)"
haftmann@44681
   866
  "\<And>A B C. (\<Inter>x\<in>C. A x Un B)  = ((\<Inter>x\<in>C. A x) Un B)"
haftmann@44681
   867
  "\<And>A B C. (\<Inter>x\<in>C. A Un B x)  = (A Un (\<Inter>x\<in>C. B x))"
haftmann@44681
   868
  "\<And>A B. (INT x: \<Union>A. B x) = (\<Inter>y\<in>A. INT x:y. B x)"
haftmann@44681
   869
  "\<And>A B C. (INT z: UNION A B. C z) = (\<Inter>x\<in>A. INT z: B(x). C z)"
haftmann@44681
   870
  "\<And>A B f. (INT x:f`A. B x)    = (INT a:A. B (f a))"
haftmann@32135
   871
  by auto
haftmann@32135
   872
blanchet@35828
   873
lemma ball_simps [simp,no_atp]:
haftmann@44681
   874
  "\<And>A P Q. (\<forall>x\<in>A. P x | Q) = ((\<forall>x\<in>A. P x) | Q)"
haftmann@44681
   875
  "\<And>A P Q. (\<forall>x\<in>A. P | Q x) = (P | (\<forall>x\<in>A. Q x))"
haftmann@44681
   876
  "\<And>A P Q. (\<forall>x\<in>A. P --> Q x) = (P --> (\<forall>x\<in>A. Q x))"
haftmann@44681
   877
  "\<And>A P Q. (\<forall>x\<in>A. P x --> Q) = ((\<exists>x\<in>A. P x) --> Q)"
haftmann@44681
   878
  "\<And>P. (ALL x:{}. P x) = True"
haftmann@44681
   879
  "\<And>P. (ALL x:UNIV. P x) = (ALL x. P x)"
haftmann@44681
   880
  "\<And>a B P. (ALL x:insert a B. P x) = (P a & (ALL x:B. P x))"
haftmann@44681
   881
  "\<And>A P. (ALL x:\<Union>A. P x) = (ALL y:A. ALL x:y. P x)"
haftmann@44681
   882
  "\<And>A B P. (ALL x: UNION A B. P x) = (ALL a:A. ALL x: B a. P x)"
haftmann@44681
   883
  "\<And>P Q. (ALL x:Collect Q. P x) = (ALL x. Q x --> P x)"
haftmann@44681
   884
  "\<And>A P f. (ALL x:f`A. P x) = (\<forall>x\<in>A. P (f x))"
haftmann@44681
   885
  "\<And>A P. (~(\<forall>x\<in>A. P x)) = (\<exists>x\<in>A. ~P x)"
haftmann@32135
   886
  by auto
haftmann@32135
   887
blanchet@35828
   888
lemma bex_simps [simp,no_atp]:
haftmann@44681
   889
  "\<And>A P Q. (\<exists>x\<in>A. P x & Q) = ((\<exists>x\<in>A. P x) & Q)"
haftmann@44681
   890
  "\<And>A P Q. (\<exists>x\<in>A. P & Q x) = (P & (\<exists>x\<in>A. Q x))"
haftmann@44681
   891
  "\<And>P. (EX x:{}. P x) = False"
haftmann@44681
   892
  "\<And>P. (EX x:UNIV. P x) = (EX x. P x)"
haftmann@44681
   893
  "\<And>a B P. (EX x:insert a B. P x) = (P(a) | (EX x:B. P x))"
haftmann@44681
   894
  "\<And>A P. (EX x:\<Union>A. P x) = (EX y:A. EX x:y. P x)"
haftmann@44681
   895
  "\<And>A B P. (EX x: UNION A B. P x) = (EX a:A. EX x:B a. P x)"
haftmann@44681
   896
  "\<And>P Q. (EX x:Collect Q. P x) = (EX x. Q x & P x)"
haftmann@44681
   897
  "\<And>A P f. (EX x:f`A. P x) = (\<exists>x\<in>A. P (f x))"
haftmann@44681
   898
  "\<And>A P. (~(\<exists>x\<in>A. P x)) = (\<forall>x\<in>A. ~P x)"
haftmann@32135
   899
  by auto
haftmann@32135
   900
haftmann@32135
   901
text {* \medskip Maxiscoping: pulling out big Unions and Intersections. *}
haftmann@32135
   902
haftmann@32135
   903
lemma UN_extend_simps:
haftmann@44681
   904
  "\<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)))"
haftmann@44681
   905
  "\<And>A B C. (\<Union>x\<in>C. A x) Un B    = (if C={} then B else (\<Union>x\<in>C. A x Un B))"
haftmann@44681
   906
  "\<And>A B C. A Un (\<Union>x\<in>C. B x)   = (if C={} then A else (\<Union>x\<in>C. A Un B x))"
haftmann@44681
   907
  "\<And>A B C. ((\<Union>x\<in>C. A x) Int B) = (\<Union>x\<in>C. A x Int B)"
haftmann@44681
   908
  "\<And>A B C. (A Int (\<Union>x\<in>C. B x)) = (\<Union>x\<in>C. A Int B x)"
haftmann@44681
   909
  "\<And>A B C. ((\<Union>x\<in>C. A x) - B) = (\<Union>x\<in>C. A x - B)"
haftmann@44681
   910
  "\<And>A B C. (A - (\<Inter>x\<in>C. B x)) = (\<Union>x\<in>C. A - B x)"
haftmann@44681
   911
  "\<And>A B. (UN y:A. UN x:y. B x) = (UN x: \<Union>A. B x)"
haftmann@44681
   912
  "\<And>A B C. (UN  x:A. UN z: B(x). C z) = (UN z: UNION A B. C z)"
haftmann@44681
   913
  "\<And>A B f. (UN a:A. B (f a)) = (UN x:f`A. B x)"
haftmann@32135
   914
  by auto
haftmann@32135
   915
haftmann@32135
   916
lemma INT_extend_simps:
haftmann@44681
   917
  "\<And>A B C. (\<Inter>x\<in>C. A x) Int B = (if C={} then B else (\<Inter>x\<in>C. A x Int B))"
haftmann@44681
   918
  "\<And>A B C. A Int (\<Inter>x\<in>C. B x) = (if C={} then A else (\<Inter>x\<in>C. A Int B x))"
haftmann@44681
   919
  "\<And>A B C. (\<Inter>x\<in>C. A x) - B   = (if C={} then UNIV-B else (\<Inter>x\<in>C. A x - B))"
haftmann@44681
   920
  "\<And>A B C. A - (\<Union>x\<in>C. B x)   = (if C={} then A else (\<Inter>x\<in>C. A - B x))"
haftmann@44681
   921
  "\<And>a B C. insert a (\<Inter>x\<in>C. B x) = (\<Inter>x\<in>C. insert a (B x))"
haftmann@44681
   922
  "\<And>A B C. ((\<Inter>x\<in>C. A x) Un B)  = (\<Inter>x\<in>C. A x Un B)"
haftmann@44681
   923
  "\<And>A B C. A Un (\<Inter>x\<in>C. B x)  = (\<Inter>x\<in>C. A Un B x)"
haftmann@44681
   924
  "\<And>A B. (\<Inter>y\<in>A. INT x:y. B x) = (INT x: \<Union>A. B x)"
haftmann@44681
   925
  "\<And>A B C. (\<Inter>x\<in>A. INT z: B(x). C z) = (INT z: UNION A B. C z)"
haftmann@44681
   926
  "\<And>A B f. (INT a:A. B (f a))    = (INT x:f`A. B x)"
haftmann@32135
   927
  by auto
haftmann@32135
   928
haftmann@32135
   929
haftmann@32135
   930
no_notation
haftmann@32135
   931
  less_eq  (infix "\<sqsubseteq>" 50) and
haftmann@32135
   932
  less (infix "\<sqsubset>" 50) and
haftmann@41330
   933
  bot ("\<bottom>") and
haftmann@41330
   934
  top ("\<top>") and
haftmann@32135
   935
  inf  (infixl "\<sqinter>" 70) and
haftmann@32135
   936
  sup  (infixl "\<squnion>" 65) and
haftmann@32135
   937
  Inf  ("\<Sqinter>_" [900] 900) and
haftmann@41330
   938
  Sup  ("\<Squnion>_" [900] 900)
haftmann@32135
   939
haftmann@41328
   940
no_syntax (xsymbols)
haftmann@41330
   941
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
haftmann@41330
   942
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
haftmann@41328
   943
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
haftmann@41328
   944
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
haftmann@41328
   945
haftmann@32135
   946
lemmas mem_simps =
haftmann@32135
   947
  insert_iff empty_iff Un_iff Int_iff Compl_iff Diff_iff
haftmann@32135
   948
  mem_Collect_eq UN_iff Union_iff INT_iff Inter_iff
haftmann@32135
   949
  -- {* Each of these has ALREADY been added @{text "[simp]"} above. *}
haftmann@32135
   950
haftmann@32135
   951
end