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