| author | krauss | 
| Mon, 12 May 2008 22:11:06 +0200 | |
| changeset 26875 | e18574413bc4 | 
| parent 26792 | f2d75fd23124 | 
| child 27165 | e1c49eb8cee6 | 
| permissions | -rw-r--r-- | 
| 12396 | 1 | (* Title: HOL/Finite_Set.thy | 
| 2 | ID: $Id$ | |
| 3 | Author: Tobias Nipkow, Lawrence C Paulson and Markus Wenzel | |
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 4 | with contributions by Jeremy Avigad | 
| 12396 | 5 | *) | 
| 6 | ||
| 7 | header {* Finite sets *}
 | |
| 8 | ||
| 15131 | 9 | theory Finite_Set | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 10 | imports Divides Transitive_Closure | 
| 15131 | 11 | begin | 
| 12396 | 12 | |
| 15392 | 13 | subsection {* Definition and basic properties *}
 | 
| 12396 | 14 | |
| 23736 | 15 | inductive finite :: "'a set => bool" | 
| 22262 | 16 | where | 
| 17 |     emptyI [simp, intro!]: "finite {}"
 | |
| 18 | | insertI [simp, intro!]: "finite A ==> finite (insert a A)" | |
| 12396 | 19 | |
| 13737 | 20 | lemma ex_new_if_finite: -- "does not depend on def of finite at all" | 
| 14661 | 21 | assumes "\<not> finite (UNIV :: 'a set)" and "finite A" | 
| 22 | shows "\<exists>a::'a. a \<notin> A" | |
| 23 | proof - | |
| 24 | from prems have "A \<noteq> UNIV" by blast | |
| 25 | thus ?thesis by blast | |
| 26 | qed | |
| 12396 | 27 | |
| 22262 | 28 | lemma finite_induct [case_names empty insert, induct set: finite]: | 
| 12396 | 29 | "finite F ==> | 
| 15327 
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
 nipkow parents: 
15318diff
changeset | 30 |     P {} ==> (!!x F. finite F ==> x \<notin> F ==> P F ==> P (insert x F)) ==> P F"
 | 
| 12396 | 31 |   -- {* Discharging @{text "x \<notin> F"} entails extra work. *}
 | 
| 32 | proof - | |
| 13421 | 33 |   assume "P {}" and
 | 
| 15327 
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
 nipkow parents: 
15318diff
changeset | 34 | insert: "!!x F. finite F ==> x \<notin> F ==> P F ==> P (insert x F)" | 
| 12396 | 35 | assume "finite F" | 
| 36 | thus "P F" | |
| 37 | proof induct | |
| 23389 | 38 |     show "P {}" by fact
 | 
| 15327 
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
 nipkow parents: 
15318diff
changeset | 39 | fix x F assume F: "finite F" and P: "P F" | 
| 12396 | 40 | show "P (insert x F)" | 
| 41 | proof cases | |
| 42 | assume "x \<in> F" | |
| 43 | hence "insert x F = F" by (rule insert_absorb) | |
| 44 | with P show ?thesis by (simp only:) | |
| 45 | next | |
| 46 | assume "x \<notin> F" | |
| 47 | from F this P show ?thesis by (rule insert) | |
| 48 | qed | |
| 49 | qed | |
| 50 | qed | |
| 51 | ||
| 15484 | 52 | lemma finite_ne_induct[case_names singleton insert, consumes 2]: | 
| 53 | assumes fin: "finite F" shows "F \<noteq> {} \<Longrightarrow>
 | |
| 54 |  \<lbrakk> \<And>x. P{x};
 | |
| 55 |    \<And>x F. \<lbrakk> finite F; F \<noteq> {}; x \<notin> F; P F \<rbrakk> \<Longrightarrow> P (insert x F) \<rbrakk>
 | |
| 56 | \<Longrightarrow> P F" | |
| 57 | using fin | |
| 58 | proof induct | |
| 59 | case empty thus ?case by simp | |
| 60 | next | |
| 61 | case (insert x F) | |
| 62 | show ?case | |
| 63 | proof cases | |
| 23389 | 64 |     assume "F = {}"
 | 
| 65 |     thus ?thesis using `P {x}` by simp
 | |
| 15484 | 66 | next | 
| 23389 | 67 |     assume "F \<noteq> {}"
 | 
| 68 | thus ?thesis using insert by blast | |
| 15484 | 69 | qed | 
| 70 | qed | |
| 71 | ||
| 12396 | 72 | lemma finite_subset_induct [consumes 2, case_names empty insert]: | 
| 23389 | 73 | assumes "finite F" and "F \<subseteq> A" | 
| 74 |     and empty: "P {}"
 | |
| 75 | and insert: "!!a F. finite F ==> a \<in> A ==> a \<notin> F ==> P F ==> P (insert a F)" | |
| 76 | shows "P F" | |
| 12396 | 77 | proof - | 
| 23389 | 78 | from `finite F` and `F \<subseteq> A` | 
| 79 | show ?thesis | |
| 12396 | 80 | proof induct | 
| 23389 | 81 |     show "P {}" by fact
 | 
| 82 | next | |
| 83 | fix x F | |
| 84 | assume "finite F" and "x \<notin> F" and | |
| 85 | P: "F \<subseteq> A ==> P F" and i: "insert x F \<subseteq> A" | |
| 12396 | 86 | show "P (insert x F)" | 
| 87 | proof (rule insert) | |
| 88 | from i show "x \<in> A" by blast | |
| 89 | from i have "F \<subseteq> A" by blast | |
| 90 | with P show "P F" . | |
| 23389 | 91 | show "finite F" by fact | 
| 92 | show "x \<notin> F" by fact | |
| 12396 | 93 | qed | 
| 94 | qed | |
| 95 | qed | |
| 96 | ||
| 23878 | 97 | |
| 15392 | 98 | text{* Finite sets are the images of initial segments of natural numbers: *}
 | 
| 99 | ||
| 15510 | 100 | lemma finite_imp_nat_seg_image_inj_on: | 
| 101 | assumes fin: "finite A" | |
| 102 |   shows "\<exists> (n::nat) f. A = f ` {i. i<n} & inj_on f {i. i<n}"
 | |
| 15392 | 103 | using fin | 
| 104 | proof induct | |
| 105 | case empty | |
| 15510 | 106 | show ?case | 
| 107 |   proof show "\<exists>f. {} = f ` {i::nat. i < 0} & inj_on f {i. i<0}" by simp 
 | |
| 108 | qed | |
| 15392 | 109 | next | 
| 110 | case (insert a A) | |
| 23389 | 111 | have notinA: "a \<notin> A" by fact | 
| 15510 | 112 | from insert.hyps obtain n f | 
| 113 |     where "A = f ` {i::nat. i < n}" "inj_on f {i. i < n}" by blast
 | |
| 114 |   hence "insert a A = f(n:=a) ` {i. i < Suc n}"
 | |
| 115 |         "inj_on (f(n:=a)) {i. i < Suc n}" using notinA
 | |
| 116 | by (auto simp add: image_def Ball_def inj_on_def less_Suc_eq) | |
| 15392 | 117 | thus ?case by blast | 
| 118 | qed | |
| 119 | ||
| 120 | lemma nat_seg_image_imp_finite: | |
| 121 |   "!!f A. A = f ` {i::nat. i<n} \<Longrightarrow> finite A"
 | |
| 122 | proof (induct n) | |
| 123 | case 0 thus ?case by simp | |
| 124 | next | |
| 125 | case (Suc n) | |
| 126 |   let ?B = "f ` {i. i < n}"
 | |
| 127 | have finB: "finite ?B" by(rule Suc.hyps[OF refl]) | |
| 128 | show ?case | |
| 129 | proof cases | |
| 130 | assume "\<exists>k<n. f n = f k" | |
| 131 | hence "A = ?B" using Suc.prems by(auto simp:less_Suc_eq) | |
| 132 | thus ?thesis using finB by simp | |
| 133 | next | |
| 134 | assume "\<not>(\<exists> k<n. f n = f k)" | |
| 135 | hence "A = insert (f n) ?B" using Suc.prems by(auto simp:less_Suc_eq) | |
| 136 | thus ?thesis using finB by simp | |
| 137 | qed | |
| 138 | qed | |
| 139 | ||
| 140 | lemma finite_conv_nat_seg_image: | |
| 141 |   "finite A = (\<exists> (n::nat) f. A = f ` {i::nat. i<n})"
 | |
| 15510 | 142 | by(blast intro: nat_seg_image_imp_finite dest: finite_imp_nat_seg_image_inj_on) | 
| 15392 | 143 | |
| 26441 | 144 | |
| 15392 | 145 | subsubsection{* Finiteness and set theoretic constructions *}
 | 
| 146 | ||
| 12396 | 147 | lemma finite_UnI: "finite F ==> finite G ==> finite (F Un G)" | 
| 148 |   -- {* The union of two finite sets is finite. *}
 | |
| 22262 | 149 | by (induct set: finite) simp_all | 
| 12396 | 150 | |
| 151 | lemma finite_subset: "A \<subseteq> B ==> finite B ==> finite A" | |
| 152 |   -- {* Every subset of a finite set is finite. *}
 | |
| 153 | proof - | |
| 154 | assume "finite B" | |
| 155 | thus "!!A. A \<subseteq> B ==> finite A" | |
| 156 | proof induct | |
| 157 | case empty | |
| 158 | thus ?case by simp | |
| 159 | next | |
| 15327 
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
 nipkow parents: 
15318diff
changeset | 160 | case (insert x F A) | 
| 23389 | 161 |     have A: "A \<subseteq> insert x F" and r: "A - {x} \<subseteq> F ==> finite (A - {x})" by fact+
 | 
| 12396 | 162 | show "finite A" | 
| 163 | proof cases | |
| 164 | assume x: "x \<in> A" | |
| 165 |       with A have "A - {x} \<subseteq> F" by (simp add: subset_insert_iff)
 | |
| 166 |       with r have "finite (A - {x})" .
 | |
| 167 |       hence "finite (insert x (A - {x}))" ..
 | |
| 23389 | 168 |       also have "insert x (A - {x}) = A" using x by (rule insert_Diff)
 | 
| 12396 | 169 | finally show ?thesis . | 
| 170 | next | |
| 23389 | 171 | show "A \<subseteq> F ==> ?thesis" by fact | 
| 12396 | 172 | assume "x \<notin> A" | 
| 173 | with A show "A \<subseteq> F" by (simp add: subset_insert_iff) | |
| 174 | qed | |
| 175 | qed | |
| 176 | qed | |
| 177 | ||
| 18423 | 178 | lemma finite_Collect_subset[simp]: "finite A \<Longrightarrow> finite{x \<in> A. P x}"
 | 
| 17761 | 179 | using finite_subset[of "{x \<in> A. P x}" "A"] by blast
 | 
| 180 | ||
| 12396 | 181 | lemma finite_Un [iff]: "finite (F Un G) = (finite F & finite G)" | 
| 182 | by (blast intro: finite_subset [of _ "X Un Y", standard] finite_UnI) | |
| 183 | ||
| 184 | lemma finite_Int [simp, intro]: "finite F | finite G ==> finite (F Int G)" | |
| 185 |   -- {* The converse obviously fails. *}
 | |
| 186 | by (blast intro: finite_subset) | |
| 187 | ||
| 188 | lemma finite_insert [simp]: "finite (insert a A) = finite A" | |
| 189 | apply (subst insert_is_Un) | |
| 14208 | 190 | apply (simp only: finite_Un, blast) | 
| 12396 | 191 | done | 
| 192 | ||
| 15281 | 193 | lemma finite_Union[simp, intro]: | 
| 194 | "\<lbrakk> finite A; !!M. M \<in> A \<Longrightarrow> finite M \<rbrakk> \<Longrightarrow> finite(\<Union>A)" | |
| 195 | by (induct rule:finite_induct) simp_all | |
| 196 | ||
| 12396 | 197 | lemma finite_empty_induct: | 
| 23389 | 198 | assumes "finite A" | 
| 199 | and "P A" | |
| 200 |     and "!!a A. finite A ==> a:A ==> P A ==> P (A - {a})"
 | |
| 201 |   shows "P {}"
 | |
| 12396 | 202 | proof - | 
| 203 | have "P (A - A)" | |
| 204 | proof - | |
| 23389 | 205 |     {
 | 
| 206 | fix c b :: "'a set" | |
| 207 | assume c: "finite c" and b: "finite b" | |
| 208 | 	and P1: "P b" and P2: "!!x y. finite y ==> x \<in> y ==> P y ==> P (y - {x})"
 | |
| 209 | have "c \<subseteq> b ==> P (b - c)" | |
| 210 | using c | |
| 211 | proof induct | |
| 212 | case empty | |
| 213 | from P1 show ?case by simp | |
| 214 | next | |
| 215 | case (insert x F) | |
| 216 | 	have "P (b - F - {x})"
 | |
| 217 | proof (rule P2) | |
| 218 | from _ b show "finite (b - F)" by (rule finite_subset) blast | |
| 219 | from insert show "x \<in> b - F" by simp | |
| 220 | from insert show "P (b - F)" by simp | |
| 221 | qed | |
| 222 | 	also have "b - F - {x} = b - insert x F" by (rule Diff_insert [symmetric])
 | |
| 223 | finally show ?case . | |
| 12396 | 224 | qed | 
| 23389 | 225 | } | 
| 226 | then show ?thesis by this (simp_all add: assms) | |
| 12396 | 227 | qed | 
| 23389 | 228 | then show ?thesis by simp | 
| 12396 | 229 | qed | 
| 230 | ||
| 231 | lemma finite_Diff [simp]: "finite B ==> finite (B - Ba)" | |
| 232 | by (rule Diff_subset [THEN finite_subset]) | |
| 233 | ||
| 234 | lemma finite_Diff_insert [iff]: "finite (A - insert a B) = finite (A - B)" | |
| 235 | apply (subst Diff_insert) | |
| 236 | apply (case_tac "a : A - B") | |
| 237 | apply (rule finite_insert [symmetric, THEN trans]) | |
| 14208 | 238 | apply (subst insert_Diff, simp_all) | 
| 12396 | 239 | done | 
| 240 | ||
| 19870 | 241 | lemma finite_Diff_singleton [simp]: "finite (A - {a}) = finite A"
 | 
| 242 | by simp | |
| 243 | ||
| 12396 | 244 | |
| 15392 | 245 | text {* Image and Inverse Image over Finite Sets *}
 | 
| 13825 | 246 | |
| 247 | lemma finite_imageI[simp]: "finite F ==> finite (h ` F)" | |
| 248 |   -- {* The image of a finite set is finite. *}
 | |
| 22262 | 249 | by (induct set: finite) simp_all | 
| 13825 | 250 | |
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 251 | lemma finite_surj: "finite A ==> B <= f ` A ==> finite B" | 
| 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 252 | apply (frule finite_imageI) | 
| 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 253 | apply (erule finite_subset, assumption) | 
| 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 254 | done | 
| 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 255 | |
| 13825 | 256 | lemma finite_range_imageI: | 
| 257 | "finite (range g) ==> finite (range (%x. f (g x)))" | |
| 14208 | 258 | apply (drule finite_imageI, simp) | 
| 13825 | 259 | done | 
| 260 | ||
| 12396 | 261 | lemma finite_imageD: "finite (f`A) ==> inj_on f A ==> finite A" | 
| 262 | proof - | |
| 263 |   have aux: "!!A. finite (A - {}) = finite A" by simp
 | |
| 264 | fix B :: "'a set" | |
| 265 | assume "finite B" | |
| 266 | thus "!!A. f`A = B ==> inj_on f A ==> finite A" | |
| 267 | apply induct | |
| 268 | apply simp | |
| 269 |     apply (subgoal_tac "EX y:A. f y = x & F = f ` (A - {y})")
 | |
| 270 | apply clarify | |
| 271 | apply (simp (no_asm_use) add: inj_on_def) | |
| 14208 | 272 | apply (blast dest!: aux [THEN iffD1], atomize) | 
| 12396 | 273 | apply (erule_tac V = "ALL A. ?PP (A)" in thin_rl) | 
| 14208 | 274 | apply (frule subsetD [OF equalityD2 insertI1], clarify) | 
| 12396 | 275 | apply (rule_tac x = xa in bexI) | 
| 276 | apply (simp_all add: inj_on_image_set_diff) | |
| 277 | done | |
| 278 | qed (rule refl) | |
| 279 | ||
| 280 | ||
| 13825 | 281 | lemma inj_vimage_singleton: "inj f ==> f-`{a} \<subseteq> {THE x. f x = a}"
 | 
| 282 |   -- {* The inverse image of a singleton under an injective function
 | |
| 283 | is included in a singleton. *} | |
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 284 | apply (auto simp add: inj_on_def) | 
| 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 285 | apply (blast intro: the_equality [symmetric]) | 
| 13825 | 286 | done | 
| 287 | ||
| 288 | lemma finite_vimageI: "[|finite F; inj h|] ==> finite (h -` F)" | |
| 289 |   -- {* The inverse image of a finite set under an injective function
 | |
| 290 | is finite. *} | |
| 22262 | 291 | apply (induct set: finite) | 
| 21575 | 292 | apply simp_all | 
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 293 | apply (subst vimage_insert) | 
| 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 294 | apply (simp add: finite_Un finite_subset [OF inj_vimage_singleton]) | 
| 13825 | 295 | done | 
| 296 | ||
| 297 | ||
| 15392 | 298 | text {* The finite UNION of finite sets *}
 | 
| 12396 | 299 | |
| 300 | lemma finite_UN_I: "finite A ==> (!!a. a:A ==> finite (B a)) ==> finite (UN a:A. B a)" | |
| 22262 | 301 | by (induct set: finite) simp_all | 
| 12396 | 302 | |
| 303 | text {*
 | |
| 304 | Strengthen RHS to | |
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 305 |   @{prop "((ALL x:A. finite (B x)) & finite {x. x:A & B x \<noteq> {}})"}?
 | 
| 12396 | 306 | |
| 307 | We'd need to prove | |
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 308 |   @{prop "finite C ==> ALL A B. (UNION A B) <= C --> finite {x. x:A & B x \<noteq> {}}"}
 | 
| 12396 | 309 | by induction. *} | 
| 310 | ||
| 311 | lemma finite_UN [simp]: "finite A ==> finite (UNION A B) = (ALL x:A. finite (B x))" | |
| 312 | by (blast intro: finite_UN_I finite_subset) | |
| 313 | ||
| 314 | ||
| 17022 | 315 | lemma finite_Plus: "[| finite A; finite B |] ==> finite (A <+> B)" | 
| 316 | by (simp add: Plus_def) | |
| 317 | ||
| 15392 | 318 | text {* Sigma of finite sets *}
 | 
| 12396 | 319 | |
| 320 | lemma finite_SigmaI [simp]: | |
| 321 | "finite A ==> (!!a. a:A ==> finite (B a)) ==> finite (SIGMA a:A. B a)" | |
| 322 | by (unfold Sigma_def) (blast intro!: finite_UN_I) | |
| 323 | ||
| 15402 | 324 | lemma finite_cartesian_product: "[| finite A; finite B |] ==> | 
| 325 | finite (A <*> B)" | |
| 326 | by (rule finite_SigmaI) | |
| 327 | ||
| 12396 | 328 | lemma finite_Prod_UNIV: | 
| 329 |     "finite (UNIV::'a set) ==> finite (UNIV::'b set) ==> finite (UNIV::('a * 'b) set)"
 | |
| 330 |   apply (subgoal_tac "(UNIV:: ('a * 'b) set) = Sigma UNIV (%x. UNIV)")
 | |
| 331 | apply (erule ssubst) | |
| 14208 | 332 | apply (erule finite_SigmaI, auto) | 
| 12396 | 333 | done | 
| 334 | ||
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 335 | lemma finite_cartesian_productD1: | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 336 |      "[| finite (A <*> B); B \<noteq> {} |] ==> finite A"
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 337 | apply (auto simp add: finite_conv_nat_seg_image) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 338 | apply (drule_tac x=n in spec) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 339 | apply (drule_tac x="fst o f" in spec) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 340 | apply (auto simp add: o_def) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 341 | prefer 2 apply (force dest!: equalityD2) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 342 | apply (drule equalityD1) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 343 | apply (rename_tac y x) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 344 | apply (subgoal_tac "\<exists>k. k<n & f k = (x,y)") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 345 | prefer 2 apply force | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 346 | apply clarify | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 347 | apply (rule_tac x=k in image_eqI, auto) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 348 | done | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 349 | |
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 350 | lemma finite_cartesian_productD2: | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 351 |      "[| finite (A <*> B); A \<noteq> {} |] ==> finite B"
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 352 | apply (auto simp add: finite_conv_nat_seg_image) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 353 | apply (drule_tac x=n in spec) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 354 | apply (drule_tac x="snd o f" in spec) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 355 | apply (auto simp add: o_def) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 356 | prefer 2 apply (force dest!: equalityD2) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 357 | apply (drule equalityD1) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 358 | apply (rename_tac x y) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 359 | apply (subgoal_tac "\<exists>k. k<n & f k = (x,y)") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 360 | prefer 2 apply force | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 361 | apply clarify | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 362 | apply (rule_tac x=k in image_eqI, auto) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 363 | done | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 364 | |
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 365 | |
| 15392 | 366 | text {* The powerset of a finite set *}
 | 
| 12396 | 367 | |
| 368 | lemma finite_Pow_iff [iff]: "finite (Pow A) = finite A" | |
| 369 | proof | |
| 370 | assume "finite (Pow A)" | |
| 371 |   with _ have "finite ((%x. {x}) ` A)" by (rule finite_subset) blast
 | |
| 372 | thus "finite A" by (rule finite_imageD [unfolded inj_on_def]) simp | |
| 373 | next | |
| 374 | assume "finite A" | |
| 375 | thus "finite (Pow A)" | |
| 376 | by induct (simp_all add: finite_UnI finite_imageI Pow_insert) | |
| 377 | qed | |
| 378 | ||
| 15392 | 379 | |
| 380 | lemma finite_UnionD: "finite(\<Union>A) \<Longrightarrow> finite A" | |
| 381 | by(blast intro: finite_subset[OF subset_Pow_Union]) | |
| 382 | ||
| 383 | ||
| 12396 | 384 | lemma finite_converse [iff]: "finite (r^-1) = finite r" | 
| 385 | apply (subgoal_tac "r^-1 = (%(x,y). (y,x))`r") | |
| 386 | apply simp | |
| 387 | apply (rule iffI) | |
| 388 | apply (erule finite_imageD [unfolded inj_on_def]) | |
| 389 | apply (simp split add: split_split) | |
| 390 | apply (erule finite_imageI) | |
| 14208 | 391 | apply (simp add: converse_def image_def, auto) | 
| 12396 | 392 | apply (rule bexI) | 
| 393 | prefer 2 apply assumption | |
| 394 | apply simp | |
| 395 | done | |
| 396 | ||
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 397 | |
| 15392 | 398 | text {* \paragraph{Finiteness of transitive closure} (Thanks to Sidi
 | 
| 399 | Ehmety) *} | |
| 12396 | 400 | |
| 401 | lemma finite_Field: "finite r ==> finite (Field r)" | |
| 402 |   -- {* A finite relation has a finite field (@{text "= domain \<union> range"}. *}
 | |
| 22262 | 403 | apply (induct set: finite) | 
| 12396 | 404 | apply (auto simp add: Field_def Domain_insert Range_insert) | 
| 405 | done | |
| 406 | ||
| 407 | lemma trancl_subset_Field2: "r^+ <= Field r \<times> Field r" | |
| 408 | apply clarify | |
| 409 | apply (erule trancl_induct) | |
| 410 | apply (auto simp add: Field_def) | |
| 411 | done | |
| 412 | ||
| 413 | lemma finite_trancl: "finite (r^+) = finite r" | |
| 414 | apply auto | |
| 415 | prefer 2 | |
| 416 | apply (rule trancl_subset_Field2 [THEN finite_subset]) | |
| 417 | apply (rule finite_SigmaI) | |
| 418 | prefer 3 | |
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
13595diff
changeset | 419 | apply (blast intro: r_into_trancl' finite_subset) | 
| 12396 | 420 | apply (auto simp add: finite_Field) | 
| 421 | done | |
| 422 | ||
| 423 | ||
| 26441 | 424 | subsection {* Class @{text finite}  *}
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 425 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 426 | setup {* Sign.add_path "finite" *} -- {*FIXME: name tweaking*}
 | 
| 26441 | 427 | class finite = itself + | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 428 | assumes finite_UNIV: "finite (UNIV \<Colon> 'a set)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 429 | setup {* Sign.parent_path *}
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 430 | hide const finite | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 431 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 432 | lemma finite [simp]: "finite (A \<Colon> 'a\<Colon>finite set)" | 
| 26441 | 433 | by (rule subset_UNIV finite_UNIV finite_subset)+ | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 434 | |
| 26146 | 435 | lemma UNIV_unit [noatp]: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 436 |   "UNIV = {()}" by auto
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 437 | |
| 26146 | 438 | instance unit :: finite | 
| 439 | by default (simp add: UNIV_unit) | |
| 440 | ||
| 441 | lemma UNIV_bool [noatp]: | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 442 |   "UNIV = {False, True}" by auto
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 443 | |
| 26146 | 444 | instance bool :: finite | 
| 445 | by default (simp add: UNIV_bool) | |
| 446 | ||
| 447 | instance * :: (finite, finite) finite | |
| 448 | by default (simp only: UNIV_Times_UNIV [symmetric] finite_cartesian_product finite) | |
| 449 | ||
| 450 | instance "+" :: (finite, finite) finite | |
| 451 | by default (simp only: UNIV_Plus_UNIV [symmetric] finite_Plus finite) | |
| 452 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 453 | lemma inj_graph: "inj (%f. {(x, y). y = f x})"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 454 | by (rule inj_onI, auto simp add: expand_set_eq expand_fun_eq) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 455 | |
| 26146 | 456 | instance "fun" :: (finite, finite) finite | 
| 457 | proof | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 458 |   show "finite (UNIV :: ('a => 'b) set)"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 459 | proof (rule finite_imageD) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 460 |     let ?graph = "%f::'a => 'b. {(x, y). y = f x}"
 | 
| 26792 | 461 | have "range ?graph \<subseteq> Pow UNIV" by simp | 
| 462 |     moreover have "finite (Pow (UNIV :: ('a * 'b) set))"
 | |
| 463 | by (simp only: finite_Pow_iff finite) | |
| 464 | ultimately show "finite (range ?graph)" | |
| 465 | by (rule finite_subset) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 466 | show "inj ?graph" by (rule inj_graph) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 467 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 468 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 469 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 470 | |
| 15392 | 471 | subsection {* A fold functional for finite sets *}
 | 
| 472 | ||
| 473 | text {* The intended behaviour is
 | |
| 15480 | 474 | @{text "fold f g z {x\<^isub>1, ..., x\<^isub>n} = f (g x\<^isub>1) (\<dots> (f (g x\<^isub>n) z)\<dots>)"}
 | 
| 15392 | 475 | if @{text f} is associative-commutative. For an application of @{text fold}
 | 
| 476 | se the definitions of sums and products over finite sets. | |
| 477 | *} | |
| 478 | ||
| 23736 | 479 | inductive | 
| 22262 | 480 |   foldSet :: "('a => 'a => 'a) => ('b => 'a) => 'a => 'b set => 'a => bool"
 | 
| 481 | for f :: "'a => 'a => 'a" | |
| 482 | and g :: "'b => 'a" | |
| 483 | and z :: 'a | |
| 484 | where | |
| 485 |   emptyI [intro]: "foldSet f g z {} z"
 | |
| 486 | | insertI [intro]: | |
| 487 | "\<lbrakk> x \<notin> A; foldSet f g z A y \<rbrakk> | |
| 488 | \<Longrightarrow> foldSet f g z (insert x A) (f (g x) y)" | |
| 489 | ||
| 23736 | 490 | inductive_cases empty_foldSetE [elim!]: "foldSet f g z {} x"
 | 
| 15392 | 491 | |
| 492 | constdefs | |
| 21733 | 493 |   fold :: "('a => 'a => 'a) => ('b => 'a) => 'a => 'b set => 'a"
 | 
| 22262 | 494 | "fold f g z A == THE x. foldSet f g z A x" | 
| 15392 | 495 | |
| 15498 | 496 | text{*A tempting alternative for the definiens is
 | 
| 22262 | 497 | @{term "if finite A then THE x. foldSet f g e A x else e"}.
 | 
| 15498 | 498 | It allows the removal of finiteness assumptions from the theorems | 
| 499 | @{text fold_commute}, @{text fold_reindex} and @{text fold_distrib}.
 | |
| 500 | The proofs become ugly, with @{text rule_format}. It is not worth the effort.*}
 | |
| 501 | ||
| 502 | ||
| 15392 | 503 | lemma Diff1_foldSet: | 
| 22262 | 504 |   "foldSet f g z (A - {x}) y ==> x: A ==> foldSet f g z A (f (g x) y)"
 | 
| 15392 | 505 | by (erule insert_Diff [THEN subst], rule foldSet.intros, auto) | 
| 506 | ||
| 22262 | 507 | lemma foldSet_imp_finite: "foldSet f g z A x==> finite A" | 
| 15392 | 508 | by (induct set: foldSet) auto | 
| 509 | ||
| 22262 | 510 | lemma finite_imp_foldSet: "finite A ==> EX x. foldSet f g z A x" | 
| 511 | by (induct set: finite) auto | |
| 15392 | 512 | |
| 513 | ||
| 514 | subsubsection{*From @{term foldSet} to @{term fold}*}
 | |
| 515 | ||
| 15510 | 516 | lemma image_less_Suc: "h ` {i. i < Suc m} = insert (h m) (h ` {i. i < m})"
 | 
| 19868 | 517 | by (auto simp add: less_Suc_eq) | 
| 15510 | 518 | |
| 519 | lemma insert_image_inj_on_eq: | |
| 520 |      "[|insert (h m) A = h ` {i. i < Suc m}; h m \<notin> A; 
 | |
| 521 |         inj_on h {i. i < Suc m}|] 
 | |
| 522 |       ==> A = h ` {i. i < m}"
 | |
| 523 | apply (auto simp add: image_less_Suc inj_on_def) | |
| 524 | apply (blast intro: less_trans) | |
| 525 | done | |
| 526 | ||
| 527 | lemma insert_inj_onE: | |
| 528 |   assumes aA: "insert a A = h`{i::nat. i<n}" and anot: "a \<notin> A" 
 | |
| 529 |       and inj_on: "inj_on h {i::nat. i<n}"
 | |
| 530 |   shows "\<exists>hm m. inj_on hm {i::nat. i<m} & A = hm ` {i. i<m} & m < n"
 | |
| 531 | proof (cases n) | |
| 532 | case 0 thus ?thesis using aA by auto | |
| 533 | next | |
| 534 | case (Suc m) | |
| 23389 | 535 | have nSuc: "n = Suc m" by fact | 
| 15510 | 536 | have mlessn: "m<n" by (simp add: nSuc) | 
| 15532 | 537 | from aA obtain k where hkeq: "h k = a" and klessn: "k<n" by (blast elim!: equalityE) | 
| 15520 | 538 | let ?hm = "swap k m h" | 
| 539 |   have inj_hm: "inj_on ?hm {i. i < n}" using klessn mlessn 
 | |
| 540 | by (simp add: inj_on_swap_iff inj_on) | |
| 15510 | 541 | show ?thesis | 
| 15520 | 542 | proof (intro exI conjI) | 
| 543 |     show "inj_on ?hm {i. i < m}" using inj_hm
 | |
| 15510 | 544 | by (auto simp add: nSuc less_Suc_eq intro: subset_inj_on) | 
| 15520 | 545 | show "m<n" by (rule mlessn) | 
| 546 |     show "A = ?hm ` {i. i < m}" 
 | |
| 547 | proof (rule insert_image_inj_on_eq) | |
| 548 |       show "inj_on (swap k m h) {i. i < Suc m}" using inj_hm nSuc by simp
 | |
| 549 | show "?hm m \<notin> A" by (simp add: swap_def hkeq anot) | |
| 550 |       show "insert (?hm m) A = ?hm ` {i. i < Suc m}"
 | |
| 551 | using aA hkeq nSuc klessn | |
| 552 | by (auto simp add: swap_def image_less_Suc fun_upd_image | |
| 553 | less_Suc_eq inj_on_image_set_diff [OF inj_on]) | |
| 15479 | 554 | qed | 
| 555 | qed | |
| 556 | qed | |
| 557 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 558 | context ab_semigroup_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 559 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 560 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 561 | lemma foldSet_determ_aux: | 
| 15510 | 562 |   "!!A x x' h. \<lbrakk> A = h`{i::nat. i<n}; inj_on h {i. i<n}; 
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 563 | foldSet times g z A x; foldSet times g z A x' \<rbrakk> | 
| 15392 | 564 | \<Longrightarrow> x' = x" | 
| 15510 | 565 | proof (induct n rule: less_induct) | 
| 566 | case (less n) | |
| 567 | have IH: "!!m h A x x'. | |
| 568 |                \<lbrakk>m<n; A = h ` {i. i<m}; inj_on h {i. i<m}; 
 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 569 | foldSet times g z A x; foldSet times g z A x'\<rbrakk> \<Longrightarrow> x' = x" by fact | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 570 | have Afoldx: "foldSet times g z A x" and Afoldx': "foldSet times g z A x'" | 
| 23389 | 571 |      and A: "A = h`{i. i<n}" and injh: "inj_on h {i. i<n}" by fact+
 | 
| 15510 | 572 | show ?case | 
| 573 | proof (rule foldSet.cases [OF Afoldx]) | |
| 22262 | 574 |       assume "A = {}" and "x = z"
 | 
| 15510 | 575 | with Afoldx' show "x' = x" by blast | 
| 15392 | 576 | next | 
| 15510 | 577 | fix B b u | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 578 | assume AbB: "A = insert b B" and x: "x = g b * u" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 579 | and notinB: "b \<notin> B" and Bu: "foldSet times g z B u" | 
| 15510 | 580 | show "x'=x" | 
| 581 | proof (rule foldSet.cases [OF Afoldx']) | |
| 22262 | 582 |         assume "A = {}" and "x' = z"
 | 
| 15510 | 583 | with AbB show "x' = x" by blast | 
| 15392 | 584 | next | 
| 15510 | 585 | fix C c v | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 586 | assume AcC: "A = insert c C" and x': "x' = g c * v" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 587 | and notinC: "c \<notin> C" and Cv: "foldSet times g z C v" | 
| 15510 | 588 | 	from A AbB have Beq: "insert b B = h`{i. i<n}" by simp
 | 
| 589 | from insert_inj_onE [OF Beq notinB injh] | |
| 590 |         obtain hB mB where inj_onB: "inj_on hB {i. i < mB}" 
 | |
| 591 |                      and Beq: "B = hB ` {i. i < mB}"
 | |
| 592 | and lessB: "mB < n" by auto | |
| 593 | 	from A AcC have Ceq: "insert c C = h`{i. i<n}" by simp
 | |
| 594 | from insert_inj_onE [OF Ceq notinC injh] | |
| 595 |         obtain hC mC where inj_onC: "inj_on hC {i. i < mC}"
 | |
| 596 |                        and Ceq: "C = hC ` {i. i < mC}"
 | |
| 597 | and lessC: "mC < n" by auto | |
| 598 | show "x'=x" | |
| 15392 | 599 | proof cases | 
| 15510 | 600 | assume "b=c" | 
| 601 | then moreover have "B = C" using AbB AcC notinB notinC by auto | |
| 602 | ultimately show ?thesis using Bu Cv x x' IH[OF lessC Ceq inj_onC] | |
| 603 | by auto | |
| 15392 | 604 | next | 
| 605 | assume diff: "b \<noteq> c" | |
| 606 | 	  let ?D = "B - {c}"
 | |
| 607 | have B: "B = insert c ?D" and C: "C = insert b ?D" | |
| 15510 | 608 | using AbB AcC notinB notinC diff by(blast elim!:equalityE)+ | 
| 15402 | 609 | have "finite A" by(rule foldSet_imp_finite[OF Afoldx]) | 
| 15510 | 610 | with AbB have "finite ?D" by simp | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 611 | then obtain d where Dfoldd: "foldSet times g z ?D d" | 
| 17589 | 612 | using finite_imp_foldSet by iprover | 
| 15506 | 613 | moreover have cinB: "c \<in> B" using B by auto | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 614 | ultimately have "foldSet times g z B (g c * d)" | 
| 15392 | 615 | by(rule Diff1_foldSet) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 616 | then have "g c * d = u" by (rule IH [OF lessB Beq inj_onB Bu]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 617 | then have "u = g c * d" .. | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 618 | moreover have "v = g b * d" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 619 | proof (rule sym, rule IH [OF lessC Ceq inj_onC Cv]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 620 | show "foldSet times g z C (g b * d)" using C notinB Dfoldd | 
| 15392 | 621 | by fastsimp | 
| 622 | qed | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 623 | ultimately show ?thesis using x x' | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 624 | by (simp add: mult_left_commute) | 
| 15392 | 625 | qed | 
| 626 | qed | |
| 627 | qed | |
| 628 | qed | |
| 629 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 630 | lemma foldSet_determ: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 631 | "foldSet times g z A x ==> foldSet times g z A y ==> y = x" | 
| 15510 | 632 | apply (frule foldSet_imp_finite [THEN finite_imp_nat_seg_image_inj_on]) | 
| 633 | apply (blast intro: foldSet_determ_aux [rule_format]) | |
| 15392 | 634 | done | 
| 635 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 636 | lemma fold_equality: "foldSet times g z A y ==> fold times g z A = y" | 
| 15392 | 637 | by (unfold fold_def) (blast intro: foldSet_determ) | 
| 638 | ||
| 639 | text{* The base case for @{text fold}: *}
 | |
| 640 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 641 | lemma (in -) fold_empty [simp]: "fold f g z {} = z"
 | 
| 15392 | 642 | by (unfold fold_def) blast | 
| 643 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 644 | lemma fold_insert_aux: "x \<notin> A ==> | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 645 | (foldSet times g z (insert x A) v) = | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 646 | (EX y. foldSet times g z A y & v = g x * y)" | 
| 15392 | 647 | apply auto | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 648 | apply (rule_tac A1 = A and f1 = times in finite_imp_foldSet [THEN exE]) | 
| 15392 | 649 | apply (fastsimp dest: foldSet_imp_finite) | 
| 650 | apply (blast intro: foldSet_determ) | |
| 651 | done | |
| 652 | ||
| 653 | text{* The recursion equation for @{text fold}: *}
 | |
| 654 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 655 | lemma fold_insert [simp]: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 656 | "finite A ==> x \<notin> A ==> fold times g z (insert x A) = g x * fold times g z A" | 
| 15392 | 657 | apply (unfold fold_def) | 
| 658 | apply (simp add: fold_insert_aux) | |
| 659 | apply (rule the_equality) | |
| 660 | apply (auto intro: finite_imp_foldSet | |
| 661 | cong add: conj_cong simp add: fold_def [symmetric] fold_equality) | |
| 662 | done | |
| 663 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 664 | lemma fold_rec: | 
| 15535 | 665 | assumes fin: "finite A" and a: "a:A" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 666 | shows "fold times g z A = g a * fold times g z (A - {a})"
 | 
| 15535 | 667 | proof- | 
| 668 |   have A: "A = insert a (A - {a})" using a by blast
 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 669 |   hence "fold times g z A = fold times g z (insert a (A - {a}))" by simp
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 670 |   also have "\<dots> = g a * fold times g z (A - {a})"
 | 
| 15535 | 671 | by(rule fold_insert) (simp add:fin)+ | 
| 672 | finally show ?thesis . | |
| 673 | qed | |
| 674 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 675 | end | 
| 15392 | 676 | |
| 15480 | 677 | text{* A simplified version for idempotent functions: *}
 | 
| 678 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 679 | context ab_semigroup_idem_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 680 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 681 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 682 | lemma fold_insert_idem: | 
| 15480 | 683 | assumes finA: "finite A" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 684 | shows "fold times g z (insert a A) = g a * fold times g z A" | 
| 15480 | 685 | proof cases | 
| 686 | assume "a \<in> A" | |
| 687 | then obtain B where A: "A = insert a B" and disj: "a \<notin> B" | |
| 688 | by(blast dest: mk_disjoint_insert) | |
| 689 | show ?thesis | |
| 690 | proof - | |
| 691 | from finA A have finB: "finite B" by(blast intro: finite_subset) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 692 | have "fold times g z (insert a A) = fold times g z (insert a B)" using A by simp | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 693 | also have "\<dots> = g a * fold times g z B" | 
| 15506 | 694 | using finB disj by simp | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 695 | also have "\<dots> = g a * fold times g z A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 696 | using A finB disj | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 697 | by (simp add: mult_idem mult_assoc [symmetric]) | 
| 15480 | 698 | finally show ?thesis . | 
| 699 | qed | |
| 700 | next | |
| 701 | assume "a \<notin> A" | |
| 702 | with finA show ?thesis by simp | |
| 703 | qed | |
| 704 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 705 | lemma foldI_conv_id: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 706 | "finite A \<Longrightarrow> fold times g z A = fold times id z (g ` A)" | 
| 15509 | 707 | by(erule finite_induct)(simp_all add: fold_insert_idem del: fold_insert) | 
| 15484 | 708 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 709 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 710 | |
| 15392 | 711 | subsubsection{*Lemmas about @{text fold}*}
 | 
| 712 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 713 | context ab_semigroup_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 714 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 715 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 716 | lemma fold_commute: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 717 | "finite A ==> (!!z. x * (fold times g z A) = fold times g (x * z) A)" | 
| 22262 | 718 | apply (induct set: finite) | 
| 21575 | 719 | apply simp | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 720 | apply (simp add: mult_left_commute [of x]) | 
| 15392 | 721 | done | 
| 722 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 723 | lemma fold_nest_Un_Int: | 
| 15392 | 724 | "finite A ==> finite B | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 725 | ==> fold times g (fold times g z B) A = fold times g (fold times g z (A Int B)) (A Un B)" | 
| 22262 | 726 | apply (induct set: finite) | 
| 21575 | 727 | apply simp | 
| 15392 | 728 | apply (simp add: fold_commute Int_insert_left insert_absorb) | 
| 729 | done | |
| 730 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 731 | lemma fold_nest_Un_disjoint: | 
| 15392 | 732 |   "finite A ==> finite B ==> A Int B = {}
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 733 | ==> fold times g z (A Un B) = fold times g (fold times g z B) A" | 
| 15392 | 734 | by (simp add: fold_nest_Un_Int) | 
| 735 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 736 | lemma fold_reindex: | 
| 15487 | 737 | assumes fin: "finite A" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 738 | shows "inj_on h A \<Longrightarrow> fold times g z (h ` A) = fold times (g \<circ> h) z A" | 
| 15506 | 739 | using fin apply induct | 
| 15392 | 740 | apply simp | 
| 741 | apply simp | |
| 742 | done | |
| 743 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 744 | text{*
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 745 | Fusion theorem, as described in Graham Hutton's paper, | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 746 | A Tutorial on the Universality and Expressiveness of Fold, | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 747 | JFP 9:4 (355-372), 1999. | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 748 | *} | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 749 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 750 | lemma fold_fusion: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 751 | includes ab_semigroup_mult g | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 752 | assumes fin: "finite A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 753 | and hyp: "\<And>x y. h (g x y) = times x (h y)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 754 | shows "h (fold g j w A) = fold times j (h w) A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 755 | using fin hyp by (induct set: finite) simp_all | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 756 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 757 | lemma fold_cong: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 758 | "finite A \<Longrightarrow> (!!x. x:A ==> g x = h x) ==> fold times g z A = fold times h z A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 759 | apply (subgoal_tac "ALL C. C <= A --> (ALL x:C. g x = h x) --> fold times g z C = fold times h z C") | 
| 15392 | 760 | apply simp | 
| 761 | apply (erule finite_induct, simp) | |
| 762 | apply (simp add: subset_insert_iff, clarify) | |
| 763 | apply (subgoal_tac "finite C") | |
| 764 | prefer 2 apply (blast dest: finite_subset [COMP swap_prems_rl]) | |
| 765 |   apply (subgoal_tac "C = insert x (C - {x})")
 | |
| 766 | prefer 2 apply blast | |
| 767 | apply (erule ssubst) | |
| 768 | apply (drule spec) | |
| 769 | apply (erule (1) notE impE) | |
| 770 | apply (simp add: Ball_def del: insert_Diff_single) | |
| 771 | done | |
| 772 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 773 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 774 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 775 | context comm_monoid_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 776 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 777 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 778 | lemma fold_Un_Int: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 779 | "finite A ==> finite B ==> | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 780 | fold times g 1 A * fold times g 1 B = | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 781 | fold times g 1 (A Un B) * fold times g 1 (A Int B)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 782 | by (induct set: finite) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 783 | (auto simp add: mult_ac insert_absorb Int_insert_left) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 784 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 785 | corollary fold_Un_disjoint: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 786 |   "finite A ==> finite B ==> A Int B = {} ==>
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 787 | fold times g 1 (A Un B) = fold times g 1 A * fold times g 1 B" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 788 | by (simp add: fold_Un_Int) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 789 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 790 | lemma fold_UN_disjoint: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 791 | "\<lbrakk> finite I; ALL i:I. finite (A i); | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 792 |      ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {} \<rbrakk>
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 793 | \<Longrightarrow> fold times g 1 (UNION I A) = | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 794 | fold times (%i. fold times g 1 (A i)) 1 I" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 795 | apply (induct set: finite, simp, atomize) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 796 | apply (subgoal_tac "ALL i:F. x \<noteq> i") | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 797 | prefer 2 apply blast | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 798 |   apply (subgoal_tac "A x Int UNION F A = {}")
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 799 | prefer 2 apply blast | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 800 | apply (simp add: fold_Un_disjoint) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 801 | done | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 802 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 803 | lemma fold_Sigma: "finite A ==> ALL x:A. finite (B x) ==> | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 804 | fold times (%x. fold times (g x) 1 (B x)) 1 A = | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 805 | fold times (split g) 1 (SIGMA x:A. B x)" | 
| 15392 | 806 | apply (subst Sigma_def) | 
| 15506 | 807 | apply (subst fold_UN_disjoint, assumption, simp) | 
| 15392 | 808 | apply blast | 
| 809 | apply (erule fold_cong) | |
| 15506 | 810 | apply (subst fold_UN_disjoint, simp, simp) | 
| 15392 | 811 | apply blast | 
| 15506 | 812 | apply simp | 
| 15392 | 813 | done | 
| 814 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 815 | lemma fold_distrib: "finite A \<Longrightarrow> | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 816 | fold times (%x. g x * h x) 1 A = fold times g 1 A * fold times h 1 A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 817 | by (erule finite_induct) (simp_all add: mult_ac) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 818 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 819 | end | 
| 22917 | 820 | |
| 821 | ||
| 15402 | 822 | subsection {* Generalized summation over a set *}
 | 
| 823 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 824 | interpretation comm_monoid_add: comm_monoid_mult ["0::'a::comm_monoid_add" "op +"] | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 825 | by unfold_locales (auto intro: add_assoc add_commute) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 826 | |
| 15402 | 827 | constdefs | 
| 828 |   setsum :: "('a => 'b) => 'a set => 'b::comm_monoid_add"
 | |
| 829 | "setsum f A == if finite A then fold (op +) f 0 A else 0" | |
| 830 | ||
| 19535 | 831 | abbreviation | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21249diff
changeset | 832 |   Setsum  ("\<Sum>_" [1000] 999) where
 | 
| 19535 | 833 | "\<Sum>A == setsum (%x. x) A" | 
| 834 | ||
| 15402 | 835 | text{* Now: lot's of fancy syntax. First, @{term "setsum (%x. e) A"} is
 | 
| 836 | written @{text"\<Sum>x\<in>A. e"}. *}
 | |
| 837 | ||
| 838 | syntax | |
| 17189 | 839 |   "_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add"    ("(3SUM _:_. _)" [0, 51, 10] 10)
 | 
| 15402 | 840 | syntax (xsymbols) | 
| 17189 | 841 |   "_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add"    ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10)
 | 
| 15402 | 842 | syntax (HTML output) | 
| 17189 | 843 |   "_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add"    ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10)
 | 
| 15402 | 844 | |
| 845 | translations -- {* Beware of argument permutation! *}
 | |
| 846 | "SUM i:A. b" == "setsum (%i. b) A" | |
| 847 | "\<Sum>i\<in>A. b" == "setsum (%i. b) A" | |
| 848 | ||
| 849 | text{* Instead of @{term"\<Sum>x\<in>{x. P}. e"} we introduce the shorter
 | |
| 850 |  @{text"\<Sum>x|P. e"}. *}
 | |
| 851 | ||
| 852 | syntax | |
| 17189 | 853 |   "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3SUM _ |/ _./ _)" [0,0,10] 10)
 | 
| 15402 | 854 | syntax (xsymbols) | 
| 17189 | 855 |   "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10)
 | 
| 15402 | 856 | syntax (HTML output) | 
| 17189 | 857 |   "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10)
 | 
| 15402 | 858 | |
| 859 | translations | |
| 860 |   "SUM x|P. t" => "setsum (%x. t) {x. P}"
 | |
| 861 |   "\<Sum>x|P. t" => "setsum (%x. t) {x. P}"
 | |
| 862 | ||
| 863 | print_translation {*
 | |
| 864 | let | |
| 19535 | 865 |   fun setsum_tr' [Abs(x,Tx,t), Const ("Collect",_) $ Abs(y,Ty,P)] = 
 | 
| 866 | if x<>y then raise Match | |
| 867 | else let val x' = Syntax.mark_bound x | |
| 868 | val t' = subst_bound(x',t) | |
| 869 | val P' = subst_bound(x',P) | |
| 870 | in Syntax.const "_qsetsum" $ Syntax.mark_bound x $ P' $ t' end | |
| 871 | in [("setsum", setsum_tr')] end
 | |
| 15402 | 872 | *} | 
| 873 | ||
| 19535 | 874 | |
| 15402 | 875 | lemma setsum_empty [simp]: "setsum f {} = 0"
 | 
| 876 | by (simp add: setsum_def) | |
| 877 | ||
| 878 | lemma setsum_insert [simp]: | |
| 879 | "finite F ==> a \<notin> F ==> setsum f (insert a F) = f a + setsum f F" | |
| 15765 | 880 | by (simp add: setsum_def) | 
| 15402 | 881 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 882 | lemma setsum_infinite [simp]: "~ finite A ==> setsum f A = 0" | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 883 | by (simp add: setsum_def) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 884 | |
| 15402 | 885 | lemma setsum_reindex: | 
| 886 | "inj_on f B ==> setsum h (f ` B) = setsum (h \<circ> f) B" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 887 | by(auto simp add: setsum_def comm_monoid_add.fold_reindex dest!:finite_imageD) | 
| 15402 | 888 | |
| 889 | lemma setsum_reindex_id: | |
| 890 | "inj_on f B ==> setsum f B = setsum id (f ` B)" | |
| 891 | by (auto simp add: setsum_reindex) | |
| 892 | ||
| 893 | lemma setsum_cong: | |
| 894 | "A = B ==> (!!x. x:B ==> f x = g x) ==> setsum f A = setsum g B" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 895 | by(fastsimp simp: setsum_def intro: comm_monoid_add.fold_cong) | 
| 15402 | 896 | |
| 16733 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 nipkow parents: 
16632diff
changeset | 897 | lemma strong_setsum_cong[cong]: | 
| 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 nipkow parents: 
16632diff
changeset | 898 | "A = B ==> (!!x. x:B =simp=> f x = g x) | 
| 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 nipkow parents: 
16632diff
changeset | 899 | ==> setsum (%x. f x) A = setsum (%x. g x) B" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 900 | by(fastsimp simp: simp_implies_def setsum_def intro: comm_monoid_add.fold_cong) | 
| 16632 
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
 berghofe parents: 
16550diff
changeset | 901 | |
| 15554 | 902 | lemma setsum_cong2: "\<lbrakk>\<And>x. x \<in> A \<Longrightarrow> f x = g x\<rbrakk> \<Longrightarrow> setsum f A = setsum g A"; | 
| 903 | by (rule setsum_cong[OF refl], auto); | |
| 904 | ||
| 15402 | 905 | lemma setsum_reindex_cong: | 
| 15554 | 906 | "[|inj_on f A; B = f ` A; !!a. a:A \<Longrightarrow> g a = h (f a)|] | 
| 15402 | 907 | ==> setsum h B = setsum g A" | 
| 908 | by (simp add: setsum_reindex cong: setsum_cong) | |
| 909 | ||
| 15542 | 910 | lemma setsum_0[simp]: "setsum (%i. 0) A = 0" | 
| 15402 | 911 | apply (clarsimp simp: setsum_def) | 
| 15765 | 912 | apply (erule finite_induct, auto) | 
| 15402 | 913 | done | 
| 914 | ||
| 15543 | 915 | lemma setsum_0': "ALL a:A. f a = 0 ==> setsum f A = 0" | 
| 916 | by(simp add:setsum_cong) | |
| 15402 | 917 | |
| 918 | lemma setsum_Un_Int: "finite A ==> finite B ==> | |
| 919 | setsum g (A Un B) + setsum g (A Int B) = setsum g A + setsum g B" | |
| 920 |   -- {* The reversed orientation looks more natural, but LOOPS as a simprule! *}
 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 921 | by(simp add: setsum_def comm_monoid_add.fold_Un_Int [symmetric]) | 
| 15402 | 922 | |
| 923 | lemma setsum_Un_disjoint: "finite A ==> finite B | |
| 924 |   ==> A Int B = {} ==> setsum g (A Un B) = setsum g A + setsum g B"
 | |
| 925 | by (subst setsum_Un_Int [symmetric], auto) | |
| 926 | ||
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 927 | (*But we can't get rid of finite I. If infinite, although the rhs is 0, | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 928 | the lhs need not be, since UNION I A could still be finite.*) | 
| 15402 | 929 | lemma setsum_UN_disjoint: | 
| 930 | "finite I ==> (ALL i:I. finite (A i)) ==> | |
| 931 |         (ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==>
 | |
| 932 | setsum f (UNION I A) = (\<Sum>i\<in>I. setsum f (A i))" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 933 | by(simp add: setsum_def comm_monoid_add.fold_UN_disjoint cong: setsum_cong) | 
| 15402 | 934 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 935 | text{*No need to assume that @{term C} is finite.  If infinite, the rhs is
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 936 | directly 0, and @{term "Union C"} is also infinite, hence the lhs is also 0.*}
 | 
| 15402 | 937 | lemma setsum_Union_disjoint: | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 938 | "[| (ALL A:C. finite A); | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 939 |       (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) |]
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 940 | ==> setsum f (Union C) = setsum (setsum f) C" | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 941 | apply (cases "finite C") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 942 | prefer 2 apply (force dest: finite_UnionD simp add: setsum_def) | 
| 15402 | 943 | apply (frule setsum_UN_disjoint [of C id f]) | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 944 | apply (unfold Union_def id_def, assumption+) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 945 | done | 
| 15402 | 946 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 947 | (*But we can't get rid of finite A. If infinite, although the lhs is 0, | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 948 | the rhs need not be, since SIGMA A B could still be finite.*) | 
| 15402 | 949 | lemma setsum_Sigma: "finite A ==> ALL x:A. finite (B x) ==> | 
| 17189 | 950 | (\<Sum>x\<in>A. (\<Sum>y\<in>B x. f x y)) = (\<Sum>(x,y)\<in>(SIGMA x:A. B x). f x y)" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 951 | by(simp add:setsum_def comm_monoid_add.fold_Sigma split_def cong:setsum_cong) | 
| 15402 | 952 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 953 | text{*Here we can eliminate the finiteness assumptions, by cases.*}
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 954 | lemma setsum_cartesian_product: | 
| 17189 | 955 | "(\<Sum>x\<in>A. (\<Sum>y\<in>B. f x y)) = (\<Sum>(x,y) \<in> A <*> B. f x y)" | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 956 | apply (cases "finite A") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 957 | apply (cases "finite B") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 958 | apply (simp add: setsum_Sigma) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 959 |  apply (cases "A={}", simp)
 | 
| 15543 | 960 | apply (simp) | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 961 | apply (auto simp add: setsum_def | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 962 | dest: finite_cartesian_productD1 finite_cartesian_productD2) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 963 | done | 
| 15402 | 964 | |
| 965 | lemma setsum_addf: "setsum (%x. f x + g x) A = (setsum f A + setsum g A)" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 966 | by(simp add:setsum_def comm_monoid_add.fold_distrib) | 
| 15402 | 967 | |
| 968 | ||
| 969 | subsubsection {* Properties in more restricted classes of structures *}
 | |
| 970 | ||
| 971 | lemma setsum_SucD: "setsum f A = Suc n ==> EX a:A. 0 < f a" | |
| 972 | apply (case_tac "finite A") | |
| 973 | prefer 2 apply (simp add: setsum_def) | |
| 974 | apply (erule rev_mp) | |
| 975 | apply (erule finite_induct, auto) | |
| 976 | done | |
| 977 | ||
| 978 | lemma setsum_eq_0_iff [simp]: | |
| 979 | "finite F ==> (setsum f F = 0) = (ALL a:F. f a = (0::nat))" | |
| 22262 | 980 | by (induct set: finite) auto | 
| 15402 | 981 | |
| 982 | lemma setsum_Un_nat: "finite A ==> finite B ==> | |
| 983 | (setsum f (A Un B) :: nat) = setsum f A + setsum f B - setsum f (A Int B)" | |
| 984 |   -- {* For the natural numbers, we have subtraction. *}
 | |
| 23477 
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
 nipkow parents: 
23413diff
changeset | 985 | by (subst setsum_Un_Int [symmetric], auto simp add: ring_simps) | 
| 15402 | 986 | |
| 987 | lemma setsum_Un: "finite A ==> finite B ==> | |
| 988 | (setsum f (A Un B) :: 'a :: ab_group_add) = | |
| 989 | setsum f A + setsum f B - setsum f (A Int B)" | |
| 23477 
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
 nipkow parents: 
23413diff
changeset | 990 | by (subst setsum_Un_Int [symmetric], auto simp add: ring_simps) | 
| 15402 | 991 | |
| 992 | lemma setsum_diff1_nat: "(setsum f (A - {a}) :: nat) =
 | |
| 993 | (if a:A then setsum f A - f a else setsum f A)" | |
| 994 | apply (case_tac "finite A") | |
| 995 | prefer 2 apply (simp add: setsum_def) | |
| 996 | apply (erule finite_induct) | |
| 997 | apply (auto simp add: insert_Diff_if) | |
| 998 | apply (drule_tac a = a in mk_disjoint_insert, auto) | |
| 999 | done | |
| 1000 | ||
| 1001 | lemma setsum_diff1: "finite A \<Longrightarrow> | |
| 1002 |   (setsum f (A - {a}) :: ('a::ab_group_add)) =
 | |
| 1003 | (if a:A then setsum f A - f a else setsum f A)" | |
| 1004 | by (erule finite_induct) (auto simp add: insert_Diff_if) | |
| 1005 | ||
| 15552 
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
 obua parents: 
15543diff
changeset | 1006 | lemma setsum_diff1'[rule_format]: "finite A \<Longrightarrow> a \<in> A \<longrightarrow> (\<Sum> x \<in> A. f x) = f a + (\<Sum> x \<in> (A - {a}). f x)"
 | 
| 
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
 obua parents: 
15543diff
changeset | 1007 |   apply (erule finite_induct[where F=A and P="% A. (a \<in> A \<longrightarrow> (\<Sum> x \<in> A. f x) = f a + (\<Sum> x \<in> (A - {a}). f x))"])
 | 
| 
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
 obua parents: 
15543diff
changeset | 1008 | apply (auto simp add: insert_Diff_if add_ac) | 
| 
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
 obua parents: 
15543diff
changeset | 1009 | done | 
| 
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
 obua parents: 
15543diff
changeset | 1010 | |
| 15402 | 1011 | (* By Jeremy Siek: *) | 
| 1012 | ||
| 1013 | lemma setsum_diff_nat: | |
| 19535 | 1014 | assumes "finite B" | 
| 1015 | and "B \<subseteq> A" | |
| 1016 | shows "(setsum f (A - B) :: nat) = (setsum f A) - (setsum f B)" | |
| 1017 | using prems | |
| 1018 | proof induct | |
| 15402 | 1019 |   show "setsum f (A - {}) = (setsum f A) - (setsum f {})" by simp
 | 
| 1020 | next | |
| 1021 | fix F x assume finF: "finite F" and xnotinF: "x \<notin> F" | |
| 1022 | and xFinA: "insert x F \<subseteq> A" | |
| 1023 | and IH: "F \<subseteq> A \<Longrightarrow> setsum f (A - F) = setsum f A - setsum f F" | |
| 1024 | from xnotinF xFinA have xinAF: "x \<in> (A - F)" by simp | |
| 1025 |   from xinAF have A: "setsum f ((A - F) - {x}) = setsum f (A - F) - f x"
 | |
| 1026 | by (simp add: setsum_diff1_nat) | |
| 1027 | from xFinA have "F \<subseteq> A" by simp | |
| 1028 | with IH have "setsum f (A - F) = setsum f A - setsum f F" by simp | |
| 1029 |   with A have B: "setsum f ((A - F) - {x}) = setsum f A - setsum f F - f x"
 | |
| 1030 | by simp | |
| 1031 |   from xnotinF have "A - insert x F = (A - F) - {x}" by auto
 | |
| 1032 | with B have C: "setsum f (A - insert x F) = setsum f A - setsum f F - f x" | |
| 1033 | by simp | |
| 1034 | from finF xnotinF have "setsum f (insert x F) = setsum f F + f x" by simp | |
| 1035 | with C have "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)" | |
| 1036 | by simp | |
| 1037 | thus "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)" by simp | |
| 1038 | qed | |
| 1039 | ||
| 1040 | lemma setsum_diff: | |
| 1041 | assumes le: "finite A" "B \<subseteq> A" | |
| 1042 |   shows "setsum f (A - B) = setsum f A - ((setsum f B)::('a::ab_group_add))"
 | |
| 1043 | proof - | |
| 1044 | from le have finiteB: "finite B" using finite_subset by auto | |
| 1045 | show ?thesis using finiteB le | |
| 21575 | 1046 | proof induct | 
| 19535 | 1047 | case empty | 
| 1048 | thus ?case by auto | |
| 1049 | next | |
| 1050 | case (insert x F) | |
| 1051 | thus ?case using le finiteB | |
| 1052 | by (simp add: Diff_insert[where a=x and B=F] setsum_diff1 insert_absorb) | |
| 15402 | 1053 | qed | 
| 19535 | 1054 | qed | 
| 15402 | 1055 | |
| 1056 | lemma setsum_mono: | |
| 1057 |   assumes le: "\<And>i. i\<in>K \<Longrightarrow> f (i::'a) \<le> ((g i)::('b::{comm_monoid_add, pordered_ab_semigroup_add}))"
 | |
| 1058 | shows "(\<Sum>i\<in>K. f i) \<le> (\<Sum>i\<in>K. g i)" | |
| 1059 | proof (cases "finite K") | |
| 1060 | case True | |
| 1061 | thus ?thesis using le | |
| 19535 | 1062 | proof induct | 
| 15402 | 1063 | case empty | 
| 1064 | thus ?case by simp | |
| 1065 | next | |
| 1066 | case insert | |
| 19535 | 1067 | thus ?case using add_mono by fastsimp | 
| 15402 | 1068 | qed | 
| 1069 | next | |
| 1070 | case False | |
| 1071 | thus ?thesis | |
| 1072 | by (simp add: setsum_def) | |
| 1073 | qed | |
| 1074 | ||
| 15554 | 1075 | lemma setsum_strict_mono: | 
| 19535 | 1076 |   fixes f :: "'a \<Rightarrow> 'b::{pordered_cancel_ab_semigroup_add,comm_monoid_add}"
 | 
| 1077 |   assumes "finite A"  "A \<noteq> {}"
 | |
| 1078 | and "!!x. x:A \<Longrightarrow> f x < g x" | |
| 1079 | shows "setsum f A < setsum g A" | |
| 1080 | using prems | |
| 15554 | 1081 | proof (induct rule: finite_ne_induct) | 
| 1082 | case singleton thus ?case by simp | |
| 1083 | next | |
| 1084 | case insert thus ?case by (auto simp: add_strict_mono) | |
| 1085 | qed | |
| 1086 | ||
| 15535 | 1087 | lemma setsum_negf: | 
| 19535 | 1088 | "setsum (%x. - (f x)::'a::ab_group_add) A = - setsum f A" | 
| 15535 | 1089 | proof (cases "finite A") | 
| 22262 | 1090 | case True thus ?thesis by (induct set: finite) auto | 
| 15535 | 1091 | next | 
| 1092 | case False thus ?thesis by (simp add: setsum_def) | |
| 1093 | qed | |
| 15402 | 1094 | |
| 15535 | 1095 | lemma setsum_subtractf: | 
| 19535 | 1096 | "setsum (%x. ((f x)::'a::ab_group_add) - g x) A = | 
| 1097 | setsum f A - setsum g A" | |
| 15535 | 1098 | proof (cases "finite A") | 
| 1099 | case True thus ?thesis by (simp add: diff_minus setsum_addf setsum_negf) | |
| 1100 | next | |
| 1101 | case False thus ?thesis by (simp add: setsum_def) | |
| 1102 | qed | |
| 15402 | 1103 | |
| 15535 | 1104 | lemma setsum_nonneg: | 
| 19535 | 1105 |   assumes nn: "\<forall>x\<in>A. (0::'a::{pordered_ab_semigroup_add,comm_monoid_add}) \<le> f x"
 | 
| 1106 | shows "0 \<le> setsum f A" | |
| 15535 | 1107 | proof (cases "finite A") | 
| 1108 | case True thus ?thesis using nn | |
| 21575 | 1109 | proof induct | 
| 19535 | 1110 | case empty then show ?case by simp | 
| 1111 | next | |
| 1112 | case (insert x F) | |
| 1113 | then have "0 + 0 \<le> f x + setsum f F" by (blast intro: add_mono) | |
| 1114 | with insert show ?case by simp | |
| 1115 | qed | |
| 15535 | 1116 | next | 
| 1117 | case False thus ?thesis by (simp add: setsum_def) | |
| 1118 | qed | |
| 15402 | 1119 | |
| 15535 | 1120 | lemma setsum_nonpos: | 
| 19535 | 1121 |   assumes np: "\<forall>x\<in>A. f x \<le> (0::'a::{pordered_ab_semigroup_add,comm_monoid_add})"
 | 
| 1122 | shows "setsum f A \<le> 0" | |
| 15535 | 1123 | proof (cases "finite A") | 
| 1124 | case True thus ?thesis using np | |
| 21575 | 1125 | proof induct | 
| 19535 | 1126 | case empty then show ?case by simp | 
| 1127 | next | |
| 1128 | case (insert x F) | |
| 1129 | then have "f x + setsum f F \<le> 0 + 0" by (blast intro: add_mono) | |
| 1130 | with insert show ?case by simp | |
| 1131 | qed | |
| 15535 | 1132 | next | 
| 1133 | case False thus ?thesis by (simp add: setsum_def) | |
| 1134 | qed | |
| 15402 | 1135 | |
| 15539 | 1136 | lemma setsum_mono2: | 
| 1137 | fixes f :: "'a \<Rightarrow> 'b :: {pordered_ab_semigroup_add_imp_le,comm_monoid_add}"
 | |
| 1138 | assumes fin: "finite B" and sub: "A \<subseteq> B" and nn: "\<And>b. b \<in> B-A \<Longrightarrow> 0 \<le> f b" | |
| 1139 | shows "setsum f A \<le> setsum f B" | |
| 1140 | proof - | |
| 1141 | have "setsum f A \<le> setsum f A + setsum f (B-A)" | |
| 1142 | by(simp add: add_increasing2[OF setsum_nonneg] nn Ball_def) | |
| 1143 | also have "\<dots> = setsum f (A \<union> (B-A))" using fin finite_subset[OF sub fin] | |
| 1144 | by (simp add:setsum_Un_disjoint del:Un_Diff_cancel) | |
| 1145 | also have "A \<union> (B-A) = B" using sub by blast | |
| 1146 | finally show ?thesis . | |
| 1147 | qed | |
| 15542 | 1148 | |
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1149 | lemma setsum_mono3: "finite B ==> A <= B ==> | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1150 | ALL x: B - A. | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1151 |       0 <= ((f x)::'a::{comm_monoid_add,pordered_ab_semigroup_add}) ==>
 | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1152 | setsum f A <= setsum f B" | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1153 | apply (subgoal_tac "setsum f B = setsum f A + setsum f (B - A)") | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1154 | apply (erule ssubst) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1155 | apply (subgoal_tac "setsum f A + 0 <= setsum f A + setsum f (B - A)") | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1156 | apply simp | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1157 | apply (rule add_left_mono) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1158 | apply (erule setsum_nonneg) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1159 | apply (subst setsum_Un_disjoint [THEN sym]) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1160 | apply (erule finite_subset, assumption) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1161 | apply (rule finite_subset) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1162 | prefer 2 | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1163 | apply assumption | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1164 | apply auto | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1165 | apply (rule setsum_cong) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1166 | apply auto | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1167 | done | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1168 | |
| 19279 | 1169 | lemma setsum_right_distrib: | 
| 22934 
64ecb3d6790a
generalize setsum lemmas from semiring_0_cancel to semiring_0
 huffman parents: 
22917diff
changeset | 1170 |   fixes f :: "'a => ('b::semiring_0)"
 | 
| 15402 | 1171 | shows "r * setsum f A = setsum (%n. r * f n) A" | 
| 1172 | proof (cases "finite A") | |
| 1173 | case True | |
| 1174 | thus ?thesis | |
| 21575 | 1175 | proof induct | 
| 15402 | 1176 | case empty thus ?case by simp | 
| 1177 | next | |
| 1178 | case (insert x A) thus ?case by (simp add: right_distrib) | |
| 1179 | qed | |
| 1180 | next | |
| 1181 | case False thus ?thesis by (simp add: setsum_def) | |
| 1182 | qed | |
| 1183 | ||
| 17149 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1184 | lemma setsum_left_distrib: | 
| 22934 
64ecb3d6790a
generalize setsum lemmas from semiring_0_cancel to semiring_0
 huffman parents: 
22917diff
changeset | 1185 | "setsum f A * (r::'a::semiring_0) = (\<Sum>n\<in>A. f n * r)" | 
| 17149 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1186 | proof (cases "finite A") | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1187 | case True | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1188 | then show ?thesis | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1189 | proof induct | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1190 | case empty thus ?case by simp | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1191 | next | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1192 | case (insert x A) thus ?case by (simp add: left_distrib) | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1193 | qed | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1194 | next | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1195 | case False thus ?thesis by (simp add: setsum_def) | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1196 | qed | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1197 | |
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1198 | lemma setsum_divide_distrib: | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1199 | "setsum f A / (r::'a::field) = (\<Sum>n\<in>A. f n / r)" | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1200 | proof (cases "finite A") | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1201 | case True | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1202 | then show ?thesis | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1203 | proof induct | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1204 | case empty thus ?case by simp | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1205 | next | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1206 | case (insert x A) thus ?case by (simp add: add_divide_distrib) | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1207 | qed | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1208 | next | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1209 | case False thus ?thesis by (simp add: setsum_def) | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1210 | qed | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1211 | |
| 15535 | 1212 | lemma setsum_abs[iff]: | 
| 25303 
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
 haftmann parents: 
25205diff
changeset | 1213 |   fixes f :: "'a => ('b::pordered_ab_group_add_abs)"
 | 
| 15402 | 1214 | shows "abs (setsum f A) \<le> setsum (%i. abs(f i)) A" | 
| 15535 | 1215 | proof (cases "finite A") | 
| 1216 | case True | |
| 1217 | thus ?thesis | |
| 21575 | 1218 | proof induct | 
| 15535 | 1219 | case empty thus ?case by simp | 
| 1220 | next | |
| 1221 | case (insert x A) | |
| 1222 | thus ?case by (auto intro: abs_triangle_ineq order_trans) | |
| 1223 | qed | |
| 15402 | 1224 | next | 
| 15535 | 1225 | case False thus ?thesis by (simp add: setsum_def) | 
| 15402 | 1226 | qed | 
| 1227 | ||
| 15535 | 1228 | lemma setsum_abs_ge_zero[iff]: | 
| 25303 
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
 haftmann parents: 
25205diff
changeset | 1229 |   fixes f :: "'a => ('b::pordered_ab_group_add_abs)"
 | 
| 15402 | 1230 | shows "0 \<le> setsum (%i. abs(f i)) A" | 
| 15535 | 1231 | proof (cases "finite A") | 
| 1232 | case True | |
| 1233 | thus ?thesis | |
| 21575 | 1234 | proof induct | 
| 15535 | 1235 | case empty thus ?case by simp | 
| 1236 | next | |
| 21733 | 1237 | case (insert x A) thus ?case by (auto simp: add_nonneg_nonneg) | 
| 15535 | 1238 | qed | 
| 15402 | 1239 | next | 
| 15535 | 1240 | case False thus ?thesis by (simp add: setsum_def) | 
| 15402 | 1241 | qed | 
| 1242 | ||
| 15539 | 1243 | lemma abs_setsum_abs[simp]: | 
| 25303 
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
 haftmann parents: 
25205diff
changeset | 1244 |   fixes f :: "'a => ('b::pordered_ab_group_add_abs)"
 | 
| 15539 | 1245 | shows "abs (\<Sum>a\<in>A. abs(f a)) = (\<Sum>a\<in>A. abs(f a))" | 
| 1246 | proof (cases "finite A") | |
| 1247 | case True | |
| 1248 | thus ?thesis | |
| 21575 | 1249 | proof induct | 
| 15539 | 1250 | case empty thus ?case by simp | 
| 1251 | next | |
| 1252 | case (insert a A) | |
| 1253 | hence "\<bar>\<Sum>a\<in>insert a A. \<bar>f a\<bar>\<bar> = \<bar>\<bar>f a\<bar> + (\<Sum>a\<in>A. \<bar>f a\<bar>)\<bar>" by simp | |
| 1254 | also have "\<dots> = \<bar>\<bar>f a\<bar> + \<bar>\<Sum>a\<in>A. \<bar>f a\<bar>\<bar>\<bar>" using insert by simp | |
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1255 | also have "\<dots> = \<bar>f a\<bar> + \<bar>\<Sum>a\<in>A. \<bar>f a\<bar>\<bar>" | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16760diff
changeset | 1256 | by (simp del: abs_of_nonneg) | 
| 15539 | 1257 | also have "\<dots> = (\<Sum>a\<in>insert a A. \<bar>f a\<bar>)" using insert by simp | 
| 1258 | finally show ?case . | |
| 1259 | qed | |
| 1260 | next | |
| 1261 | case False thus ?thesis by (simp add: setsum_def) | |
| 1262 | qed | |
| 1263 | ||
| 15402 | 1264 | |
| 17149 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1265 | text {* Commuting outer and inner summation *}
 | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1266 | |
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1267 | lemma swap_inj_on: | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1268 | "inj_on (%(i, j). (j, i)) (A \<times> B)" | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1269 | by (unfold inj_on_def) fast | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1270 | |
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1271 | lemma swap_product: | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1272 | "(%(i, j). (j, i)) ` (A \<times> B) = B \<times> A" | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1273 | by (simp add: split_def image_def) blast | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1274 | |
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1275 | lemma setsum_commute: | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1276 | "(\<Sum>i\<in>A. \<Sum>j\<in>B. f i j) = (\<Sum>j\<in>B. \<Sum>i\<in>A. f i j)" | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1277 | proof (simp add: setsum_cartesian_product) | 
| 17189 | 1278 | have "(\<Sum>(x,y) \<in> A <*> B. f x y) = | 
| 1279 | (\<Sum>(y,x) \<in> (%(i, j). (j, i)) ` (A \<times> B). f x y)" | |
| 17149 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1280 | (is "?s = _") | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1281 | apply (simp add: setsum_reindex [where f = "%(i, j). (j, i)"] swap_inj_on) | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1282 | apply (simp add: split_def) | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1283 | done | 
| 17189 | 1284 | also have "... = (\<Sum>(y,x)\<in>B \<times> A. f x y)" | 
| 17149 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1285 | (is "_ = ?t") | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1286 | apply (simp add: swap_product) | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1287 | done | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1288 | finally show "?s = ?t" . | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1289 | qed | 
| 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1290 | |
| 19279 | 1291 | lemma setsum_product: | 
| 22934 
64ecb3d6790a
generalize setsum lemmas from semiring_0_cancel to semiring_0
 huffman parents: 
22917diff
changeset | 1292 |   fixes f :: "'a => ('b::semiring_0)"
 | 
| 19279 | 1293 | shows "setsum f A * setsum g B = (\<Sum>i\<in>A. \<Sum>j\<in>B. f i * g j)" | 
| 1294 | by (simp add: setsum_right_distrib setsum_left_distrib) (rule setsum_commute) | |
| 1295 | ||
| 17149 
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
 ballarin parents: 
17085diff
changeset | 1296 | |
| 15402 | 1297 | subsection {* Generalized product over a set *}
 | 
| 1298 | ||
| 1299 | constdefs | |
| 1300 |   setprod :: "('a => 'b) => 'a set => 'b::comm_monoid_mult"
 | |
| 1301 | "setprod f A == if finite A then fold (op *) f 1 A else 1" | |
| 1302 | ||
| 19535 | 1303 | abbreviation | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21249diff
changeset | 1304 |   Setprod  ("\<Prod>_" [1000] 999) where
 | 
| 19535 | 1305 | "\<Prod>A == setprod (%x. x) A" | 
| 1306 | ||
| 15402 | 1307 | syntax | 
| 17189 | 1308 |   "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(3PROD _:_. _)" [0, 51, 10] 10)
 | 
| 15402 | 1309 | syntax (xsymbols) | 
| 17189 | 1310 |   "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10)
 | 
| 15402 | 1311 | syntax (HTML output) | 
| 17189 | 1312 |   "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10)
 | 
| 16550 | 1313 | |
| 1314 | translations -- {* Beware of argument permutation! *}
 | |
| 1315 | "PROD i:A. b" == "setprod (%i. b) A" | |
| 1316 | "\<Prod>i\<in>A. b" == "setprod (%i. b) A" | |
| 1317 | ||
| 1318 | text{* Instead of @{term"\<Prod>x\<in>{x. P}. e"} we introduce the shorter
 | |
| 1319 |  @{text"\<Prod>x|P. e"}. *}
 | |
| 1320 | ||
| 1321 | syntax | |
| 17189 | 1322 |   "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3PROD _ |/ _./ _)" [0,0,10] 10)
 | 
| 16550 | 1323 | syntax (xsymbols) | 
| 17189 | 1324 |   "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Prod>_ | (_)./ _)" [0,0,10] 10)
 | 
| 16550 | 1325 | syntax (HTML output) | 
| 17189 | 1326 |   "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Prod>_ | (_)./ _)" [0,0,10] 10)
 | 
| 16550 | 1327 | |
| 15402 | 1328 | translations | 
| 16550 | 1329 |   "PROD x|P. t" => "setprod (%x. t) {x. P}"
 | 
| 1330 |   "\<Prod>x|P. t" => "setprod (%x. t) {x. P}"
 | |
| 1331 | ||
| 15402 | 1332 | |
| 1333 | lemma setprod_empty [simp]: "setprod f {} = 1"
 | |
| 1334 | by (auto simp add: setprod_def) | |
| 1335 | ||
| 1336 | lemma setprod_insert [simp]: "[| finite A; a \<notin> A |] ==> | |
| 1337 | setprod f (insert a A) = f a * setprod f A" | |
| 19931 
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
 ballarin parents: 
19870diff
changeset | 1338 | by (simp add: setprod_def) | 
| 15402 | 1339 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1340 | lemma setprod_infinite [simp]: "~ finite A ==> setprod f A = 1" | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1341 | by (simp add: setprod_def) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1342 | |
| 15402 | 1343 | lemma setprod_reindex: | 
| 1344 | "inj_on f B ==> setprod h (f ` B) = setprod (h \<circ> f) B" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1345 | by(auto simp: setprod_def fold_reindex dest!:finite_imageD) | 
| 15402 | 1346 | |
| 1347 | lemma setprod_reindex_id: "inj_on f B ==> setprod f B = setprod id (f ` B)" | |
| 1348 | by (auto simp add: setprod_reindex) | |
| 1349 | ||
| 1350 | lemma setprod_cong: | |
| 1351 | "A = B ==> (!!x. x:B ==> f x = g x) ==> setprod f A = setprod g B" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1352 | by(fastsimp simp: setprod_def intro: fold_cong) | 
| 15402 | 1353 | |
| 16632 
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
 berghofe parents: 
16550diff
changeset | 1354 | lemma strong_setprod_cong: | 
| 
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
 berghofe parents: 
16550diff
changeset | 1355 | "A = B ==> (!!x. x:B =simp=> f x = g x) ==> setprod f A = setprod g B" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1356 | by(fastsimp simp: simp_implies_def setprod_def intro: fold_cong) | 
| 16632 
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
 berghofe parents: 
16550diff
changeset | 1357 | |
| 15402 | 1358 | lemma setprod_reindex_cong: "inj_on f A ==> | 
| 1359 | B = f ` A ==> g = h \<circ> f ==> setprod h B = setprod g A" | |
| 1360 | by (frule setprod_reindex, simp) | |
| 1361 | ||
| 1362 | ||
| 1363 | lemma setprod_1: "setprod (%i. 1) A = 1" | |
| 1364 | apply (case_tac "finite A") | |
| 1365 | apply (erule finite_induct, auto simp add: mult_ac) | |
| 1366 | done | |
| 1367 | ||
| 1368 | lemma setprod_1': "ALL a:F. f a = 1 ==> setprod f F = 1" | |
| 1369 | apply (subgoal_tac "setprod f F = setprod (%x. 1) F") | |
| 1370 | apply (erule ssubst, rule setprod_1) | |
| 1371 | apply (rule setprod_cong, auto) | |
| 1372 | done | |
| 1373 | ||
| 1374 | lemma setprod_Un_Int: "finite A ==> finite B | |
| 1375 | ==> setprod g (A Un B) * setprod g (A Int B) = setprod g A * setprod g B" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1376 | by(simp add: setprod_def fold_Un_Int[symmetric]) | 
| 15402 | 1377 | |
| 1378 | lemma setprod_Un_disjoint: "finite A ==> finite B | |
| 1379 |   ==> A Int B = {} ==> setprod g (A Un B) = setprod g A * setprod g B"
 | |
| 1380 | by (subst setprod_Un_Int [symmetric], auto) | |
| 1381 | ||
| 1382 | lemma setprod_UN_disjoint: | |
| 1383 | "finite I ==> (ALL i:I. finite (A i)) ==> | |
| 1384 |         (ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==>
 | |
| 1385 | setprod f (UNION I A) = setprod (%i. setprod f (A i)) I" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1386 | by(simp add: setprod_def fold_UN_disjoint cong: setprod_cong) | 
| 15402 | 1387 | |
| 1388 | lemma setprod_Union_disjoint: | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1389 | "[| (ALL A:C. finite A); | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1390 |       (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) |] 
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1391 | ==> setprod f (Union C) = setprod (setprod f) C" | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1392 | apply (cases "finite C") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1393 | prefer 2 apply (force dest: finite_UnionD simp add: setprod_def) | 
| 15402 | 1394 | apply (frule setprod_UN_disjoint [of C id f]) | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1395 | apply (unfold Union_def id_def, assumption+) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1396 | done | 
| 15402 | 1397 | |
| 1398 | lemma setprod_Sigma: "finite A ==> ALL x:A. finite (B x) ==> | |
| 16550 | 1399 | (\<Prod>x\<in>A. (\<Prod>y\<in> B x. f x y)) = | 
| 17189 | 1400 | (\<Prod>(x,y)\<in>(SIGMA x:A. B x). f x y)" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1401 | by(simp add:setprod_def fold_Sigma split_def cong:setprod_cong) | 
| 15402 | 1402 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1403 | text{*Here we can eliminate the finiteness assumptions, by cases.*}
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1404 | lemma setprod_cartesian_product: | 
| 17189 | 1405 | "(\<Prod>x\<in>A. (\<Prod>y\<in> B. f x y)) = (\<Prod>(x,y)\<in>(A <*> B). f x y)" | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1406 | apply (cases "finite A") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1407 | apply (cases "finite B") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1408 | apply (simp add: setprod_Sigma) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1409 |  apply (cases "A={}", simp)
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1410 | apply (simp add: setprod_1) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1411 | apply (auto simp add: setprod_def | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1412 | dest: finite_cartesian_productD1 finite_cartesian_productD2) | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1413 | done | 
| 15402 | 1414 | |
| 1415 | lemma setprod_timesf: | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1416 | "setprod (%x. f x * g x) A = (setprod f A * setprod g A)" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1417 | by(simp add:setprod_def fold_distrib) | 
| 15402 | 1418 | |
| 1419 | ||
| 1420 | subsubsection {* Properties in more restricted classes of structures *}
 | |
| 1421 | ||
| 1422 | lemma setprod_eq_1_iff [simp]: | |
| 1423 | "finite F ==> (setprod f F = 1) = (ALL a:F. f a = (1::nat))" | |
| 22262 | 1424 | by (induct set: finite) auto | 
| 15402 | 1425 | |
| 1426 | lemma setprod_zero: | |
| 23277 | 1427 | "finite A ==> EX x: A. f x = (0::'a::comm_semiring_1) ==> setprod f A = 0" | 
| 22262 | 1428 | apply (induct set: finite, force, clarsimp) | 
| 15402 | 1429 | apply (erule disjE, auto) | 
| 1430 | done | |
| 1431 | ||
| 1432 | lemma setprod_nonneg [rule_format]: | |
| 1433 | "(ALL x: A. (0::'a::ordered_idom) \<le> f x) --> 0 \<le> setprod f A" | |
| 1434 | apply (case_tac "finite A") | |
| 22262 | 1435 | apply (induct set: finite, force, clarsimp) | 
| 15402 | 1436 | apply (subgoal_tac "0 * 0 \<le> f x * setprod f F", force) | 
| 1437 | apply (rule mult_mono, assumption+) | |
| 1438 | apply (auto simp add: setprod_def) | |
| 1439 | done | |
| 1440 | ||
| 1441 | lemma setprod_pos [rule_format]: "(ALL x: A. (0::'a::ordered_idom) < f x) | |
| 1442 | --> 0 < setprod f A" | |
| 1443 | apply (case_tac "finite A") | |
| 22262 | 1444 | apply (induct set: finite, force, clarsimp) | 
| 15402 | 1445 | apply (subgoal_tac "0 * 0 < f x * setprod f F", force) | 
| 1446 | apply (rule mult_strict_mono, assumption+) | |
| 1447 | apply (auto simp add: setprod_def) | |
| 1448 | done | |
| 1449 | ||
| 1450 | lemma setprod_nonzero [rule_format]: | |
| 23277 | 1451 | "(ALL x y. (x::'a::comm_semiring_1) * y = 0 --> x = 0 | y = 0) ==> | 
| 15402 | 1452 | finite A ==> (ALL x: A. f x \<noteq> (0::'a)) --> setprod f A \<noteq> 0" | 
| 1453 | apply (erule finite_induct, auto) | |
| 1454 | done | |
| 1455 | ||
| 1456 | lemma setprod_zero_eq: | |
| 23277 | 1457 | "(ALL x y. (x::'a::comm_semiring_1) * y = 0 --> x = 0 | y = 0) ==> | 
| 15402 | 1458 | finite A ==> (setprod f A = (0::'a)) = (EX x: A. f x = 0)" | 
| 1459 | apply (insert setprod_zero [of A f] setprod_nonzero [of A f], blast) | |
| 1460 | done | |
| 1461 | ||
| 1462 | lemma setprod_nonzero_field: | |
| 23277 | 1463 | "finite A ==> (ALL x: A. f x \<noteq> (0::'a::idom)) ==> setprod f A \<noteq> 0" | 
| 15402 | 1464 | apply (rule setprod_nonzero, auto) | 
| 1465 | done | |
| 1466 | ||
| 1467 | lemma setprod_zero_eq_field: | |
| 23277 | 1468 | "finite A ==> (setprod f A = (0::'a::idom)) = (EX x: A. f x = 0)" | 
| 15402 | 1469 | apply (rule setprod_zero_eq, auto) | 
| 1470 | done | |
| 1471 | ||
| 1472 | lemma setprod_Un: "finite A ==> finite B ==> (ALL x: A Int B. f x \<noteq> 0) ==> | |
| 1473 |     (setprod f (A Un B) :: 'a ::{field})
 | |
| 1474 | = setprod f A * setprod f B / setprod f (A Int B)" | |
| 1475 | apply (subst setprod_Un_Int [symmetric], auto) | |
| 1476 | apply (subgoal_tac "finite (A Int B)") | |
| 1477 | apply (frule setprod_nonzero_field [of "A Int B" f], assumption) | |
| 23398 | 1478 | apply (subst times_divide_eq_right [THEN sym], auto) | 
| 15402 | 1479 | done | 
| 1480 | ||
| 1481 | lemma setprod_diff1: "finite A ==> f a \<noteq> 0 ==> | |
| 1482 |     (setprod f (A - {a}) :: 'a :: {field}) =
 | |
| 1483 | (if a:A then setprod f A / f a else setprod f A)" | |
| 23413 
5caa2710dd5b
tuned laws for cancellation in divisions for fields.
 nipkow parents: 
23398diff
changeset | 1484 | by (erule finite_induct) (auto simp add: insert_Diff_if) | 
| 15402 | 1485 | |
| 1486 | lemma setprod_inversef: "finite A ==> | |
| 1487 |     ALL x: A. f x \<noteq> (0::'a::{field,division_by_zero}) ==>
 | |
| 1488 | setprod (inverse \<circ> f) A = inverse (setprod f A)" | |
| 1489 | apply (erule finite_induct) | |
| 1490 | apply (simp, simp) | |
| 1491 | done | |
| 1492 | ||
| 1493 | lemma setprod_dividef: | |
| 1494 | "[|finite A; | |
| 1495 |         \<forall>x \<in> A. g x \<noteq> (0::'a::{field,division_by_zero})|]
 | |
| 1496 | ==> setprod (%x. f x / g x) A = setprod f A / setprod g A" | |
| 1497 | apply (subgoal_tac | |
| 1498 | "setprod (%x. f x / g x) A = setprod (%x. f x * (inverse \<circ> g) x) A") | |
| 1499 | apply (erule ssubst) | |
| 1500 | apply (subst divide_inverse) | |
| 1501 | apply (subst setprod_timesf) | |
| 1502 | apply (subst setprod_inversef, assumption+, rule refl) | |
| 1503 | apply (rule setprod_cong, rule refl) | |
| 1504 | apply (subst divide_inverse, auto) | |
| 1505 | done | |
| 1506 | ||
| 12396 | 1507 | subsection {* Finite cardinality *}
 | 
| 1508 | ||
| 15402 | 1509 | text {* This definition, although traditional, is ugly to work with:
 | 
| 1510 | @{text "card A == LEAST n. EX f. A = {f i | i. i < n}"}.
 | |
| 1511 | But now that we have @{text setsum} things are easy:
 | |
| 12396 | 1512 | *} | 
| 1513 | ||
| 25459 
d1dce7d0731c
deleted card definition as code lemma; authentic syntax for card
 haftmann parents: 
25303diff
changeset | 1514 | definition | 
| 
d1dce7d0731c
deleted card definition as code lemma; authentic syntax for card
 haftmann parents: 
25303diff
changeset | 1515 | card :: "'a set \<Rightarrow> nat" | 
| 
d1dce7d0731c
deleted card definition as code lemma; authentic syntax for card
 haftmann parents: 
25303diff
changeset | 1516 | where | 
| 26792 | 1517 | "card A = setsum (\<lambda>x. 1) A" | 
| 12396 | 1518 | |
| 1519 | lemma card_empty [simp]: "card {} = 0"
 | |
| 24853 | 1520 | by (simp add: card_def) | 
| 15402 | 1521 | |
| 24427 | 1522 | lemma card_infinite [simp]: "~ finite A ==> card A = 0" | 
| 24853 | 1523 | by (simp add: card_def) | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1524 | |
| 15402 | 1525 | lemma card_eq_setsum: "card A = setsum (%x. 1) A" | 
| 1526 | by (simp add: card_def) | |
| 12396 | 1527 | |
| 1528 | lemma card_insert_disjoint [simp]: | |
| 1529 | "finite A ==> x \<notin> A ==> card (insert x A) = Suc(card A)" | |
| 15765 | 1530 | by(simp add: card_def) | 
| 15402 | 1531 | |
| 1532 | lemma card_insert_if: | |
| 1533 | "finite A ==> card (insert x A) = (if x:A then card A else Suc(card(A)))" | |
| 1534 | by (simp add: insert_absorb) | |
| 12396 | 1535 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24268diff
changeset | 1536 | lemma card_0_eq [simp,noatp]: "finite A ==> (card A = 0) = (A = {})"
 | 
| 12396 | 1537 | apply auto | 
| 15506 | 1538 | apply (drule_tac a = x in mk_disjoint_insert, clarify, auto) | 
| 12396 | 1539 | done | 
| 1540 | ||
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1541 | lemma card_eq_0_iff: "(card A = 0) = (A = {} | ~ finite A)"
 | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1542 | by auto | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1543 | |
| 24853 | 1544 | |
| 12396 | 1545 | lemma card_Suc_Diff1: "finite A ==> x: A ==> Suc (card (A - {x})) = card A"
 | 
| 14302 | 1546 | apply(rule_tac t = A in insert_Diff [THEN subst], assumption) | 
| 1547 | apply(simp del:insert_Diff_single) | |
| 1548 | done | |
| 12396 | 1549 | |
| 1550 | lemma card_Diff_singleton: | |
| 24853 | 1551 |   "finite A ==> x: A ==> card (A - {x}) = card A - 1"
 | 
| 1552 | by (simp add: card_Suc_Diff1 [symmetric]) | |
| 12396 | 1553 | |
| 1554 | lemma card_Diff_singleton_if: | |
| 24853 | 1555 |   "finite A ==> card (A-{x}) = (if x : A then card A - 1 else card A)"
 | 
| 1556 | by (simp add: card_Diff_singleton) | |
| 1557 | ||
| 1558 | lemma card_Diff_insert[simp]: | |
| 1559 | assumes "finite A" and "a:A" and "a ~: B" | |
| 1560 | shows "card(A - insert a B) = card(A - B) - 1" | |
| 1561 | proof - | |
| 1562 |   have "A - insert a B = (A - B) - {a}" using assms by blast
 | |
| 1563 | then show ?thesis using assms by(simp add:card_Diff_singleton) | |
| 1564 | qed | |
| 12396 | 1565 | |
| 1566 | lemma card_insert: "finite A ==> card (insert x A) = Suc (card (A - {x}))"
 | |
| 24853 | 1567 | by (simp add: card_insert_if card_Suc_Diff1 del:card_Diff_insert) | 
| 12396 | 1568 | |
| 1569 | lemma card_insert_le: "finite A ==> card A <= card (insert x A)" | |
| 24853 | 1570 | by (simp add: card_insert_if) | 
| 12396 | 1571 | |
| 15402 | 1572 | lemma card_mono: "\<lbrakk> finite B; A \<subseteq> B \<rbrakk> \<Longrightarrow> card A \<le> card B" | 
| 15539 | 1573 | by (simp add: card_def setsum_mono2) | 
| 15402 | 1574 | |
| 12396 | 1575 | lemma card_seteq: "finite B ==> (!!A. A <= B ==> card B <= card A ==> A = B)" | 
| 22262 | 1576 | apply (induct set: finite, simp, clarify) | 
| 12396 | 1577 |   apply (subgoal_tac "finite A & A - {x} <= F")
 | 
| 14208 | 1578 | prefer 2 apply (blast intro: finite_subset, atomize) | 
| 12396 | 1579 |   apply (drule_tac x = "A - {x}" in spec)
 | 
| 1580 | apply (simp add: card_Diff_singleton_if split add: split_if_asm) | |
| 14208 | 1581 | apply (case_tac "card A", auto) | 
| 12396 | 1582 | done | 
| 1583 | ||
| 1584 | lemma psubset_card_mono: "finite B ==> A < B ==> card A < card B" | |
| 26792 | 1585 | apply (simp add: psubset_eq linorder_not_le [symmetric]) | 
| 24853 | 1586 | apply (blast dest: card_seteq) | 
| 1587 | done | |
| 12396 | 1588 | |
| 1589 | lemma card_Un_Int: "finite A ==> finite B | |
| 1590 | ==> card A + card B = card (A Un B) + card (A Int B)" | |
| 15402 | 1591 | by(simp add:card_def setsum_Un_Int) | 
| 12396 | 1592 | |
| 1593 | lemma card_Un_disjoint: "finite A ==> finite B | |
| 1594 |     ==> A Int B = {} ==> card (A Un B) = card A + card B"
 | |
| 24853 | 1595 | by (simp add: card_Un_Int) | 
| 12396 | 1596 | |
| 1597 | lemma card_Diff_subset: | |
| 15402 | 1598 | "finite B ==> B <= A ==> card (A - B) = card A - card B" | 
| 1599 | by(simp add:card_def setsum_diff_nat) | |
| 12396 | 1600 | |
| 1601 | lemma card_Diff1_less: "finite A ==> x: A ==> card (A - {x}) < card A"
 | |
| 1602 | apply (rule Suc_less_SucD) | |
| 24853 | 1603 | apply (simp add: card_Suc_Diff1 del:card_Diff_insert) | 
| 12396 | 1604 | done | 
| 1605 | ||
| 1606 | lemma card_Diff2_less: | |
| 1607 |     "finite A ==> x: A ==> y: A ==> card (A - {x} - {y}) < card A"
 | |
| 1608 | apply (case_tac "x = y") | |
| 24853 | 1609 | apply (simp add: card_Diff1_less del:card_Diff_insert) | 
| 12396 | 1610 | apply (rule less_trans) | 
| 24853 | 1611 | prefer 2 apply (auto intro!: card_Diff1_less simp del:card_Diff_insert) | 
| 12396 | 1612 | done | 
| 1613 | ||
| 1614 | lemma card_Diff1_le: "finite A ==> card (A - {x}) <= card A"
 | |
| 1615 | apply (case_tac "x : A") | |
| 1616 | apply (simp_all add: card_Diff1_less less_imp_le) | |
| 1617 | done | |
| 1618 | ||
| 1619 | lemma card_psubset: "finite B ==> A \<subseteq> B ==> card A < card B ==> A < B" | |
| 14208 | 1620 | by (erule psubsetI, blast) | 
| 12396 | 1621 | |
| 14889 | 1622 | lemma insert_partition: | 
| 15402 | 1623 |   "\<lbrakk> x \<notin> F; \<forall>c1 \<in> insert x F. \<forall>c2 \<in> insert x F. c1 \<noteq> c2 \<longrightarrow> c1 \<inter> c2 = {} \<rbrakk>
 | 
| 1624 |   \<Longrightarrow> x \<inter> \<Union> F = {}"
 | |
| 14889 | 1625 | by auto | 
| 1626 | ||
| 19793 | 1627 | text{* main cardinality theorem *}
 | 
| 14889 | 1628 | lemma card_partition [rule_format]: | 
| 1629 | "finite C ==> | |
| 1630 | finite (\<Union> C) --> | |
| 1631 | (\<forall>c\<in>C. card c = k) --> | |
| 1632 |         (\<forall>c1 \<in> C. \<forall>c2 \<in> C. c1 \<noteq> c2 --> c1 \<inter> c2 = {}) -->  
 | |
| 1633 | k * card(C) = card (\<Union> C)" | |
| 1634 | apply (erule finite_induct, simp) | |
| 1635 | apply (simp add: card_insert_disjoint card_Un_disjoint insert_partition | |
| 1636 | finite_subset [of _ "\<Union> (insert x F)"]) | |
| 1637 | done | |
| 1638 | ||
| 12396 | 1639 | |
| 19793 | 1640 | text{*The form of a finite set of given cardinality*}
 | 
| 1641 | ||
| 1642 | lemma card_eq_SucD: | |
| 24853 | 1643 | assumes "card A = Suc k" | 
| 1644 | shows "\<exists>b B. A = insert b B & b \<notin> B & card B = k & (k=0 \<longrightarrow> B={})"
 | |
| 19793 | 1645 | proof - | 
| 24853 | 1646 | have fin: "finite A" using assms by (auto intro: ccontr) | 
| 1647 | moreover have "card A \<noteq> 0" using assms by auto | |
| 1648 | ultimately obtain b where b: "b \<in> A" by auto | |
| 19793 | 1649 | show ?thesis | 
| 1650 | proof (intro exI conjI) | |
| 1651 |     show "A = insert b (A-{b})" using b by blast
 | |
| 1652 |     show "b \<notin> A - {b}" by blast
 | |
| 24853 | 1653 |     show "card (A - {b}) = k" and "k = 0 \<longrightarrow> A - {b} = {}"
 | 
| 1654 | using assms b fin by(fastsimp dest:mk_disjoint_insert)+ | |
| 19793 | 1655 | qed | 
| 1656 | qed | |
| 1657 | ||
| 1658 | lemma card_Suc_eq: | |
| 24853 | 1659 | "(card A = Suc k) = | 
| 1660 |    (\<exists>b B. A = insert b B & b \<notin> B & card B = k & (k=0 \<longrightarrow> B={}))"
 | |
| 1661 | apply(rule iffI) | |
| 1662 | apply(erule card_eq_SucD) | |
| 1663 | apply(auto) | |
| 1664 | apply(subst card_insert) | |
| 1665 | apply(auto intro:ccontr) | |
| 1666 | done | |
| 19793 | 1667 | |
| 15539 | 1668 | lemma setsum_constant [simp]: "(\<Sum>x \<in> A. y) = of_nat(card A) * y" | 
| 1669 | apply (cases "finite A") | |
| 1670 | apply (erule finite_induct) | |
| 23477 
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
 nipkow parents: 
23413diff
changeset | 1671 | apply (auto simp add: ring_simps) | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1672 | done | 
| 15402 | 1673 | |
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
19984diff
changeset | 1674 | lemma setprod_constant: "finite A ==> (\<Prod>x\<in> A. (y::'a::{recpower, comm_monoid_mult})) = y^(card A)"
 | 
| 15402 | 1675 | apply (erule finite_induct) | 
| 1676 | apply (auto simp add: power_Suc) | |
| 1677 | done | |
| 1678 | ||
| 15542 | 1679 | lemma setsum_bounded: | 
| 23277 | 1680 |   assumes le: "\<And>i. i\<in>A \<Longrightarrow> f i \<le> (K::'a::{semiring_1, pordered_ab_semigroup_add})"
 | 
| 15542 | 1681 | shows "setsum f A \<le> of_nat(card A) * K" | 
| 1682 | proof (cases "finite A") | |
| 1683 | case True | |
| 1684 | thus ?thesis using le setsum_mono[where K=A and g = "%x. K"] by simp | |
| 1685 | next | |
| 1686 | case False thus ?thesis by (simp add: setsum_def) | |
| 1687 | qed | |
| 1688 | ||
| 15402 | 1689 | |
| 1690 | subsubsection {* Cardinality of unions *}
 | |
| 1691 | ||
| 1692 | lemma card_UN_disjoint: | |
| 1693 | "finite I ==> (ALL i:I. finite (A i)) ==> | |
| 1694 |         (ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==>
 | |
| 1695 | card (UNION I A) = (\<Sum>i\<in>I. card(A i))" | |
| 15539 | 1696 | apply (simp add: card_def del: setsum_constant) | 
| 15402 | 1697 | apply (subgoal_tac | 
| 1698 | "setsum (%i. card (A i)) I = setsum (%i. (setsum (%x. 1) (A i))) I") | |
| 15539 | 1699 | apply (simp add: setsum_UN_disjoint del: setsum_constant) | 
| 1700 | apply (simp cong: setsum_cong) | |
| 15402 | 1701 | done | 
| 1702 | ||
| 1703 | lemma card_Union_disjoint: | |
| 1704 | "finite C ==> (ALL A:C. finite A) ==> | |
| 1705 |         (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) ==>
 | |
| 1706 | card (Union C) = setsum card C" | |
| 1707 | apply (frule card_UN_disjoint [of C id]) | |
| 1708 | apply (unfold Union_def id_def, assumption+) | |
| 1709 | done | |
| 1710 | ||
| 12396 | 1711 | subsubsection {* Cardinality of image *}
 | 
| 1712 | ||
| 15447 | 1713 | text{*The image of a finite set can be expressed using @{term fold}.*}
 | 
| 1714 | lemma image_eq_fold: "finite A ==> f ` A = fold (op Un) (%x. {f x}) {} A"
 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1715 | proof (induct rule: finite_induct) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1716 | case empty then show ?case by simp | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1717 | next | 
| 26465 | 1718 | interpret ab_semigroup_mult ["op Un"] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1719 | by unfold_locales auto | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1720 | case insert | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1721 | then show ?case by simp | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1722 | qed | 
| 15447 | 1723 | |
| 12396 | 1724 | lemma card_image_le: "finite A ==> card (f ` A) <= card A" | 
| 22262 | 1725 | apply (induct set: finite) | 
| 21575 | 1726 | apply simp | 
| 12396 | 1727 | apply (simp add: le_SucI finite_imageI card_insert_if) | 
| 1728 | done | |
| 1729 | ||
| 15402 | 1730 | lemma card_image: "inj_on f A ==> card (f ` A) = card A" | 
| 15539 | 1731 | by(simp add:card_def setsum_reindex o_def del:setsum_constant) | 
| 12396 | 1732 | |
| 1733 | lemma endo_inj_surj: "finite A ==> f ` A \<subseteq> A ==> inj_on f A ==> f ` A = A" | |
| 25162 | 1734 | by (simp add: card_seteq card_image) | 
| 12396 | 1735 | |
| 15111 | 1736 | lemma eq_card_imp_inj_on: | 
| 1737 | "[| finite A; card(f ` A) = card A |] ==> inj_on f A" | |
| 21575 | 1738 | apply (induct rule:finite_induct) | 
| 1739 | apply simp | |
| 15111 | 1740 | apply(frule card_image_le[where f = f]) | 
| 1741 | apply(simp add:card_insert_if split:if_splits) | |
| 1742 | done | |
| 1743 | ||
| 1744 | lemma inj_on_iff_eq_card: | |
| 1745 | "finite A ==> inj_on f A = (card(f ` A) = card A)" | |
| 1746 | by(blast intro: card_image eq_card_imp_inj_on) | |
| 1747 | ||
| 12396 | 1748 | |
| 15402 | 1749 | lemma card_inj_on_le: | 
| 1750 | "[|inj_on f A; f ` A \<subseteq> B; finite B |] ==> card A \<le> card B" | |
| 1751 | apply (subgoal_tac "finite A") | |
| 1752 | apply (force intro: card_mono simp add: card_image [symmetric]) | |
| 1753 | apply (blast intro: finite_imageD dest: finite_subset) | |
| 1754 | done | |
| 1755 | ||
| 1756 | lemma card_bij_eq: | |
| 1757 | "[|inj_on f A; f ` A \<subseteq> B; inj_on g B; g ` B \<subseteq> A; | |
| 1758 | finite A; finite B |] ==> card A = card B" | |
| 1759 | by (auto intro: le_anti_sym card_inj_on_le) | |
| 1760 | ||
| 1761 | ||
| 1762 | subsubsection {* Cardinality of products *}
 | |
| 1763 | ||
| 1764 | (* | |
| 1765 | lemma SigmaI_insert: "y \<notin> A ==> | |
| 1766 |   (SIGMA x:(insert y A). B x) = (({y} <*> (B y)) \<union> (SIGMA x: A. B x))"
 | |
| 1767 | by auto | |
| 1768 | *) | |
| 1769 | ||
| 1770 | lemma card_SigmaI [simp]: | |
| 1771 | "\<lbrakk> finite A; ALL a:A. finite (B a) \<rbrakk> | |
| 1772 | \<Longrightarrow> card (SIGMA x: A. B x) = (\<Sum>a\<in>A. card (B a))" | |
| 15539 | 1773 | by(simp add:card_def setsum_Sigma del:setsum_constant) | 
| 15402 | 1774 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1775 | lemma card_cartesian_product: "card (A <*> B) = card(A) * card(B)" | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1776 | apply (cases "finite A") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1777 | apply (cases "finite B") | 
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1778 | apply (auto simp add: card_eq_0_iff | 
| 15539 | 1779 | dest: finite_cartesian_productD1 finite_cartesian_productD2) | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1780 | done | 
| 15402 | 1781 | |
| 1782 | lemma card_cartesian_product_singleton:  "card({x} <*> A) = card(A)"
 | |
| 15539 | 1783 | by (simp add: card_cartesian_product) | 
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 1784 | |
| 15402 | 1785 | |
| 1786 | ||
| 12396 | 1787 | subsubsection {* Cardinality of the Powerset *}
 | 
| 1788 | ||
| 1789 | lemma card_Pow: "finite A ==> card (Pow A) = Suc (Suc 0) ^ card A" (* FIXME numeral 2 (!?) *) | |
| 22262 | 1790 | apply (induct set: finite) | 
| 12396 | 1791 | apply (simp_all add: Pow_insert) | 
| 14208 | 1792 | apply (subst card_Un_disjoint, blast) | 
| 1793 | apply (blast intro: finite_imageI, blast) | |
| 12396 | 1794 | apply (subgoal_tac "inj_on (insert x) (Pow F)") | 
| 1795 | apply (simp add: card_image Pow_insert) | |
| 1796 | apply (unfold inj_on_def) | |
| 1797 | apply (blast elim!: equalityE) | |
| 1798 | done | |
| 1799 | ||
| 24342 | 1800 | text {* Relates to equivalence classes.  Based on a theorem of F. Kammüller.  *}
 | 
| 12396 | 1801 | |
| 1802 | lemma dvd_partition: | |
| 15392 | 1803 | "finite (Union C) ==> | 
| 12396 | 1804 | ALL c : C. k dvd card c ==> | 
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 1805 |     (ALL c1: C. ALL c2: C. c1 \<noteq> c2 --> c1 Int c2 = {}) ==>
 | 
| 12396 | 1806 | k dvd card (Union C)" | 
| 15392 | 1807 | apply(frule finite_UnionD) | 
| 1808 | apply(rotate_tac -1) | |
| 22262 | 1809 | apply (induct set: finite, simp_all, clarify) | 
| 12396 | 1810 | apply (subst card_Un_disjoint) | 
| 1811 | apply (auto simp add: dvd_add disjoint_eq_subset_Compl) | |
| 1812 | done | |
| 1813 | ||
| 1814 | ||
| 25162 | 1815 | subsubsection {* Relating injectivity and surjectivity *}
 | 
| 1816 | ||
| 1817 | lemma finite_surj_inj: "finite(A) \<Longrightarrow> A <= f`A \<Longrightarrow> inj_on f A" | |
| 1818 | apply(rule eq_card_imp_inj_on, assumption) | |
| 1819 | apply(frule finite_imageI) | |
| 1820 | apply(drule (1) card_seteq) | |
| 1821 | apply(erule card_image_le) | |
| 1822 | apply simp | |
| 1823 | done | |
| 1824 | ||
| 1825 | lemma finite_UNIV_surj_inj: fixes f :: "'a \<Rightarrow> 'a" | |
| 1826 | shows "finite(UNIV:: 'a set) \<Longrightarrow> surj f \<Longrightarrow> inj f" | |
| 1827 | by (blast intro: finite_surj_inj subset_UNIV dest:surj_range) | |
| 1828 | ||
| 1829 | lemma finite_UNIV_inj_surj: fixes f :: "'a \<Rightarrow> 'a" | |
| 1830 | shows "finite(UNIV:: 'a set) \<Longrightarrow> inj f \<Longrightarrow> surj f" | |
| 1831 | by(fastsimp simp:surj_def dest!: endo_inj_surj) | |
| 1832 | ||
| 1833 | corollary infinite_UNIV_nat: "~finite(UNIV::nat set)" | |
| 1834 | proof | |
| 1835 | assume "finite(UNIV::nat set)" | |
| 1836 | with finite_UNIV_inj_surj[of Suc] | |
| 1837 | show False by simp (blast dest: Suc_neq_Zero surjD) | |
| 1838 | qed | |
| 1839 | ||
| 1840 | ||
| 15392 | 1841 | subsection{* A fold functional for non-empty sets *}
 | 
| 1842 | ||
| 1843 | text{* Does not require start value. *}
 | |
| 12396 | 1844 | |
| 23736 | 1845 | inductive | 
| 22262 | 1846 |   fold1Set :: "('a => 'a => 'a) => 'a set => 'a => bool"
 | 
| 1847 | for f :: "'a => 'a => 'a" | |
| 1848 | where | |
| 15506 | 1849 | fold1Set_insertI [intro]: | 
| 22262 | 1850 | "\<lbrakk> foldSet f id a A x; a \<notin> A \<rbrakk> \<Longrightarrow> fold1Set f (insert a A) x" | 
| 12396 | 1851 | |
| 15392 | 1852 | constdefs | 
| 1853 |   fold1 :: "('a => 'a => 'a) => 'a set => 'a"
 | |
| 22262 | 1854 | "fold1 f A == THE x. fold1Set f A x" | 
| 15506 | 1855 | |
| 1856 | lemma fold1Set_nonempty: | |
| 22917 | 1857 |   "fold1Set f A x \<Longrightarrow> A \<noteq> {}"
 | 
| 1858 | by(erule fold1Set.cases, simp_all) | |
| 15392 | 1859 | |
| 23736 | 1860 | inductive_cases empty_fold1SetE [elim!]: "fold1Set f {} x"
 | 
| 1861 | ||
| 1862 | inductive_cases insert_fold1SetE [elim!]: "fold1Set f (insert a X) x" | |
| 22262 | 1863 | |
| 1864 | ||
| 1865 | lemma fold1Set_sing [iff]: "(fold1Set f {a} b) = (a = b)"
 | |
| 15506 | 1866 | by (blast intro: foldSet.intros elim: foldSet.cases) | 
| 15392 | 1867 | |
| 22917 | 1868 | lemma fold1_singleton [simp]: "fold1 f {a} = a"
 | 
| 15508 | 1869 | by (unfold fold1_def) blast | 
| 12396 | 1870 | |
| 15508 | 1871 | lemma finite_nonempty_imp_fold1Set: | 
| 22262 | 1872 |   "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> EX x. fold1Set f A x"
 | 
| 15508 | 1873 | apply (induct A rule: finite_induct) | 
| 1874 | apply (auto dest: finite_imp_foldSet [of _ f id]) | |
| 1875 | done | |
| 15506 | 1876 | |
| 1877 | text{*First, some lemmas about @{term foldSet}.*}
 | |
| 15392 | 1878 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1879 | context ab_semigroup_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1880 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1881 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1882 | lemma foldSet_insert_swap: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1883 | assumes fold: "foldSet times id b A y" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1884 | shows "b \<notin> A \<Longrightarrow> foldSet times id z (insert b A) (z * y)" | 
| 15508 | 1885 | using fold | 
| 1886 | proof (induct rule: foldSet.induct) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1887 | case emptyI thus ?case by (force simp add: fold_insert_aux mult_commute) | 
| 15508 | 1888 | next | 
| 22262 | 1889 | case (insertI x A y) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1890 | have "foldSet times (\<lambda>u. u) z (insert x (insert b A)) (x * (z * y))" | 
| 15521 | 1891 |       using insertI by force  --{*how does @{term id} get unfolded?*}
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1892 | thus ?case by (simp add: insert_commute mult_ac) | 
| 15508 | 1893 | qed | 
| 1894 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1895 | lemma foldSet_permute_diff: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1896 | assumes fold: "foldSet times id b A x" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1897 | shows "!!a. \<lbrakk>a \<in> A; b \<notin> A\<rbrakk> \<Longrightarrow> foldSet times id a (insert b (A-{a})) x"
 | 
| 15508 | 1898 | using fold | 
| 1899 | proof (induct rule: foldSet.induct) | |
| 1900 | case emptyI thus ?case by simp | |
| 1901 | next | |
| 22262 | 1902 | case (insertI x A y) | 
| 15521 | 1903 | have "a = x \<or> a \<in> A" using insertI by simp | 
| 1904 | thus ?case | |
| 1905 | proof | |
| 1906 | assume "a = x" | |
| 1907 | with insertI show ?thesis | |
| 1908 | by (simp add: id_def [symmetric], blast intro: foldSet_insert_swap) | |
| 1909 | next | |
| 1910 | assume ainA: "a \<in> A" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1911 |     hence "foldSet times id a (insert x (insert b (A - {a}))) (x * y)"
 | 
| 15521 | 1912 | using insertI by (force simp: id_def) | 
| 1913 | moreover | |
| 1914 |     have "insert x (insert b (A - {a})) = insert b (insert x A - {a})"
 | |
| 1915 | using ainA insertI by blast | |
| 1916 | ultimately show ?thesis by (simp add: id_def) | |
| 15508 | 1917 | qed | 
| 1918 | qed | |
| 1919 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1920 | lemma fold1_eq_fold: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1921 | "[|finite A; a \<notin> A|] ==> fold1 times (insert a A) = fold times id a A" | 
| 15508 | 1922 | apply (simp add: fold1_def fold_def) | 
| 1923 | apply (rule the_equality) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1924 | apply (best intro: foldSet_determ theI dest: finite_imp_foldSet [of _ times id]) | 
| 15508 | 1925 | apply (rule sym, clarify) | 
| 1926 | apply (case_tac "Aa=A") | |
| 1927 | apply (best intro: the_equality foldSet_determ) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1928 | apply (subgoal_tac "foldSet times id a A x") | 
| 15508 | 1929 | apply (best intro: the_equality foldSet_determ) | 
| 1930 | apply (subgoal_tac "insert aa (Aa - {a}) = A") 
 | |
| 1931 | prefer 2 apply (blast elim: equalityE) | |
| 1932 | apply (auto dest: foldSet_permute_diff [where a=a]) | |
| 1933 | done | |
| 1934 | ||
| 15521 | 1935 | lemma nonempty_iff: "(A \<noteq> {}) = (\<exists>x B. A = insert x B & x \<notin> B)"
 | 
| 1936 | apply safe | |
| 1937 | apply simp | |
| 1938 | apply (drule_tac x=x in spec) | |
| 1939 | apply (drule_tac x="A-{x}" in spec, auto) 
 | |
| 15508 | 1940 | done | 
| 1941 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1942 | lemma fold1_insert: | 
| 15521 | 1943 |   assumes nonempty: "A \<noteq> {}" and A: "finite A" "x \<notin> A"
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1944 | shows "fold1 times (insert x A) = x * fold1 times A" | 
| 15521 | 1945 | proof - | 
| 1946 | from nonempty obtain a A' where "A = insert a A' & a ~: A'" | |
| 1947 | by (auto simp add: nonempty_iff) | |
| 1948 | with A show ?thesis | |
| 1949 | by (simp add: insert_commute [of x] fold1_eq_fold eq_commute) | |
| 1950 | qed | |
| 1951 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1952 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1953 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1954 | context ab_semigroup_idem_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1955 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1956 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1957 | lemma fold1_insert_idem [simp]: | 
| 15521 | 1958 |   assumes nonempty: "A \<noteq> {}" and A: "finite A" 
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1959 | shows "fold1 times (insert x A) = x * fold1 times A" | 
| 15521 | 1960 | proof - | 
| 1961 | from nonempty obtain a A' where A': "A = insert a A' & a ~: A'" | |
| 1962 | by (auto simp add: nonempty_iff) | |
| 1963 | show ?thesis | |
| 1964 | proof cases | |
| 1965 | assume "a = x" | |
| 1966 | thus ?thesis | |
| 1967 | proof cases | |
| 1968 |       assume "A' = {}"
 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1969 | with prems show ?thesis by (simp add: mult_idem) | 
| 15521 | 1970 | next | 
| 1971 |       assume "A' \<noteq> {}"
 | |
| 1972 | with prems show ?thesis | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1973 | by (simp add: fold1_insert mult_assoc [symmetric] mult_idem) | 
| 15521 | 1974 | qed | 
| 1975 | next | |
| 1976 | assume "a \<noteq> x" | |
| 1977 | with prems show ?thesis | |
| 1978 | by (simp add: insert_commute fold1_eq_fold fold_insert_idem) | |
| 1979 | qed | |
| 1980 | qed | |
| 15506 | 1981 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1982 | lemma hom_fold1_commute: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1983 | assumes hom: "!!x y. h (x * y) = h x * h y" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1984 | and N: "finite N" "N \<noteq> {}" shows "h (fold1 times N) = fold1 times (h ` N)"
 | 
| 22917 | 1985 | using N proof (induct rule: finite_ne_induct) | 
| 1986 | case singleton thus ?case by simp | |
| 1987 | next | |
| 1988 | case (insert n N) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1989 | then have "h (fold1 times (insert n N)) = h (n * fold1 times N)" by simp | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1990 | also have "\<dots> = h n * h (fold1 times N)" by(rule hom) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1991 | also have "h (fold1 times N) = fold1 times (h ` N)" by(rule insert) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1992 | also have "times (h n) \<dots> = fold1 times (insert (h n) (h ` N))" | 
| 22917 | 1993 | using insert by(simp) | 
| 1994 | also have "insert (h n) (h ` N) = h ` insert n N" by simp | |
| 1995 | finally show ?case . | |
| 1996 | qed | |
| 1997 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1998 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1999 | |
| 15506 | 2000 | |
| 15508 | 2001 | text{* Now the recursion rules for definitions: *}
 | 
| 2002 | ||
| 22917 | 2003 | lemma fold1_singleton_def: "g = fold1 f \<Longrightarrow> g {a} = a"
 | 
| 15508 | 2004 | by(simp add:fold1_singleton) | 
| 2005 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2006 | lemma (in ab_semigroup_mult) fold1_insert_def: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2007 |   "\<lbrakk> g = fold1 times; finite A; x \<notin> A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g (insert x A) = x * g A"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2008 | by (simp add:fold1_insert) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2009 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2010 | lemma (in ab_semigroup_idem_mult) fold1_insert_idem_def: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2011 |   "\<lbrakk> g = fold1 times; finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g (insert x A) = x * g A"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2012 | by simp | 
| 15508 | 2013 | |
| 2014 | subsubsection{* Determinacy for @{term fold1Set} *}
 | |
| 2015 | ||
| 2016 | text{*Not actually used!!*}
 | |
| 12396 | 2017 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2018 | context ab_semigroup_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2019 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2020 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2021 | lemma foldSet_permute: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2022 | "[|foldSet times id b (insert a A) x; a \<notin> A; b \<notin> A|] | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2023 | ==> foldSet times id a (insert b A) x" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2024 | apply (cases "a=b") | 
| 15506 | 2025 | apply (auto dest: foldSet_permute_diff) | 
| 2026 | done | |
| 15376 | 2027 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2028 | lemma fold1Set_determ: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2029 | "fold1Set times A x ==> fold1Set times A y ==> y = x" | 
| 15506 | 2030 | proof (clarify elim!: fold1Set.cases) | 
| 2031 | fix A x B y a b | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2032 | assume Ax: "foldSet times id a A x" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2033 | assume By: "foldSet times id b B y" | 
| 15506 | 2034 | assume anotA: "a \<notin> A" | 
| 2035 | assume bnotB: "b \<notin> B" | |
| 2036 | assume eq: "insert a A = insert b B" | |
| 2037 | show "y=x" | |
| 2038 | proof cases | |
| 2039 | assume same: "a=b" | |
| 2040 | hence "A=B" using anotA bnotB eq by (blast elim!: equalityE) | |
| 2041 | thus ?thesis using Ax By same by (blast intro: foldSet_determ) | |
| 15392 | 2042 | next | 
| 15506 | 2043 | assume diff: "a\<noteq>b" | 
| 2044 |     let ?D = "B - {a}"
 | |
| 2045 | have B: "B = insert a ?D" and A: "A = insert b ?D" | |
| 2046 | and aB: "a \<in> B" and bA: "b \<in> A" | |
| 2047 | using eq anotA bnotB diff by (blast elim!:equalityE)+ | |
| 2048 | with aB bnotB By | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2049 | have "foldSet times id a (insert b ?D) y" | 
| 15506 | 2050 | by (auto intro: foldSet_permute simp add: insert_absorb) | 
| 2051 | moreover | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2052 | have "foldSet times id a (insert b ?D) x" | 
| 15506 | 2053 | by (simp add: A [symmetric] Ax) | 
| 2054 | ultimately show ?thesis by (blast intro: foldSet_determ) | |
| 15392 | 2055 | qed | 
| 12396 | 2056 | qed | 
| 2057 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2058 | lemma fold1Set_equality: "fold1Set times A y ==> fold1 times A = y" | 
| 15506 | 2059 | by (unfold fold1_def) (blast intro: fold1Set_determ) | 
| 2060 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2061 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2062 | |
| 15506 | 2063 | declare | 
| 2064 | empty_foldSetE [rule del] foldSet.intros [rule del] | |
| 2065 | empty_fold1SetE [rule del] insert_fold1SetE [rule del] | |
| 19931 
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
 ballarin parents: 
19870diff
changeset | 2066 |   -- {* No more proofs involve these relations. *}
 | 
| 15376 | 2067 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2068 | subsubsection {* Lemmas about @{text fold1} *}
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2069 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2070 | context ab_semigroup_mult | 
| 22917 | 2071 | begin | 
| 2072 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2073 | lemma fold1_Un: | 
| 15484 | 2074 | assumes A: "finite A" "A \<noteq> {}"
 | 
| 2075 | shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow> A Int B = {} \<Longrightarrow>
 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2076 | fold1 times (A Un B) = fold1 times A * fold1 times B" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2077 | using A by (induct rule: finite_ne_induct) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2078 | (simp_all add: fold1_insert mult_assoc) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2079 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2080 | lemma fold1_in: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2081 |   assumes A: "finite (A)" "A \<noteq> {}" and elem: "\<And>x y. x * y \<in> {x,y}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2082 | shows "fold1 times A \<in> A" | 
| 15484 | 2083 | using A | 
| 2084 | proof (induct rule:finite_ne_induct) | |
| 15506 | 2085 | case singleton thus ?case by simp | 
| 15484 | 2086 | next | 
| 2087 | case insert thus ?case using elem by (force simp add:fold1_insert) | |
| 2088 | qed | |
| 2089 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2090 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2091 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2092 | lemma (in ab_semigroup_idem_mult) fold1_Un2: | 
| 15497 
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
 nipkow parents: 
15487diff
changeset | 2093 | assumes A: "finite A" "A \<noteq> {}"
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2094 | shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow>
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2095 | fold1 times (A Un B) = fold1 times A * fold1 times B" | 
| 15497 
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
 nipkow parents: 
15487diff
changeset | 2096 | using A | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2097 | proof(induct rule:finite_ne_induct) | 
| 15497 
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
 nipkow parents: 
15487diff
changeset | 2098 | case singleton thus ?case by simp | 
| 15484 | 2099 | next | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2100 | case insert thus ?case by (simp add: mult_assoc) | 
| 18423 | 2101 | qed | 
| 2102 | ||
| 2103 | ||
| 22917 | 2104 | subsubsection {* Fold1 in lattices with @{const inf} and @{const sup} *}
 | 
| 2105 | ||
| 2106 | text{*
 | |
| 2107 |   As an application of @{text fold1} we define infimum
 | |
| 2108 | and supremum in (not necessarily complete!) lattices | |
| 2109 |   over (non-empty) sets by means of @{text fold1}.
 | |
| 2110 | *} | |
| 2111 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2112 | context lower_semilattice | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2113 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2114 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2115 | lemma ab_semigroup_idem_mult_inf: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2116 | "ab_semigroup_idem_mult inf" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2117 | apply unfold_locales | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2118 | apply (rule inf_assoc) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2119 | apply (rule inf_commute) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2120 | apply (rule inf_idem) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2121 | done | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2122 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2123 | lemma below_fold1_iff: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2124 |   assumes "finite A" "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2125 | shows "x \<le> fold1 inf A \<longleftrightarrow> (\<forall>a\<in>A. x \<le> a)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2126 | proof - | 
| 26465 | 2127 | interpret ab_semigroup_idem_mult [inf] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2128 | by (rule ab_semigroup_idem_mult_inf) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2129 | show ?thesis using assms by (induct rule: finite_ne_induct) simp_all | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2130 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2131 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2132 | lemma fold1_belowI: | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2133 | assumes "finite A" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2134 | and "a \<in> A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2135 | shows "fold1 inf A \<le> a" | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2136 | proof - | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2137 |   from assms have "A \<noteq> {}" by auto
 | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2138 |   from `finite A` `A \<noteq> {}` `a \<in> A` show ?thesis
 | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2139 | proof (induct rule: finite_ne_induct) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2140 | case singleton thus ?case by simp | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2141 | next | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2142 | interpret ab_semigroup_idem_mult [inf] | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2143 | by (rule ab_semigroup_idem_mult_inf) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2144 | case (insert x F) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2145 | from insert(5) have "a = x \<or> a \<in> F" by simp | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2146 | thus ?case | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2147 | proof | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2148 | assume "a = x" thus ?thesis using insert | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2149 | by (simp add: mult_ac_idem) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2150 | next | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2151 | assume "a \<in> F" | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2152 | hence bel: "fold1 inf F \<le> a" by (rule insert) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2153 | have "inf (fold1 inf (insert x F)) a = inf x (inf (fold1 inf F) a)" | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2154 | using insert by (simp add: mult_ac_idem) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2155 | also have "inf (fold1 inf F) a = fold1 inf F" | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2156 | using bel by (auto intro: antisym) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2157 | also have "inf x \<dots> = fold1 inf (insert x F)" | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2158 | using insert by (simp add: mult_ac_idem) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2159 | finally have aux: "inf (fold1 inf (insert x F)) a = fold1 inf (insert x F)" . | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2160 | moreover have "inf (fold1 inf (insert x F)) a \<le> a" by simp | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2161 | ultimately show ?thesis by simp | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2162 | qed | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2163 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2164 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2165 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2166 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2167 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2168 | lemma (in upper_semilattice) ab_semigroup_idem_mult_sup: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2169 | "ab_semigroup_idem_mult sup" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2170 | by (rule lower_semilattice.ab_semigroup_idem_mult_inf) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2171 | (rule dual_lattice) | 
| 15500 | 2172 | |
| 24342 | 2173 | context lattice | 
| 22917 | 2174 | begin | 
| 2175 | ||
| 2176 | definition | |
| 24342 | 2177 |   Inf_fin :: "'a set \<Rightarrow> 'a" ("\<Sqinter>\<^bsub>fin\<^esub>_" [900] 900)
 | 
| 22917 | 2178 | where | 
| 25062 | 2179 | "Inf_fin = fold1 inf" | 
| 22917 | 2180 | |
| 2181 | definition | |
| 24342 | 2182 |   Sup_fin :: "'a set \<Rightarrow> 'a" ("\<Squnion>\<^bsub>fin\<^esub>_" [900] 900)
 | 
| 22917 | 2183 | where | 
| 25062 | 2184 | "Sup_fin = fold1 sup" | 
| 2185 | ||
| 2186 | lemma Inf_le_Sup [simp]: "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> \<Sqinter>\<^bsub>fin\<^esub>A \<le> \<Squnion>\<^bsub>fin\<^esub>A"
 | |
| 24342 | 2187 | apply(unfold Sup_fin_def Inf_fin_def) | 
| 15500 | 2188 | apply(subgoal_tac "EX a. a:A") | 
| 2189 | prefer 2 apply blast | |
| 2190 | apply(erule exE) | |
| 22388 | 2191 | apply(rule order_trans) | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2192 | apply(erule (1) fold1_belowI) | 
| 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2193 | apply(erule (1) lower_semilattice.fold1_belowI [OF dual_lattice]) | 
| 15500 | 2194 | done | 
| 2195 | ||
| 24342 | 2196 | lemma sup_Inf_absorb [simp]: | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2197 | "finite A \<Longrightarrow> a \<in> A \<Longrightarrow> sup a (\<Sqinter>\<^bsub>fin\<^esub>A) = a" | 
| 15512 
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
 nipkow parents: 
15510diff
changeset | 2198 | apply(subst sup_commute) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2199 | apply(simp add: Inf_fin_def sup_absorb2 fold1_belowI) | 
| 15504 | 2200 | done | 
| 2201 | ||
| 24342 | 2202 | lemma inf_Sup_absorb [simp]: | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2203 | "finite A \<Longrightarrow> a \<in> A \<Longrightarrow> inf a (\<Squnion>\<^bsub>fin\<^esub>A) = a" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2204 | by (simp add: Sup_fin_def inf_absorb1 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2205 | lower_semilattice.fold1_belowI [OF dual_lattice]) | 
| 24342 | 2206 | |
| 2207 | end | |
| 2208 | ||
| 2209 | context distrib_lattice | |
| 2210 | begin | |
| 2211 | ||
| 2212 | lemma sup_Inf1_distrib: | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2213 | assumes "finite A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2214 |     and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2215 |   shows "sup x (\<Sqinter>\<^bsub>fin\<^esub>A) = \<Sqinter>\<^bsub>fin\<^esub>{sup x a|a. a \<in> A}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2216 | proof - | 
| 26465 | 2217 | interpret ab_semigroup_idem_mult [inf] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2218 | by (rule ab_semigroup_idem_mult_inf) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2219 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2220 | by (simp add: Inf_fin_def image_def | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2221 | hom_fold1_commute [where h="sup x", OF sup_inf_distrib1]) | 
| 26792 | 2222 | (rule arg_cong [where f="fold1 inf"], blast) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2223 | qed | 
| 18423 | 2224 | |
| 24342 | 2225 | lemma sup_Inf2_distrib: | 
| 2226 |   assumes A: "finite A" "A \<noteq> {}" and B: "finite B" "B \<noteq> {}"
 | |
| 25062 | 2227 |   shows "sup (\<Sqinter>\<^bsub>fin\<^esub>A) (\<Sqinter>\<^bsub>fin\<^esub>B) = \<Sqinter>\<^bsub>fin\<^esub>{sup a b|a b. a \<in> A \<and> b \<in> B}"
 | 
| 24342 | 2228 | using A proof (induct rule: finite_ne_induct) | 
| 15500 | 2229 | case singleton thus ?case | 
| 24342 | 2230 | by (simp add: sup_Inf1_distrib [OF B] fold1_singleton_def [OF Inf_fin_def]) | 
| 15500 | 2231 | next | 
| 26465 | 2232 | interpret ab_semigroup_idem_mult [inf] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2233 | by (rule ab_semigroup_idem_mult_inf) | 
| 15500 | 2234 | case (insert x A) | 
| 25062 | 2235 |   have finB: "finite {sup x b |b. b \<in> B}"
 | 
| 2236 | by(rule finite_surj[where f = "sup x", OF B(1)], auto) | |
| 2237 |   have finAB: "finite {sup a b |a b. a \<in> A \<and> b \<in> B}"
 | |
| 15500 | 2238 | proof - | 
| 25062 | 2239 |     have "{sup a b |a b. a \<in> A \<and> b \<in> B} = (UN a:A. UN b:B. {sup a b})"
 | 
| 15500 | 2240 | by blast | 
| 15517 | 2241 | thus ?thesis by(simp add: insert(1) B(1)) | 
| 15500 | 2242 | qed | 
| 25062 | 2243 |   have ne: "{sup a b |a b. a \<in> A \<and> b \<in> B} \<noteq> {}" using insert B by blast
 | 
| 2244 | have "sup (\<Sqinter>\<^bsub>fin\<^esub>(insert x A)) (\<Sqinter>\<^bsub>fin\<^esub>B) = sup (inf x (\<Sqinter>\<^bsub>fin\<^esub>A)) (\<Sqinter>\<^bsub>fin\<^esub>B)" | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2245 | using insert by (simp add: fold1_insert_idem_def [OF Inf_fin_def]) | 
| 25062 | 2246 | also have "\<dots> = inf (sup x (\<Sqinter>\<^bsub>fin\<^esub>B)) (sup (\<Sqinter>\<^bsub>fin\<^esub>A) (\<Sqinter>\<^bsub>fin\<^esub>B))" by(rule sup_inf_distrib2) | 
| 2247 |   also have "\<dots> = inf (\<Sqinter>\<^bsub>fin\<^esub>{sup x b|b. b \<in> B}) (\<Sqinter>\<^bsub>fin\<^esub>{sup a b|a b. a \<in> A \<and> b \<in> B})"
 | |
| 15500 | 2248 | using insert by(simp add:sup_Inf1_distrib[OF B]) | 
| 25062 | 2249 |   also have "\<dots> = \<Sqinter>\<^bsub>fin\<^esub>({sup x b |b. b \<in> B} \<union> {sup a b |a b. a \<in> A \<and> b \<in> B})"
 | 
| 24342 | 2250 | (is "_ = \<Sqinter>\<^bsub>fin\<^esub>?M") | 
| 15500 | 2251 | using B insert | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2252 | by (simp add: Inf_fin_def fold1_Un2 [OF finB _ finAB ne]) | 
| 25062 | 2253 |   also have "?M = {sup a b |a b. a \<in> insert x A \<and> b \<in> B}"
 | 
| 15500 | 2254 | by blast | 
| 2255 | finally show ?case . | |
| 2256 | qed | |
| 2257 | ||
| 24342 | 2258 | lemma inf_Sup1_distrib: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2259 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2260 |   shows "inf x (\<Squnion>\<^bsub>fin\<^esub>A) = \<Squnion>\<^bsub>fin\<^esub>{inf x a|a. a \<in> A}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2261 | proof - | 
| 26465 | 2262 | interpret ab_semigroup_idem_mult [sup] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2263 | by (rule ab_semigroup_idem_mult_sup) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2264 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2265 | by (simp add: Sup_fin_def image_def hom_fold1_commute [where h="inf x", OF inf_sup_distrib1]) | 
| 26792 | 2266 | (rule arg_cong [where f="fold1 sup"], blast) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2267 | qed | 
| 18423 | 2268 | |
| 24342 | 2269 | lemma inf_Sup2_distrib: | 
| 2270 |   assumes A: "finite A" "A \<noteq> {}" and B: "finite B" "B \<noteq> {}"
 | |
| 25062 | 2271 |   shows "inf (\<Squnion>\<^bsub>fin\<^esub>A) (\<Squnion>\<^bsub>fin\<^esub>B) = \<Squnion>\<^bsub>fin\<^esub>{inf a b|a b. a \<in> A \<and> b \<in> B}"
 | 
| 24342 | 2272 | using A proof (induct rule: finite_ne_induct) | 
| 18423 | 2273 | case singleton thus ?case | 
| 24342 | 2274 | by(simp add: inf_Sup1_distrib [OF B] fold1_singleton_def [OF Sup_fin_def]) | 
| 18423 | 2275 | next | 
| 2276 | case (insert x A) | |
| 25062 | 2277 |   have finB: "finite {inf x b |b. b \<in> B}"
 | 
| 2278 | by(rule finite_surj[where f = "%b. inf x b", OF B(1)], auto) | |
| 2279 |   have finAB: "finite {inf a b |a b. a \<in> A \<and> b \<in> B}"
 | |
| 18423 | 2280 | proof - | 
| 25062 | 2281 |     have "{inf a b |a b. a \<in> A \<and> b \<in> B} = (UN a:A. UN b:B. {inf a b})"
 | 
| 18423 | 2282 | by blast | 
| 2283 | thus ?thesis by(simp add: insert(1) B(1)) | |
| 2284 | qed | |
| 25062 | 2285 |   have ne: "{inf a b |a b. a \<in> A \<and> b \<in> B} \<noteq> {}" using insert B by blast
 | 
| 26465 | 2286 | interpret ab_semigroup_idem_mult [sup] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2287 | by (rule ab_semigroup_idem_mult_sup) | 
| 25062 | 2288 | have "inf (\<Squnion>\<^bsub>fin\<^esub>(insert x A)) (\<Squnion>\<^bsub>fin\<^esub>B) = inf (sup x (\<Squnion>\<^bsub>fin\<^esub>A)) (\<Squnion>\<^bsub>fin\<^esub>B)" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2289 | using insert by (simp add: fold1_insert_idem_def [OF Sup_fin_def]) | 
| 25062 | 2290 | also have "\<dots> = sup (inf x (\<Squnion>\<^bsub>fin\<^esub>B)) (inf (\<Squnion>\<^bsub>fin\<^esub>A) (\<Squnion>\<^bsub>fin\<^esub>B))" by(rule inf_sup_distrib2) | 
| 2291 |   also have "\<dots> = sup (\<Squnion>\<^bsub>fin\<^esub>{inf x b|b. b \<in> B}) (\<Squnion>\<^bsub>fin\<^esub>{inf a b|a b. a \<in> A \<and> b \<in> B})"
 | |
| 18423 | 2292 | using insert by(simp add:inf_Sup1_distrib[OF B]) | 
| 25062 | 2293 |   also have "\<dots> = \<Squnion>\<^bsub>fin\<^esub>({inf x b |b. b \<in> B} \<union> {inf a b |a b. a \<in> A \<and> b \<in> B})"
 | 
| 24342 | 2294 | (is "_ = \<Squnion>\<^bsub>fin\<^esub>?M") | 
| 18423 | 2295 | using B insert | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2296 | by (simp add: Sup_fin_def fold1_Un2 [OF finB _ finAB ne]) | 
| 25062 | 2297 |   also have "?M = {inf a b |a b. a \<in> insert x A \<and> b \<in> B}"
 | 
| 18423 | 2298 | by blast | 
| 2299 | finally show ?case . | |
| 2300 | qed | |
| 2301 | ||
| 24342 | 2302 | end | 
| 2303 | ||
| 2304 | context complete_lattice | |
| 2305 | begin | |
| 2306 | ||
| 22917 | 2307 | text {*
 | 
| 24342 | 2308 | Coincidence on finite sets in complete lattices: | 
| 22917 | 2309 | *} | 
| 2310 | ||
| 24342 | 2311 | lemma Inf_fin_Inf: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2312 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2313 | shows "\<Sqinter>\<^bsub>fin\<^esub>A = Inf A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2314 | proof - | 
| 26465 | 2315 | interpret ab_semigroup_idem_mult [inf] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2316 | by (rule ab_semigroup_idem_mult_inf) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2317 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2318 | unfolding Inf_fin_def by (induct A set: finite) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2319 | (simp_all add: Inf_insert_simp) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2320 | qed | 
| 22917 | 2321 | |
| 24342 | 2322 | lemma Sup_fin_Sup: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2323 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2324 | shows "\<Squnion>\<^bsub>fin\<^esub>A = Sup A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2325 | proof - | 
| 26465 | 2326 | interpret ab_semigroup_idem_mult [sup] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2327 | by (rule ab_semigroup_idem_mult_sup) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2328 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2329 | unfolding Sup_fin_def by (induct A set: finite) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2330 | (simp_all add: Sup_insert_simp) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2331 | qed | 
| 22917 | 2332 | |
| 24342 | 2333 | end | 
| 2334 | ||
| 22917 | 2335 | |
| 2336 | subsubsection {* Fold1 in linear orders with @{const min} and @{const max} *}
 | |
| 2337 | ||
| 2338 | text{*
 | |
| 2339 |   As an application of @{text fold1} we define minimum
 | |
| 2340 | and maximum in (not necessarily complete!) linear orders | |
| 2341 |   over (non-empty) sets by means of @{text fold1}.
 | |
| 2342 | *} | |
| 2343 | ||
| 24342 | 2344 | context linorder | 
| 22917 | 2345 | begin | 
| 2346 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2347 | lemma ab_semigroup_idem_mult_min: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2348 | "ab_semigroup_idem_mult min" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2349 | by unfold_locales (auto simp add: min_def) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2350 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2351 | lemma ab_semigroup_idem_mult_max: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2352 | "ab_semigroup_idem_mult max" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2353 | by unfold_locales (auto simp add: max_def) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2354 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2355 | lemma min_lattice: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2356 | "lower_semilattice (op \<le>) (op <) min" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2357 | by unfold_locales (auto simp add: min_def) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2358 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2359 | lemma max_lattice: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2360 | "lower_semilattice (op \<ge>) (op >) max" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2361 | by unfold_locales (auto simp add: max_def) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2362 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2363 | lemma dual_max: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2364 | "ord.max (op \<ge>) = min" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2365 | by (auto simp add: ord.max_def_raw min_def_raw expand_fun_eq) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2366 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2367 | lemma dual_min: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2368 | "ord.min (op \<ge>) = max" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2369 | by (auto simp add: ord.min_def_raw max_def_raw expand_fun_eq) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2370 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2371 | lemma strict_below_fold1_iff: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2372 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2373 | shows "x < fold1 min A \<longleftrightarrow> (\<forall>a\<in>A. x < a)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2374 | proof - | 
| 26465 | 2375 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2376 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2377 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2378 | by (induct rule: finite_ne_induct) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2379 | (simp_all add: fold1_insert) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2380 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2381 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2382 | lemma fold1_below_iff: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2383 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2384 | shows "fold1 min A \<le> x \<longleftrightarrow> (\<exists>a\<in>A. a \<le> x)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2385 | proof - | 
| 26465 | 2386 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2387 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2388 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2389 | by (induct rule: finite_ne_induct) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2390 | (simp_all add: fold1_insert min_le_iff_disj) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2391 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2392 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2393 | lemma fold1_strict_below_iff: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2394 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2395 | shows "fold1 min A < x \<longleftrightarrow> (\<exists>a\<in>A. a < x)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2396 | proof - | 
| 26465 | 2397 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2398 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2399 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2400 | by (induct rule: finite_ne_induct) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2401 | (simp_all add: fold1_insert min_less_iff_disj) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2402 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2403 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2404 | lemma fold1_antimono: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2405 |   assumes "A \<noteq> {}" and "A \<subseteq> B" and "finite B"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2406 | shows "fold1 min B \<le> fold1 min A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2407 | proof cases | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2408 | assume "A = B" thus ?thesis by simp | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2409 | next | 
| 26465 | 2410 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2411 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2412 | assume "A \<noteq> B" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2413 | have B: "B = A \<union> (B-A)" using `A \<subseteq> B` by blast | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2414 | have "fold1 min B = fold1 min (A \<union> (B-A))" by(subst B)(rule refl) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2415 | also have "\<dots> = min (fold1 min A) (fold1 min (B-A))" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2416 | proof - | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2417 | have "finite A" by(rule finite_subset[OF `A \<subseteq> B` `finite B`]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2418 | moreover have "finite(B-A)" by(rule finite_Diff[OF `finite B`]) (* by(blast intro:finite_Diff prems) fails *) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2419 |     moreover have "(B-A) \<noteq> {}" using prems by blast
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2420 |     moreover have "A Int (B-A) = {}" using prems by blast
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2421 |     ultimately show ?thesis using `A \<noteq> {}` by (rule_tac fold1_Un)
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2422 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2423 | also have "\<dots> \<le> fold1 min A" by (simp add: min_le_iff_disj) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2424 | finally show ?thesis . | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2425 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2426 | |
| 22917 | 2427 | definition | 
| 2428 | Min :: "'a set \<Rightarrow> 'a" | |
| 2429 | where | |
| 2430 | "Min = fold1 min" | |
| 2431 | ||
| 2432 | definition | |
| 2433 | Max :: "'a set \<Rightarrow> 'a" | |
| 2434 | where | |
| 2435 | "Max = fold1 max" | |
| 2436 | ||
| 2437 | lemmas Min_singleton [simp] = fold1_singleton_def [OF Min_def] | |
| 2438 | lemmas Max_singleton [simp] = fold1_singleton_def [OF Max_def] | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2439 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2440 | lemma Min_insert [simp]: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2441 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2442 | shows "Min (insert x A) = min x (Min A)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2443 | proof - | 
| 26465 | 2444 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2445 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2446 | from assms show ?thesis by (rule fold1_insert_idem_def [OF Min_def]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2447 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2448 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2449 | lemma Max_insert [simp]: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2450 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2451 | shows "Max (insert x A) = max x (Max A)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2452 | proof - | 
| 26465 | 2453 | interpret ab_semigroup_idem_mult [max] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2454 | by (rule ab_semigroup_idem_mult_max) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2455 | from assms show ?thesis by (rule fold1_insert_idem_def [OF Max_def]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2456 | qed | 
| 15392 | 2457 | |
| 24427 | 2458 | lemma Min_in [simp]: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2459 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2460 | shows "Min A \<in> A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2461 | proof - | 
| 26465 | 2462 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2463 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2464 | from assms fold1_in show ?thesis by (fastsimp simp: Min_def min_def) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2465 | qed | 
| 15392 | 2466 | |
| 24427 | 2467 | lemma Max_in [simp]: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2468 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2469 | shows "Max A \<in> A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2470 | proof - | 
| 26465 | 2471 | interpret ab_semigroup_idem_mult [max] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2472 | by (rule ab_semigroup_idem_mult_max) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2473 | from assms fold1_in [of A] show ?thesis by (fastsimp simp: Max_def max_def) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2474 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2475 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2476 | lemma Min_Un: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2477 |   assumes "finite A" and "A \<noteq> {}" and "finite B" and "B \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2478 | shows "Min (A \<union> B) = min (Min A) (Min B)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2479 | proof - | 
| 26465 | 2480 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2481 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2482 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2483 | by (simp add: Min_def fold1_Un2) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2484 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2485 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2486 | lemma Max_Un: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2487 |   assumes "finite A" and "A \<noteq> {}" and "finite B" and "B \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2488 | shows "Max (A \<union> B) = max (Max A) (Max B)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2489 | proof - | 
| 26465 | 2490 | interpret ab_semigroup_idem_mult [max] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2491 | by (rule ab_semigroup_idem_mult_max) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2492 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2493 | by (simp add: Max_def fold1_Un2) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2494 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2495 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2496 | lemma hom_Min_commute: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2497 | assumes "\<And>x y. h (min x y) = min (h x) (h y)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2498 |     and "finite N" and "N \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2499 | shows "h (Min N) = Min (h ` N)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2500 | proof - | 
| 26465 | 2501 | interpret ab_semigroup_idem_mult [min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2502 | by (rule ab_semigroup_idem_mult_min) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2503 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2504 | by (simp add: Min_def hom_fold1_commute) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2505 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2506 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2507 | lemma hom_Max_commute: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2508 | assumes "\<And>x y. h (max x y) = max (h x) (h y)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2509 |     and "finite N" and "N \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2510 | shows "h (Max N) = Max (h ` N)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2511 | proof - | 
| 26465 | 2512 | interpret ab_semigroup_idem_mult [max] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2513 | by (rule ab_semigroup_idem_mult_max) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2514 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2515 | by (simp add: Max_def hom_fold1_commute [of h]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2516 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2517 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2518 | lemma Min_le [simp]: | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2519 | assumes "finite A" and "x \<in> A" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2520 | shows "Min A \<le> x" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2521 | proof - | 
| 26465 | 2522 | interpret lower_semilattice ["op \<le>" "op <" min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2523 | by (rule min_lattice) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2524 | from assms show ?thesis by (simp add: Min_def fold1_belowI) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2525 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2526 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2527 | lemma Max_ge [simp]: | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2528 | assumes "finite A" and "x \<in> A" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2529 | shows "x \<le> Max A" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2530 | proof - | 
| 26465 | 2531 | invoke lower_semilattice ["op \<ge>" "op >" max] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2532 | by (rule max_lattice) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2533 | from assms show ?thesis by (simp add: Max_def fold1_belowI) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2534 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2535 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2536 | lemma Min_ge_iff [simp, noatp]: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2537 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2538 | shows "x \<le> Min A \<longleftrightarrow> (\<forall>a\<in>A. x \<le> a)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2539 | proof - | 
| 26465 | 2540 | interpret lower_semilattice ["op \<le>" "op <" min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2541 | by (rule min_lattice) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2542 | from assms show ?thesis by (simp add: Min_def below_fold1_iff) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2543 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2544 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2545 | lemma Max_le_iff [simp, noatp]: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2546 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2547 | shows "Max A \<le> x \<longleftrightarrow> (\<forall>a\<in>A. a \<le> x)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2548 | proof - | 
| 26465 | 2549 | invoke lower_semilattice ["op \<ge>" "op >" max] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2550 | by (rule max_lattice) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2551 | from assms show ?thesis by (simp add: Max_def below_fold1_iff) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2552 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2553 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2554 | lemma Min_gr_iff [simp, noatp]: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2555 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2556 | shows "x < Min A \<longleftrightarrow> (\<forall>a\<in>A. x < a)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2557 | proof - | 
| 26465 | 2558 | interpret lower_semilattice ["op \<le>" "op <" min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2559 | by (rule min_lattice) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2560 | from assms show ?thesis by (simp add: Min_def strict_below_fold1_iff) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2561 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2562 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2563 | lemma Max_less_iff [simp, noatp]: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2564 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2565 | shows "Max A < x \<longleftrightarrow> (\<forall>a\<in>A. a < x)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2566 | proof - | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2567 | note Max = Max_def | 
| 26465 | 2568 | interpret linorder ["op \<ge>" "op >"] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2569 | by (rule dual_linorder) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2570 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2571 | by (simp add: Max strict_below_fold1_iff [folded dual_max]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2572 | qed | 
| 18493 | 2573 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24268diff
changeset | 2574 | lemma Min_le_iff [noatp]: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2575 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2576 | shows "Min A \<le> x \<longleftrightarrow> (\<exists>a\<in>A. a \<le> x)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2577 | proof - | 
| 26465 | 2578 | interpret lower_semilattice ["op \<le>" "op <" min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2579 | by (rule min_lattice) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2580 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2581 | by (simp add: Min_def fold1_below_iff) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2582 | qed | 
| 15497 
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
 nipkow parents: 
15487diff
changeset | 2583 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24268diff
changeset | 2584 | lemma Max_ge_iff [noatp]: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2585 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2586 | shows "x \<le> Max A \<longleftrightarrow> (\<exists>a\<in>A. x \<le> a)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2587 | proof - | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2588 | note Max = Max_def | 
| 26465 | 2589 | interpret linorder ["op \<ge>" "op >"] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2590 | by (rule dual_linorder) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2591 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2592 | by (simp add: Max fold1_below_iff [folded dual_max]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2593 | qed | 
| 22917 | 2594 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24268diff
changeset | 2595 | lemma Min_less_iff [noatp]: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2596 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2597 | shows "Min A < x \<longleftrightarrow> (\<exists>a\<in>A. a < x)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2598 | proof - | 
| 26465 | 2599 | interpret lower_semilattice ["op \<le>" "op <" min] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2600 | by (rule min_lattice) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2601 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2602 | by (simp add: Min_def fold1_strict_below_iff) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2603 | qed | 
| 22917 | 2604 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24268diff
changeset | 2605 | lemma Max_gr_iff [noatp]: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2606 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2607 | shows "x < Max A \<longleftrightarrow> (\<exists>a\<in>A. x < a)" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2608 | proof - | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2609 | note Max = Max_def | 
| 26465 | 2610 | interpret linorder ["op \<ge>" "op >"] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2611 | by (rule dual_linorder) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2612 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2613 | by (simp add: Max fold1_strict_below_iff [folded dual_max]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2614 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2615 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2616 | lemma Min_antimono: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2617 |   assumes "M \<subseteq> N" and "M \<noteq> {}" and "finite N"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2618 | shows "Min N \<le> Min M" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2619 | proof - | 
| 26465 | 2620 | interpret distrib_lattice ["op \<le>" "op <" min max] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2621 | by (rule distrib_lattice_min_max) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2622 | from assms show ?thesis by (simp add: Min_def fold1_antimono) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2623 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2624 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2625 | lemma Max_mono: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2626 |   assumes "M \<subseteq> N" and "M \<noteq> {}" and "finite N"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2627 | shows "Max M \<le> Max N" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2628 | proof - | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2629 | note Max = Max_def | 
| 26465 | 2630 | interpret linorder ["op \<ge>" "op >"] | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2631 | by (rule dual_linorder) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2632 | from assms show ?thesis | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2633 | by (simp add: Max fold1_antimono [folded dual_max]) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 2634 | qed | 
| 22917 | 2635 | |
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2636 | lemma finite_linorder_induct[consumes 1, case_names empty insert]: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2637 |  "finite A \<Longrightarrow> P {} \<Longrightarrow>
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2638 | (!!A b. finite A \<Longrightarrow> ALL a:A. a < b \<Longrightarrow> P A \<Longrightarrow> P(insert b A)) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2639 | \<Longrightarrow> P A" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2640 | proof (induct A rule: measure_induct_rule[where f=card]) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2641 | fix A :: "'a set" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2642 |   assume IH: "!! B. card B < card A \<Longrightarrow> finite B \<Longrightarrow> P {} \<Longrightarrow>
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2643 | (!!A b. finite A \<Longrightarrow> (\<forall>a\<in>A. a<b) \<Longrightarrow> P A \<Longrightarrow> P (insert b A)) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2644 | \<Longrightarrow> P B" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2645 |   and "finite A" and "P {}"
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2646 | and step: "!!A b. \<lbrakk>finite A; \<forall>a\<in>A. a < b; P A\<rbrakk> \<Longrightarrow> P (insert b A)" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2647 | show "P A" | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2648 |   proof (cases "A = {}")
 | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2649 |     assume "A = {}" thus "P A" using `P {}` by simp
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2650 | next | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2651 |     let ?B = "A - {Max A}" let ?A = "insert (Max A) ?B"
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2652 |     assume "A \<noteq> {}"
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2653 | with `finite A` have "Max A : A" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2654 | hence A: "?A = A" using insert_Diff_single insert_absorb by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2655 | note card_Diff1_less[OF `finite A` `Max A : A`] | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2656 | moreover have "finite ?B" using `finite A` by simp | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2657 |     ultimately have "P ?B" using `P {}` step IH by blast
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2658 | moreover have "\<forall>a\<in>?B. a < Max A" | 
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26748diff
changeset | 2659 | using Max_ge [OF `finite A`] by fastsimp | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2660 | ultimately show "P A" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2661 | using A insert_Diff_single step[OF `finite ?B`] by fastsimp | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2662 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2663 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26465diff
changeset | 2664 | |
| 22917 | 2665 | end | 
| 2666 | ||
| 24380 
c215e256beca
moved ordered_ab_semigroup_add to OrderedGroup.thy
 haftmann parents: 
24342diff
changeset | 2667 | context ordered_ab_semigroup_add | 
| 22917 | 2668 | begin | 
| 2669 | ||
| 2670 | lemma add_Min_commute: | |
| 2671 | fixes k | |
| 25062 | 2672 |   assumes "finite N" and "N \<noteq> {}"
 | 
| 2673 |   shows "k + Min N = Min {k + m | m. m \<in> N}"
 | |
| 2674 | proof - | |
| 2675 | have "\<And>x y. k + min x y = min (k + x) (k + y)" | |
| 2676 | by (simp add: min_def not_le) | |
| 2677 | (blast intro: antisym less_imp_le add_left_mono) | |
| 2678 | with assms show ?thesis | |
| 2679 | using hom_Min_commute [of "plus k" N] | |
| 2680 | by simp (blast intro: arg_cong [where f = Min]) | |
| 2681 | qed | |
| 22917 | 2682 | |
| 2683 | lemma add_Max_commute: | |
| 2684 | fixes k | |
| 25062 | 2685 |   assumes "finite N" and "N \<noteq> {}"
 | 
| 2686 |   shows "k + Max N = Max {k + m | m. m \<in> N}"
 | |
| 2687 | proof - | |
| 2688 | have "\<And>x y. k + max x y = max (k + x) (k + y)" | |
| 2689 | by (simp add: max_def not_le) | |
| 2690 | (blast intro: antisym less_imp_le add_left_mono) | |
| 2691 | with assms show ?thesis | |
| 2692 | using hom_Max_commute [of "plus k" N] | |
| 2693 | by simp (blast intro: arg_cong [where f = Max]) | |
| 2694 | qed | |
| 22917 | 2695 | |
| 2696 | end | |
| 2697 | ||
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 2698 | end |