src/HOL/Complete_Lattice.thy
author nipkow
Fri, 28 Aug 2009 18:52:41 +0200
changeset 32434 10cd49e0c067
parent 32139 e271a64f03ff
child 32587 caa5ada96a00
permissions -rw-r--r--
Turned "x <= y ==> sup x y = y" (and relatives) into simp rules
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@32135
     9
notation
haftmann@32135
    10
  less_eq  (infix "\<sqsubseteq>" 50) and
haftmann@32135
    11
  less (infix "\<sqsubset>" 50) and
haftmann@32135
    12
  inf  (infixl "\<sqinter>" 70) and
haftmann@32135
    13
  sup  (infixl "\<squnion>" 65)
haftmann@32135
    14
haftmann@32139
    15
haftmann@32139
    16
subsection {* Abstract complete lattices *}
haftmann@32139
    17
haftmann@32135
    18
class complete_lattice = lattice + bot + top +
haftmann@32135
    19
  fixes Inf :: "'a set \<Rightarrow> 'a" ("\<Sqinter>_" [900] 900)
haftmann@32135
    20
    and Sup :: "'a set \<Rightarrow> 'a" ("\<Squnion>_" [900] 900)
haftmann@32135
    21
  assumes Inf_lower: "x \<in> A \<Longrightarrow> \<Sqinter>A \<sqsubseteq> x"
haftmann@32135
    22
     and Inf_greatest: "(\<And>x. x \<in> A \<Longrightarrow> z \<sqsubseteq> x) \<Longrightarrow> z \<sqsubseteq> \<Sqinter>A"
haftmann@32135
    23
  assumes Sup_upper: "x \<in> A \<Longrightarrow> x \<sqsubseteq> \<Squnion>A"
haftmann@32135
    24
     and Sup_least: "(\<And>x. x \<in> A \<Longrightarrow> x \<sqsubseteq> z) \<Longrightarrow> \<Squnion>A \<sqsubseteq> z"
haftmann@32135
    25
begin
haftmann@32135
    26
haftmann@32135
    27
lemma Inf_Sup: "\<Sqinter>A = \<Squnion>{b. \<forall>a \<in> A. b \<le> a}"
haftmann@32135
    28
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
haftmann@32135
    29
haftmann@32135
    30
lemma Sup_Inf:  "\<Squnion>A = \<Sqinter>{b. \<forall>a \<in> A. a \<le> b}"
haftmann@32135
    31
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
haftmann@32135
    32
haftmann@32135
    33
lemma Inf_Univ: "\<Sqinter>UNIV = \<Squnion>{}"
haftmann@32135
    34
  unfolding Sup_Inf by auto
haftmann@32135
    35
haftmann@32135
    36
lemma Sup_Univ: "\<Squnion>UNIV = \<Sqinter>{}"
haftmann@32135
    37
  unfolding Inf_Sup by auto
haftmann@32135
    38
haftmann@32135
    39
lemma Inf_insert: "\<Sqinter>insert a A = a \<sqinter> \<Sqinter>A"
haftmann@32135
    40
  by (auto intro: le_infI le_infI1 le_infI2 antisym Inf_greatest Inf_lower)
haftmann@32135
    41
haftmann@32135
    42
lemma Sup_insert: "\<Squnion>insert a A = a \<squnion> \<Squnion>A"
haftmann@32135
    43
  by (auto intro: le_supI le_supI1 le_supI2 antisym Sup_least Sup_upper)
haftmann@32135
    44
haftmann@32135
    45
lemma Inf_singleton [simp]:
haftmann@32135
    46
  "\<Sqinter>{a} = a"
haftmann@32135
    47
  by (auto intro: antisym Inf_lower Inf_greatest)
haftmann@32135
    48
haftmann@32135
    49
lemma Sup_singleton [simp]:
haftmann@32135
    50
  "\<Squnion>{a} = a"
haftmann@32135
    51
  by (auto intro: antisym Sup_upper Sup_least)
haftmann@32135
    52
haftmann@32135
    53
lemma Inf_insert_simp:
haftmann@32135
    54
  "\<Sqinter>insert a A = (if A = {} then a else a \<sqinter> \<Sqinter>A)"
haftmann@32135
    55
  by (cases "A = {}") (simp_all, simp add: Inf_insert)
haftmann@32135
    56
haftmann@32135
    57
lemma Sup_insert_simp:
haftmann@32135
    58
  "\<Squnion>insert a A = (if A = {} then a else a \<squnion> \<Squnion>A)"
haftmann@32135
    59
  by (cases "A = {}") (simp_all, simp add: Sup_insert)
haftmann@32135
    60
haftmann@32135
    61
lemma Inf_binary:
haftmann@32135
    62
  "\<Sqinter>{a, b} = a \<sqinter> b"
haftmann@32135
    63
  by (auto simp add: Inf_insert_simp)
haftmann@32135
    64
haftmann@32135
    65
lemma Sup_binary:
haftmann@32135
    66
  "\<Squnion>{a, b} = a \<squnion> b"
haftmann@32135
    67
  by (auto simp add: Sup_insert_simp)
haftmann@32135
    68
haftmann@32135
    69
lemma bot_def:
haftmann@32135
    70
  "bot = \<Squnion>{}"
haftmann@32135
    71
  by (auto intro: antisym Sup_least)
haftmann@32135
    72
haftmann@32135
    73
lemma top_def:
haftmann@32135
    74
  "top = \<Sqinter>{}"
haftmann@32135
    75
  by (auto intro: antisym Inf_greatest)
haftmann@32135
    76
haftmann@32135
    77
lemma sup_bot [simp]:
haftmann@32135
    78
  "x \<squnion> bot = x"
nipkow@32434
    79
  using bot_least [of x] by (simp add: sup_commute)
haftmann@32135
    80
haftmann@32135
    81
lemma inf_top [simp]:
haftmann@32135
    82
  "x \<sqinter> top = x"
nipkow@32434
    83
  using top_greatest [of x] by (simp add: inf_commute)
haftmann@32135
    84
haftmann@32135
    85
definition SUPR :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
haftmann@32135
    86
  "SUPR A f = \<Squnion> (f ` A)"
haftmann@32135
    87
haftmann@32135
    88
definition INFI :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
haftmann@32135
    89
  "INFI A f = \<Sqinter> (f ` A)"
haftmann@32135
    90
clasohm@923
    91
end
haftmann@32135
    92
haftmann@32135
    93
syntax
haftmann@32135
    94
  "_SUP1"     :: "pttrns => 'b => 'b"           ("(3SUP _./ _)" [0, 10] 10)
haftmann@32135
    95
  "_SUP"      :: "pttrn => 'a set => 'b => 'b"  ("(3SUP _:_./ _)" [0, 10] 10)
haftmann@32135
    96
  "_INF1"     :: "pttrns => 'b => 'b"           ("(3INF _./ _)" [0, 10] 10)
haftmann@32135
    97
  "_INF"      :: "pttrn => 'a set => 'b => 'b"  ("(3INF _:_./ _)" [0, 10] 10)
haftmann@32135
    98
haftmann@32135
    99
translations
haftmann@32135
   100
  "SUP x y. B"   == "SUP x. SUP y. B"
haftmann@32135
   101
  "SUP x. B"     == "CONST SUPR CONST UNIV (%x. B)"
haftmann@32135
   102
  "SUP x. B"     == "SUP x:CONST UNIV. B"
haftmann@32135
   103
  "SUP x:A. B"   == "CONST SUPR A (%x. B)"
haftmann@32135
   104
  "INF x y. B"   == "INF x. INF y. B"
haftmann@32135
   105
  "INF x. B"     == "CONST INFI CONST UNIV (%x. B)"
haftmann@32135
   106
  "INF x. B"     == "INF x:CONST UNIV. B"
haftmann@32135
   107
  "INF x:A. B"   == "CONST INFI A (%x. B)"
haftmann@32135
   108
haftmann@32135
   109
print_translation {* [
haftmann@32135
   110
Syntax.preserve_binder_abs2_tr' @{const_syntax SUPR} "_SUP",
haftmann@32135
   111
Syntax.preserve_binder_abs2_tr' @{const_syntax INFI} "_INF"
haftmann@32135
   112
] *} -- {* to avoid eta-contraction of body *}
haftmann@32135
   113
haftmann@32135
   114
context complete_lattice
haftmann@32135
   115
begin
haftmann@32135
   116
haftmann@32135
   117
lemma le_SUPI: "i : A \<Longrightarrow> M i \<le> (SUP i:A. M i)"
haftmann@32135
   118
  by (auto simp add: SUPR_def intro: Sup_upper)
haftmann@32135
   119
haftmann@32135
   120
lemma SUP_leI: "(\<And>i. i : A \<Longrightarrow> M i \<le> u) \<Longrightarrow> (SUP i:A. M i) \<le> u"
haftmann@32135
   121
  by (auto simp add: SUPR_def intro: Sup_least)
haftmann@32135
   122
haftmann@32135
   123
lemma INF_leI: "i : A \<Longrightarrow> (INF i:A. M i) \<le> M i"
haftmann@32135
   124
  by (auto simp add: INFI_def intro: Inf_lower)
haftmann@32135
   125
haftmann@32135
   126
lemma le_INFI: "(\<And>i. i : A \<Longrightarrow> u \<le> M i) \<Longrightarrow> u \<le> (INF i:A. M i)"
haftmann@32135
   127
  by (auto simp add: INFI_def intro: Inf_greatest)
haftmann@32135
   128
haftmann@32135
   129
lemma SUP_const[simp]: "A \<noteq> {} \<Longrightarrow> (SUP i:A. M) = M"
haftmann@32135
   130
  by (auto intro: antisym SUP_leI le_SUPI)
haftmann@32135
   131
haftmann@32135
   132
lemma INF_const[simp]: "A \<noteq> {} \<Longrightarrow> (INF i:A. M) = M"
haftmann@32135
   133
  by (auto intro: antisym INF_leI le_INFI)
haftmann@32135
   134
haftmann@32135
   135
end
haftmann@32135
   136
haftmann@32135
   137
haftmann@32139
   138
subsection {* @{typ bool} and @{typ "_ \<Rightarrow> _"} as complete lattice *}
haftmann@32135
   139
haftmann@32135
   140
instantiation bool :: complete_lattice
haftmann@32135
   141
begin
haftmann@32135
   142
haftmann@32135
   143
definition
haftmann@32135
   144
  Inf_bool_def: "\<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x)"
haftmann@32135
   145
haftmann@32135
   146
definition
haftmann@32135
   147
  Sup_bool_def: "\<Squnion>A \<longleftrightarrow> (\<exists>x\<in>A. x)"
haftmann@32135
   148
haftmann@32135
   149
instance proof
haftmann@32135
   150
qed (auto simp add: Inf_bool_def Sup_bool_def le_bool_def)
haftmann@32135
   151
haftmann@32135
   152
end
haftmann@32135
   153
haftmann@32135
   154
lemma Inf_empty_bool [simp]:
haftmann@32135
   155
  "\<Sqinter>{}"
haftmann@32135
   156
  unfolding Inf_bool_def by auto
haftmann@32135
   157
haftmann@32135
   158
lemma not_Sup_empty_bool [simp]:
haftmann@32135
   159
  "\<not> \<Squnion>{}"
haftmann@32135
   160
  unfolding Sup_bool_def by auto
haftmann@32135
   161
haftmann@32135
   162
lemma INFI_bool_eq:
haftmann@32135
   163
  "INFI = Ball"
haftmann@32135
   164
proof (rule ext)+
haftmann@32135
   165
  fix A :: "'a set"
haftmann@32135
   166
  fix P :: "'a \<Rightarrow> bool"
haftmann@32135
   167
  show "(INF x:A. P x) \<longleftrightarrow> (\<forall>x \<in> A. P x)"
haftmann@32135
   168
    by (auto simp add: Ball_def INFI_def Inf_bool_def)
haftmann@32135
   169
qed
haftmann@32135
   170
haftmann@32135
   171
lemma SUPR_bool_eq:
haftmann@32135
   172
  "SUPR = Bex"
haftmann@32135
   173
proof (rule ext)+
haftmann@32135
   174
  fix A :: "'a set"
haftmann@32135
   175
  fix P :: "'a \<Rightarrow> bool"
haftmann@32135
   176
  show "(SUP x:A. P x) \<longleftrightarrow> (\<exists>x \<in> A. P x)"
haftmann@32135
   177
    by (auto simp add: Bex_def SUPR_def Sup_bool_def)
haftmann@32135
   178
qed
haftmann@32135
   179
haftmann@32135
   180
instantiation "fun" :: (type, complete_lattice) complete_lattice
haftmann@32135
   181
begin
haftmann@32135
   182
haftmann@32135
   183
definition
haftmann@32135
   184
  Inf_fun_def [code del]: "\<Sqinter>A = (\<lambda>x. \<Sqinter>{y. \<exists>f\<in>A. y = f x})"
haftmann@32135
   185
haftmann@32135
   186
definition
haftmann@32135
   187
  Sup_fun_def [code del]: "\<Squnion>A = (\<lambda>x. \<Squnion>{y. \<exists>f\<in>A. y = f x})"
haftmann@32135
   188
haftmann@32135
   189
instance proof
haftmann@32135
   190
qed (auto simp add: Inf_fun_def Sup_fun_def le_fun_def
haftmann@32135
   191
  intro: Inf_lower Sup_upper Inf_greatest Sup_least)
haftmann@32135
   192
haftmann@32135
   193
end
haftmann@32135
   194
haftmann@32135
   195
lemma Inf_empty_fun:
haftmann@32135
   196
  "\<Sqinter>{} = (\<lambda>_. \<Sqinter>{})"
haftmann@32135
   197
  by (simp add: Inf_fun_def)
haftmann@32135
   198
haftmann@32135
   199
lemma Sup_empty_fun:
haftmann@32135
   200
  "\<Squnion>{} = (\<lambda>_. \<Squnion>{})"
haftmann@32135
   201
  by (simp add: Sup_fun_def)
haftmann@32135
   202
haftmann@32135
   203
haftmann@32139
   204
subsection {* Union *}
haftmann@32135
   205
haftmann@32135
   206
definition Union :: "'a set set \<Rightarrow> 'a set" where
haftmann@32135
   207
  Sup_set_eq [symmetric]: "Union S = \<Squnion>S"
haftmann@32135
   208
haftmann@32135
   209
notation (xsymbols)
haftmann@32135
   210
  Union  ("\<Union>_" [90] 90)
haftmann@32135
   211
haftmann@32135
   212
lemma Union_eq:
haftmann@32135
   213
  "\<Union>A = {x. \<exists>B \<in> A. x \<in> B}"
haftmann@32135
   214
proof (rule set_ext)
haftmann@32135
   215
  fix x
haftmann@32135
   216
  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
   217
    by auto
haftmann@32135
   218
  then show "x \<in> \<Union>A \<longleftrightarrow> x \<in> {x. \<exists>B\<in>A. x \<in> B}"
haftmann@32135
   219
    by (simp add: Sup_set_eq [symmetric] Sup_fun_def Sup_bool_def) (simp add: mem_def)
haftmann@32135
   220
qed
haftmann@32135
   221
haftmann@32135
   222
lemma Union_iff [simp, noatp]:
haftmann@32135
   223
  "A \<in> \<Union>C \<longleftrightarrow> (\<exists>X\<in>C. A\<in>X)"
haftmann@32135
   224
  by (unfold Union_eq) blast
haftmann@32135
   225
haftmann@32135
   226
lemma UnionI [intro]:
haftmann@32135
   227
  "X \<in> C \<Longrightarrow> A \<in> X \<Longrightarrow> A \<in> \<Union>C"
haftmann@32135
   228
  -- {* The order of the premises presupposes that @{term C} is rigid;
haftmann@32135
   229
    @{term A} may be flexible. *}
haftmann@32135
   230
  by auto
haftmann@32135
   231
haftmann@32135
   232
lemma UnionE [elim!]:
haftmann@32135
   233
  "A \<in> \<Union>C \<Longrightarrow> (\<And>X. A\<in>X \<Longrightarrow> X\<in>C \<Longrightarrow> R) \<Longrightarrow> R"
haftmann@32135
   234
  by auto
haftmann@32135
   235
haftmann@32135
   236
lemma Union_upper: "B \<in> A ==> B \<subseteq> Union A"
haftmann@32135
   237
  by (iprover intro: subsetI UnionI)
haftmann@32135
   238
haftmann@32135
   239
lemma Union_least: "(!!X. X \<in> A ==> X \<subseteq> C) ==> Union A \<subseteq> C"
haftmann@32135
   240
  by (iprover intro: subsetI elim: UnionE dest: subsetD)
haftmann@32135
   241
haftmann@32135
   242
lemma Un_eq_Union: "A \<union> B = \<Union>{A, B}"
haftmann@32135
   243
  by blast
haftmann@32135
   244
haftmann@32135
   245
lemma Union_empty [simp]: "Union({}) = {}"
haftmann@32135
   246
  by blast
haftmann@32135
   247
haftmann@32135
   248
lemma Union_UNIV [simp]: "Union UNIV = UNIV"
haftmann@32135
   249
  by blast
haftmann@32135
   250
haftmann@32135
   251
lemma Union_insert [simp]: "Union (insert a B) = a \<union> \<Union>B"
haftmann@32135
   252
  by blast
haftmann@32135
   253
haftmann@32135
   254
lemma Union_Un_distrib [simp]: "\<Union>(A Un B) = \<Union>A \<union> \<Union>B"
haftmann@32135
   255
  by blast
haftmann@32135
   256
haftmann@32135
   257
lemma Union_Int_subset: "\<Union>(A \<inter> B) \<subseteq> \<Union>A \<inter> \<Union>B"
haftmann@32135
   258
  by blast
haftmann@32135
   259
haftmann@32135
   260
lemma Union_empty_conv [simp,noatp]: "(\<Union>A = {}) = (\<forall>x\<in>A. x = {})"
haftmann@32135
   261
  by blast
haftmann@32135
   262
haftmann@32135
   263
lemma empty_Union_conv [simp,noatp]: "({} = \<Union>A) = (\<forall>x\<in>A. x = {})"
haftmann@32135
   264
  by blast
haftmann@32135
   265
haftmann@32135
   266
lemma Union_disjoint: "(\<Union>C \<inter> A = {}) = (\<forall>B\<in>C. B \<inter> A = {})"
haftmann@32135
   267
  by blast
haftmann@32135
   268
haftmann@32135
   269
lemma subset_Pow_Union: "A \<subseteq> Pow (\<Union>A)"
haftmann@32135
   270
  by blast
haftmann@32135
   271
haftmann@32135
   272
lemma Union_Pow_eq [simp]: "\<Union>(Pow A) = A"
haftmann@32135
   273
  by blast
haftmann@32135
   274
haftmann@32135
   275
lemma Union_mono: "A \<subseteq> B ==> \<Union>A \<subseteq> \<Union>B"
haftmann@32135
   276
  by blast
haftmann@32135
   277
haftmann@32135
   278
haftmann@32139
   279
subsection {* Unions of families *}
haftmann@32135
   280
haftmann@32135
   281
definition UNION :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
haftmann@32135
   282
  SUPR_set_eq [symmetric]: "UNION S f = (SUP x:S. f x)"
haftmann@32135
   283
haftmann@32135
   284
syntax
haftmann@32135
   285
  "@UNION1"     :: "pttrns => 'b set => 'b set"           ("(3UN _./ _)" [0, 10] 10)
haftmann@32135
   286
  "@UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3UN _:_./ _)" [0, 10] 10)
haftmann@32135
   287
haftmann@32135
   288
syntax (xsymbols)
haftmann@32135
   289
  "@UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>_./ _)" [0, 10] 10)
haftmann@32135
   290
  "@UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>_\<in>_./ _)" [0, 10] 10)
haftmann@32135
   291
haftmann@32135
   292
syntax (latex output)
haftmann@32135
   293
  "@UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
haftmann@32135
   294
  "@UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 10] 10)
haftmann@32135
   295
haftmann@32135
   296
translations
haftmann@32135
   297
  "UN x y. B"   == "UN x. UN y. B"
haftmann@32135
   298
  "UN x. B"     == "CONST UNION CONST UNIV (%x. B)"
haftmann@32135
   299
  "UN x. B"     == "UN x:CONST UNIV. B"
haftmann@32135
   300
  "UN x:A. B"   == "CONST UNION A (%x. B)"
haftmann@32135
   301
haftmann@32135
   302
text {*
haftmann@32135
   303
  Note the difference between ordinary xsymbol syntax of indexed
haftmann@32135
   304
  unions and intersections (e.g.\ @{text"\<Union>a\<^isub>1\<in>A\<^isub>1. B"})
haftmann@32135
   305
  and their \LaTeX\ rendition: @{term"\<Union>a\<^isub>1\<in>A\<^isub>1. B"}. The
haftmann@32135
   306
  former does not make the index expression a subscript of the
haftmann@32135
   307
  union/intersection symbol because this leads to problems with nested
haftmann@32135
   308
  subscripts in Proof General.
haftmann@32135
   309
*}
haftmann@32135
   310
haftmann@32135
   311
print_translation {* [
haftmann@32135
   312
Syntax.preserve_binder_abs2_tr' @{const_syntax UNION} "@UNION"
haftmann@32135
   313
] *} -- {* to avoid eta-contraction of body *}
haftmann@32135
   314
haftmann@32135
   315
lemma UNION_eq_Union_image:
haftmann@32135
   316
  "(\<Union>x\<in>A. B x) = \<Union>(B`A)"
haftmann@32135
   317
  by (simp add: SUPR_def SUPR_set_eq [symmetric] Sup_set_eq)
haftmann@32135
   318
haftmann@32135
   319
lemma Union_def:
haftmann@32135
   320
  "\<Union>S = (\<Union>x\<in>S. x)"
haftmann@32135
   321
  by (simp add: UNION_eq_Union_image image_def)
haftmann@32135
   322
haftmann@32135
   323
lemma UNION_def [noatp]:
haftmann@32135
   324
  "(\<Union>x\<in>A. B x) = {y. \<exists>x\<in>A. y \<in> B x}"
haftmann@32135
   325
  by (auto simp add: UNION_eq_Union_image Union_eq)
haftmann@32135
   326
  
haftmann@32135
   327
lemma Union_image_eq [simp]:
haftmann@32135
   328
  "\<Union>(B`A) = (\<Union>x\<in>A. B x)"
haftmann@32135
   329
  by (rule sym) (fact UNION_eq_Union_image)
haftmann@32135
   330
  
haftmann@32135
   331
lemma UN_iff [simp]: "(b: (UN x:A. B x)) = (EX x:A. b: B x)"
haftmann@32135
   332
  by (unfold UNION_def) blast
haftmann@32135
   333
haftmann@32135
   334
lemma UN_I [intro]: "a:A ==> b: B a ==> b: (UN x:A. B x)"
haftmann@32135
   335
  -- {* The order of the premises presupposes that @{term A} is rigid;
haftmann@32135
   336
    @{term b} may be flexible. *}
haftmann@32135
   337
  by auto
haftmann@32135
   338
haftmann@32135
   339
lemma UN_E [elim!]: "b : (UN x:A. B x) ==> (!!x. x:A ==> b: B x ==> R) ==> R"
haftmann@32135
   340
  by (unfold UNION_def) blast
haftmann@32135
   341
haftmann@32135
   342
lemma UN_cong [cong]:
haftmann@32135
   343
    "A = B ==> (!!x. x:B ==> C x = D x) ==> (UN x:A. C x) = (UN x:B. D x)"
haftmann@32135
   344
  by (simp add: UNION_def)
haftmann@32135
   345
haftmann@32135
   346
lemma strong_UN_cong:
haftmann@32135
   347
    "A = B ==> (!!x. x:B =simp=> C x = D x) ==> (UN x:A. C x) = (UN x:B. D x)"
haftmann@32135
   348
  by (simp add: UNION_def simp_implies_def)
haftmann@32135
   349
haftmann@32135
   350
lemma image_eq_UN: "f`A = (UN x:A. {f x})"
haftmann@32135
   351
  by blast
haftmann@32135
   352
haftmann@32135
   353
lemma UN_upper: "a \<in> A ==> B a \<subseteq> (\<Union>x\<in>A. B x)"
haftmann@32135
   354
  by blast
haftmann@32135
   355
haftmann@32135
   356
lemma UN_least: "(!!x. x \<in> A ==> B x \<subseteq> C) ==> (\<Union>x\<in>A. B x) \<subseteq> C"
haftmann@32135
   357
  by (iprover intro: subsetI elim: UN_E dest: subsetD)
haftmann@32135
   358
haftmann@32135
   359
lemma Collect_bex_eq [noatp]: "{x. \<exists>y\<in>A. P x y} = (\<Union>y\<in>A. {x. P x y})"
haftmann@32135
   360
  by blast
haftmann@32135
   361
haftmann@32135
   362
lemma UN_insert_distrib: "u \<in> A ==> (\<Union>x\<in>A. insert a (B x)) = insert a (\<Union>x\<in>A. B x)"
haftmann@32135
   363
  by blast
haftmann@32135
   364
haftmann@32135
   365
lemma UN_empty [simp,noatp]: "(\<Union>x\<in>{}. B x) = {}"
haftmann@32135
   366
  by blast
haftmann@32135
   367
haftmann@32135
   368
lemma UN_empty2 [simp]: "(\<Union>x\<in>A. {}) = {}"
haftmann@32135
   369
  by blast
haftmann@32135
   370
haftmann@32135
   371
lemma UN_singleton [simp]: "(\<Union>x\<in>A. {x}) = A"
haftmann@32135
   372
  by blast
haftmann@32135
   373
haftmann@32135
   374
lemma UN_absorb: "k \<in> I ==> A k \<union> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. A i)"
haftmann@32135
   375
  by auto
haftmann@32135
   376
haftmann@32135
   377
lemma UN_insert [simp]: "(\<Union>x\<in>insert a A. B x) = B a \<union> UNION A B"
haftmann@32135
   378
  by blast
haftmann@32135
   379
haftmann@32135
   380
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
   381
  by blast
haftmann@32135
   382
haftmann@32135
   383
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
   384
  by blast
haftmann@32135
   385
haftmann@32135
   386
lemma UN_subset_iff: "((\<Union>i\<in>I. A i) \<subseteq> B) = (\<forall>i\<in>I. A i \<subseteq> B)"
haftmann@32135
   387
  by blast
haftmann@32135
   388
haftmann@32135
   389
lemma image_Union: "f ` \<Union>S = (\<Union>x\<in>S. f ` x)"
haftmann@32135
   390
  by blast
haftmann@32135
   391
haftmann@32135
   392
lemma UN_constant [simp]: "(\<Union>y\<in>A. c) = (if A = {} then {} else c)"
haftmann@32135
   393
  by auto
haftmann@32135
   394
haftmann@32135
   395
lemma UN_eq: "(\<Union>x\<in>A. B x) = \<Union>({Y. \<exists>x\<in>A. Y = B x})"
haftmann@32135
   396
  by blast
haftmann@32135
   397
haftmann@32135
   398
lemma UNION_empty_conv[simp]:
haftmann@32135
   399
  "({} = (UN x:A. B x)) = (\<forall>x\<in>A. B x = {})"
haftmann@32135
   400
  "((UN x:A. B x) = {}) = (\<forall>x\<in>A. B x = {})"
haftmann@32135
   401
by blast+
haftmann@32135
   402
haftmann@32135
   403
lemma Collect_ex_eq [noatp]: "{x. \<exists>y. P x y} = (\<Union>y. {x. P x y})"
haftmann@32135
   404
  by blast
haftmann@32135
   405
haftmann@32135
   406
lemma ball_UN: "(\<forall>z \<in> UNION A B. P z) = (\<forall>x\<in>A. \<forall>z \<in> B x. P z)"
haftmann@32135
   407
  by blast
haftmann@32135
   408
haftmann@32135
   409
lemma bex_UN: "(\<exists>z \<in> UNION A B. P z) = (\<exists>x\<in>A. \<exists>z\<in>B x. P z)"
haftmann@32135
   410
  by blast
haftmann@32135
   411
haftmann@32135
   412
lemma Un_eq_UN: "A \<union> B = (\<Union>b. if b then A else B)"
haftmann@32135
   413
  by (auto simp add: split_if_mem2)
haftmann@32135
   414
haftmann@32135
   415
lemma UN_bool_eq: "(\<Union>b::bool. A b) = (A True \<union> A False)"
haftmann@32135
   416
  by (auto intro: bool_contrapos)
haftmann@32135
   417
haftmann@32135
   418
lemma UN_Pow_subset: "(\<Union>x\<in>A. Pow (B x)) \<subseteq> Pow (\<Union>x\<in>A. B x)"
haftmann@32135
   419
  by blast
haftmann@32135
   420
haftmann@32135
   421
lemma UN_mono:
haftmann@32135
   422
  "A \<subseteq> B ==> (!!x. x \<in> A ==> f x \<subseteq> g x) ==>
haftmann@32135
   423
    (\<Union>x\<in>A. f x) \<subseteq> (\<Union>x\<in>B. g x)"
haftmann@32135
   424
  by (blast dest: subsetD)
haftmann@32135
   425
haftmann@32135
   426
lemma vimage_Union: "f -` (Union A) = (UN X:A. f -` X)"
haftmann@32135
   427
  by blast
haftmann@32135
   428
haftmann@32135
   429
lemma vimage_UN: "f-`(UN x:A. B x) = (UN x:A. f -` B x)"
haftmann@32135
   430
  by blast
haftmann@32135
   431
haftmann@32135
   432
lemma vimage_eq_UN: "f-`B = (UN y: B. f-`{y})"
haftmann@32135
   433
  -- {* NOT suitable for rewriting *}
haftmann@32135
   434
  by blast
haftmann@32135
   435
haftmann@32135
   436
lemma image_UN: "(f ` (UNION A B)) = (UN x:A.(f ` (B x)))"
haftmann@32135
   437
by blast
haftmann@32135
   438
haftmann@32135
   439
haftmann@32139
   440
subsection {* Inter *}
haftmann@32135
   441
haftmann@32135
   442
definition Inter :: "'a set set \<Rightarrow> 'a set" where
haftmann@32135
   443
  Inf_set_eq [symmetric]: "Inter S = \<Sqinter>S"
haftmann@32135
   444
  
haftmann@32135
   445
notation (xsymbols)
haftmann@32135
   446
  Inter  ("\<Inter>_" [90] 90)
haftmann@32135
   447
haftmann@32135
   448
lemma Inter_eq [code del]:
haftmann@32135
   449
  "\<Inter>A = {x. \<forall>B \<in> A. x \<in> B}"
haftmann@32135
   450
proof (rule set_ext)
haftmann@32135
   451
  fix x
haftmann@32135
   452
  have "(\<forall>Q\<in>{P. \<exists>B\<in>A. P \<longleftrightarrow> x \<in> B}. Q) \<longleftrightarrow> (\<forall>B\<in>A. x \<in> B)"
haftmann@32135
   453
    by auto
haftmann@32135
   454
  then show "x \<in> \<Inter>A \<longleftrightarrow> x \<in> {x. \<forall>B \<in> A. x \<in> B}"
haftmann@32135
   455
    by (simp add: Inf_fun_def Inf_bool_def Inf_set_eq [symmetric]) (simp add: mem_def)
haftmann@32135
   456
qed
haftmann@32135
   457
haftmann@32135
   458
lemma Inter_iff [simp,noatp]: "(A : Inter C) = (ALL X:C. A:X)"
haftmann@32135
   459
  by (unfold Inter_eq) blast
haftmann@32135
   460
haftmann@32135
   461
lemma InterI [intro!]: "(!!X. X:C ==> A:X) ==> A : Inter C"
haftmann@32135
   462
  by (simp add: Inter_eq)
haftmann@32135
   463
haftmann@32135
   464
text {*
haftmann@32135
   465
  \medskip A ``destruct'' rule -- every @{term X} in @{term C}
haftmann@32135
   466
  contains @{term A} as an element, but @{prop "A:X"} can hold when
haftmann@32135
   467
  @{prop "X:C"} does not!  This rule is analogous to @{text spec}.
haftmann@32135
   468
*}
haftmann@32135
   469
haftmann@32135
   470
lemma InterD [elim]: "A : Inter C ==> X:C ==> A:X"
haftmann@32135
   471
  by auto
haftmann@32135
   472
haftmann@32135
   473
lemma InterE [elim]: "A : Inter C ==> (X~:C ==> R) ==> (A:X ==> R) ==> R"
haftmann@32135
   474
  -- {* ``Classical'' elimination rule -- does not require proving
haftmann@32135
   475
    @{prop "X:C"}. *}
haftmann@32135
   476
  by (unfold Inter_eq) blast
haftmann@32135
   477
haftmann@32135
   478
lemma Inter_lower: "B \<in> A ==> Inter A \<subseteq> B"
haftmann@32135
   479
  by blast
haftmann@32135
   480
haftmann@32135
   481
lemma Inter_subset:
haftmann@32135
   482
  "[| !!X. X \<in> A ==> X \<subseteq> B; A ~= {} |] ==> \<Inter>A \<subseteq> B"
haftmann@32135
   483
  by blast
haftmann@32135
   484
haftmann@32135
   485
lemma Inter_greatest: "(!!X. X \<in> A ==> C \<subseteq> X) ==> C \<subseteq> Inter A"
haftmann@32135
   486
  by (iprover intro: InterI subsetI dest: subsetD)
haftmann@32135
   487
haftmann@32135
   488
lemma Int_eq_Inter: "A \<inter> B = \<Inter>{A, B}"
haftmann@32135
   489
  by blast
haftmann@32135
   490
haftmann@32135
   491
lemma Inter_empty [simp]: "\<Inter>{} = UNIV"
haftmann@32135
   492
  by blast
haftmann@32135
   493
haftmann@32135
   494
lemma Inter_UNIV [simp]: "\<Inter>UNIV = {}"
haftmann@32135
   495
  by blast
haftmann@32135
   496
haftmann@32135
   497
lemma Inter_insert [simp]: "\<Inter>(insert a B) = a \<inter> \<Inter>B"
haftmann@32135
   498
  by blast
haftmann@32135
   499
haftmann@32135
   500
lemma Inter_Un_subset: "\<Inter>A \<union> \<Inter>B \<subseteq> \<Inter>(A \<inter> B)"
haftmann@32135
   501
  by blast
haftmann@32135
   502
haftmann@32135
   503
lemma Inter_Un_distrib: "\<Inter>(A \<union> B) = \<Inter>A \<inter> \<Inter>B"
haftmann@32135
   504
  by blast
haftmann@32135
   505
haftmann@32135
   506
lemma Inter_UNIV_conv [simp,noatp]:
haftmann@32135
   507
  "(\<Inter>A = UNIV) = (\<forall>x\<in>A. x = UNIV)"
haftmann@32135
   508
  "(UNIV = \<Inter>A) = (\<forall>x\<in>A. x = UNIV)"
haftmann@32135
   509
  by blast+
haftmann@32135
   510
haftmann@32135
   511
lemma Inter_anti_mono: "B \<subseteq> A ==> \<Inter>A \<subseteq> \<Inter>B"
haftmann@32135
   512
  by blast
haftmann@32135
   513
haftmann@32135
   514
haftmann@32139
   515
subsection {* Intersections of families *}
haftmann@32135
   516
haftmann@32135
   517
definition INTER :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
haftmann@32135
   518
  INFI_set_eq [symmetric]: "INTER S f = (INF x:S. f x)"
haftmann@32135
   519
haftmann@32135
   520
syntax
haftmann@32135
   521
  "@INTER1"     :: "pttrns => 'b set => 'b set"           ("(3INT _./ _)" [0, 10] 10)
haftmann@32135
   522
  "@INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3INT _:_./ _)" [0, 10] 10)
haftmann@32135
   523
haftmann@32135
   524
syntax (xsymbols)
haftmann@32135
   525
  "@INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>_./ _)" [0, 10] 10)
haftmann@32135
   526
  "@INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>_\<in>_./ _)" [0, 10] 10)
haftmann@32135
   527
haftmann@32135
   528
syntax (latex output)
haftmann@32135
   529
  "@INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
haftmann@32135
   530
  "@INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 10] 10)
haftmann@32135
   531
haftmann@32135
   532
translations
haftmann@32135
   533
  "INT x y. B"  == "INT x. INT y. B"
haftmann@32135
   534
  "INT x. B"    == "CONST INTER CONST UNIV (%x. B)"
haftmann@32135
   535
  "INT x. B"    == "INT x:CONST UNIV. B"
haftmann@32135
   536
  "INT x:A. B"  == "CONST INTER A (%x. B)"
haftmann@32135
   537
haftmann@32135
   538
print_translation {* [
haftmann@32135
   539
Syntax.preserve_binder_abs2_tr' @{const_syntax INTER} "@INTER"
haftmann@32135
   540
] *} -- {* to avoid eta-contraction of body *}
haftmann@32135
   541
haftmann@32135
   542
lemma INTER_eq_Inter_image:
haftmann@32135
   543
  "(\<Inter>x\<in>A. B x) = \<Inter>(B`A)"
haftmann@32135
   544
  by (simp add: INFI_def INFI_set_eq [symmetric] Inf_set_eq)
haftmann@32135
   545
  
haftmann@32135
   546
lemma Inter_def:
haftmann@32135
   547
  "\<Inter>S = (\<Inter>x\<in>S. x)"
haftmann@32135
   548
  by (simp add: INTER_eq_Inter_image image_def)
haftmann@32135
   549
haftmann@32135
   550
lemma INTER_def:
haftmann@32135
   551
  "(\<Inter>x\<in>A. B x) = {y. \<forall>x\<in>A. y \<in> B x}"
haftmann@32135
   552
  by (auto simp add: INTER_eq_Inter_image Inter_eq)
haftmann@32135
   553
haftmann@32135
   554
lemma Inter_image_eq [simp]:
haftmann@32135
   555
  "\<Inter>(B`A) = (\<Inter>x\<in>A. B x)"
haftmann@32135
   556
  by (rule sym) (fact INTER_eq_Inter_image)
haftmann@32135
   557
haftmann@32135
   558
lemma INT_iff [simp]: "(b: (INT x:A. B x)) = (ALL x:A. b: B x)"
haftmann@32135
   559
  by (unfold INTER_def) blast
haftmann@32135
   560
haftmann@32135
   561
lemma INT_I [intro!]: "(!!x. x:A ==> b: B x) ==> b : (INT x:A. B x)"
haftmann@32135
   562
  by (unfold INTER_def) blast
haftmann@32135
   563
haftmann@32135
   564
lemma INT_D [elim]: "b : (INT x:A. B x) ==> a:A ==> b: B a"
haftmann@32135
   565
  by auto
haftmann@32135
   566
haftmann@32135
   567
lemma INT_E [elim]: "b : (INT x:A. B x) ==> (b: B a ==> R) ==> (a~:A ==> R) ==> R"
haftmann@32135
   568
  -- {* "Classical" elimination -- by the Excluded Middle on @{prop "a:A"}. *}
haftmann@32135
   569
  by (unfold INTER_def) blast
haftmann@32135
   570
haftmann@32135
   571
lemma INT_cong [cong]:
haftmann@32135
   572
    "A = B ==> (!!x. x:B ==> C x = D x) ==> (INT x:A. C x) = (INT x:B. D x)"
haftmann@32135
   573
  by (simp add: INTER_def)
haftmann@32135
   574
haftmann@32135
   575
lemma Collect_ball_eq: "{x. \<forall>y\<in>A. P x y} = (\<Inter>y\<in>A. {x. P x y})"
haftmann@32135
   576
  by blast
haftmann@32135
   577
haftmann@32135
   578
lemma Collect_all_eq: "{x. \<forall>y. P x y} = (\<Inter>y. {x. P x y})"
haftmann@32135
   579
  by blast
haftmann@32135
   580
haftmann@32135
   581
lemma INT_lower: "a \<in> A ==> (\<Inter>x\<in>A. B x) \<subseteq> B a"
haftmann@32135
   582
  by blast
haftmann@32135
   583
haftmann@32135
   584
lemma INT_greatest: "(!!x. x \<in> A ==> C \<subseteq> B x) ==> C \<subseteq> (\<Inter>x\<in>A. B x)"
haftmann@32135
   585
  by (iprover intro: INT_I subsetI dest: subsetD)
haftmann@32135
   586
haftmann@32135
   587
lemma INT_empty [simp]: "(\<Inter>x\<in>{}. B x) = UNIV"
haftmann@32135
   588
  by blast
haftmann@32135
   589
haftmann@32135
   590
lemma INT_absorb: "k \<in> I ==> A k \<inter> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. A i)"
haftmann@32135
   591
  by blast
haftmann@32135
   592
haftmann@32135
   593
lemma INT_subset_iff: "(B \<subseteq> (\<Inter>i\<in>I. A i)) = (\<forall>i\<in>I. B \<subseteq> A i)"
haftmann@32135
   594
  by blast
haftmann@32135
   595
haftmann@32135
   596
lemma INT_insert [simp]: "(\<Inter>x \<in> insert a A. B x) = B a \<inter> INTER A B"
haftmann@32135
   597
  by blast
haftmann@32135
   598
haftmann@32135
   599
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@32135
   600
  by blast
haftmann@32135
   601
haftmann@32135
   602
lemma INT_insert_distrib:
haftmann@32135
   603
    "u \<in> A ==> (\<Inter>x\<in>A. insert a (B x)) = insert a (\<Inter>x\<in>A. B x)"
haftmann@32135
   604
  by blast
haftmann@32135
   605
haftmann@32135
   606
lemma INT_constant [simp]: "(\<Inter>y\<in>A. c) = (if A = {} then UNIV else c)"
haftmann@32135
   607
  by auto
haftmann@32135
   608
haftmann@32135
   609
lemma INT_eq: "(\<Inter>x\<in>A. B x) = \<Inter>({Y. \<exists>x\<in>A. Y = B x})"
haftmann@32135
   610
  -- {* Look: it has an \emph{existential} quantifier *}
haftmann@32135
   611
  by blast
haftmann@32135
   612
haftmann@32135
   613
lemma INTER_UNIV_conv[simp]:
haftmann@32135
   614
 "(UNIV = (INT x:A. B x)) = (\<forall>x\<in>A. B x = UNIV)"
haftmann@32135
   615
 "((INT x:A. B x) = UNIV) = (\<forall>x\<in>A. B x = UNIV)"
haftmann@32135
   616
by blast+
haftmann@32135
   617
haftmann@32135
   618
lemma INT_bool_eq: "(\<Inter>b::bool. A b) = (A True \<inter> A False)"
haftmann@32135
   619
  by (auto intro: bool_induct)
haftmann@32135
   620
haftmann@32135
   621
lemma Pow_INT_eq: "Pow (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. Pow (B x))"
haftmann@32135
   622
  by blast
haftmann@32135
   623
haftmann@32135
   624
lemma INT_anti_mono:
haftmann@32135
   625
  "B \<subseteq> A ==> (!!x. x \<in> A ==> f x \<subseteq> g x) ==>
haftmann@32135
   626
    (\<Inter>x\<in>A. f x) \<subseteq> (\<Inter>x\<in>A. g x)"
haftmann@32135
   627
  -- {* The last inclusion is POSITIVE! *}
haftmann@32135
   628
  by (blast dest: subsetD)
haftmann@32135
   629
haftmann@32135
   630
lemma vimage_INT: "f-`(INT x:A. B x) = (INT x:A. f -` B x)"
haftmann@32135
   631
  by blast
haftmann@32135
   632
haftmann@32135
   633
haftmann@32139
   634
subsection {* Distributive laws *}
haftmann@32135
   635
haftmann@32135
   636
lemma Int_Union: "A \<inter> \<Union>B = (\<Union>C\<in>B. A \<inter> C)"
haftmann@32135
   637
  by blast
haftmann@32135
   638
haftmann@32135
   639
lemma Int_Union2: "\<Union>B \<inter> A = (\<Union>C\<in>B. C \<inter> A)"
haftmann@32135
   640
  by blast
haftmann@32135
   641
haftmann@32135
   642
lemma Un_Union_image: "(\<Union>x\<in>C. A x \<union> B x) = \<Union>(A`C) \<union> \<Union>(B`C)"
haftmann@32135
   643
  -- {* Devlin, Fundamentals of Contemporary Set Theory, page 12, exercise 5: *}
haftmann@32135
   644
  -- {* Union of a family of unions *}
haftmann@32135
   645
  by blast
haftmann@32135
   646
haftmann@32135
   647
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
   648
  -- {* Equivalent version *}
haftmann@32135
   649
  by blast
haftmann@32135
   650
haftmann@32135
   651
lemma Un_Inter: "A \<union> \<Inter>B = (\<Inter>C\<in>B. A \<union> C)"
haftmann@32135
   652
  by blast
haftmann@32135
   653
haftmann@32135
   654
lemma Int_Inter_image: "(\<Inter>x\<in>C. A x \<inter> B x) = \<Inter>(A`C) \<inter> \<Inter>(B`C)"
haftmann@32135
   655
  by blast
haftmann@32135
   656
haftmann@32135
   657
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
   658
  -- {* Equivalent version *}
haftmann@32135
   659
  by blast
haftmann@32135
   660
haftmann@32135
   661
lemma Int_UN_distrib: "B \<inter> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. B \<inter> A i)"
haftmann@32135
   662
  -- {* Halmos, Naive Set Theory, page 35. *}
haftmann@32135
   663
  by blast
haftmann@32135
   664
haftmann@32135
   665
lemma Un_INT_distrib: "B \<union> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. B \<union> A i)"
haftmann@32135
   666
  by blast
haftmann@32135
   667
haftmann@32135
   668
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
   669
  by blast
haftmann@32135
   670
haftmann@32135
   671
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
   672
  by blast
haftmann@32135
   673
haftmann@32135
   674
haftmann@32139
   675
subsection {* Complement *}
haftmann@32135
   676
haftmann@32135
   677
lemma Compl_UN [simp]: "-(\<Union>x\<in>A. B x) = (\<Inter>x\<in>A. -B x)"
haftmann@32135
   678
  by blast
haftmann@32135
   679
haftmann@32135
   680
lemma Compl_INT [simp]: "-(\<Inter>x\<in>A. B x) = (\<Union>x\<in>A. -B x)"
haftmann@32135
   681
  by blast
haftmann@32135
   682
haftmann@32135
   683
haftmann@32139
   684
subsection {* Miniscoping and maxiscoping *}
haftmann@32135
   685
haftmann@32135
   686
text {* \medskip Miniscoping: pushing in quantifiers and big Unions
haftmann@32135
   687
           and Intersections. *}
haftmann@32135
   688
haftmann@32135
   689
lemma UN_simps [simp]:
haftmann@32135
   690
  "!!a B C. (UN x:C. insert a (B x)) = (if C={} then {} else insert a (UN x:C. B x))"
haftmann@32135
   691
  "!!A B C. (UN x:C. A x Un B)   = ((if C={} then {} else (UN x:C. A x) Un B))"
haftmann@32135
   692
  "!!A B C. (UN x:C. A Un B x)   = ((if C={} then {} else A Un (UN x:C. B x)))"
haftmann@32135
   693
  "!!A B C. (UN x:C. A x Int B)  = ((UN x:C. A x) Int B)"
haftmann@32135
   694
  "!!A B C. (UN x:C. A Int B x)  = (A Int (UN x:C. B x))"
haftmann@32135
   695
  "!!A B C. (UN x:C. A x - B)    = ((UN x:C. A x) - B)"
haftmann@32135
   696
  "!!A B C. (UN x:C. A - B x)    = (A - (INT x:C. B x))"
haftmann@32135
   697
  "!!A B. (UN x: Union A. B x) = (UN y:A. UN x:y. B x)"
haftmann@32135
   698
  "!!A B C. (UN z: UNION A B. C z) = (UN  x:A. UN z: B(x). C z)"
haftmann@32135
   699
  "!!A B f. (UN x:f`A. B x)     = (UN a:A. B (f a))"
haftmann@32135
   700
  by auto
haftmann@32135
   701
haftmann@32135
   702
lemma INT_simps [simp]:
haftmann@32135
   703
  "!!A B C. (INT x:C. A x Int B) = (if C={} then UNIV else (INT x:C. A x) Int B)"
haftmann@32135
   704
  "!!A B C. (INT x:C. A Int B x) = (if C={} then UNIV else A Int (INT x:C. B x))"
haftmann@32135
   705
  "!!A B C. (INT x:C. A x - B)   = (if C={} then UNIV else (INT x:C. A x) - B)"
haftmann@32135
   706
  "!!A B C. (INT x:C. A - B x)   = (if C={} then UNIV else A - (UN x:C. B x))"
haftmann@32135
   707
  "!!a B C. (INT x:C. insert a (B x)) = insert a (INT x:C. B x)"
haftmann@32135
   708
  "!!A B C. (INT x:C. A x Un B)  = ((INT x:C. A x) Un B)"
haftmann@32135
   709
  "!!A B C. (INT x:C. A Un B x)  = (A Un (INT x:C. B x))"
haftmann@32135
   710
  "!!A B. (INT x: Union A. B x) = (INT y:A. INT x:y. B x)"
haftmann@32135
   711
  "!!A B C. (INT z: UNION A B. C z) = (INT x:A. INT z: B(x). C z)"
haftmann@32135
   712
  "!!A B f. (INT x:f`A. B x)    = (INT a:A. B (f a))"
haftmann@32135
   713
  by auto
haftmann@32135
   714
haftmann@32135
   715
lemma ball_simps [simp,noatp]:
haftmann@32135
   716
  "!!A P Q. (ALL x:A. P x | Q) = ((ALL x:A. P x) | Q)"
haftmann@32135
   717
  "!!A P Q. (ALL x:A. P | Q x) = (P | (ALL x:A. Q x))"
haftmann@32135
   718
  "!!A P Q. (ALL x:A. P --> Q x) = (P --> (ALL x:A. Q x))"
haftmann@32135
   719
  "!!A P Q. (ALL x:A. P x --> Q) = ((EX x:A. P x) --> Q)"
haftmann@32135
   720
  "!!P. (ALL x:{}. P x) = True"
haftmann@32135
   721
  "!!P. (ALL x:UNIV. P x) = (ALL x. P x)"
haftmann@32135
   722
  "!!a B P. (ALL x:insert a B. P x) = (P a & (ALL x:B. P x))"
haftmann@32135
   723
  "!!A P. (ALL x:Union A. P x) = (ALL y:A. ALL x:y. P x)"
haftmann@32135
   724
  "!!A B P. (ALL x: UNION A B. P x) = (ALL a:A. ALL x: B a. P x)"
haftmann@32135
   725
  "!!P Q. (ALL x:Collect Q. P x) = (ALL x. Q x --> P x)"
haftmann@32135
   726
  "!!A P f. (ALL x:f`A. P x) = (ALL x:A. P (f x))"
haftmann@32135
   727
  "!!A P. (~(ALL x:A. P x)) = (EX x:A. ~P x)"
haftmann@32135
   728
  by auto
haftmann@32135
   729
haftmann@32135
   730
lemma bex_simps [simp,noatp]:
haftmann@32135
   731
  "!!A P Q. (EX x:A. P x & Q) = ((EX x:A. P x) & Q)"
haftmann@32135
   732
  "!!A P Q. (EX x:A. P & Q x) = (P & (EX x:A. Q x))"
haftmann@32135
   733
  "!!P. (EX x:{}. P x) = False"
haftmann@32135
   734
  "!!P. (EX x:UNIV. P x) = (EX x. P x)"
haftmann@32135
   735
  "!!a B P. (EX x:insert a B. P x) = (P(a) | (EX x:B. P x))"
haftmann@32135
   736
  "!!A P. (EX x:Union A. P x) = (EX y:A. EX x:y. P x)"
haftmann@32135
   737
  "!!A B P. (EX x: UNION A B. P x) = (EX a:A. EX x:B a. P x)"
haftmann@32135
   738
  "!!P Q. (EX x:Collect Q. P x) = (EX x. Q x & P x)"
haftmann@32135
   739
  "!!A P f. (EX x:f`A. P x) = (EX x:A. P (f x))"
haftmann@32135
   740
  "!!A P. (~(EX x:A. P x)) = (ALL x:A. ~P x)"
haftmann@32135
   741
  by auto
haftmann@32135
   742
haftmann@32135
   743
lemma ball_conj_distrib:
haftmann@32135
   744
  "(ALL x:A. P x & Q x) = ((ALL x:A. P x) & (ALL x:A. Q x))"
haftmann@32135
   745
  by blast
haftmann@32135
   746
haftmann@32135
   747
lemma bex_disj_distrib:
haftmann@32135
   748
  "(EX x:A. P x | Q x) = ((EX x:A. P x) | (EX x:A. Q x))"
haftmann@32135
   749
  by blast
haftmann@32135
   750
haftmann@32135
   751
haftmann@32135
   752
text {* \medskip Maxiscoping: pulling out big Unions and Intersections. *}
haftmann@32135
   753
haftmann@32135
   754
lemma UN_extend_simps:
haftmann@32135
   755
  "!!a B C. insert a (UN x:C. B x) = (if C={} then {a} else (UN x:C. insert a (B x)))"
haftmann@32135
   756
  "!!A B C. (UN x:C. A x) Un B    = (if C={} then B else (UN x:C. A x Un B))"
haftmann@32135
   757
  "!!A B C. A Un (UN x:C. B x)   = (if C={} then A else (UN x:C. A Un B x))"
haftmann@32135
   758
  "!!A B C. ((UN x:C. A x) Int B) = (UN x:C. A x Int B)"
haftmann@32135
   759
  "!!A B C. (A Int (UN x:C. B x)) = (UN x:C. A Int B x)"
haftmann@32135
   760
  "!!A B C. ((UN x:C. A x) - B) = (UN x:C. A x - B)"
haftmann@32135
   761
  "!!A B C. (A - (INT x:C. B x)) = (UN x:C. A - B x)"
haftmann@32135
   762
  "!!A B. (UN y:A. UN x:y. B x) = (UN x: Union A. B x)"
haftmann@32135
   763
  "!!A B C. (UN  x:A. UN z: B(x). C z) = (UN z: UNION A B. C z)"
haftmann@32135
   764
  "!!A B f. (UN a:A. B (f a)) = (UN x:f`A. B x)"
haftmann@32135
   765
  by auto
haftmann@32135
   766
haftmann@32135
   767
lemma INT_extend_simps:
haftmann@32135
   768
  "!!A B C. (INT x:C. A x) Int B = (if C={} then B else (INT x:C. A x Int B))"
haftmann@32135
   769
  "!!A B C. A Int (INT x:C. B x) = (if C={} then A else (INT x:C. A Int B x))"
haftmann@32135
   770
  "!!A B C. (INT x:C. A x) - B   = (if C={} then UNIV-B else (INT x:C. A x - B))"
haftmann@32135
   771
  "!!A B C. A - (UN x:C. B x)   = (if C={} then A else (INT x:C. A - B x))"
haftmann@32135
   772
  "!!a B C. insert a (INT x:C. B x) = (INT x:C. insert a (B x))"
haftmann@32135
   773
  "!!A B C. ((INT x:C. A x) Un B)  = (INT x:C. A x Un B)"
haftmann@32135
   774
  "!!A B C. A Un (INT x:C. B x)  = (INT x:C. A Un B x)"
haftmann@32135
   775
  "!!A B. (INT y:A. INT x:y. B x) = (INT x: Union A. B x)"
haftmann@32135
   776
  "!!A B C. (INT x:A. INT z: B(x). C z) = (INT z: UNION A B. C z)"
haftmann@32135
   777
  "!!A B f. (INT a:A. B (f a))    = (INT x:f`A. B x)"
haftmann@32135
   778
  by auto
haftmann@32135
   779
haftmann@32135
   780
haftmann@32135
   781
no_notation
haftmann@32135
   782
  less_eq  (infix "\<sqsubseteq>" 50) and
haftmann@32135
   783
  less (infix "\<sqsubset>" 50) and
haftmann@32135
   784
  inf  (infixl "\<sqinter>" 70) and
haftmann@32135
   785
  sup  (infixl "\<squnion>" 65) and
haftmann@32135
   786
  Inf  ("\<Sqinter>_" [900] 900) and
haftmann@32135
   787
  Sup  ("\<Squnion>_" [900] 900)
haftmann@32135
   788
haftmann@32135
   789
lemmas mem_simps =
haftmann@32135
   790
  insert_iff empty_iff Un_iff Int_iff Compl_iff Diff_iff
haftmann@32135
   791
  mem_Collect_eq UN_iff Union_iff INT_iff Inter_iff
haftmann@32135
   792
  -- {* Each of these has ALREADY been added @{text "[simp]"} above. *}
haftmann@32135
   793
haftmann@32135
   794
end