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