| author | haftmann | 
| Fri, 14 Jun 2019 08:34:27 +0000 | |
| changeset 70332 | 315489d836d8 | 
| parent 69986 | f2d327275065 | 
| child 70337 | 48609a6af1a0 | 
| permissions | -rw-r--r-- | 
| 63575 | 1 | (* Title: HOL/Complete_Lattices.thy | 
| 2 | Author: Tobias Nipkow | |
| 3 | Author: Lawrence C Paulson | |
| 4 | Author: Markus Wenzel | |
| 5 | Author: Florian Haftmann | |
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 6 | Author: Viorel Preoteasa (Complete Distributive Lattices) | 
| 63575 | 7 | *) | 
| 11979 | 8 | |
| 60758 | 9 | section \<open>Complete lattices\<close> | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 10 | |
| 44860 
56101fa00193
renamed theory Complete_Lattice to Complete_Lattices, in accordance with Lattices, Orderings etc.
 haftmann parents: 
44845diff
changeset | 11 | theory Complete_Lattices | 
| 63575 | 12 | imports Fun | 
| 32139 | 13 | begin | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 14 | |
| 60758 | 15 | subsection \<open>Syntactic infimum and supremum operations\<close> | 
| 32879 | 16 | |
| 17 | class Inf = | |
| 69745 | 18 |   fixes Inf :: "'a set \<Rightarrow> 'a"  ("\<Sqinter>")
 | 
| 32879 | 19 | |
| 20 | class Sup = | |
| 69745 | 21 |   fixes Sup :: "'a set \<Rightarrow> 'a"  ("\<Squnion>")
 | 
| 54257 
5c7a3b6b05a9
generalize SUP and INF to the syntactic type classes Sup and Inf
 hoelzl parents: 
54147diff
changeset | 22 | |
| 69274 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 23 | syntax (ASCII) | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 24 |   "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3INF _./ _)" [0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 25 |   "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3INF _:_./ _)" [0, 0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 26 |   "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3SUP _./ _)" [0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 27 |   "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3SUP _:_./ _)" [0, 0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 28 | |
| 68801 
c898c2b1fd58
deprecation of ASCII syntax for indexed big operators
 haftmann parents: 
68797diff
changeset | 29 | syntax | 
| 62048 
fefd79f6b232
retain ASCII syntax for output, when HOL/Library/Lattice_Syntax is not present (amending e96292f32c3c);
 wenzelm parents: 
61955diff
changeset | 30 |   "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3INF _./ _)" [0, 10] 10)
 | 
| 68801 
c898c2b1fd58
deprecation of ASCII syntax for indexed big operators
 haftmann parents: 
68797diff
changeset | 31 |   "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3INF _\<in>_./ _)" [0, 0, 10] 10)
 | 
| 62048 
fefd79f6b232
retain ASCII syntax for output, when HOL/Library/Lattice_Syntax is not present (amending e96292f32c3c);
 wenzelm parents: 
61955diff
changeset | 32 |   "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3SUP _./ _)" [0, 10] 10)
 | 
| 68801 
c898c2b1fd58
deprecation of ASCII syntax for indexed big operators
 haftmann parents: 
68797diff
changeset | 33 |   "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3SUP _\<in>_./ _)" [0, 0, 10] 10)
 | 
| 62048 
fefd79f6b232
retain ASCII syntax for output, when HOL/Library/Lattice_Syntax is not present (amending e96292f32c3c);
 wenzelm parents: 
61955diff
changeset | 34 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61952diff
changeset | 35 | syntax | 
| 54257 
5c7a3b6b05a9
generalize SUP and INF to the syntactic type classes Sup and Inf
 hoelzl parents: 
54147diff
changeset | 36 |   "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
 | 
| 
5c7a3b6b05a9
generalize SUP and INF to the syntactic type classes Sup and Inf
 hoelzl parents: 
54147diff
changeset | 37 |   "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
 | 
| 
5c7a3b6b05a9
generalize SUP and INF to the syntactic type classes Sup and Inf
 hoelzl parents: 
54147diff
changeset | 38 |   "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
 | 
| 
5c7a3b6b05a9
generalize SUP and INF to the syntactic type classes Sup and Inf
 hoelzl parents: 
54147diff
changeset | 39 |   "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
 | 
| 
5c7a3b6b05a9
generalize SUP and INF to the syntactic type classes Sup and Inf
 hoelzl parents: 
54147diff
changeset | 40 | |
| 
5c7a3b6b05a9
generalize SUP and INF to the syntactic type classes Sup and Inf
 hoelzl parents: 
54147diff
changeset | 41 | translations | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 42 | "\<Sqinter>x y. f" \<rightleftharpoons> "\<Sqinter>x. \<Sqinter>y. f" | 
| 69745 | 43 | "\<Sqinter>x. f" \<rightleftharpoons> "\<Sqinter>(CONST range (\<lambda>x. f))" | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 44 | "\<Sqinter>x\<in>A. f" \<rightleftharpoons> "CONST Inf ((\<lambda>x. f) ` A)" | 
| 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 45 | "\<Squnion>x y. f" \<rightleftharpoons> "\<Squnion>x. \<Squnion>y. f" | 
| 69745 | 46 | "\<Squnion>x. f" \<rightleftharpoons> "\<Squnion>(CONST range (\<lambda>x. f))" | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 47 | "\<Squnion>x\<in>A. f" \<rightleftharpoons> "CONST Sup ((\<lambda>x. f) ` A)" | 
| 46691 | 48 | |
| 68797 | 49 | context Inf | 
| 50 | begin | |
| 51 | ||
| 69861 
62e47f06d22c
avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
 haftmann parents: 
69768diff
changeset | 52 | lemma INF_image: "\<Sqinter> (g ` f ` A) = \<Sqinter> ((g \<circ> f) ` A)" | 
| 68797 | 53 | by (simp add: image_comp) | 
| 54 | ||
| 55 | lemma INF_identity_eq [simp]: "(\<Sqinter>x\<in>A. x) = \<Sqinter>A" | |
| 56 | by simp | |
| 57 | ||
| 58 | lemma INF_id_eq [simp]: "\<Sqinter>(id ` A) = \<Sqinter>A" | |
| 59 | by simp | |
| 60 | ||
| 61 | lemma INF_cong: "A = B \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> C x = D x) \<Longrightarrow> \<Sqinter>(C ` A) = \<Sqinter>(D ` B)" | |
| 62 | by (simp add: image_def) | |
| 63 | ||
| 69768 | 64 | lemma INF_cong_simp: | 
| 68797 | 65 | "A = B \<Longrightarrow> (\<And>x. x \<in> B =simp=> C x = D x) \<Longrightarrow> \<Sqinter>(C ` A) = \<Sqinter>(D ` B)" | 
| 66 | unfolding simp_implies_def by (fact INF_cong) | |
| 67 | ||
| 68 | end | |
| 69 | ||
| 70 | context Sup | |
| 71 | begin | |
| 72 | ||
| 69861 
62e47f06d22c
avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
 haftmann parents: 
69768diff
changeset | 73 | lemma SUP_image: "\<Squnion> (g ` f ` A) = \<Squnion> ((g \<circ> f) ` A)" | 
| 69164 | 74 | by(fact Inf.INF_image) | 
| 68797 | 75 | |
| 76 | lemma SUP_identity_eq [simp]: "(\<Squnion>x\<in>A. x) = \<Squnion>A" | |
| 69164 | 77 | by(fact Inf.INF_identity_eq) | 
| 68797 | 78 | |
| 79 | lemma SUP_id_eq [simp]: "\<Squnion>(id ` A) = \<Squnion>A" | |
| 69164 | 80 | by(fact Inf.INF_id_eq) | 
| 68797 | 81 | |
| 82 | lemma SUP_cong: "A = B \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> C x = D x) \<Longrightarrow> \<Squnion>(C ` A) = \<Squnion>(D ` B)" | |
| 69164 | 83 | by (fact Inf.INF_cong) | 
| 68797 | 84 | |
| 69768 | 85 | lemma SUP_cong_simp: | 
| 68797 | 86 | "A = B \<Longrightarrow> (\<And>x. x \<in> B =simp=> C x = D x) \<Longrightarrow> \<Squnion>(C ` A) = \<Squnion>(D ` B)" | 
| 69546 
27dae626822b
prefer naming convention from datatype package for strong congruence rules
 haftmann parents: 
69275diff
changeset | 87 | by (fact Inf.INF_cong_simp) | 
| 68797 | 88 | |
| 89 | end | |
| 90 | ||
| 62048 
fefd79f6b232
retain ASCII syntax for output, when HOL/Library/Lattice_Syntax is not present (amending e96292f32c3c);
 wenzelm parents: 
61955diff
changeset | 91 | |
| 60758 | 92 | subsection \<open>Abstract complete lattices\<close> | 
| 32139 | 93 | |
| 60758 | 94 | text \<open>A complete lattice always has a bottom and a top, | 
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 95 | so we include them into the following type class, | 
| 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 96 | along with assumptions that define bottom and top | 
| 60758 | 97 | in terms of infimum and supremum.\<close> | 
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 98 | |
| 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 99 | class complete_lattice = lattice + Inf + Sup + bot + top + | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 100 | assumes Inf_lower: "x \<in> A \<Longrightarrow> \<Sqinter>A \<le> x" | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 101 | and Inf_greatest: "(\<And>x. x \<in> A \<Longrightarrow> z \<le> x) \<Longrightarrow> z \<le> \<Sqinter>A" | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 102 | and Sup_upper: "x \<in> A \<Longrightarrow> x \<le> \<Squnion>A" | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 103 | and Sup_least: "(\<And>x. x \<in> A \<Longrightarrow> x \<le> z) \<Longrightarrow> \<Squnion>A \<le> z" | 
| 63575 | 104 |     and Inf_empty [simp]: "\<Sqinter>{} = \<top>"
 | 
| 105 |     and Sup_empty [simp]: "\<Squnion>{} = \<bottom>"
 | |
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 106 | begin | 
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 107 | |
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 108 | subclass bounded_lattice | 
| 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 109 | proof | 
| 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 110 | fix a | 
| 63575 | 111 | show "\<bottom> \<le> a" | 
| 112 | by (auto intro: Sup_least simp only: Sup_empty [symmetric]) | |
| 113 | show "a \<le> \<top>" | |
| 114 | by (auto intro: Inf_greatest simp only: Inf_empty [symmetric]) | |
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 115 | qed | 
| 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 116 | |
| 67399 | 117 | lemma dual_complete_lattice: "class.complete_lattice Sup Inf sup (\<ge>) (>) inf \<top> \<bottom>" | 
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 118 | by (auto intro!: class.complete_lattice.intro dual_lattice) | 
| 63575 | 119 | (unfold_locales, (fact Inf_empty Sup_empty Sup_upper Sup_least Inf_lower Inf_greatest)+) | 
| 32678 | 120 | |
| 44040 | 121 | end | 
| 122 | ||
| 123 | context complete_lattice | |
| 124 | begin | |
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 125 | |
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 126 | lemma Sup_eqI: | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 127 | "(\<And>y. y \<in> A \<Longrightarrow> y \<le> x) \<Longrightarrow> (\<And>y. (\<And>z. z \<in> A \<Longrightarrow> z \<le> y) \<Longrightarrow> x \<le> y) \<Longrightarrow> \<Squnion>A = x" | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 128 | by (blast intro: antisym Sup_least Sup_upper) | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 129 | |
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 130 | lemma Inf_eqI: | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 131 | "(\<And>i. i \<in> A \<Longrightarrow> x \<le> i) \<Longrightarrow> (\<And>y. (\<And>i. i \<in> A \<Longrightarrow> y \<le> i) \<Longrightarrow> y \<le> x) \<Longrightarrow> \<Sqinter>A = x" | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 132 | by (blast intro: antisym Inf_greatest Inf_lower) | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 133 | |
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 134 | lemma SUP_eqI: | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 135 | "(\<And>i. i \<in> A \<Longrightarrow> f i \<le> x) \<Longrightarrow> (\<And>y. (\<And>i. i \<in> A \<Longrightarrow> f i \<le> y) \<Longrightarrow> x \<le> y) \<Longrightarrow> (\<Squnion>i\<in>A. f i) = x" | 
| 56166 | 136 | using Sup_eqI [of "f ` A" x] by auto | 
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 137 | |
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 138 | lemma INF_eqI: | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 139 | "(\<And>i. i \<in> A \<Longrightarrow> x \<le> f i) \<Longrightarrow> (\<And>y. (\<And>i. i \<in> A \<Longrightarrow> f i \<ge> y) \<Longrightarrow> x \<ge> y) \<Longrightarrow> (\<Sqinter>i\<in>A. f i) = x" | 
| 56166 | 140 | using Inf_eqI [of "f ` A" x] by auto | 
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 141 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 142 | lemma INF_lower: "i \<in> A \<Longrightarrow> (\<Sqinter>i\<in>A. f i) \<le> f i" | 
| 56166 | 143 | using Inf_lower [of _ "f ` A"] by simp | 
| 44040 | 144 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 145 | lemma INF_greatest: "(\<And>i. i \<in> A \<Longrightarrow> u \<le> f i) \<Longrightarrow> u \<le> (\<Sqinter>i\<in>A. f i)" | 
| 56166 | 146 | using Inf_greatest [of "f ` A"] by auto | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 147 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 148 | lemma SUP_upper: "i \<in> A \<Longrightarrow> f i \<le> (\<Squnion>i\<in>A. f i)" | 
| 56166 | 149 | using Sup_upper [of _ "f ` A"] by simp | 
| 44040 | 150 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 151 | lemma SUP_least: "(\<And>i. i \<in> A \<Longrightarrow> f i \<le> u) \<Longrightarrow> (\<Squnion>i\<in>A. f i) \<le> u" | 
| 56166 | 152 | using Sup_least [of "f ` A"] by auto | 
| 44040 | 153 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 154 | lemma Inf_lower2: "u \<in> A \<Longrightarrow> u \<le> v \<Longrightarrow> \<Sqinter>A \<le> v" | 
| 44040 | 155 | using Inf_lower [of u A] by auto | 
| 156 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 157 | lemma INF_lower2: "i \<in> A \<Longrightarrow> f i \<le> u \<Longrightarrow> (\<Sqinter>i\<in>A. f i) \<le> u" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 158 | using INF_lower [of i A f] by auto | 
| 44040 | 159 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 160 | lemma Sup_upper2: "u \<in> A \<Longrightarrow> v \<le> u \<Longrightarrow> v \<le> \<Squnion>A" | 
| 44040 | 161 | using Sup_upper [of u A] by auto | 
| 162 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 163 | lemma SUP_upper2: "i \<in> A \<Longrightarrow> u \<le> f i \<Longrightarrow> u \<le> (\<Squnion>i\<in>A. f i)" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 164 | using SUP_upper [of i A f] by auto | 
| 44040 | 165 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 166 | lemma le_Inf_iff: "b \<le> \<Sqinter>A \<longleftrightarrow> (\<forall>a\<in>A. b \<le> a)" | 
| 44040 | 167 | by (auto intro: Inf_greatest dest: Inf_lower) | 
| 168 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 169 | lemma le_INF_iff: "u \<le> (\<Sqinter>i\<in>A. f i) \<longleftrightarrow> (\<forall>i\<in>A. u \<le> f i)" | 
| 56166 | 170 | using le_Inf_iff [of _ "f ` A"] by simp | 
| 44040 | 171 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 172 | lemma Sup_le_iff: "\<Squnion>A \<le> b \<longleftrightarrow> (\<forall>a\<in>A. a \<le> b)" | 
| 44040 | 173 | by (auto intro: Sup_least dest: Sup_upper) | 
| 174 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 175 | lemma SUP_le_iff: "(\<Squnion>i\<in>A. f i) \<le> u \<longleftrightarrow> (\<forall>i\<in>A. f i \<le> u)" | 
| 56166 | 176 | using Sup_le_iff [of "f ` A"] by simp | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 177 | |
| 69745 | 178 | lemma Inf_insert [simp]: "\<Sqinter>(insert a A) = a \<sqinter> \<Sqinter>A" | 
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 179 | by (auto intro: le_infI le_infI1 le_infI2 antisym Inf_greatest Inf_lower) | 
| 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 180 | |
| 68797 | 181 | lemma INF_insert [simp]: "(\<Sqinter>x\<in>insert a A. f x) = f a \<sqinter> \<Sqinter>(f ` A)" | 
| 69546 
27dae626822b
prefer naming convention from datatype package for strong congruence rules
 haftmann parents: 
69275diff
changeset | 182 | by (simp cong del: INF_cong_simp) | 
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 183 | |
| 69745 | 184 | lemma Sup_insert [simp]: "\<Squnion>(insert a A) = a \<squnion> \<Squnion>A" | 
| 52729 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 185 | by (auto intro: le_supI le_supI1 le_supI2 antisym Sup_least Sup_upper) | 
| 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 haftmann parents: 
52141diff
changeset | 186 | |
| 68797 | 187 | lemma SUP_insert [simp]: "(\<Squnion>x\<in>insert a A. f x) = f a \<squnion> \<Squnion>(f ` A)" | 
| 69546 
27dae626822b
prefer naming convention from datatype package for strong congruence rules
 haftmann parents: 
69275diff
changeset | 188 | by (simp cong del: SUP_cong_simp) | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 189 | |
| 44067 | 190 | lemma INF_empty [simp]: "(\<Sqinter>x\<in>{}. f x) = \<top>"
 | 
| 69546 
27dae626822b
prefer naming convention from datatype package for strong congruence rules
 haftmann parents: 
69275diff
changeset | 191 | by (simp cong del: INF_cong_simp) | 
| 44040 | 192 | |
| 44067 | 193 | lemma SUP_empty [simp]: "(\<Squnion>x\<in>{}. f x) = \<bottom>"
 | 
| 69546 
27dae626822b
prefer naming convention from datatype package for strong congruence rules
 haftmann parents: 
69275diff
changeset | 194 | by (simp cong del: SUP_cong_simp) | 
| 44040 | 195 | |
| 63575 | 196 | lemma Inf_UNIV [simp]: "\<Sqinter>UNIV = \<bottom>" | 
| 44040 | 197 | by (auto intro!: antisym Inf_lower) | 
| 41080 | 198 | |
| 63575 | 199 | lemma Sup_UNIV [simp]: "\<Squnion>UNIV = \<top>" | 
| 44040 | 200 | by (auto intro!: antisym Sup_upper) | 
| 41080 | 201 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 202 | lemma Inf_Sup: "\<Sqinter>A = \<Squnion>{b. \<forall>a \<in> A. b \<le> a}"
 | 
| 44040 | 203 | by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least) | 
| 204 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 205 | lemma Sup_Inf:  "\<Squnion>A = \<Sqinter>{b. \<forall>a \<in> A. a \<le> b}"
 | 
| 44040 | 206 | by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least) | 
| 207 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 208 | lemma Inf_superset_mono: "B \<subseteq> A \<Longrightarrow> \<Sqinter>A \<le> \<Sqinter>B" | 
| 43899 | 209 | by (auto intro: Inf_greatest Inf_lower) | 
| 210 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 211 | lemma Sup_subset_mono: "A \<subseteq> B \<Longrightarrow> \<Squnion>A \<le> \<Squnion>B" | 
| 43899 | 212 | by (auto intro: Sup_least Sup_upper) | 
| 213 | ||
| 38705 | 214 | lemma Inf_mono: | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 215 | assumes "\<And>b. b \<in> B \<Longrightarrow> \<exists>a\<in>A. a \<le> b" | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 216 | shows "\<Sqinter>A \<le> \<Sqinter>B" | 
| 38705 | 217 | proof (rule Inf_greatest) | 
| 218 | fix b assume "b \<in> B" | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 219 | with assms obtain a where "a \<in> A" and "a \<le> b" by blast | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 220 | from \<open>a \<in> A\<close> have "\<Sqinter>A \<le> a" by (rule Inf_lower) | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 221 | with \<open>a \<le> b\<close> show "\<Sqinter>A \<le> b" by auto | 
| 38705 | 222 | qed | 
| 223 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 224 | lemma INF_mono: "(\<And>m. m \<in> B \<Longrightarrow> \<exists>n\<in>A. f n \<le> g m) \<Longrightarrow> (\<Sqinter>n\<in>A. f n) \<le> (\<Sqinter>n\<in>B. g n)" | 
| 56166 | 225 | using Inf_mono [of "g ` B" "f ` A"] by auto | 
| 44041 | 226 | |
| 69260 
0a9688695a1b
removed relics of ASCII syntax for indexed big operators
 haftmann parents: 
69164diff
changeset | 227 | lemma INF_mono': "(\<And>x. f x \<le> g x) \<Longrightarrow> (\<Sqinter>x\<in>A. f x) \<le> (\<Sqinter>x\<in>A. g x)" | 
| 68860 
f443ec10447d
Some basic materials on filters and topology
 Manuel Eberl <eberlm@in.tum.de> parents: 
68802diff
changeset | 228 | by (rule INF_mono) auto | 
| 
f443ec10447d
Some basic materials on filters and topology
 Manuel Eberl <eberlm@in.tum.de> parents: 
68802diff
changeset | 229 | |
| 41082 | 230 | lemma Sup_mono: | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 231 | assumes "\<And>a. a \<in> A \<Longrightarrow> \<exists>b\<in>B. a \<le> b" | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 232 | shows "\<Squnion>A \<le> \<Squnion>B" | 
| 41082 | 233 | proof (rule Sup_least) | 
| 234 | fix a assume "a \<in> A" | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 235 | with assms obtain b where "b \<in> B" and "a \<le> b" by blast | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 236 | from \<open>b \<in> B\<close> have "b \<le> \<Squnion>B" by (rule Sup_upper) | 
| 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 237 | with \<open>a \<le> b\<close> show "a \<le> \<Squnion>B" by auto | 
| 41082 | 238 | qed | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 239 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 240 | lemma SUP_mono: "(\<And>n. n \<in> A \<Longrightarrow> \<exists>m\<in>B. f n \<le> g m) \<Longrightarrow> (\<Squnion>n\<in>A. f n) \<le> (\<Squnion>n\<in>B. g n)" | 
| 56166 | 241 | using Sup_mono [of "f ` A" "g ` B"] by auto | 
| 44041 | 242 | |
| 69260 
0a9688695a1b
removed relics of ASCII syntax for indexed big operators
 haftmann parents: 
69164diff
changeset | 243 | lemma SUP_mono': "(\<And>x. f x \<le> g x) \<Longrightarrow> (\<Squnion>x\<in>A. f x) \<le> (\<Squnion>x\<in>A. g x)" | 
| 68860 
f443ec10447d
Some basic materials on filters and topology
 Manuel Eberl <eberlm@in.tum.de> parents: 
68802diff
changeset | 244 | by (rule SUP_mono) auto | 
| 
f443ec10447d
Some basic materials on filters and topology
 Manuel Eberl <eberlm@in.tum.de> parents: 
68802diff
changeset | 245 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 246 | lemma INF_superset_mono: "B \<subseteq> A \<Longrightarrow> (\<And>x. x \<in> B \<Longrightarrow> f x \<le> g x) \<Longrightarrow> (\<Sqinter>x\<in>A. f x) \<le> (\<Sqinter>x\<in>B. g x)" | 
| 61799 | 247 | \<comment> \<open>The last inclusion is POSITIVE!\<close> | 
| 44041 | 248 | by (blast intro: INF_mono dest: subsetD) | 
| 249 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 250 | lemma SUP_subset_mono: "A \<subseteq> B \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> f x \<le> g x) \<Longrightarrow> (\<Squnion>x\<in>A. f x) \<le> (\<Squnion>x\<in>B. g x)" | 
| 44041 | 251 | by (blast intro: SUP_mono dest: subsetD) | 
| 252 | ||
| 43868 | 253 | lemma Inf_less_eq: | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 254 | assumes "\<And>v. v \<in> A \<Longrightarrow> v \<le> u" | 
| 43868 | 255 |     and "A \<noteq> {}"
 | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 256 | shows "\<Sqinter>A \<le> u" | 
| 43868 | 257 | proof - | 
| 60758 | 258 |   from \<open>A \<noteq> {}\<close> obtain v where "v \<in> A" by blast
 | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 259 | moreover from \<open>v \<in> A\<close> assms(1) have "v \<le> u" by blast | 
| 43868 | 260 | ultimately show ?thesis by (rule Inf_lower2) | 
| 261 | qed | |
| 262 | ||
| 263 | lemma less_eq_Sup: | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 264 | assumes "\<And>v. v \<in> A \<Longrightarrow> u \<le> v" | 
| 43868 | 265 |     and "A \<noteq> {}"
 | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 266 | shows "u \<le> \<Squnion>A" | 
| 43868 | 267 | proof - | 
| 60758 | 268 |   from \<open>A \<noteq> {}\<close> obtain v where "v \<in> A" by blast
 | 
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 269 | moreover from \<open>v \<in> A\<close> assms(1) have "u \<le> v" by blast | 
| 43868 | 270 | ultimately show ?thesis by (rule Sup_upper2) | 
| 271 | qed | |
| 272 | ||
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 273 | lemma INF_eq: | 
| 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 274 | assumes "\<And>i. i \<in> A \<Longrightarrow> \<exists>j\<in>B. f i \<ge> g j" | 
| 63575 | 275 | and "\<And>j. j \<in> B \<Longrightarrow> \<exists>i\<in>A. g j \<ge> f i" | 
| 68797 | 276 | shows "\<Sqinter>(f ` A) = \<Sqinter>(g ` B)" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 277 | by (intro antisym INF_greatest) (blast intro: INF_lower2 dest: assms)+ | 
| 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 278 | |
| 56212 
3253aaf73a01
consolidated theorem names containing INFI and SUPR: have INF and SUP instead uniformly
 haftmann parents: 
56166diff
changeset | 279 | lemma SUP_eq: | 
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 280 | assumes "\<And>i. i \<in> A \<Longrightarrow> \<exists>j\<in>B. f i \<le> g j" | 
| 63575 | 281 | and "\<And>j. j \<in> B \<Longrightarrow> \<exists>i\<in>A. g j \<le> f i" | 
| 68797 | 282 | shows "\<Squnion>(f ` A) = \<Squnion>(g ` B)" | 
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 283 | by (intro antisym SUP_least) (blast intro: SUP_upper2 dest: assms)+ | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 284 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 285 | lemma less_eq_Inf_inter: "\<Sqinter>A \<squnion> \<Sqinter>B \<le> \<Sqinter>(A \<inter> B)" | 
| 43868 | 286 | by (auto intro: Inf_greatest Inf_lower) | 
| 287 | ||
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 288 | lemma Sup_inter_less_eq: "\<Squnion>(A \<inter> B) \<le> \<Squnion>A \<sqinter> \<Squnion>B " | 
| 43868 | 289 | by (auto intro: Sup_least Sup_upper) | 
| 290 | ||
| 291 | lemma Inf_union_distrib: "\<Sqinter>(A \<union> B) = \<Sqinter>A \<sqinter> \<Sqinter>B" | |
| 292 | by (rule antisym) (auto intro: Inf_greatest Inf_lower le_infI1 le_infI2) | |
| 293 | ||
| 63575 | 294 | lemma INF_union: "(\<Sqinter>i \<in> A \<union> B. M i) = (\<Sqinter>i \<in> A. M i) \<sqinter> (\<Sqinter>i\<in>B. M i)" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 295 | by (auto intro!: antisym INF_mono intro: le_infI1 le_infI2 INF_greatest INF_lower) | 
| 44041 | 296 | |
| 43868 | 297 | lemma Sup_union_distrib: "\<Squnion>(A \<union> B) = \<Squnion>A \<squnion> \<Squnion>B" | 
| 298 | by (rule antisym) (auto intro: Sup_least Sup_upper le_supI1 le_supI2) | |
| 299 | ||
| 63575 | 300 | lemma SUP_union: "(\<Squnion>i \<in> A \<union> B. M i) = (\<Squnion>i \<in> A. M i) \<squnion> (\<Squnion>i\<in>B. M i)" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 301 | by (auto intro!: antisym SUP_mono intro: le_supI1 le_supI2 SUP_least SUP_upper) | 
| 44041 | 302 | |
| 303 | lemma INF_inf_distrib: "(\<Sqinter>a\<in>A. f a) \<sqinter> (\<Sqinter>a\<in>A. g a) = (\<Sqinter>a\<in>A. f a \<sqinter> g a)" | |
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 304 | by (rule antisym) (rule INF_greatest, auto intro: le_infI1 le_infI2 INF_lower INF_mono) | 
| 44041 | 305 | |
| 63575 | 306 | 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)" | 
| 307 | (is "?L = ?R") | |
| 44918 | 308 | proof (rule antisym) | 
| 63575 | 309 | show "?L \<le> ?R" | 
| 310 | by (auto intro: le_supI1 le_supI2 SUP_upper SUP_mono) | |
| 311 | show "?R \<le> ?L" | |
| 312 | by (rule SUP_least) (auto intro: le_supI1 le_supI2 SUP_upper) | |
| 44918 | 313 | qed | 
| 44041 | 314 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 315 | lemma Inf_top_conv [simp]: | 
| 43868 | 316 | "\<Sqinter>A = \<top> \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)" | 
| 317 | "\<top> = \<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)" | |
| 318 | proof - | |
| 319 | show "\<Sqinter>A = \<top> \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)" | |
| 320 | proof | |
| 321 | assume "\<forall>x\<in>A. x = \<top>" | |
| 322 |     then have "A = {} \<or> A = {\<top>}" by auto
 | |
| 44919 | 323 | then show "\<Sqinter>A = \<top>" by auto | 
| 43868 | 324 | next | 
| 325 | assume "\<Sqinter>A = \<top>" | |
| 326 | show "\<forall>x\<in>A. x = \<top>" | |
| 327 | proof (rule ccontr) | |
| 328 | assume "\<not> (\<forall>x\<in>A. x = \<top>)" | |
| 329 | then obtain x where "x \<in> A" and "x \<noteq> \<top>" by blast | |
| 330 | then obtain B where "A = insert x B" by blast | |
| 60758 | 331 | with \<open>\<Sqinter>A = \<top>\<close> \<open>x \<noteq> \<top>\<close> show False by simp | 
| 43868 | 332 | qed | 
| 333 | qed | |
| 334 | then show "\<top> = \<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<top>)" by auto | |
| 335 | qed | |
| 336 | ||
| 44918 | 337 | lemma INF_top_conv [simp]: | 
| 56166 | 338 | "(\<Sqinter>x\<in>A. B x) = \<top> \<longleftrightarrow> (\<forall>x\<in>A. B x = \<top>)" | 
| 339 | "\<top> = (\<Sqinter>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. B x = \<top>)" | |
| 340 | using Inf_top_conv [of "B ` A"] by simp_all | |
| 44041 | 341 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 342 | lemma Sup_bot_conv [simp]: | 
| 63575 | 343 | "\<Squnion>A = \<bottom> \<longleftrightarrow> (\<forall>x\<in>A. x = \<bottom>)" | 
| 344 | "\<bottom> = \<Squnion>A \<longleftrightarrow> (\<forall>x\<in>A. x = \<bottom>)" | |
| 44920 | 345 | using dual_complete_lattice | 
| 346 | by (rule complete_lattice.Inf_top_conv)+ | |
| 43868 | 347 | |
| 44918 | 348 | lemma SUP_bot_conv [simp]: | 
| 63575 | 349 | "(\<Squnion>x\<in>A. B x) = \<bottom> \<longleftrightarrow> (\<forall>x\<in>A. B x = \<bottom>)" | 
| 350 | "\<bottom> = (\<Squnion>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. B x = \<bottom>)" | |
| 56166 | 351 | using Sup_bot_conv [of "B ` A"] by simp_all | 
| 44041 | 352 | |
| 43865 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 353 | lemma INF_const [simp]: "A \<noteq> {} \<Longrightarrow> (\<Sqinter>i\<in>A. f) = f"
 | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 354 | by (auto intro: antisym INF_lower INF_greatest) | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 355 | |
| 43870 | 356 | lemma SUP_const [simp]: "A \<noteq> {} \<Longrightarrow> (\<Squnion>i\<in>A. f) = f"
 | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 357 | by (auto intro: antisym SUP_upper SUP_least) | 
| 43870 | 358 | |
| 44918 | 359 | lemma INF_top [simp]: "(\<Sqinter>x\<in>A. \<top>) = \<top>" | 
| 44921 | 360 |   by (cases "A = {}") simp_all
 | 
| 43900 
7162691e740b
generalization; various notation and proof tuning
 haftmann parents: 
43899diff
changeset | 361 | |
| 44918 | 362 | lemma SUP_bot [simp]: "(\<Squnion>x\<in>A. \<bottom>) = \<bottom>" | 
| 44921 | 363 |   by (cases "A = {}") simp_all
 | 
| 43900 
7162691e740b
generalization; various notation and proof tuning
 haftmann parents: 
43899diff
changeset | 364 | |
| 43865 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 365 | lemma INF_commute: "(\<Sqinter>i\<in>A. \<Sqinter>j\<in>B. f i j) = (\<Sqinter>j\<in>B. \<Sqinter>i\<in>A. f i j)" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 366 | by (iprover intro: INF_lower INF_greatest order_trans antisym) | 
| 43865 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 367 | |
| 43870 | 368 | lemma SUP_commute: "(\<Squnion>i\<in>A. \<Squnion>j\<in>B. f i j) = (\<Squnion>j\<in>B. \<Squnion>i\<in>A. f i j)" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 369 | by (iprover intro: SUP_upper SUP_least order_trans antisym) | 
| 43870 | 370 | |
| 43871 | 371 | lemma INF_absorb: | 
| 43868 | 372 | assumes "k \<in> I" | 
| 373 | shows "A k \<sqinter> (\<Sqinter>i\<in>I. A i) = (\<Sqinter>i\<in>I. A i)" | |
| 374 | proof - | |
| 375 | from assms obtain J where "I = insert k J" by blast | |
| 56166 | 376 | then show ?thesis by simp | 
| 43868 | 377 | qed | 
| 378 | ||
| 43871 | 379 | lemma SUP_absorb: | 
| 380 | assumes "k \<in> I" | |
| 381 | shows "A k \<squnion> (\<Squnion>i\<in>I. A i) = (\<Squnion>i\<in>I. A i)" | |
| 382 | proof - | |
| 383 | from assms obtain J where "I = insert k J" by blast | |
| 56166 | 384 | then show ?thesis by simp | 
| 43871 | 385 | qed | 
| 386 | ||
| 67613 | 387 | lemma INF_inf_const1: "I \<noteq> {} \<Longrightarrow> (\<Sqinter>i\<in>I. inf x (f i)) = inf x (\<Sqinter>i\<in>I. f i)"
 | 
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57197diff
changeset | 388 | by (intro antisym INF_greatest inf_mono order_refl INF_lower) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57197diff
changeset | 389 | (auto intro: INF_lower2 le_infI2 intro!: INF_mono) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57197diff
changeset | 390 | |
| 67613 | 391 | lemma INF_inf_const2: "I \<noteq> {} \<Longrightarrow> (\<Sqinter>i\<in>I. inf (f i) x) = inf (\<Sqinter>i\<in>I. f i) x"
 | 
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57197diff
changeset | 392 | using INF_inf_const1[of I x f] by (simp add: inf_commute) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57197diff
changeset | 393 | |
| 63575 | 394 | lemma INF_constant: "(\<Sqinter>y\<in>A. c) = (if A = {} then \<top> else c)"
 | 
| 44921 | 395 | by simp | 
| 43868 | 396 | |
| 63575 | 397 | lemma SUP_constant: "(\<Squnion>y\<in>A. c) = (if A = {} then \<bottom> else c)"
 | 
| 44921 | 398 | by simp | 
| 43871 | 399 | |
| 43943 | 400 | lemma less_INF_D: | 
| 63575 | 401 | assumes "y < (\<Sqinter>i\<in>A. f i)" "i \<in> A" | 
| 402 | shows "y < f i" | |
| 43943 | 403 | proof - | 
| 60758 | 404 | note \<open>y < (\<Sqinter>i\<in>A. f i)\<close> | 
| 405 | also have "(\<Sqinter>i\<in>A. f i) \<le> f i" using \<open>i \<in> A\<close> | |
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 406 | by (rule INF_lower) | 
| 43943 | 407 | finally show "y < f i" . | 
| 408 | qed | |
| 409 | ||
| 410 | lemma SUP_lessD: | |
| 63575 | 411 | assumes "(\<Squnion>i\<in>A. f i) < y" "i \<in> A" | 
| 412 | shows "f i < y" | |
| 43943 | 413 | proof - | 
| 63575 | 414 | have "f i \<le> (\<Squnion>i\<in>A. f i)" | 
| 415 | using \<open>i \<in> A\<close> by (rule SUP_upper) | |
| 60758 | 416 | also note \<open>(\<Squnion>i\<in>A. f i) < y\<close> | 
| 43943 | 417 | finally show "f i < y" . | 
| 418 | qed | |
| 419 | ||
| 63575 | 420 | lemma INF_UNIV_bool_expand: "(\<Sqinter>b. A b) = A True \<sqinter> A False" | 
| 56166 | 421 | by (simp add: UNIV_bool inf_commute) | 
| 43868 | 422 | |
| 63575 | 423 | lemma SUP_UNIV_bool_expand: "(\<Squnion>b. A b) = A True \<squnion> A False" | 
| 56166 | 424 | by (simp add: UNIV_bool sup_commute) | 
| 43871 | 425 | |
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 426 | lemma Inf_le_Sup: "A \<noteq> {} \<Longrightarrow> Inf A \<le> Sup A"
 | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 427 | by (blast intro: Sup_upper2 Inf_lower ex_in_conv) | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 428 | |
| 68797 | 429 | lemma INF_le_SUP: "A \<noteq> {} \<Longrightarrow> \<Sqinter>(f ` A) \<le> \<Squnion>(f ` A)"
 | 
| 56166 | 430 | using Inf_le_Sup [of "f ` A"] by simp | 
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 431 | |
| 68797 | 432 | lemma INF_eq_const: "I \<noteq> {} \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> f i = x) \<Longrightarrow> \<Sqinter>(f ` I) = x"
 | 
| 54414 
72949fae4f81
add equalities for SUP and INF over constant functions
 hoelzl parents: 
54259diff
changeset | 433 | by (auto intro: INF_eqI) | 
| 
72949fae4f81
add equalities for SUP and INF over constant functions
 hoelzl parents: 
54259diff
changeset | 434 | |
| 68797 | 435 | lemma SUP_eq_const: "I \<noteq> {} \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> f i = x) \<Longrightarrow> \<Squnion>(f ` I) = x"
 | 
| 56248 
67dc9549fa15
generalized and strengthened cong rules on compound operators, similar to 1ed737a98198
 haftmann parents: 
56218diff
changeset | 436 | by (auto intro: SUP_eqI) | 
| 54414 
72949fae4f81
add equalities for SUP and INF over constant functions
 hoelzl parents: 
54259diff
changeset | 437 | |
| 68797 | 438 | lemma INF_eq_iff: "I \<noteq> {} \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> f i \<le> c) \<Longrightarrow> \<Sqinter>(f ` I) = c \<longleftrightarrow> (\<forall>i\<in>I. f i = c)"
 | 
| 69768 | 439 | by (auto intro: INF_eq_const INF_lower antisym) | 
| 56248 
67dc9549fa15
generalized and strengthened cong rules on compound operators, similar to 1ed737a98198
 haftmann parents: 
56218diff
changeset | 440 | |
| 68797 | 441 | lemma SUP_eq_iff: "I \<noteq> {} \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> c \<le> f i) \<Longrightarrow> \<Squnion>(f ` I) = c \<longleftrightarrow> (\<forall>i\<in>I. f i = c)"
 | 
| 69768 | 442 | by (auto intro: SUP_eq_const SUP_upper antisym) | 
| 54414 
72949fae4f81
add equalities for SUP and INF over constant functions
 hoelzl parents: 
54259diff
changeset | 443 | |
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 444 | end | 
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 445 | |
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 446 | context complete_lattice | 
| 44024 | 447 | begin | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 448 | lemma Sup_Inf_le: "Sup (Inf ` {f ` A | f . (\<forall> Y \<in> A . f Y \<in> Y)}) \<le> Inf (Sup ` A)"
 | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 449 | by (rule SUP_least, clarify, rule INF_greatest, simp add: INF_lower2 Sup_upper) | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 450 | end | 
| 44039 | 451 | |
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 452 | class complete_distrib_lattice = complete_lattice + | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 453 |   assumes Inf_Sup_le: "Inf (Sup ` A) \<le> Sup (Inf ` {f ` A | f . (\<forall> Y \<in> A . f Y \<in> Y)})"
 | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 454 | begin | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 455 | |
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 456 | lemma Inf_Sup: "Inf (Sup ` A) = Sup (Inf ` {f ` A | f . (\<forall> Y \<in> A . f Y \<in> Y)})"
 | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 457 | by (rule antisym, rule Inf_Sup_le, rule Sup_Inf_le) | 
| 44024 | 458 | |
| 63575 | 459 | subclass distrib_lattice | 
| 460 | proof | |
| 44024 | 461 | fix a b c | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 462 | show "a \<squnion> b \<sqinter> c = (a \<squnion> b) \<sqinter> (a \<squnion> c)" | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 463 | proof (rule antisym, simp_all, safe) | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 464 | show "b \<sqinter> c \<le> a \<squnion> b" | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 465 | by (rule le_infI1, simp) | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 466 | show "b \<sqinter> c \<le> a \<squnion> c" | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 467 | by (rule le_infI2, simp) | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 468 | have [simp]: "a \<sqinter> c \<le> a \<squnion> b \<sqinter> c" | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 469 | by (rule le_infI1, simp) | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 470 | have [simp]: "b \<sqinter> a \<le> a \<squnion> b \<sqinter> c" | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 471 | by (rule le_infI2, simp) | 
| 68797 | 472 |     have "\<Sqinter>(Sup ` {{a, b}, {a, c}}) =
 | 
| 473 |       \<Squnion>(Inf ` {f ` {{a, b}, {a, c}} | f. \<forall>Y\<in>{{a, b}, {a, c}}. f Y \<in> Y})"
 | |
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 474 | by (rule Inf_Sup) | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 475 | from this show "(a \<squnion> b) \<sqinter> (a \<squnion> c) \<le> a \<squnion> b \<sqinter> c" | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 476 | apply simp | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 477 | by (rule SUP_least, safe, simp_all) | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 478 | qed | 
| 44024 | 479 | qed | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 480 | end | 
| 44039 | 481 | |
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 482 | context complete_lattice | 
| 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 483 | begin | 
| 56074 | 484 | context | 
| 485 | fixes f :: "'a \<Rightarrow> 'b::complete_lattice" | |
| 486 | assumes "mono f" | |
| 487 | begin | |
| 488 | ||
| 63575 | 489 | lemma mono_Inf: "f (\<Sqinter>A) \<le> (\<Sqinter>x\<in>A. f x)" | 
| 60758 | 490 | using \<open>mono f\<close> by (auto intro: complete_lattice_class.INF_greatest Inf_lower dest: monoD) | 
| 56074 | 491 | |
| 63575 | 492 | lemma mono_Sup: "(\<Squnion>x\<in>A. f x) \<le> f (\<Squnion>A)" | 
| 60758 | 493 | using \<open>mono f\<close> by (auto intro: complete_lattice_class.SUP_least Sup_upper dest: monoD) | 
| 56074 | 494 | |
| 67613 | 495 | lemma mono_INF: "f (\<Sqinter>i\<in>I. A i) \<le> (\<Sqinter>x\<in>I. f (A x))" | 
| 60758 | 496 | by (intro complete_lattice_class.INF_greatest monoD[OF \<open>mono f\<close>] INF_lower) | 
| 60172 
423273355b55
rename continuous and down_continuous in Order_Continuity to sup_/inf_continuous; relate them with topological continuity
 hoelzl parents: 
58889diff
changeset | 497 | |
| 67613 | 498 | lemma mono_SUP: "(\<Squnion>x\<in>I. f (A x)) \<le> f (\<Squnion>i\<in>I. A i)" | 
| 60758 | 499 | by (intro complete_lattice_class.SUP_least monoD[OF \<open>mono f\<close>] SUP_upper) | 
| 60172 
423273355b55
rename continuous and down_continuous in Order_Continuity to sup_/inf_continuous; relate them with topological continuity
 hoelzl parents: 
58889diff
changeset | 500 | |
| 56074 | 501 | end | 
| 502 | ||
| 44024 | 503 | end | 
| 504 | ||
| 44032 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 haftmann parents: 
44029diff
changeset | 505 | class complete_boolean_algebra = boolean_algebra + complete_distrib_lattice | 
| 43873 | 506 | begin | 
| 507 | ||
| 63575 | 508 | lemma uminus_Inf: "- (\<Sqinter>A) = \<Squnion>(uminus ` A)" | 
| 43873 | 509 | proof (rule antisym) | 
| 510 | show "- \<Sqinter>A \<le> \<Squnion>(uminus ` A)" | |
| 511 | by (rule compl_le_swap2, rule Inf_greatest, rule compl_le_swap2, rule Sup_upper) simp | |
| 512 | show "\<Squnion>(uminus ` A) \<le> - \<Sqinter>A" | |
| 513 | by (rule Sup_least, rule compl_le_swap1, rule Inf_lower) auto | |
| 514 | qed | |
| 515 | ||
| 44041 | 516 | lemma uminus_INF: "- (\<Sqinter>x\<in>A. B x) = (\<Squnion>x\<in>A. - B x)" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 517 | by (simp add: uminus_Inf image_image) | 
| 44041 | 518 | |
| 63575 | 519 | lemma uminus_Sup: "- (\<Squnion>A) = \<Sqinter>(uminus ` A)" | 
| 43873 | 520 | proof - | 
| 63575 | 521 | have "\<Squnion>A = - \<Sqinter>(uminus ` A)" | 
| 522 | by (simp add: image_image uminus_INF) | |
| 43873 | 523 | then show ?thesis by simp | 
| 524 | qed | |
| 63575 | 525 | |
| 43873 | 526 | lemma uminus_SUP: "- (\<Squnion>x\<in>A. B x) = (\<Sqinter>x\<in>A. - B x)" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 527 | by (simp add: uminus_Sup image_image) | 
| 43873 | 528 | |
| 529 | end | |
| 530 | ||
| 43940 | 531 | class complete_linorder = linorder + complete_lattice | 
| 532 | begin | |
| 533 | ||
| 43943 | 534 | lemma dual_complete_linorder: | 
| 67399 | 535 | "class.complete_linorder Sup Inf sup (\<ge>) (>) inf \<top> \<bottom>" | 
| 43943 | 536 | by (rule class.complete_linorder.intro, rule dual_complete_lattice, rule dual_linorder) | 
| 537 | ||
| 51386 | 538 | lemma complete_linorder_inf_min: "inf = min" | 
| 51540 
eea5c4ca4a0e
explicit sublocale dependency for Min/Max yields more appropriate Min/Max prefix for a couple of facts
 haftmann parents: 
51489diff
changeset | 539 | by (auto intro: antisym simp add: min_def fun_eq_iff) | 
| 51386 | 540 | |
| 541 | lemma complete_linorder_sup_max: "sup = max" | |
| 51540 
eea5c4ca4a0e
explicit sublocale dependency for Min/Max yields more appropriate Min/Max prefix for a couple of facts
 haftmann parents: 
51489diff
changeset | 542 | by (auto intro: antisym simp add: max_def fun_eq_iff) | 
| 51386 | 543 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 544 | lemma Inf_less_iff: "\<Sqinter>S < a \<longleftrightarrow> (\<exists>x\<in>S. x < a)" | 
| 63172 | 545 | by (simp add: not_le [symmetric] le_Inf_iff) | 
| 43940 | 546 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 547 | lemma INF_less_iff: "(\<Sqinter>i\<in>A. f i) < a \<longleftrightarrow> (\<exists>x\<in>A. f x < a)" | 
| 63172 | 548 | by (simp add: Inf_less_iff [of "f ` A"]) | 
| 44041 | 549 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 550 | lemma less_Sup_iff: "a < \<Squnion>S \<longleftrightarrow> (\<exists>x\<in>S. a < x)" | 
| 63172 | 551 | by (simp add: not_le [symmetric] Sup_le_iff) | 
| 43940 | 552 | |
| 63820 
9f004fbf9d5c
discontinued theory-local special syntax for lattice orderings
 haftmann parents: 
63576diff
changeset | 553 | lemma less_SUP_iff: "a < (\<Squnion>i\<in>A. f i) \<longleftrightarrow> (\<exists>x\<in>A. a < f x)" | 
| 63172 | 554 | by (simp add: less_Sup_iff [of _ "f ` A"]) | 
| 43940 | 555 | |
| 63575 | 556 | lemma Sup_eq_top_iff [simp]: "\<Squnion>A = \<top> \<longleftrightarrow> (\<forall>x<\<top>. \<exists>i\<in>A. x < i)" | 
| 43943 | 557 | proof | 
| 558 | assume *: "\<Squnion>A = \<top>" | |
| 63575 | 559 | show "(\<forall>x<\<top>. \<exists>i\<in>A. x < i)" | 
| 560 | unfolding * [symmetric] | |
| 43943 | 561 | proof (intro allI impI) | 
| 63575 | 562 | fix x | 
| 563 | assume "x < \<Squnion>A" | |
| 564 | then show "\<exists>i\<in>A. x < i" | |
| 63172 | 565 | by (simp add: less_Sup_iff) | 
| 43943 | 566 | qed | 
| 567 | next | |
| 568 | assume *: "\<forall>x<\<top>. \<exists>i\<in>A. x < i" | |
| 569 | show "\<Squnion>A = \<top>" | |
| 570 | proof (rule ccontr) | |
| 571 | assume "\<Squnion>A \<noteq> \<top>" | |
| 63575 | 572 | with top_greatest [of "\<Squnion>A"] have "\<Squnion>A < \<top>" | 
| 573 | unfolding le_less by auto | |
| 574 | with * have "\<Squnion>A < \<Squnion>A" | |
| 575 | unfolding less_Sup_iff by auto | |
| 43943 | 576 | then show False by auto | 
| 577 | qed | |
| 578 | qed | |
| 579 | ||
| 63575 | 580 | lemma SUP_eq_top_iff [simp]: "(\<Squnion>i\<in>A. f i) = \<top> \<longleftrightarrow> (\<forall>x<\<top>. \<exists>i\<in>A. x < f i)" | 
| 56166 | 581 | using Sup_eq_top_iff [of "f ` A"] by simp | 
| 44041 | 582 | |
| 63575 | 583 | lemma Inf_eq_bot_iff [simp]: "\<Sqinter>A = \<bottom> \<longleftrightarrow> (\<forall>x>\<bottom>. \<exists>i\<in>A. i < x)" | 
| 44920 | 584 | using dual_complete_linorder | 
| 585 | by (rule complete_linorder.Sup_eq_top_iff) | |
| 43943 | 586 | |
| 63575 | 587 | lemma INF_eq_bot_iff [simp]: "(\<Sqinter>i\<in>A. f i) = \<bottom> \<longleftrightarrow> (\<forall>x>\<bottom>. \<exists>i\<in>A. f i < x)" | 
| 56166 | 588 | using Inf_eq_bot_iff [of "f ` A"] by simp | 
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 589 | |
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 590 | lemma Inf_le_iff: "\<Sqinter>A \<le> x \<longleftrightarrow> (\<forall>y>x. \<exists>a\<in>A. y > a)" | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 591 | proof safe | 
| 63575 | 592 | fix y | 
| 593 | assume "x \<ge> \<Sqinter>A" "y > x" | |
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 594 | then have "y > \<Sqinter>A" by auto | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 595 | then show "\<exists>a\<in>A. y > a" | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 596 | unfolding Inf_less_iff . | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 597 | qed (auto elim!: allE[of _ "\<Sqinter>A"] simp add: not_le[symmetric] Inf_lower) | 
| 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 598 | |
| 68802 | 599 | lemma INF_le_iff: "\<Sqinter>(f ` A) \<le> x \<longleftrightarrow> (\<forall>y>x. \<exists>i\<in>A. y > f i)" | 
| 56166 | 600 | using Inf_le_iff [of "f ` A"] by simp | 
| 601 | ||
| 602 | lemma le_Sup_iff: "x \<le> \<Squnion>A \<longleftrightarrow> (\<forall>y<x. \<exists>a\<in>A. y < a)" | |
| 603 | proof safe | |
| 63575 | 604 | fix y | 
| 605 | assume "x \<le> \<Squnion>A" "y < x" | |
| 56166 | 606 | then have "y < \<Squnion>A" by auto | 
| 607 | then show "\<exists>a\<in>A. y < a" | |
| 608 | unfolding less_Sup_iff . | |
| 609 | qed (auto elim!: allE[of _ "\<Squnion>A"] simp add: not_le[symmetric] Sup_upper) | |
| 610 | ||
| 68802 | 611 | lemma le_SUP_iff: "x \<le> \<Squnion>(f ` A) \<longleftrightarrow> (\<forall>y<x. \<exists>i\<in>A. y < f i)" | 
| 56166 | 612 | using le_Sup_iff [of _ "f ` A"] by simp | 
| 51328 
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
 hoelzl parents: 
49905diff
changeset | 613 | |
| 43940 | 614 | end | 
| 615 | ||
| 69593 | 616 | subsection \<open>Complete lattice on \<^typ>\<open>bool\<close>\<close> | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 617 | |
| 44024 | 618 | 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: 
32064diff
changeset | 619 | begin | 
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 620 | |
| 63575 | 621 | definition [simp, code]: "\<Sqinter>A \<longleftrightarrow> False \<notin> A" | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 622 | |
| 63575 | 623 | definition [simp, code]: "\<Squnion>A \<longleftrightarrow> True \<in> A" | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 624 | |
| 63575 | 625 | instance | 
| 626 | by standard (auto intro: bool_induct) | |
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 627 | |
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 628 | end | 
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 629 | |
| 63575 | 630 | lemma not_False_in_image_Ball [simp]: "False \<notin> P ` A \<longleftrightarrow> Ball A P" | 
| 49905 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 haftmann parents: 
46884diff
changeset | 631 | by auto | 
| 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 haftmann parents: 
46884diff
changeset | 632 | |
| 63575 | 633 | lemma True_in_image_Bex [simp]: "True \<in> P ` A \<longleftrightarrow> Bex A P" | 
| 49905 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 haftmann parents: 
46884diff
changeset | 634 | by auto | 
| 
a81f95693c68
simp results for simplification results of Inf/Sup expressions on bool;
 haftmann parents: 
46884diff
changeset | 635 | |
| 68802 | 636 | lemma INF_bool_eq [simp]: "(\<lambda>A f. \<Sqinter>(f ` A)) = Ball" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 637 | by (simp add: fun_eq_iff) | 
| 32120 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 haftmann parents: 
32117diff
changeset | 638 | |
| 68802 | 639 | lemma SUP_bool_eq [simp]: "(\<lambda>A f. \<Squnion>(f ` A)) = Bex" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 640 | by (simp add: fun_eq_iff) | 
| 32120 
53a21a5e6889
attempt for more concise setup of non-etacontracting binders
 haftmann parents: 
32117diff
changeset | 641 | |
| 63575 | 642 | instance bool :: complete_boolean_algebra | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 643 | by (standard, fastforce) | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 644 | |
| 69593 | 645 | subsection \<open>Complete lattice on \<^typ>\<open>_ \<Rightarrow> _\<close>\<close> | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 646 | |
| 57197 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 647 | instantiation "fun" :: (type, Inf) Inf | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 648 | begin | 
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 649 | |
| 63575 | 650 | definition "\<Sqinter>A = (\<lambda>x. \<Sqinter>f\<in>A. f x)" | 
| 41080 | 651 | |
| 63575 | 652 | lemma Inf_apply [simp, code]: "(\<Sqinter>A) x = (\<Sqinter>f\<in>A. f x)" | 
| 41080 | 653 | 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: 
32064diff
changeset | 654 | |
| 57197 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 655 | instance .. | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 656 | |
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 657 | end | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 658 | |
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 659 | instantiation "fun" :: (type, Sup) Sup | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 660 | begin | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 661 | |
| 63575 | 662 | definition "\<Squnion>A = (\<lambda>x. \<Squnion>f\<in>A. f x)" | 
| 41080 | 663 | |
| 63575 | 664 | lemma Sup_apply [simp, code]: "(\<Squnion>A) x = (\<Squnion>f\<in>A. f x)" | 
| 41080 | 665 | 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: 
32064diff
changeset | 666 | |
| 57197 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 667 | instance .. | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 668 | |
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 669 | end | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 670 | |
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 671 | instantiation "fun" :: (type, complete_lattice) complete_lattice | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 672 | begin | 
| 
4cf607675df8
Sup/Inf on functions decoupled from complete_lattice.
 nipkow parents: 
56742diff
changeset | 673 | |
| 63575 | 674 | instance | 
| 675 | by standard (auto simp add: le_fun_def intro: INF_lower INF_greatest SUP_upper SUP_least) | |
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 676 | |
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 677 | end | 
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 678 | |
| 63575 | 679 | lemma INF_apply [simp]: "(\<Sqinter>y\<in>A. f y) x = (\<Sqinter>y\<in>A. f y x)" | 
| 69861 
62e47f06d22c
avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
 haftmann parents: 
69768diff
changeset | 680 | by (simp add: image_comp) | 
| 38705 | 681 | |
| 63575 | 682 | lemma SUP_apply [simp]: "(\<Squnion>y\<in>A. f y) x = (\<Squnion>y\<in>A. f y x)" | 
| 69861 
62e47f06d22c
avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
 haftmann parents: 
69768diff
changeset | 683 | by (simp add: image_comp) | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 684 | |
| 60758 | 685 | subsection \<open>Complete lattice on unary and binary predicates\<close> | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 686 | |
| 63575 | 687 | lemma Inf1_I: "(\<And>P. P \<in> A \<Longrightarrow> P a) \<Longrightarrow> (\<Sqinter>A) a" | 
| 46884 | 688 | by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 689 | |
| 63575 | 690 | lemma INF1_I: "(\<And>x. x \<in> A \<Longrightarrow> B x b) \<Longrightarrow> (\<Sqinter>x\<in>A. B x) b" | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 691 | by simp | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 692 | |
| 63575 | 693 | lemma INF2_I: "(\<And>x. x \<in> A \<Longrightarrow> B x b c) \<Longrightarrow> (\<Sqinter>x\<in>A. B x) b c" | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 694 | by simp | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 695 | |
| 63575 | 696 | lemma Inf2_I: "(\<And>r. r \<in> A \<Longrightarrow> r a b) \<Longrightarrow> (\<Sqinter>A) a b" | 
| 46884 | 697 | by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 698 | |
| 63575 | 699 | lemma Inf1_D: "(\<Sqinter>A) a \<Longrightarrow> P \<in> A \<Longrightarrow> P a" | 
| 46884 | 700 | by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 701 | |
| 63575 | 702 | lemma INF1_D: "(\<Sqinter>x\<in>A. B x) b \<Longrightarrow> a \<in> A \<Longrightarrow> B a b" | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 703 | by simp | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 704 | |
| 63575 | 705 | lemma Inf2_D: "(\<Sqinter>A) a b \<Longrightarrow> r \<in> A \<Longrightarrow> r a b" | 
| 46884 | 706 | by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 707 | |
| 63575 | 708 | lemma INF2_D: "(\<Sqinter>x\<in>A. B x) b c \<Longrightarrow> a \<in> A \<Longrightarrow> B a b c" | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 709 | by simp | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 710 | |
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 711 | lemma Inf1_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 712 | assumes "(\<Sqinter>A) a" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 713 | obtains "P a" | "P \<notin> A" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 714 | using assms by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 715 | |
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 716 | lemma INF1_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 717 | assumes "(\<Sqinter>x\<in>A. B x) b" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 718 | obtains "B a b" | "a \<notin> A" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 719 | using assms by auto | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 720 | |
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 721 | lemma Inf2_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 722 | assumes "(\<Sqinter>A) a b" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 723 | obtains "r a b" | "r \<notin> A" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 724 | using assms by auto | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 725 | |
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 726 | lemma INF2_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 727 | assumes "(\<Sqinter>x\<in>A. B x) b c" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 728 | obtains "B a b c" | "a \<notin> A" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 729 | using assms by auto | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 730 | |
| 63575 | 731 | lemma Sup1_I: "P \<in> A \<Longrightarrow> P a \<Longrightarrow> (\<Squnion>A) a" | 
| 46884 | 732 | by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 733 | |
| 63575 | 734 | lemma SUP1_I: "a \<in> A \<Longrightarrow> B a b \<Longrightarrow> (\<Squnion>x\<in>A. B x) b" | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 735 | by auto | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 736 | |
| 63575 | 737 | lemma Sup2_I: "r \<in> A \<Longrightarrow> r a b \<Longrightarrow> (\<Squnion>A) a b" | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 738 | by auto | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 739 | |
| 63575 | 740 | lemma SUP2_I: "a \<in> A \<Longrightarrow> B a b c \<Longrightarrow> (\<Squnion>x\<in>A. B x) b c" | 
| 46884 | 741 | by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 742 | |
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 743 | lemma Sup1_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 744 | assumes "(\<Squnion>A) a" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 745 | obtains P where "P \<in> A" and "P a" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 746 | using assms by auto | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 747 | |
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 748 | lemma SUP1_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 749 | assumes "(\<Squnion>x\<in>A. B x) b" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 750 | obtains x where "x \<in> A" and "B x b" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 751 | using assms by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 752 | |
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 753 | lemma Sup2_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 754 | assumes "(\<Squnion>A) a b" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 755 | obtains r where "r \<in> A" "r a b" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 756 | using assms by auto | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 757 | |
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 758 | lemma SUP2_E: | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 759 | assumes "(\<Squnion>x\<in>A. B x) b c" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 760 | obtains x where "x \<in> A" "B x b c" | 
| 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56741diff
changeset | 761 | using assms by auto | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 762 | |
| 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 763 | |
| 69593 | 764 | subsection \<open>Complete lattice on \<^typ>\<open>_ set\<close>\<close> | 
| 46631 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 haftmann parents: 
46557diff
changeset | 765 | |
| 45960 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 766 | instantiation "set" :: (type) complete_lattice | 
| 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 767 | begin | 
| 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 768 | |
| 63575 | 769 | definition "\<Sqinter>A = {x. \<Sqinter>((\<lambda>B. x \<in> B) ` A)}"
 | 
| 45960 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 770 | |
| 63575 | 771 | definition "\<Squnion>A = {x. \<Squnion>((\<lambda>B. x \<in> B) ` A)}"
 | 
| 45960 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 772 | |
| 63575 | 773 | instance | 
| 774 | by standard (auto simp add: less_eq_set_def Inf_set_def Sup_set_def le_fun_def) | |
| 45960 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 775 | |
| 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 776 | end | 
| 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 777 | |
| 60758 | 778 | subsubsection \<open>Inter\<close> | 
| 41082 | 779 | |
| 69745 | 780 | abbreviation Inter :: "'a set set \<Rightarrow> 'a set"  ("\<Inter>")
 | 
| 61952 | 781 | where "\<Inter>S \<equiv> \<Sqinter>S" | 
| 63575 | 782 | |
| 783 | lemma Inter_eq: "\<Inter>A = {x. \<forall>B \<in> A. x \<in> B}"
 | |
| 41082 | 784 | proof (rule set_eqI) | 
| 785 | fix x | |
| 786 |   have "(\<forall>Q\<in>{P. \<exists>B\<in>A. P \<longleftrightarrow> x \<in> B}. Q) \<longleftrightarrow> (\<forall>B\<in>A. x \<in> B)"
 | |
| 787 | by auto | |
| 788 |   then show "x \<in> \<Inter>A \<longleftrightarrow> x \<in> {x. \<forall>B \<in> A. x \<in> B}"
 | |
| 45960 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 789 | by (simp add: Inf_set_def image_def) | 
| 41082 | 790 | qed | 
| 791 | ||
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 792 | lemma Inter_iff [simp]: "A \<in> \<Inter>C \<longleftrightarrow> (\<forall>X\<in>C. A \<in> X)" | 
| 41082 | 793 | by (unfold Inter_eq) blast | 
| 794 | ||
| 43741 | 795 | lemma InterI [intro!]: "(\<And>X. X \<in> C \<Longrightarrow> A \<in> X) \<Longrightarrow> A \<in> \<Inter>C" | 
| 41082 | 796 | by (simp add: Inter_eq) | 
| 797 | ||
| 60758 | 798 | text \<open> | 
| 69593 | 799 | \<^medskip> A ``destruct'' rule -- every \<^term>\<open>X\<close> in \<^term>\<open>C\<close> | 
| 800 | contains \<^term>\<open>A\<close> as an element, but \<^prop>\<open>A \<in> X\<close> can hold when | |
| 801 | \<^prop>\<open>X \<in> C\<close> does not! This rule is analogous to \<open>spec\<close>. | |
| 60758 | 802 | \<close> | 
| 41082 | 803 | |
| 43741 | 804 | lemma InterD [elim, Pure.elim]: "A \<in> \<Inter>C \<Longrightarrow> X \<in> C \<Longrightarrow> A \<in> X" | 
| 41082 | 805 | by auto | 
| 806 | ||
| 43741 | 807 | lemma InterE [elim]: "A \<in> \<Inter>C \<Longrightarrow> (X \<notin> C \<Longrightarrow> R) \<Longrightarrow> (A \<in> X \<Longrightarrow> R) \<Longrightarrow> R" | 
| 61799 | 808 | \<comment> \<open>``Classical'' elimination rule -- does not require proving | 
| 69593 | 809 | \<^prop>\<open>X \<in> C\<close>.\<close> | 
| 63575 | 810 | unfolding Inter_eq by blast | 
| 41082 | 811 | |
| 43741 | 812 | lemma Inter_lower: "B \<in> A \<Longrightarrow> \<Inter>A \<subseteq> B" | 
| 43740 | 813 | by (fact Inf_lower) | 
| 814 | ||
| 63575 | 815 | lemma Inter_subset: "(\<And>X. X \<in> A \<Longrightarrow> X \<subseteq> B) \<Longrightarrow> A \<noteq> {} \<Longrightarrow> \<Inter>A \<subseteq> B"
 | 
| 43740 | 816 | by (fact Inf_less_eq) | 
| 41082 | 817 | |
| 61952 | 818 | lemma Inter_greatest: "(\<And>X. X \<in> A \<Longrightarrow> C \<subseteq> X) \<Longrightarrow> C \<subseteq> \<Inter>A" | 
| 43740 | 819 | by (fact Inf_greatest) | 
| 41082 | 820 | |
| 44067 | 821 | lemma Inter_empty: "\<Inter>{} = UNIV"
 | 
| 822 | by (fact Inf_empty) (* already simp *) | |
| 41082 | 823 | |
| 44067 | 824 | lemma Inter_UNIV: "\<Inter>UNIV = {}"
 | 
| 825 | by (fact Inf_UNIV) (* already simp *) | |
| 41082 | 826 | |
| 44920 | 827 | lemma Inter_insert: "\<Inter>(insert a B) = a \<inter> \<Inter>B" | 
| 828 | by (fact Inf_insert) (* already simp *) | |
| 41082 | 829 | |
| 830 | lemma Inter_Un_subset: "\<Inter>A \<union> \<Inter>B \<subseteq> \<Inter>(A \<inter> B)" | |
| 43899 | 831 | by (fact less_eq_Inf_inter) | 
| 41082 | 832 | |
| 833 | lemma Inter_Un_distrib: "\<Inter>(A \<union> B) = \<Inter>A \<inter> \<Inter>B" | |
| 43756 | 834 | by (fact Inf_union_distrib) | 
| 835 | ||
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 836 | lemma Inter_UNIV_conv [simp]: | 
| 43741 | 837 | "\<Inter>A = UNIV \<longleftrightarrow> (\<forall>x\<in>A. x = UNIV)" | 
| 838 | "UNIV = \<Inter>A \<longleftrightarrow> (\<forall>x\<in>A. x = UNIV)" | |
| 43801 | 839 | by (fact Inf_top_conv)+ | 
| 41082 | 840 | |
| 43741 | 841 | lemma Inter_anti_mono: "B \<subseteq> A \<Longrightarrow> \<Inter>A \<subseteq> \<Inter>B" | 
| 43899 | 842 | by (fact Inf_superset_mono) | 
| 41082 | 843 | |
| 844 | ||
| 60758 | 845 | subsubsection \<open>Intersections of families\<close> | 
| 41082 | 846 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61952diff
changeset | 847 | syntax (ASCII) | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61952diff
changeset | 848 |   "_INTER1"     :: "pttrns \<Rightarrow> 'b set \<Rightarrow> 'b set"           ("(3INT _./ _)" [0, 10] 10)
 | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61952diff
changeset | 849 |   "_INTER"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> 'b set"  ("(3INT _:_./ _)" [0, 0, 10] 10)
 | 
| 41082 | 850 | |
| 69274 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 851 | syntax | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 852 |   "_INTER1"     :: "pttrns \<Rightarrow> 'b set \<Rightarrow> 'b set"           ("(3\<Inter>_./ _)" [0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 853 |   "_INTER"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> 'b set"  ("(3\<Inter>_\<in>_./ _)" [0, 0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 854 | |
| 41082 | 855 | syntax (latex output) | 
| 62789 | 856 |   "_INTER1"     :: "pttrns \<Rightarrow> 'b set \<Rightarrow> 'b set"           ("(3\<Inter>(\<open>unbreakable\<close>\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
 | 
| 857 |   "_INTER"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> 'b set"  ("(3\<Inter>(\<open>unbreakable\<close>\<^bsub>_\<in>_\<^esub>)/ _)" [0, 0, 10] 10)
 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61952diff
changeset | 858 | |
| 41082 | 859 | translations | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 860 | "\<Inter>x y. f" \<rightleftharpoons> "\<Inter>x. \<Inter>y. f" | 
| 69745 | 861 | "\<Inter>x. f" \<rightleftharpoons> "\<Inter>(CONST range (\<lambda>x. f))" | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 862 | "\<Inter>x\<in>A. f" \<rightleftharpoons> "CONST Inter ((\<lambda>x. f) ` A)" | 
| 41082 | 863 | |
| 63575 | 864 | lemma INTER_eq: "(\<Inter>x\<in>A. B x) = {y. \<forall>x\<in>A. y \<in> B x}"
 | 
| 56166 | 865 | by (auto intro!: INF_eqI) | 
| 41082 | 866 | |
| 43817 | 867 | lemma INT_iff [simp]: "b \<in> (\<Inter>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. b \<in> B x)" | 
| 56166 | 868 | using Inter_iff [of _ "B ` A"] by simp | 
| 41082 | 869 | |
| 43817 | 870 | lemma INT_I [intro!]: "(\<And>x. x \<in> A \<Longrightarrow> b \<in> B x) \<Longrightarrow> b \<in> (\<Inter>x\<in>A. B x)" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 871 | by auto | 
| 41082 | 872 | |
| 43852 | 873 | lemma INT_D [elim, Pure.elim]: "b \<in> (\<Inter>x\<in>A. B x) \<Longrightarrow> a \<in> A \<Longrightarrow> b \<in> B a" | 
| 41082 | 874 | by auto | 
| 875 | ||
| 43852 | 876 | 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" | 
| 69593 | 877 | \<comment> \<open>"Classical" elimination -- by the Excluded Middle on \<^prop>\<open>a\<in>A\<close>.\<close> | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 878 | by auto | 
| 41082 | 879 | |
| 880 | lemma Collect_ball_eq: "{x. \<forall>y\<in>A. P x y} = (\<Inter>y\<in>A. {x. P x y})"
 | |
| 881 | by blast | |
| 882 | ||
| 883 | lemma Collect_all_eq: "{x. \<forall>y. P x y} = (\<Inter>y. {x. P x y})"
 | |
| 884 | by blast | |
| 885 | ||
| 43817 | 886 | lemma INT_lower: "a \<in> A \<Longrightarrow> (\<Inter>x\<in>A. B x) \<subseteq> B a" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 887 | by (fact INF_lower) | 
| 41082 | 888 | |
| 43817 | 889 | lemma INT_greatest: "(\<And>x. x \<in> A \<Longrightarrow> C \<subseteq> B x) \<Longrightarrow> C \<subseteq> (\<Inter>x\<in>A. B x)" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 890 | by (fact INF_greatest) | 
| 41082 | 891 | |
| 44067 | 892 | lemma INT_empty: "(\<Inter>x\<in>{}. B x) = UNIV"
 | 
| 44085 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 haftmann parents: 
44084diff
changeset | 893 | by (fact INF_empty) | 
| 43854 | 894 | |
| 43817 | 895 | lemma INT_absorb: "k \<in> I \<Longrightarrow> A k \<inter> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. A i)" | 
| 43872 | 896 | by (fact INF_absorb) | 
| 41082 | 897 | |
| 43854 | 898 | lemma INT_subset_iff: "B \<subseteq> (\<Inter>i\<in>I. A i) \<longleftrightarrow> (\<forall>i\<in>I. B \<subseteq> A i)" | 
| 41082 | 899 | by (fact le_INF_iff) | 
| 900 | ||
| 69275 | 901 | lemma INT_insert [simp]: "(\<Inter>x \<in> insert a A. B x) = B a \<inter> \<Inter> (B ` A)" | 
| 43865 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 902 | by (fact INF_insert) | 
| 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 903 | |
| 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 904 | 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: 
43854diff
changeset | 905 | by (fact INF_union) | 
| 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 906 | |
| 63575 | 907 | lemma INT_insert_distrib: "u \<in> A \<Longrightarrow> (\<Inter>x\<in>A. insert a (B x)) = insert a (\<Inter>x\<in>A. B x)" | 
| 43865 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 908 | by blast | 
| 43854 | 909 | |
| 41082 | 910 | 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: 
43854diff
changeset | 911 | by (fact INF_constant) | 
| 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 912 | |
| 44920 | 913 | lemma INTER_UNIV_conv: | 
| 63575 | 914 | "(UNIV = (\<Inter>x\<in>A. B x)) = (\<forall>x\<in>A. B x = UNIV)" | 
| 915 | "((\<Inter>x\<in>A. B x) = UNIV) = (\<forall>x\<in>A. B x = UNIV)" | |
| 44920 | 916 | by (fact INF_top_conv)+ (* already simp *) | 
| 43865 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 917 | |
| 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 918 | lemma INT_bool_eq: "(\<Inter>b. A b) = A True \<inter> A False" | 
| 43873 | 919 | by (fact INF_UNIV_bool_expand) | 
| 43865 
db18f4d0cc7d
further generalization from sets to complete lattices
 haftmann parents: 
43854diff
changeset | 920 | |
| 63575 | 921 | lemma INT_anti_mono: "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)" | 
| 61799 | 922 | \<comment> \<open>The last inclusion is POSITIVE!\<close> | 
| 43940 | 923 | by (fact INF_superset_mono) | 
| 41082 | 924 | |
| 925 | lemma Pow_INT_eq: "Pow (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. Pow (B x))" | |
| 926 | by blast | |
| 927 | ||
| 43817 | 928 | lemma vimage_INT: "f -` (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. f -` B x)" | 
| 41082 | 929 | by blast | 
| 930 | ||
| 931 | ||
| 60758 | 932 | subsubsection \<open>Union\<close> | 
| 32115 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 933 | |
| 69745 | 934 | abbreviation Union :: "'a set set \<Rightarrow> 'a set"  ("\<Union>")
 | 
| 61952 | 935 | where "\<Union>S \<equiv> \<Squnion>S" | 
| 32115 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 936 | |
| 63575 | 937 | lemma Union_eq: "\<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: 
38705diff
changeset | 938 | proof (rule set_eqI) | 
| 32115 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 939 | 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: 
32120diff
changeset | 940 |   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: 
32082diff
changeset | 941 | 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: 
32120diff
changeset | 942 |   then show "x \<in> \<Union>A \<longleftrightarrow> x \<in> {x. \<exists>B\<in>A. x \<in> B}"
 | 
| 45960 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 943 | by (simp add: Sup_set_def image_def) | 
| 32115 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 944 | qed | 
| 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 945 | |
| 63575 | 946 | lemma Union_iff [simp]: "A \<in> \<Union>C \<longleftrightarrow> (\<exists>X\<in>C. A\<in>X)" | 
| 32115 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 947 | by (unfold Union_eq) blast | 
| 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 948 | |
| 63575 | 949 | lemma UnionI [intro]: "X \<in> C \<Longrightarrow> A \<in> X \<Longrightarrow> A \<in> \<Union>C" | 
| 69593 | 950 | \<comment> \<open>The order of the premises presupposes that \<^term>\<open>C\<close> is rigid; | 
| 951 | \<^term>\<open>A\<close> may be flexible.\<close> | |
| 32115 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 952 | by auto | 
| 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 953 | |
| 63575 | 954 | lemma UnionE [elim!]: "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: 
32082diff
changeset | 955 | by auto | 
| 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 956 | |
| 43817 | 957 | lemma Union_upper: "B \<in> A \<Longrightarrow> B \<subseteq> \<Union>A" | 
| 43901 | 958 | 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: 
32120diff
changeset | 959 | |
| 43817 | 960 | lemma Union_least: "(\<And>X. X \<in> A \<Longrightarrow> X \<subseteq> C) \<Longrightarrow> \<Union>A \<subseteq> C" | 
| 43901 | 961 | 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: 
32120diff
changeset | 962 | |
| 44920 | 963 | lemma Union_empty: "\<Union>{} = {}"
 | 
| 964 | by (fact Sup_empty) (* already simp *) | |
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 965 | |
| 44920 | 966 | lemma Union_UNIV: "\<Union>UNIV = UNIV" | 
| 967 | by (fact Sup_UNIV) (* already simp *) | |
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 968 | |
| 69745 | 969 | lemma Union_insert: "\<Union>(insert a B) = a \<union> \<Union>B" | 
| 44920 | 970 | by (fact Sup_insert) (* already simp *) | 
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 971 | |
| 43817 | 972 | lemma Union_Un_distrib [simp]: "\<Union>(A \<union> B) = \<Union>A \<union> \<Union>B" | 
| 43901 | 973 | 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: 
32120diff
changeset | 974 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 975 | lemma Union_Int_subset: "\<Union>(A \<inter> B) \<subseteq> \<Union>A \<inter> \<Union>B" | 
| 43901 | 976 | 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: 
32120diff
changeset | 977 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 978 | lemma Union_empty_conv: "(\<Union>A = {}) \<longleftrightarrow> (\<forall>x\<in>A. x = {})"
 | 
| 44920 | 979 | by (fact Sup_bot_conv) (* already simp *) | 
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 980 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 981 | lemma empty_Union_conv: "({} = \<Union>A) \<longleftrightarrow> (\<forall>x\<in>A. x = {})"
 | 
| 44920 | 982 | by (fact Sup_bot_conv) (* already simp *) | 
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 983 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 984 | 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: 
32120diff
changeset | 985 | by blast | 
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 986 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 987 | 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: 
32120diff
changeset | 988 | 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: 
32120diff
changeset | 989 | |
| 43817 | 990 | lemma Union_mono: "A \<subseteq> B \<Longrightarrow> \<Union>A \<subseteq> \<Union>B" | 
| 43901 | 991 | 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: 
32120diff
changeset | 992 | |
| 63469 
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
 paulson <lp15@cam.ac.uk> parents: 
63365diff
changeset | 993 | lemma Union_subsetI: "(\<And>x. x \<in> A \<Longrightarrow> \<exists>y. y \<in> B \<and> x \<subseteq> y) \<Longrightarrow> \<Union>A \<subseteq> \<Union>B" | 
| 
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
 paulson <lp15@cam.ac.uk> parents: 
63365diff
changeset | 994 | by blast | 
| 32115 
8f10fb3bb46e
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
 haftmann parents: 
32082diff
changeset | 995 | |
| 63879 
15bbf6360339
simple new lemmas, mostly about sets
 paulson <lp15@cam.ac.uk> parents: 
63820diff
changeset | 996 | lemma disjnt_inj_on_iff: | 
| 
15bbf6360339
simple new lemmas, mostly about sets
 paulson <lp15@cam.ac.uk> parents: 
63820diff
changeset | 997 | "\<lbrakk>inj_on f (\<Union>\<A>); X \<in> \<A>; Y \<in> \<A>\<rbrakk> \<Longrightarrow> disjnt (f ` X) (f ` Y) \<longleftrightarrow> disjnt X Y" | 
| 
15bbf6360339
simple new lemmas, mostly about sets
 paulson <lp15@cam.ac.uk> parents: 
63820diff
changeset | 998 | apply (auto simp: disjnt_def) | 
| 
15bbf6360339
simple new lemmas, mostly about sets
 paulson <lp15@cam.ac.uk> parents: 
63820diff
changeset | 999 | using inj_on_eq_iff by fastforce | 
| 
15bbf6360339
simple new lemmas, mostly about sets
 paulson <lp15@cam.ac.uk> parents: 
63820diff
changeset | 1000 | |
| 69986 
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
 paulson <lp15@cam.ac.uk> parents: 
69861diff
changeset | 1001 | lemma disjnt_Union1 [simp]: "disjnt (\<Union>\<A>) B \<longleftrightarrow> (\<forall>A \<in> \<A>. disjnt A B)" | 
| 
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
 paulson <lp15@cam.ac.uk> parents: 
69861diff
changeset | 1002 | by (auto simp: disjnt_def) | 
| 
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
 paulson <lp15@cam.ac.uk> parents: 
69861diff
changeset | 1003 | |
| 
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
 paulson <lp15@cam.ac.uk> parents: 
69861diff
changeset | 1004 | lemma disjnt_Union2 [simp]: "disjnt B (\<Union>\<A>) \<longleftrightarrow> (\<forall>A \<in> \<A>. disjnt B A)" | 
| 
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
 paulson <lp15@cam.ac.uk> parents: 
69861diff
changeset | 1005 | by (auto simp: disjnt_def) | 
| 
f2d327275065
generalised homotopic_with to topologies; homotopic_with_canon is the old version
 paulson <lp15@cam.ac.uk> parents: 
69861diff
changeset | 1006 | |
| 63575 | 1007 | |
| 60758 | 1008 | subsubsection \<open>Unions of families\<close> | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 1009 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61952diff
changeset | 1010 | syntax (ASCII) | 
| 35115 | 1011 |   "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3UN _./ _)" [0, 10] 10)
 | 
| 36364 
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
 huffman parents: 
35828diff
changeset | 1012 |   "_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: 
32064diff
changeset | 1013 | |
| 69274 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 1014 | syntax | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 1015 |   "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>_./ _)" [0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 1016 |   "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>_\<in>_./ _)" [0, 0, 10] 10)
 | 
| 
ff7e6751a1a7
clarified status of ancient ASCII syntax for big union and inter
 haftmann parents: 
69260diff
changeset | 1017 | |
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 1018 | syntax (latex output) | 
| 62789 | 1019 |   "_UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>(\<open>unbreakable\<close>\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
 | 
| 1020 |   "_UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>(\<open>unbreakable\<close>\<^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: 
32064diff
changeset | 1021 | |
| 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 1022 | translations | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 1023 | "\<Union>x y. f" \<rightleftharpoons> "\<Union>x. \<Union>y. f" | 
| 69745 | 1024 | "\<Union>x. f" \<rightleftharpoons> "\<Union>(CONST range (\<lambda>x. f))" | 
| 68796 
9ca183045102
simplified syntax setup for big operators under image, retaining input abbreviations for backward compatibility
 haftmann parents: 
68795diff
changeset | 1025 | "\<Union>x\<in>A. f" \<rightleftharpoons> "CONST Union ((\<lambda>x. f) ` A)" | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 1026 | |
| 60758 | 1027 | text \<open> | 
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61952diff
changeset | 1028 | Note the difference between ordinary syntax of indexed | 
| 61799 | 1029 | unions and intersections (e.g.\ \<open>\<Union>a\<^sub>1\<in>A\<^sub>1. B\<close>) | 
| 69593 | 1030 | and their \LaTeX\ rendition: \<^term>\<open>\<Union>a\<^sub>1\<in>A\<^sub>1. B\<close>. | 
| 60758 | 1031 | \<close> | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 1032 | |
| 67673 
c8caefb20564
lots of new material, ultimately related to measure theory
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1033 | lemma disjoint_UN_iff: "disjnt A (\<Union>i\<in>I. B i) \<longleftrightarrow> (\<forall>i\<in>I. disjnt A (B i))" | 
| 
c8caefb20564
lots of new material, ultimately related to measure theory
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1034 | by (auto simp: disjnt_def) | 
| 
c8caefb20564
lots of new material, ultimately related to measure theory
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1035 | |
| 63575 | 1036 | lemma UNION_eq: "(\<Union>x\<in>A. B x) = {y. \<exists>x\<in>A. y \<in> B x}"
 | 
| 56166 | 1037 | by (auto intro!: SUP_eqI) | 
| 44920 | 1038 | |
| 69275 | 1039 | lemma bind_UNION [code]: "Set.bind A f = \<Union>(f ` A)" | 
| 45960 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 1040 | by (simp add: bind_def UNION_eq) | 
| 
e1b09bfb52f1
lattice type class instances for `set`; added code lemma for Set.bind
 haftmann parents: 
45013diff
changeset | 1041 | |
| 69275 | 1042 | lemma member_bind [simp]: "x \<in> Set.bind A f \<longleftrightarrow> x \<in> \<Union>(f ` A)" | 
| 46036 | 1043 | by (simp add: bind_UNION) | 
| 1044 | ||
| 60585 | 1045 | lemma Union_SetCompr_eq: "\<Union>{f x| x. P x} = {a. \<exists>x. P x \<and> a \<in> f x}"
 | 
| 60307 
75e1aa7a450e
Convex hulls: theorems about interior, etc. And a few simple lemmas.
 paulson <lp15@cam.ac.uk> parents: 
60172diff
changeset | 1046 | by blast | 
| 
75e1aa7a450e
Convex hulls: theorems about interior, etc. And a few simple lemmas.
 paulson <lp15@cam.ac.uk> parents: 
60172diff
changeset | 1047 | |
| 46036 | 1048 | lemma UN_iff [simp]: "b \<in> (\<Union>x\<in>A. B x) \<longleftrightarrow> (\<exists>x\<in>A. b \<in> B x)" | 
| 56166 | 1049 | using Union_iff [of _ "B ` A"] by simp | 
| 11979 | 1050 | |
| 43852 | 1051 | lemma UN_I [intro]: "a \<in> A \<Longrightarrow> b \<in> B a \<Longrightarrow> b \<in> (\<Union>x\<in>A. B x)" | 
| 69593 | 1052 | \<comment> \<open>The order of the premises presupposes that \<^term>\<open>A\<close> is rigid; | 
| 1053 | \<^term>\<open>b\<close> may be flexible.\<close> | |
| 11979 | 1054 | by auto | 
| 1055 | ||
| 43852 | 1056 | 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" | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 1057 | by auto | 
| 32077 
3698947146b2
closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
 haftmann parents: 
32064diff
changeset | 1058 | |
| 43817 | 1059 | lemma UN_upper: "a \<in> A \<Longrightarrow> B a \<subseteq> (\<Union>x\<in>A. B x)" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 1060 | 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: 
32120diff
changeset | 1061 | |
| 43817 | 1062 | lemma UN_least: "(\<And>x. x \<in> A \<Longrightarrow> B x \<subseteq> C) \<Longrightarrow> (\<Union>x\<in>A. B x) \<subseteq> C" | 
| 44103 
cedaca00789f
more uniform naming scheme for Inf/INF and Sup/SUP lemmas
 haftmann parents: 
44085diff
changeset | 1063 | 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: 
32120diff
changeset | 1064 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1065 | lemma Collect_bex_eq: "{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: 
32120diff
changeset | 1066 | 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: 
32120diff
changeset | 1067 | |
| 43817 | 1068 | 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: 
32120diff
changeset | 1069 | 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: 
32120diff
changeset | 1070 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1071 | lemma UN_empty: "(\<Union>x\<in>{}. B x) = {}"
 | 
| 44085 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 haftmann parents: 
44084diff
changeset | 1072 | 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: 
32120diff
changeset | 1073 | |
| 44920 | 1074 | lemma UN_empty2: "(\<Union>x\<in>A. {}) = {}"
 | 
| 1075 | by (fact SUP_bot) (* already simp *) | |
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1076 | |
| 43817 | 1077 | 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: 
43899diff
changeset | 1078 | 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: 
32120diff
changeset | 1079 | |
| 69275 | 1080 | lemma UN_insert [simp]: "(\<Union>x\<in>insert a A. B x) = B a \<union> \<Union>(B ` A)" | 
| 43900 
7162691e740b
generalization; various notation and proof tuning
 haftmann parents: 
43899diff
changeset | 1081 | 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: 
32120diff
changeset | 1082 | |
| 44085 
a65e26f1427b
move legacy candiates to bottom; marked candidates for default simp rules
 haftmann parents: 
44084diff
changeset | 1083 | 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: 
43899diff
changeset | 1084 | 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: 
32120diff
changeset | 1085 | |
| 43967 | 1086 | 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: 
32120diff
changeset | 1087 | 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: 
32120diff
changeset | 1088 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1089 | lemma UN_subset_iff: "((\<Union>i\<in>I. A i) \<subseteq> B) = (\<forall>i\<in>I. A i \<subseteq> B)" | 
| 35629 | 1090 | 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: 
32120diff
changeset | 1091 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1092 | lemma UN_constant [simp]: "(\<Union>y\<in>A. c) = (if A = {} then {} else c)"
 | 
| 43900 
7162691e740b
generalization; various notation and proof tuning
 haftmann parents: 
43899diff
changeset | 1093 | 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: 
32120diff
changeset | 1094 | |
| 67673 
c8caefb20564
lots of new material, ultimately related to measure theory
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1095 | lemma UNION_singleton_eq_range: "(\<Union>x\<in>A. {f x}) = f ` A"
 | 
| 
c8caefb20564
lots of new material, ultimately related to measure theory
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1096 | by blast | 
| 
c8caefb20564
lots of new material, ultimately related to measure theory
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1097 | |
| 43944 | 1098 | 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: 
32120diff
changeset | 1099 | 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: 
32120diff
changeset | 1100 | |
| 44920 | 1101 | lemma UNION_empty_conv: | 
| 43817 | 1102 |   "{} = (\<Union>x\<in>A. B x) \<longleftrightarrow> (\<forall>x\<in>A. B x = {})"
 | 
| 1103 |   "(\<Union>x\<in>A. B x) = {} \<longleftrightarrow> (\<forall>x\<in>A. B x = {})"
 | |
| 44920 | 1104 | by (fact SUP_bot_conv)+ (* already simp *) | 
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1105 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1106 | lemma Collect_ex_eq: "{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: 
32120diff
changeset | 1107 | 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: 
32120diff
changeset | 1108 | |
| 69275 | 1109 | lemma ball_UN: "(\<forall>z \<in> \<Union>(B ` A). 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: 
32120diff
changeset | 1110 | 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: 
32120diff
changeset | 1111 | |
| 69275 | 1112 | lemma bex_UN: "(\<exists>z \<in> \<Union>(B ` A). 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: 
32120diff
changeset | 1113 | 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: 
32120diff
changeset | 1114 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1115 | lemma Un_eq_UN: "A \<union> B = (\<Union>b. if b then A else B)" | 
| 62390 | 1116 | by safe (auto simp add: if_split_mem2) | 
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1117 | |
| 43817 | 1118 | lemma UN_bool_eq: "(\<Union>b. A b) = (A True \<union> A False)" | 
| 43900 
7162691e740b
generalization; various notation and proof tuning
 haftmann parents: 
43899diff
changeset | 1119 | 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: 
32120diff
changeset | 1120 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1121 | 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: 
32120diff
changeset | 1122 | 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: 
32120diff
changeset | 1123 | |
| 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1124 | lemma UN_mono: | 
| 43817 | 1125 | "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: 
32120diff
changeset | 1126 | (\<Union>x\<in>A. f x) \<subseteq> (\<Union>x\<in>B. g x)" | 
| 43940 | 1127 | 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: 
32120diff
changeset | 1128 | |
| 43817 | 1129 | 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: 
32120diff
changeset | 1130 | 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: 
32120diff
changeset | 1131 | |
| 43817 | 1132 | 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: 
32120diff
changeset | 1133 | 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: 
32120diff
changeset | 1134 | |
| 43817 | 1135 | lemma vimage_eq_UN: "f -` B = (\<Union>y\<in>B. f -` {y})"
 | 
| 61799 | 1136 | \<comment> \<open>NOT suitable for rewriting\<close> | 
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1137 | 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: 
32120diff
changeset | 1138 | |
| 69275 | 1139 | lemma image_UN: "f ` \<Union>(B ` A) = (\<Union>x\<in>A. f ` B x)" | 
| 43817 | 1140 | 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: 
32120diff
changeset | 1141 | |
| 45013 | 1142 | lemma UN_singleton [simp]: "(\<Union>x\<in>A. {x}) = A"
 | 
| 1143 | by blast | |
| 1144 | ||
| 67399 | 1145 | lemma inj_on_image: "inj_on f (\<Union>A) \<Longrightarrow> inj_on ((`) f) A" | 
| 63099 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 eberlm parents: 
62789diff
changeset | 1146 | unfolding inj_on_def by blast | 
| 11979 | 1147 | |
| 63575 | 1148 | |
| 60758 | 1149 | subsubsection \<open>Distributive laws\<close> | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1150 | |
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1151 | lemma Int_Union: "A \<inter> \<Union>B = (\<Union>C\<in>B. A \<inter> C)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1152 | by blast | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1153 | |
| 44039 | 1154 | lemma Un_Inter: "A \<union> \<Inter>B = (\<Inter>C\<in>B. A \<union> C)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1155 | by blast | 
| 44039 | 1156 | |
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1157 | lemma Int_Union2: "\<Union>B \<inter> A = (\<Union>C\<in>B. C \<inter> A)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1158 | by blast | 
| 44039 | 1159 | |
| 1160 | 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)" | |
| 1161 | by (rule sym) (rule INF_inf_distrib) | |
| 1162 | ||
| 1163 | 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)" | |
| 1164 | by (rule sym) (rule SUP_sup_distrib) | |
| 1165 | ||
| 63575 | 1166 | lemma Int_Inter_image: "(\<Inter>x\<in>C. A x \<inter> B x) = \<Inter>(A ` C) \<inter> \<Inter>(B ` C)" (* FIXME drop *) | 
| 56166 | 1167 | by (simp add: INT_Int_distrib) | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1168 | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68980diff
changeset | 1169 | lemma Int_Inter_eq: "A \<inter> \<Inter>\<B> = (if \<B>={} then A else (\<Inter>B\<in>\<B>. A \<inter> B))"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68980diff
changeset | 1170 |                     "\<Inter>\<B> \<inter> A = (if \<B>={} then A else (\<Inter>B\<in>\<B>. B \<inter> A))"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68980diff
changeset | 1171 | by auto | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68980diff
changeset | 1172 | |
| 63575 | 1173 | lemma Un_Union_image: "(\<Union>x\<in>C. A x \<union> B x) = \<Union>(A ` C) \<union> \<Union>(B ` C)" (* FIXME drop *) | 
| 61799 | 1174 | \<comment> \<open>Devlin, Fundamentals of Contemporary Set Theory, page 12, exercise 5:\<close> | 
| 1175 | \<comment> \<open>Union of a family of unions\<close> | |
| 56166 | 1176 | by (simp add: UN_Un_distrib) | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1177 | |
| 44039 | 1178 | lemma Un_INT_distrib: "B \<union> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. B \<union> A i)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1179 | by blast | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1180 | |
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1181 | lemma Int_UN_distrib: "B \<inter> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. B \<inter> A i)" | 
| 61799 | 1182 | \<comment> \<open>Halmos, Naive Set Theory, page 35.\<close> | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1183 | by blast | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1184 | |
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1185 | 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)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1186 | by blast | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1187 | |
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1188 | 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)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1189 | by blast | 
| 44039 | 1190 | |
| 1191 | lemma Union_disjoint: "(\<Union>C \<inter> A = {}) \<longleftrightarrow> (\<forall>B\<in>C. B \<inter> A = {})"
 | |
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1192 | by blast | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1193 | |
| 67613 | 1194 | lemma SUP_UNION: "(\<Squnion>x\<in>(\<Union>y\<in>A. g y). f x) = (\<Squnion>y\<in>A. \<Squnion>x\<in>g y. f x :: _ :: complete_lattice)" | 
| 63575 | 1195 | by (rule order_antisym) (blast intro: SUP_least SUP_upper2)+ | 
| 1196 | ||
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1197 | |
| 60758 | 1198 | subsection \<open>Injections and bijections\<close> | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1199 | |
| 63575 | 1200 | lemma inj_on_Inter: "S \<noteq> {} \<Longrightarrow> (\<And>A. A \<in> S \<Longrightarrow> inj_on f A) \<Longrightarrow> inj_on f (\<Inter>S)"
 | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1201 | unfolding inj_on_def by blast | 
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1202 | |
| 63575 | 1203 | lemma inj_on_INTER: "I \<noteq> {} \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> inj_on f (A i)) \<Longrightarrow> inj_on f (\<Inter>i \<in> I. A i)"
 | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 1204 | unfolding inj_on_def by safe simp | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1205 | |
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1206 | lemma inj_on_UNION_chain: | 
| 63575 | 1207 | assumes chain: "\<And>i j. i \<in> I \<Longrightarrow> j \<in> I \<Longrightarrow> A i \<le> A j \<or> A j \<le> A i" | 
| 1208 | and inj: "\<And>i. i \<in> I \<Longrightarrow> inj_on f (A i)" | |
| 60585 | 1209 | shows "inj_on f (\<Union>i \<in> I. A i)" | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1210 | proof - | 
| 63575 | 1211 | have "x = y" | 
| 1212 | if *: "i \<in> I" "j \<in> I" | |
| 1213 | and **: "x \<in> A i" "y \<in> A j" | |
| 1214 | and ***: "f x = f y" | |
| 1215 | for i j x y | |
| 1216 | using chain [OF *] | |
| 1217 | proof | |
| 1218 | assume "A i \<le> A j" | |
| 1219 | with ** have "x \<in> A j" by auto | |
| 1220 | with inj * ** *** show ?thesis | |
| 1221 | by (auto simp add: inj_on_def) | |
| 1222 | next | |
| 1223 | assume "A j \<le> A i" | |
| 1224 | with ** have "y \<in> A i" by auto | |
| 1225 | with inj * ** *** show ?thesis | |
| 1226 | by (auto simp add: inj_on_def) | |
| 1227 | qed | |
| 1228 | then show ?thesis | |
| 1229 | by (unfold inj_on_def UNION_eq) auto | |
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1230 | qed | 
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1231 | |
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1232 | lemma bij_betw_UNION_chain: | 
| 63575 | 1233 | assumes chain: "\<And>i j. i \<in> I \<Longrightarrow> j \<in> I \<Longrightarrow> A i \<le> A j \<or> A j \<le> A i" | 
| 1234 | and bij: "\<And>i. i \<in> I \<Longrightarrow> bij_betw f (A i) (A' i)" | |
| 60585 | 1235 | shows "bij_betw f (\<Union>i \<in> I. A i) (\<Union>i \<in> I. A' i)" | 
| 63575 | 1236 | unfolding bij_betw_def | 
| 63576 | 1237 | proof safe | 
| 63575 | 1238 | have "\<And>i. i \<in> I \<Longrightarrow> inj_on f (A i)" | 
| 1239 | using bij bij_betw_def[of f] by auto | |
| 69275 | 1240 | then show "inj_on f (\<Union>(A ` I))" | 
| 63575 | 1241 | using chain inj_on_UNION_chain[of I A f] by auto | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1242 | next | 
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1243 | fix i x | 
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1244 | assume *: "i \<in> I" "x \<in> A i" | 
| 63576 | 1245 | with bij have "f x \<in> A' i" | 
| 1246 | by (auto simp: bij_betw_def) | |
| 69275 | 1247 | with * show "f x \<in> \<Union>(A' ` I)" by blast | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1248 | next | 
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1249 | fix i x' | 
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1250 | assume *: "i \<in> I" "x' \<in> A' i" | 
| 63576 | 1251 | with bij have "\<exists>x \<in> A i. x' = f x" | 
| 1252 | unfolding bij_betw_def by blast | |
| 63575 | 1253 | with * have "\<exists>j \<in> I. \<exists>x \<in> A j. x' = f x" | 
| 1254 | by blast | |
| 69275 | 1255 | then show "x' \<in> f ` \<Union>(A ` I)" | 
| 63575 | 1256 | by blast | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1257 | qed | 
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1258 | |
| 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1259 | (*injectivity's required. Left-to-right inclusion holds even if A is empty*) | 
| 69275 | 1260 | lemma image_INT: "inj_on f C \<Longrightarrow> \<forall>x\<in>A. B x \<subseteq> C \<Longrightarrow> j \<in> A \<Longrightarrow> f ` (\<Inter>(B ` A)) = (\<Inter>x\<in>A. f ` B x)" | 
| 63575 | 1261 | by (auto simp add: inj_on_def) blast | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1262 | |
| 69275 | 1263 | lemma bij_image_INT: "bij f \<Longrightarrow> f ` (\<Inter>(B ` A)) = (\<Inter>x\<in>A. f ` B x)" | 
| 64966 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 wenzelm parents: 
63879diff
changeset | 1264 | by (auto simp: bij_def inj_def surj_def) blast | 
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1265 | |
| 69275 | 1266 | lemma UNION_fun_upd: "\<Union>(A(i := B) ` J) = \<Union>(A ` (J - {i})) \<union> (if i \<in> J then B else {})"
 | 
| 62343 
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
 haftmann parents: 
62048diff
changeset | 1267 | by (auto simp add: set_eq_iff) | 
| 63365 | 1268 | |
| 1269 | lemma bij_betw_Pow: | |
| 1270 | assumes "bij_betw f A B" | |
| 1271 | shows "bij_betw (image f) (Pow A) (Pow B)" | |
| 1272 | proof - | |
| 1273 | from assms have "inj_on f A" | |
| 1274 | by (rule bij_betw_imp_inj_on) | |
| 69745 | 1275 | then have "inj_on f (\<Union>(Pow A))" | 
| 63365 | 1276 | by simp | 
| 1277 | then have "inj_on (image f) (Pow A)" | |
| 1278 | by (rule inj_on_image) | |
| 1279 | then have "bij_betw (image f) (Pow A) (image f ` Pow A)" | |
| 1280 | by (rule inj_on_imp_bij_betw) | |
| 1281 | moreover from assms have "f ` A = B" | |
| 1282 | by (rule bij_betw_imp_surj_on) | |
| 1283 | then have "image f ` Pow A = Pow B" | |
| 1284 | by (rule image_Pow_surj) | |
| 1285 | ultimately show ?thesis by simp | |
| 1286 | qed | |
| 1287 | ||
| 56015 
57e2cfba9c6e
bootstrap fundamental Fun theory immediately after Set theory, without dependency on complete lattices
 haftmann parents: 
54414diff
changeset | 1288 | |
| 60758 | 1289 | subsubsection \<open>Complement\<close> | 
| 32135 
f645b51e8e54
set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
 haftmann parents: 
32120diff
changeset | 1290 | |
| 43873 | 1291 | lemma Compl_INT [simp]: "- (\<Inter>x\<in>A. B x) = (\<Union>x\<in>A. -B x)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1292 | by blast | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1293 | |
| 43873 | 1294 | lemma Compl_UN [simp]: "- (\<Union>x\<in>A. B x) = (\<Inter>x\<in>A. -B x)" | 
| 67829 
2a6ef5ba4822
Changes to complete distributive lattices due to Viorel Preoteasa
 Manuel Eberl <eberlm@in.tum.de> parents: 
67673diff
changeset | 1295 | by blast | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1296 | |
| 60758 | 1297 | subsubsection \<open>Miniscoping and maxiscoping\<close> | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1298 | |
| 63575 | 1299 | text \<open>\<^medskip> Miniscoping: pushing in quantifiers and big Unions and Intersections.\<close> | 
| 12897 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1300 | |
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1301 | lemma UN_simps [simp]: | 
| 43817 | 1302 |   "\<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: 
44029diff
changeset | 1303 |   "\<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 | 1304 |   "\<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: 
44029diff
changeset | 1305 | "\<And>A B C. (\<Union>x\<in>C. A x \<inter> B) = ((\<Union>x\<in>C. A x) \<inter> B)" | 
| 43852 | 1306 | "\<And>A B C. (\<Union>x\<in>C. A \<inter> B x) = (A \<inter>(\<Union>x\<in>C. B x))" | 
| 1307 | "\<And>A B C. (\<Union>x\<in>C. A x - B) = ((\<Union>x\<in>C. A x) - B)" | |
| 1308 | "\<And>A B C. (\<Union>x\<in>C. A - B x) = (A - (\<Inter>x\<in>C. B x))" | |
| 1309 | "\<And>A B. (\<Union>x\<in>\<Union>A. B x) = (\<Union>y\<in>A. \<Union>x\<in>y. B x)" | |
| 69275 | 1310 | "\<And>A B C. (\<Union>z\<in>(\<Union>(B ` A)). C z) = (\<Union>x\<in>A. \<Union>z\<in>B x. C z)" | 
| 43831 | 1311 | "\<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: 
12633diff
changeset | 1312 | by auto | 
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1313 | |
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1314 | lemma INT_simps [simp]: | 
| 44032 
cb768f4ceaf9
solving duality problem for complete_distrib_lattice; tuned
 haftmann parents: 
44029diff
changeset | 1315 |   "\<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 | 1316 |   "\<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 | 1317 |   "\<And>A B C. (\<Inter>x\<in>C. A x - B) = (if C={} then UNIV else (\<Inter>x\<in>C. A x) - B)"
 | 
| 1318 |   "\<And>A B C. (\<Inter>x\<in>C. A - B x) = (if C={} then UNIV else A - (\<Union>x\<in>C. B x))"
 | |
| 43817 | 1319 | "\<And>a B C. (\<Inter>x\<in>C. insert a (B x)) = insert a (\<Inter>x\<in>C. B x)" | 
| 43852 | 1320 | "\<And>A B C. (\<Inter>x\<in>C. A x \<union> B) = ((\<Inter>x\<in>C. A x) \<union> B)" | 
| 1321 | "\<And>A B C. (\<Inter>x\<in>C. A \<union> B x) = (A \<union> (\<Inter>x\<in>C. B x))" | |
| 1322 | "\<And>A B. (\<Inter>x\<in>\<Union>A. B x) = (\<Inter>y\<in>A. \<Inter>x\<in>y. B x)" | |
| 69275 | 1323 | "\<And>A B C. (\<Inter>z\<in>(\<Union>(B ` A)). C z) = (\<Inter>x\<in>A. \<Inter>z\<in>B x. C z)" | 
| 43852 | 1324 | "\<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: 
12633diff
changeset | 1325 | by auto | 
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1326 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1327 | lemma UN_ball_bex_simps [simp]: | 
| 43852 | 1328 | "\<And>A P. (\<forall>x\<in>\<Union>A. P x) \<longleftrightarrow> (\<forall>y\<in>A. \<forall>x\<in>y. P x)" | 
| 69275 | 1329 | "\<And>A B P. (\<forall>x\<in>(\<Union>(B ` A)). P x) = (\<forall>a\<in>A. \<forall>x\<in> B a. P x)" | 
| 43852 | 1330 | "\<And>A P. (\<exists>x\<in>\<Union>A. P x) \<longleftrightarrow> (\<exists>y\<in>A. \<exists>x\<in>y. P x)" | 
| 69275 | 1331 | "\<And>A B P. (\<exists>x\<in>(\<Union>(B ` A)). 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: 
12633diff
changeset | 1332 | by auto | 
| 
f4d10ad0ea7b
converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
 wenzelm parents: 
12633diff
changeset | 1333 | |
| 43943 | 1334 | |
| 63575 | 1335 | text \<open>\<^medskip> Maxiscoping: pulling out big Unions and Intersections.\<close> | 
| 13860 | 1336 | |
| 1337 | lemma UN_extend_simps: | |
| 43817 | 1338 |   "\<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: 
44029diff
changeset | 1339 |   "\<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 | 1340 |   "\<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))"
 | 
| 1341 | "\<And>A B C. ((\<Union>x\<in>C. A x) \<inter> B) = (\<Union>x\<in>C. A x \<inter> B)" | |
| 1342 | "\<And>A B C. (A \<inter> (\<Union>x\<in>C. B x)) = (\<Union>x\<in>C. A \<inter> B x)" | |
| 43817 | 1343 | "\<And>A B C. ((\<Union>x\<in>C. A x) - B) = (\<Union>x\<in>C. A x - B)" | 
| 1344 | "\<And>A B C. (A - (\<Inter>x\<in>C. B x)) = (\<Union>x\<in>C. A - B x)" | |
| 43852 | 1345 | "\<And>A B. (\<Union>y\<in>A. \<Union>x\<in>y. B x) = (\<Union>x\<in>\<Union>A. B x)" | 
| 69275 | 1346 | "\<And>A B C. (\<Union>x\<in>A. \<Union>z\<in>B x. C z) = (\<Union>z\<in>(\<Union>(B ` A)). C z)" | 
| 43831 | 1347 | "\<And>A B f. (\<Union>a\<in>A. B (f a)) = (\<Union>x\<in>f`A. B x)" | 
| 13860 | 1348 | by auto | 
| 1349 | ||
| 1350 | lemma INT_extend_simps: | |
| 43852 | 1351 |   "\<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))"
 | 
| 1352 |   "\<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))"
 | |
| 1353 |   "\<And>A B C. (\<Inter>x\<in>C. A x) - B = (if C={} then UNIV - B else (\<Inter>x\<in>C. A x - B))"
 | |
| 1354 |   "\<And>A B C. A - (\<Union>x\<in>C. B x) = (if C={} then A else (\<Inter>x\<in>C. A - B x))"
 | |
| 43817 | 1355 | "\<And>a B C. insert a (\<Inter>x\<in>C. B x) = (\<Inter>x\<in>C. insert a (B x))" | 
| 43852 | 1356 | "\<And>A B C. ((\<Inter>x\<in>C. A x) \<union> B) = (\<Inter>x\<in>C. A x \<union> B)" | 
| 1357 | "\<And>A B C. A \<union> (\<Inter>x\<in>C. B x) = (\<Inter>x\<in>C. A \<union> B x)" | |
| 1358 | "\<And>A B. (\<Inter>y\<in>A. \<Inter>x\<in>y. B x) = (\<Inter>x\<in>\<Union>A. B x)" | |
| 69275 | 1359 | "\<And>A B C. (\<Inter>x\<in>A. \<Inter>z\<in>B x. C z) = (\<Inter>z\<in>(\<Union>(B ` A)). C z)" | 
| 43852 | 1360 | "\<And>A B f. (\<Inter>a\<in>A. B (f a)) = (\<Inter>x\<in>f`A. B x)" | 
| 13860 | 1361 | by auto | 
| 1362 | ||
| 60758 | 1363 | text \<open>Finally\<close> | 
| 43872 | 1364 | |
| 30596 | 1365 | lemmas mem_simps = | 
| 1366 | insert_iff empty_iff Un_iff Int_iff Compl_iff Diff_iff | |
| 1367 | mem_Collect_eq UN_iff Union_iff INT_iff Inter_iff | |
| 61799 | 1368 | \<comment> \<open>Each of these has ALREADY been added \<open>[simp]\<close> above.\<close> | 
| 21669 | 1369 | |
| 11979 | 1370 | end |