src/HOL/Groups_Big.thy
author wenzelm
Mon, 25 Apr 2016 16:09:26 +0200
changeset 63040 eb4ddd18d635
parent 62481 b5d8e57826df
child 63092 a949b2a5f51d
permissions -rw-r--r--
eliminated old 'def'; tuned comments;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Groups_Big.thy
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     2
    Author:     Tobias Nipkow, Lawrence C Paulson and Markus Wenzel
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     3
                with contributions by Jeremy Avigad
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     4
*)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     5
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
     6
section \<open>Big sum and product over finite (non-empty) sets\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     7
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     8
theory Groups_Big
62481
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
     9
imports Finite_Set Power
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    10
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    11
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
    12
subsection \<open>Generic monoid operation over a set\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    13
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    14
no_notation times (infixl "*" 70)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    15
no_notation Groups.one ("1")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    16
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    17
locale comm_monoid_set = comm_monoid
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    18
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    19
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    20
interpretation comp_fun_commute f
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61032
diff changeset
    21
  by standard (simp add: fun_eq_iff left_commute)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    22
54745
46e441e61ff5 disambiguation of interpretation prefixes
haftmann
parents: 54744
diff changeset
    23
interpretation comp?: comp_fun_commute "f \<circ> g"
46e441e61ff5 disambiguation of interpretation prefixes
haftmann
parents: 54744
diff changeset
    24
  by (fact comp_comp_fun_commute)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    25
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    26
definition F :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b set \<Rightarrow> 'a"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    27
where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    28
  eq_fold: "F g A = Finite_Set.fold (f \<circ> g) 1 A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    29
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    30
lemma infinite [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    31
  "\<not> finite A \<Longrightarrow> F g A = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    32
  by (simp add: eq_fold)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    33
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    34
lemma empty [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    35
  "F g {} = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    36
  by (simp add: eq_fold)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    37
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    38
lemma insert [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    39
  assumes "finite A" and "x \<notin> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    40
  shows "F g (insert x A) = g x * F g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    41
  using assms by (simp add: eq_fold)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    42
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    43
lemma remove:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    44
  assumes "finite A" and "x \<in> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    45
  shows "F g A = g x * F g (A - {x})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    46
proof -
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
    47
  from \<open>x \<in> A\<close> obtain B where A: "A = insert x B" and "x \<notin> B"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    48
    by (auto dest: mk_disjoint_insert)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
    49
  moreover from \<open>finite A\<close> A have "finite B" by simp
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    50
  ultimately show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    51
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    52
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    53
lemma insert_remove:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    54
  assumes "finite A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    55
  shows "F g (insert x A) = g x * F g (A - {x})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    56
  using assms by (cases "x \<in> A") (simp_all add: remove insert_absorb)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    57
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    58
lemma neutral:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    59
  assumes "\<forall>x\<in>A. g x = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    60
  shows "F g A = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    61
  using assms by (induct A rule: infinite_finite_induct) simp_all
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    62
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    63
lemma neutral_const [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    64
  "F (\<lambda>_. 1) A = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    65
  by (simp add: neutral)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    66
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    67
lemma union_inter:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    68
  assumes "finite A" and "finite B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    69
  shows "F g (A \<union> B) * F g (A \<inter> B) = F g A * F g B"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61776
diff changeset
    70
  \<comment> \<open>The reversed orientation looks more natural, but LOOPS as a simprule!\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    71
using assms proof (induct A)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    72
  case empty then show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    73
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    74
  case (insert x A) then show ?case
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    75
    by (auto simp add: insert_absorb Int_insert_left commute [of _ "g x"] assoc left_commute)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    76
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    77
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    78
corollary union_inter_neutral:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    79
  assumes "finite A" and "finite B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    80
  and I0: "\<forall>x \<in> A \<inter> B. g x = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    81
  shows "F g (A \<union> B) = F g A * F g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    82
  using assms by (simp add: union_inter [symmetric] neutral)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    83
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    84
corollary union_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    85
  assumes "finite A" and "finite B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    86
  assumes "A \<inter> B = {}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    87
  shows "F g (A \<union> B) = F g A * F g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    88
  using assms by (simp add: union_inter_neutral)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    89
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    90
lemma union_diff2:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    91
  assumes "finite A" and "finite B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    92
  shows "F g (A \<union> B) = F g (A - B) * F g (B - A) * F g (A \<inter> B)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    93
proof -
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    94
  have "A \<union> B = A - B \<union> (B - A) \<union> A \<inter> B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    95
    by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    96
  with assms show ?thesis by simp (subst union_disjoint, auto)+
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    97
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
    98
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    99
lemma subset_diff:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   100
  assumes "B \<subseteq> A" and "finite A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   101
  shows "F g A = F g (A - B) * F g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   102
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   103
  from assms have "finite (A - B)" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   104
  moreover from assms have "finite B" by (rule finite_subset)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   105
  moreover from assms have "(A - B) \<inter> B = {}" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   106
  ultimately have "F g (A - B \<union> B) = F g (A - B) * F g B" by (rule union_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   107
  moreover from assms have "A \<union> B = A" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   108
  ultimately show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   109
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   110
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   111
lemma setdiff_irrelevant:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   112
  assumes "finite A"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   113
  shows "F g (A - {x. g x = z}) = F g A"
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   114
  using assms by (induct A) (simp_all add: insert_Diff_if)
58195
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   115
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   116
lemma not_neutral_contains_not_neutral:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   117
  assumes "F g A \<noteq> z"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   118
  obtains a where "a \<in> A" and "g a \<noteq> z"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   119
proof -
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   120
  from assms have "\<exists>a\<in>A. g a \<noteq> z"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   121
  proof (induct A rule: infinite_finite_induct)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   122
    case (insert a A)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   123
    then show ?case by simp (rule, simp)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   124
  qed simp_all
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   125
  with that show thesis by blast
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   126
qed
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   127
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   128
lemma reindex:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   129
  assumes "inj_on h A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   130
  shows "F g (h ` A) = F (g \<circ> h) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   131
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   132
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   133
  with assms show ?thesis by (simp add: eq_fold fold_image comp_assoc)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   134
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   135
  case False with assms have "\<not> finite (h ` A)" by (blast dest: finite_imageD)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   136
  with False show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   137
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   138
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   139
lemma cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   140
  assumes "A = B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   141
  assumes g_h: "\<And>x. x \<in> B \<Longrightarrow> g x = h x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   142
  shows "F g A = F h B"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   143
  using g_h unfolding \<open>A = B\<close>
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   144
  by (induct B rule: infinite_finite_induct) auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   145
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   146
lemma strong_cong [cong]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   147
  assumes "A = B" "\<And>x. x \<in> B =simp=> g x = h x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   148
  shows "F (\<lambda>x. g x) A = F (\<lambda>x. h x) B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   149
  by (rule cong) (insert assms, simp_all add: simp_implies_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   150
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   151
lemma reindex_cong:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   152
  assumes "inj_on l B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   153
  assumes "A = l ` B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   154
  assumes "\<And>x. x \<in> B \<Longrightarrow> g (l x) = h x"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   155
  shows "F g A = F h B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   156
  using assms by (simp add: reindex)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   157
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   158
lemma UNION_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   159
  assumes "finite I" and "\<forall>i\<in>I. finite (A i)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   160
  and "\<forall>i\<in>I. \<forall>j\<in>I. i \<noteq> j \<longrightarrow> A i \<inter> A j = {}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   161
  shows "F g (UNION I A) = F (\<lambda>x. F g (A x)) I"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   162
apply (insert assms)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   163
apply (induct rule: finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   164
apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   165
apply atomize
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   166
apply (subgoal_tac "\<forall>i\<in>Fa. x \<noteq> i")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   167
 prefer 2 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   168
apply (subgoal_tac "A x Int UNION Fa A = {}")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   169
 prefer 2 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   170
apply (simp add: union_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   171
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   172
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   173
lemma Union_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   174
  assumes "\<forall>A\<in>C. finite A" "\<forall>A\<in>C. \<forall>B\<in>C. A \<noteq> B \<longrightarrow> A \<inter> B = {}"
61952
546958347e05 prefer symbols for "Union", "Inter";
wenzelm
parents: 61944
diff changeset
   175
  shows "F g (\<Union>C) = (F \<circ> F) g C"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   176
proof cases
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   177
  assume "finite C"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   178
  from UNION_disjoint [OF this assms]
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 55096
diff changeset
   179
  show ?thesis by simp
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   180
qed (auto dest: finite_UnionD intro: infinite)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   181
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   182
lemma distrib:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   183
  "F (\<lambda>x. g x * h x) A = F g A * F h A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   184
  using assms by (induct A rule: infinite_finite_induct) (simp_all add: assoc commute left_commute)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   185
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   186
lemma Sigma:
61032
b57df8eecad6 standardized some occurences of ancient "split" alias
haftmann
parents: 60974
diff changeset
   187
  "finite A \<Longrightarrow> \<forall>x\<in>A. finite (B x) \<Longrightarrow> F (\<lambda>x. F (g x) (B x)) A = F (case_prod g) (SIGMA x:A. B x)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   188
apply (subst Sigma_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   189
apply (subst UNION_disjoint, assumption, simp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   190
 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   191
apply (rule cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   192
apply rule
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   193
apply (simp add: fun_eq_iff)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   194
apply (subst UNION_disjoint, simp, simp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   195
 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   196
apply (simp add: comp_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   197
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   198
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   199
lemma related:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   200
  assumes Re: "R 1 1"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   201
  and Rop: "\<forall>x1 y1 x2 y2. R x1 x2 \<and> R y1 y2 \<longrightarrow> R (x1 * y1) (x2 * y2)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   202
  and fS: "finite S" and Rfg: "\<forall>x\<in>S. R (h x) (g x)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   203
  shows "R (F h S) (F g S)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   204
  using fS by (rule finite_subset_induct) (insert assms, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   205
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   206
lemma mono_neutral_cong_left:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   207
  assumes "finite T" and "S \<subseteq> T" and "\<forall>i \<in> T - S. h i = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   208
  and "\<And>x. x \<in> S \<Longrightarrow> g x = h x" shows "F g S = F h T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   209
proof-
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   210
  have eq: "T = S \<union> (T - S)" using \<open>S \<subseteq> T\<close> by blast
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   211
  have d: "S \<inter> (T - S) = {}" using \<open>S \<subseteq> T\<close> by blast
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   212
  from \<open>finite T\<close> \<open>S \<subseteq> T\<close> have f: "finite S" "finite (T - S)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   213
    by (auto intro: finite_subset)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   214
  show ?thesis using assms(4)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   215
    by (simp add: union_disjoint [OF f d, unfolded eq [symmetric]] neutral [OF assms(3)])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   216
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   217
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   218
lemma mono_neutral_cong_right:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   219
  "\<lbrakk> finite T; S \<subseteq> T; \<forall>i \<in> T - S. g i = 1; \<And>x. x \<in> S \<Longrightarrow> g x = h x \<rbrakk>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   220
   \<Longrightarrow> F g T = F h S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   221
  by (auto intro!: mono_neutral_cong_left [symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   222
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   223
lemma mono_neutral_left:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   224
  "\<lbrakk> finite T; S \<subseteq> T; \<forall>i \<in> T - S. g i = 1 \<rbrakk> \<Longrightarrow> F g S = F g T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   225
  by (blast intro: mono_neutral_cong_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   226
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   227
lemma mono_neutral_right:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   228
  "\<lbrakk> finite T;  S \<subseteq> T;  \<forall>i \<in> T - S. g i = 1 \<rbrakk> \<Longrightarrow> F g T = F g S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   229
  by (blast intro!: mono_neutral_left [symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   230
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   231
lemma reindex_bij_betw: "bij_betw h S T \<Longrightarrow> F (\<lambda>x. g (h x)) S = F g T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   232
  by (auto simp: bij_betw_def reindex)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   233
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   234
lemma reindex_bij_witness:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   235
  assumes witness:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   236
    "\<And>a. a \<in> S \<Longrightarrow> i (j a) = a"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   237
    "\<And>a. a \<in> S \<Longrightarrow> j a \<in> T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   238
    "\<And>b. b \<in> T \<Longrightarrow> j (i b) = b"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   239
    "\<And>b. b \<in> T \<Longrightarrow> i b \<in> S"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   240
  assumes eq:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   241
    "\<And>a. a \<in> S \<Longrightarrow> h (j a) = g a"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   242
  shows "F g S = F h T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   243
proof -
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   244
  have "bij_betw j S T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   245
    using bij_betw_byWitness[where A=S and f=j and f'=i and A'=T] witness by auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   246
  moreover have "F g S = F (\<lambda>x. h (j x)) S"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   247
    by (intro cong) (auto simp: eq)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   248
  ultimately show ?thesis
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   249
    by (simp add: reindex_bij_betw)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   250
qed
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   251
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   252
lemma reindex_bij_betw_not_neutral:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   253
  assumes fin: "finite S'" "finite T'"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   254
  assumes bij: "bij_betw h (S - S') (T - T')"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   255
  assumes nn:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   256
    "\<And>a. a \<in> S' \<Longrightarrow> g (h a) = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   257
    "\<And>b. b \<in> T' \<Longrightarrow> g b = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   258
  shows "F (\<lambda>x. g (h x)) S = F g T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   259
proof -
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   260
  have [simp]: "finite S \<longleftrightarrow> finite T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   261
    using bij_betw_finite[OF bij] fin by auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   262
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   263
  show ?thesis
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   264
  proof cases
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   265
    assume "finite S"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   266
    with nn have "F (\<lambda>x. g (h x)) S = F (\<lambda>x. g (h x)) (S - S')"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   267
      by (intro mono_neutral_cong_right) auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   268
    also have "\<dots> = F g (T - T')"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   269
      using bij by (rule reindex_bij_betw)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   270
    also have "\<dots> = F g T"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   271
      using nn \<open>finite S\<close> by (intro mono_neutral_cong_left) auto
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   272
    finally show ?thesis .
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   273
  qed simp
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   274
qed
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   275
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   276
lemma reindex_nontrivial:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   277
  assumes "finite A"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   278
  and nz: "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<noteq> y \<Longrightarrow> h x = h y \<Longrightarrow> g (h x) = 1"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   279
  shows "F g (h ` A) = F (g \<circ> h) A"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   280
proof (subst reindex_bij_betw_not_neutral [symmetric])
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   281
  show "bij_betw h (A - {x \<in> A. (g \<circ> h) x = 1}) (h ` A - h ` {x \<in> A. (g \<circ> h) x = 1})"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   282
    using nz by (auto intro!: inj_onI simp: bij_betw_def)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   283
qed (insert \<open>finite A\<close>, auto)
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   284
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   285
lemma reindex_bij_witness_not_neutral:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   286
  assumes fin: "finite S'" "finite T'"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   287
  assumes witness:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   288
    "\<And>a. a \<in> S - S' \<Longrightarrow> i (j a) = a"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   289
    "\<And>a. a \<in> S - S' \<Longrightarrow> j a \<in> T - T'"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   290
    "\<And>b. b \<in> T - T' \<Longrightarrow> j (i b) = b"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   291
    "\<And>b. b \<in> T - T' \<Longrightarrow> i b \<in> S - S'"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   292
  assumes nn:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   293
    "\<And>a. a \<in> S' \<Longrightarrow> g a = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   294
    "\<And>b. b \<in> T' \<Longrightarrow> h b = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   295
  assumes eq:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   296
    "\<And>a. a \<in> S \<Longrightarrow> h (j a) = g a"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   297
  shows "F g S = F h T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   298
proof -
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   299
  have bij: "bij_betw j (S - (S' \<inter> S)) (T - (T' \<inter> T))"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   300
    using witness by (intro bij_betw_byWitness[where f'=i]) auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   301
  have F_eq: "F g S = F (\<lambda>x. h (j x)) S"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   302
    by (intro cong) (auto simp: eq)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   303
  show ?thesis
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   304
    unfolding F_eq using fin nn eq
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   305
    by (intro reindex_bij_betw_not_neutral[OF _ _ bij]) auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   306
qed
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   307
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   308
lemma delta:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   309
  assumes fS: "finite S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   310
  shows "F (\<lambda>k. if k = a then b k else 1) S = (if a \<in> S then b a else 1)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   311
proof-
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   312
  let ?f = "(\<lambda>k. if k=a then b k else 1)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   313
  { assume a: "a \<notin> S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   314
    hence "\<forall>k\<in>S. ?f k = 1" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   315
    hence ?thesis  using a by simp }
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   316
  moreover
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   317
  { assume a: "a \<in> S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   318
    let ?A = "S - {a}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   319
    let ?B = "{a}"
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   320
    have eq: "S = ?A \<union> ?B" using a by blast
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   321
    have dj: "?A \<inter> ?B = {}" by simp
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   322
    from fS have fAB: "finite ?A" "finite ?B" by auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   323
    have "F ?f S = F ?f ?A * F ?f ?B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   324
      using union_disjoint [OF fAB dj, of ?f, unfolded eq [symmetric]]
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   325
      by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   326
    then have ?thesis using a by simp }
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   327
  ultimately show ?thesis by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   328
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   329
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   330
lemma delta':
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   331
  assumes fS: "finite S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   332
  shows "F (\<lambda>k. if a = k then b k else 1) S = (if a \<in> S then b a else 1)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   333
  using delta [OF fS, of a b, symmetric] by (auto intro: cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   334
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   335
lemma If_cases:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   336
  fixes P :: "'b \<Rightarrow> bool" and g h :: "'b \<Rightarrow> 'a"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   337
  assumes fA: "finite A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   338
  shows "F (\<lambda>x. if P x then h x else g x) A =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   339
    F h (A \<inter> {x. P x}) * F g (A \<inter> - {x. P x})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   340
proof -
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   341
  have a: "A = A \<inter> {x. P x} \<union> A \<inter> -{x. P x}"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   342
          "(A \<inter> {x. P x}) \<inter> (A \<inter> -{x. P x}) = {}"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   343
    by blast+
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   344
  from fA
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   345
  have f: "finite (A \<inter> {x. P x})" "finite (A \<inter> -{x. P x})" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   346
  let ?g = "\<lambda>x. if P x then h x else g x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   347
  from union_disjoint [OF f a(2), of ?g] a(1)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   348
  show ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   349
    by (subst (1 2) cong) simp_all
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   350
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   351
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   352
lemma cartesian_product:
61943
7fba644ed827 discontinued ASCII replacement syntax <*>;
wenzelm
parents: 61799
diff changeset
   353
   "F (\<lambda>x. F (g x) B) A = F (case_prod g) (A \<times> B)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   354
apply (rule sym)
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   355
apply (cases "finite A")
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   356
 apply (cases "finite B")
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   357
  apply (simp add: Sigma)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   358
 apply (cases "A={}", simp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   359
 apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   360
apply (auto intro: infinite dest: finite_cartesian_productD2)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   361
apply (cases "B = {}") apply (auto intro: infinite dest: finite_cartesian_productD1)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   362
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   363
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   364
lemma inter_restrict:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   365
  assumes "finite A"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   366
  shows "F g (A \<inter> B) = F (\<lambda>x. if x \<in> B then g x else 1) A"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   367
proof -
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   368
  let ?g = "\<lambda>x. if x \<in> A \<inter> B then g x else 1"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   369
  have "\<forall>i\<in>A - A \<inter> B. (if i \<in> A \<inter> B then g i else 1) = 1"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   370
   by simp
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   371
  moreover have "A \<inter> B \<subseteq> A" by blast
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   372
  ultimately have "F ?g (A \<inter> B) = F ?g A" using \<open>finite A\<close>
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   373
    by (intro mono_neutral_left) auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   374
  then show ?thesis by simp
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   375
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   376
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   377
lemma inter_filter:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   378
  "finite A \<Longrightarrow> F g {x \<in> A. P x} = F (\<lambda>x. if P x then g x else 1) A"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   379
  by (simp add: inter_restrict [symmetric, of A "{x. P x}" g, simplified mem_Collect_eq] Int_def)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   380
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   381
lemma Union_comp:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   382
  assumes "\<forall>A \<in> B. finite A"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   383
    and "\<And>A1 A2 x. A1 \<in> B \<Longrightarrow> A2 \<in> B  \<Longrightarrow> A1 \<noteq> A2 \<Longrightarrow> x \<in> A1 \<Longrightarrow> x \<in> A2 \<Longrightarrow> g x = 1"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   384
  shows "F g (\<Union>B) = (F \<circ> F) g B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   385
using assms proof (induct B rule: infinite_finite_induct)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   386
  case (infinite A)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   387
  then have "\<not> finite (\<Union>A)" by (blast dest: finite_UnionD)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   388
  with infinite show ?case by simp
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   389
next
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   390
  case empty then show ?case by simp
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   391
next
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   392
  case (insert A B)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   393
  then have "finite A" "finite B" "finite (\<Union>B)" "A \<notin> B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   394
    and "\<forall>x\<in>A \<inter> \<Union>B. g x = 1"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   395
    and H: "F g (\<Union>B) = (F o F) g B" by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   396
  then have "F g (A \<union> \<Union>B) = F g A * F g (\<Union>B)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   397
    by (simp add: union_inter_neutral)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   398
  with \<open>finite B\<close> \<open>A \<notin> B\<close> show ?case
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   399
    by (simp add: H)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   400
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   401
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   402
lemma commute:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   403
  "F (\<lambda>i. F (g i) B) A = F (\<lambda>j. F (\<lambda>i. g i j) A) B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   404
  unfolding cartesian_product
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   405
  by (rule reindex_bij_witness [where i = "\<lambda>(i, j). (j, i)" and j = "\<lambda>(i, j). (j, i)"]) auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   406
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   407
lemma commute_restrict:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   408
  "finite A \<Longrightarrow> finite B \<Longrightarrow>
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   409
    F (\<lambda>x. F (g x) {y. y \<in> B \<and> R x y}) A = F (\<lambda>y. F (\<lambda>x. g x y) {x. x \<in> A \<and> R x y}) B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   410
  by (simp add: inter_filter) (rule commute)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   411
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   412
lemma Plus:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   413
  fixes A :: "'b set" and B :: "'c set"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   414
  assumes fin: "finite A" "finite B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   415
  shows "F g (A <+> B) = F (g \<circ> Inl) A * F (g \<circ> Inr) B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   416
proof -
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   417
  have "A <+> B = Inl ` A \<union> Inr ` B" by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   418
  moreover from fin have "finite (Inl ` A :: ('b + 'c) set)" "finite (Inr ` B :: ('b + 'c) set)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   419
    by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   420
  moreover have "Inl ` A \<inter> Inr ` B = ({} :: ('b + 'c) set)" by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   421
  moreover have "inj_on (Inl :: 'b \<Rightarrow> 'b + 'c) A" "inj_on (Inr :: 'c \<Rightarrow> 'b + 'c) B"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   422
    by (auto intro: inj_onI)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   423
  ultimately show ?thesis using fin
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   424
    by (simp add: union_disjoint reindex)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   425
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   426
58195
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   427
lemma same_carrier:
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   428
  assumes "finite C"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   429
  assumes subset: "A \<subseteq> C" "B \<subseteq> C"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   430
  assumes trivial: "\<And>a. a \<in> C - A \<Longrightarrow> g a = 1" "\<And>b. b \<in> C - B \<Longrightarrow> h b = 1"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   431
  shows "F g A = F h B \<longleftrightarrow> F g C = F h C"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   432
proof -
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   433
  from \<open>finite C\<close> subset have
58195
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   434
    "finite A" and "finite B" and "finite (C - A)" and "finite (C - B)"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   435
    by (auto elim: finite_subset)
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   436
  from subset have [simp]: "A - (C - A) = A" by auto
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   437
  from subset have [simp]: "B - (C - B) = B" by auto
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   438
  from subset have "C = A \<union> (C - A)" by auto
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   439
  then have "F g C = F g (A \<union> (C - A))" by simp
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   440
  also have "\<dots> = F g (A - (C - A)) * F g (C - A - A) * F g (A \<inter> (C - A))"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   441
    using \<open>finite A\<close> \<open>finite (C - A)\<close> by (simp only: union_diff2)
58195
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   442
  finally have P: "F g C = F g A" using trivial by simp
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   443
  from subset have "C = B \<union> (C - B)" by auto
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   444
  then have "F h C = F h (B \<union> (C - B))" by simp
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   445
  also have "\<dots> = F h (B - (C - B)) * F h (C - B - B) * F h (B \<inter> (C - B))"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   446
    using \<open>finite B\<close> \<open>finite (C - B)\<close> by (simp only: union_diff2)
58195
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   447
  finally have Q: "F h C = F h B" using trivial by simp
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   448
  from P Q show ?thesis by simp
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   449
qed
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   450
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   451
lemma same_carrierI:
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   452
  assumes "finite C"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   453
  assumes subset: "A \<subseteq> C" "B \<subseteq> C"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   454
  assumes trivial: "\<And>a. a \<in> C - A \<Longrightarrow> g a = 1" "\<And>b. b \<in> C - B \<Longrightarrow> h b = 1"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   455
  assumes "F g C = F h C"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   456
  shows "F g A = F h B"
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   457
  using assms same_carrier [of C A B] by simp
1fee63e0377d added various facts
haftmann
parents: 57512
diff changeset
   458
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   459
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   460
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   461
notation times (infixl "*" 70)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   462
notation Groups.one ("1")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   463
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   464
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   465
subsection \<open>Generalized summation over a set\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   466
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   467
context comm_monoid_add
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   468
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   469
61605
1bf7b186542e qualifier is mandatory by default;
wenzelm
parents: 61566
diff changeset
   470
sublocale setsum: comm_monoid_set plus 0
61776
57bb7da5c867 modernized
haftmann
parents: 61605
diff changeset
   471
defines
57bb7da5c867 modernized
haftmann
parents: 61605
diff changeset
   472
  setsum = setsum.F ..
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   473
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   474
abbreviation Setsum ("\<Sum>_" [1000] 999)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   475
  where "\<Sum>A \<equiv> setsum (\<lambda>x. x) A"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   476
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   477
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   478
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   479
text \<open>Now: lot's of fancy syntax. First, @{term "setsum (\<lambda>x. e) A"} is written \<open>\<Sum>x\<in>A. e\<close>.\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   480
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   481
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   482
  "_setsum" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b::comm_monoid_add"  ("(3SUM _:_./ _)" [0, 51, 10] 10)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   483
syntax
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   484
  "_setsum" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b::comm_monoid_add"  ("(2\<Sum>_\<in>_./ _)" [0, 51, 10] 10)
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61776
diff changeset
   485
translations \<comment> \<open>Beware of argument permutation!\<close>
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   486
  "\<Sum>i\<in>A. b" \<rightleftharpoons> "CONST setsum (\<lambda>i. b) A"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   487
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   488
text \<open>Instead of @{term"\<Sum>x\<in>{x. P}. e"} we introduce the shorter \<open>\<Sum>x|P. e\<close>.\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   489
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   490
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   491
  "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a"  ("(3SUM _ |/ _./ _)" [0, 0, 10] 10)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   492
syntax
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   493
  "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a"  ("(2\<Sum>_ | (_)./ _)" [0, 0, 10] 10)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   494
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
   495
  "\<Sum>x|P. t" => "CONST setsum (\<lambda>x. t) {x. P}"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   496
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   497
print_translation \<open>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   498
let
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   499
  fun setsum_tr' [Abs (x, Tx, t), Const (@{const_syntax Collect}, _) $ Abs (y, Ty, P)] =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   500
        if x <> y then raise Match
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   501
        else
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   502
          let
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   503
            val x' = Syntax_Trans.mark_bound_body (x, Tx);
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   504
            val t' = subst_bound (x', t);
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   505
            val P' = subst_bound (x', P);
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   506
          in
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   507
            Syntax.const @{syntax_const "_qsetsum"} $ Syntax_Trans.mark_bound_abs (x, Tx) $ P' $ t'
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   508
          end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   509
    | setsum_tr' _ = raise Match;
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   510
in [(@{const_syntax setsum}, K setsum_tr')] end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   511
\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   512
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   513
text \<open>TODO generalization candidates\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   514
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   515
lemma (in comm_monoid_add) setsum_image_gen:
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   516
  assumes fS: "finite S"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   517
  shows "setsum g S = setsum (\<lambda>y. setsum g {x. x \<in> S \<and> f x = y}) (f ` S)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   518
proof-
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   519
  { fix x assume "x \<in> S" then have "{y. y\<in> f`S \<and> f x = y} = {f x}" by auto }
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   520
  hence "setsum g S = setsum (\<lambda>x. setsum (\<lambda>y. g x) {y. y\<in> f`S \<and> f x = y}) S"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   521
    by simp
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   522
  also have "\<dots> = setsum (\<lambda>y. setsum g {x. x \<in> S \<and> f x = y}) (f ` S)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   523
    by (rule setsum.commute_restrict [OF fS finite_imageI [OF fS]])
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   524
  finally show ?thesis .
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   525
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   526
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   527
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   528
subsubsection \<open>Properties in more restricted classes of structures\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   529
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   530
lemma setsum_Un: "finite A ==> finite B ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   531
  (setsum f (A Un B) :: 'a :: ab_group_add) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   532
   setsum f A + setsum f B - setsum f (A Int B)"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   533
by (subst setsum.union_inter [symmetric], auto simp add: algebra_simps)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   534
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   535
lemma setsum_Un2:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   536
  assumes "finite (A \<union> B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   537
  shows "setsum f (A \<union> B) = setsum f (A - B) + setsum f (B - A) + setsum f (A \<inter> B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   538
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   539
  have "A \<union> B = A - B \<union> (B - A) \<union> A \<inter> B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   540
    by auto
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   541
  with assms show ?thesis by simp (subst setsum.union_disjoint, auto)+
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   542
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   543
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   544
lemma setsum_diff1: "finite A \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   545
  (setsum f (A - {a}) :: ('a::ab_group_add)) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   546
  (if a:A then setsum f A - f a else setsum f A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   547
by (erule finite_induct) (auto simp add: insert_Diff_if)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   548
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   549
lemma setsum_diff:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   550
  assumes le: "finite A" "B \<subseteq> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   551
  shows "setsum f (A - B) = setsum f A - ((setsum f B)::('a::ab_group_add))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   552
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   553
  from le have finiteB: "finite B" using finite_subset by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   554
  show ?thesis using finiteB le
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   555
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   556
    case empty
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   557
    thus ?case by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   558
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   559
    case (insert x F)
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   560
    thus ?case using le finiteB
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   561
      by (simp add: Diff_insert[where a=x and B=F] setsum_diff1 insert_absorb)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   562
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   563
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   564
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   565
lemma (in ordered_comm_monoid_add) setsum_mono:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   566
  assumes le: "\<And>i. i\<in>K \<Longrightarrow> f i \<le> g i"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   567
  shows "(\<Sum>i\<in>K. f i) \<le> (\<Sum>i\<in>K. g i)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   568
proof (cases "finite K")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   569
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   570
  thus ?thesis using le
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   571
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   572
    case empty
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   573
    thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   574
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   575
    case insert
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   576
    thus ?case using add_mono by fastforce
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   577
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   578
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   579
  case False then show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   580
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   581
62377
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   582
lemma (in strict_ordered_comm_monoid_add) setsum_strict_mono:
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   583
  assumes "finite A"  "A \<noteq> {}" and "\<And>x. x \<in> A \<Longrightarrow> f x < g x"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   584
  shows "setsum f A < setsum g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   585
  using assms
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   586
proof (induct rule: finite_ne_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   587
  case singleton thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   588
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   589
  case insert thus ?case by (auto simp: add_strict_mono)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   590
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   591
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   592
lemma setsum_strict_mono_ex1:
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   593
  fixes f g :: "'i \<Rightarrow> 'a::ordered_cancel_comm_monoid_add"
62377
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   594
  assumes "finite A" and "\<forall>x\<in>A. f x \<le> g x" and "\<exists>a\<in>A. f a < g a"
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   595
  shows "setsum f A < setsum g A"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   596
proof-
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   597
  from assms(3) obtain a where a: "a:A" "f a < g a" by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   598
  have "setsum f A = setsum f ((A-{a}) \<union> {a})"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   599
    by(simp add:insert_absorb[OF \<open>a:A\<close>])
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   600
  also have "\<dots> = setsum f (A-{a}) + setsum f {a}"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   601
    using \<open>finite A\<close> by(subst setsum.union_disjoint) auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   602
  also have "setsum f (A-{a}) \<le> setsum g (A-{a})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   603
    by(rule setsum_mono)(simp add: assms(2))
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   604
  also have "setsum f {a} < setsum g {a}" using a by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   605
  also have "setsum g (A - {a}) + setsum g {a} = setsum g((A-{a}) \<union> {a})"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   606
    using \<open>finite A\<close> by(subst setsum.union_disjoint[symmetric]) auto
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   607
  also have "\<dots> = setsum g A" by(simp add:insert_absorb[OF \<open>a:A\<close>])
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   608
  finally show ?thesis by (auto simp add: add_right_mono add_strict_left_mono)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   609
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   610
59416
fde2659085e1 generalized sum_diff_distrib to setsum_subtractf_nat
hoelzl
parents: 59010
diff changeset
   611
lemma setsum_negf: "(\<Sum>x\<in>A. - f x::'a::ab_group_add) = - (\<Sum>x\<in>A. f x)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   612
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   613
  case True thus ?thesis by (induct set: finite) auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   614
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   615
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   616
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   617
59416
fde2659085e1 generalized sum_diff_distrib to setsum_subtractf_nat
hoelzl
parents: 59010
diff changeset
   618
lemma setsum_subtractf: "(\<Sum>x\<in>A. f x - g x::'a::ab_group_add) = (\<Sum>x\<in>A. f x) - (\<Sum>x\<in>A. g x)"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   619
  using setsum.distrib [of f "- g" A] by (simp add: setsum_negf)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   620
59416
fde2659085e1 generalized sum_diff_distrib to setsum_subtractf_nat
hoelzl
parents: 59010
diff changeset
   621
lemma setsum_subtractf_nat:
fde2659085e1 generalized sum_diff_distrib to setsum_subtractf_nat
hoelzl
parents: 59010
diff changeset
   622
  "(\<And>x. x \<in> A \<Longrightarrow> g x \<le> f x) \<Longrightarrow> (\<Sum>x\<in>A. f x - g x::nat) = (\<Sum>x\<in>A. f x) - (\<Sum>x\<in>A. g x)"
fde2659085e1 generalized sum_diff_distrib to setsum_subtractf_nat
hoelzl
parents: 59010
diff changeset
   623
  by (induction A rule: infinite_finite_induct) (auto simp: setsum_mono)
fde2659085e1 generalized sum_diff_distrib to setsum_subtractf_nat
hoelzl
parents: 59010
diff changeset
   624
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   625
lemma (in ordered_comm_monoid_add) setsum_nonneg:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   626
  assumes nn: "\<forall>x\<in>A. 0 \<le> f x"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   627
  shows "0 \<le> setsum f A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   628
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   629
  case True thus ?thesis using nn
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   630
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   631
    case empty then show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   632
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   633
    case (insert x F)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   634
    then have "0 + 0 \<le> f x + setsum f F" by (blast intro: add_mono)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   635
    with insert show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   636
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   637
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   638
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   639
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   640
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   641
lemma (in ordered_comm_monoid_add) setsum_nonpos:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   642
  assumes np: "\<forall>x\<in>A. f x \<le> 0"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   643
  shows "setsum f A \<le> 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   644
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   645
  case True thus ?thesis using np
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   646
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   647
    case empty then show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   648
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   649
    case (insert x F)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   650
    then have "f x + setsum f F \<le> 0 + 0" by (blast intro: add_mono)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   651
    with insert show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   652
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   653
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   654
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   655
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   656
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   657
lemma (in ordered_comm_monoid_add) setsum_nonneg_eq_0_iff:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   658
  "finite A \<Longrightarrow> \<forall>x\<in>A. 0 \<le> f x \<Longrightarrow> setsum f A = 0 \<longleftrightarrow> (\<forall>x\<in>A. f x = 0)"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   659
  by (induct set: finite, simp) (simp add: add_nonneg_eq_0_iff setsum_nonneg)
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   660
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   661
lemma (in ordered_comm_monoid_add) setsum_nonneg_0:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   662
  "finite s \<Longrightarrow> (\<And>i. i \<in> s \<Longrightarrow> f i \<ge> 0) \<Longrightarrow> (\<Sum> i \<in> s. f i) = 0 \<Longrightarrow> i \<in> s \<Longrightarrow> f i = 0"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   663
  by (simp add: setsum_nonneg_eq_0_iff)
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   664
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   665
lemma (in ordered_comm_monoid_add) setsum_nonneg_leq_bound:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   666
  assumes "finite s" "\<And>i. i \<in> s \<Longrightarrow> f i \<ge> 0" "(\<Sum>i \<in> s. f i) = B" "i \<in> s"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   667
  shows "f i \<le> B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   668
proof -
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   669
  have "f i \<le> f i + (\<Sum>i \<in> s - {i}. f i)"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   670
    using assms by (intro add_increasing2 setsum_nonneg) auto
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   671
  also have "\<dots> = B"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   672
    using setsum.remove[of s i f] assms by simp
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   673
  finally show ?thesis by auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   674
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   675
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   676
lemma (in ordered_comm_monoid_add) setsum_mono2:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   677
  assumes fin: "finite B" and sub: "A \<subseteq> B" and nn: "\<And>b. b \<in> B-A \<Longrightarrow> 0 \<le> f b"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   678
  shows "setsum f A \<le> setsum f B"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   679
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   680
  have "setsum f A \<le> setsum f A + setsum f (B-A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   681
    by(simp add: add_increasing2[OF setsum_nonneg] nn Ball_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   682
  also have "\<dots> = setsum f (A \<union> (B-A))" using fin finite_subset[OF sub fin]
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   683
    by (simp add: setsum.union_disjoint del:Un_Diff_cancel)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   684
  also have "A \<union> (B-A) = B" using sub by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   685
  finally show ?thesis .
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   686
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   687
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   688
lemma (in ordered_comm_monoid_add) setsum_le_included:
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   689
  assumes "finite s" "finite t"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   690
  and "\<forall>y\<in>t. 0 \<le> g y" "(\<forall>x\<in>s. \<exists>y\<in>t. i y = x \<and> f x \<le> g y)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   691
  shows "setsum f s \<le> setsum g t"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   692
proof -
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   693
  have "setsum f s \<le> setsum (\<lambda>y. setsum g {x. x\<in>t \<and> i x = y}) s"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   694
  proof (rule setsum_mono)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   695
    fix y assume "y \<in> s"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   696
    with assms obtain z where z: "z \<in> t" "y = i z" "f y \<le> g z" by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   697
    with assms show "f y \<le> setsum g {x \<in> t. i x = y}" (is "?A y \<le> ?B y")
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   698
      using order_trans[of "?A (i z)" "setsum g {z}" "?B (i z)", intro]
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   699
      by (auto intro!: setsum_mono2)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   700
  qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   701
  also have "... \<le> setsum (\<lambda>y. setsum g {x. x\<in>t \<and> i x = y}) (i ` t)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   702
    using assms(2-4) by (auto intro!: setsum_mono2 setsum_nonneg)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   703
  also have "... \<le> setsum g t"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   704
    using assms by (auto simp: setsum_image_gen[symmetric])
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   705
  finally show ?thesis .
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   706
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   707
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   708
lemma (in ordered_comm_monoid_add) setsum_mono3:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   709
  "finite B \<Longrightarrow> A \<subseteq> B \<Longrightarrow> \<forall>x\<in>B - A. 0 \<le> f x \<Longrightarrow> setsum f A \<le> setsum f B"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   710
  by (rule setsum_mono2) auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   711
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   712
lemma (in canonically_ordered_monoid_add) setsum_eq_0_iff [simp]:
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   713
  "finite F \<Longrightarrow> (setsum f F = 0) = (\<forall>a\<in>F. f a = 0)"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   714
  by (intro ballI setsum_nonneg_eq_0_iff zero_le)
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   715
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   716
lemma setsum_right_distrib:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   717
  fixes f :: "'a => ('b::semiring_0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   718
  shows "r * setsum f A = setsum (%n. r * f n) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   719
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   720
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   721
  thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   722
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   723
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   724
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   725
    case (insert x A) thus ?case by (simp add: distrib_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   726
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   727
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   728
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   729
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   730
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   731
lemma setsum_left_distrib:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   732
  "setsum f A * (r::'a::semiring_0) = (\<Sum>n\<in>A. f n * r)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   733
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   734
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   735
  then show ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   736
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   737
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   738
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   739
    case (insert x A) thus ?case by (simp add: distrib_right)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   740
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   741
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   742
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   743
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   745
lemma setsum_divide_distrib:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   746
  "setsum f A / (r::'a::field) = (\<Sum>n\<in>A. f n / r)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   747
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   748
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   749
  then show ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   750
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   751
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   752
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   753
    case (insert x A) thus ?case by (simp add: add_divide_distrib)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   754
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   755
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   756
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   757
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   758
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   759
lemma setsum_abs[iff]:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   760
  fixes f :: "'a => ('b::ordered_ab_group_add_abs)"
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61943
diff changeset
   761
  shows "\<bar>setsum f A\<bar> \<le> setsum (%i. \<bar>f i\<bar>) A"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   762
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   763
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   764
  thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   765
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   766
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   767
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   768
    case (insert x A)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   769
    thus ?case by (auto intro: abs_triangle_ineq order_trans)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   770
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   771
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   772
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   773
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   774
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   775
lemma setsum_abs_ge_zero[iff]:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   776
  fixes f :: "'a => ('b::ordered_ab_group_add_abs)"
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61943
diff changeset
   777
  shows "0 \<le> setsum (%i. \<bar>f i\<bar>) A"
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   778
  by (simp add: setsum_nonneg)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   779
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   780
lemma abs_setsum_abs[simp]:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   781
  fixes f :: "'a => ('b::ordered_ab_group_add_abs)"
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61943
diff changeset
   782
  shows "\<bar>\<Sum>a\<in>A. \<bar>f a\<bar>\<bar> = (\<Sum>a\<in>A. \<bar>f a\<bar>)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   783
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   784
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   785
  thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   786
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   787
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   788
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   789
    case (insert a A)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   790
    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
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   791
    also have "\<dots> = \<bar>\<bar>f a\<bar> + \<bar>\<Sum>a\<in>A. \<bar>f a\<bar>\<bar>\<bar>"  using insert by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   792
    also have "\<dots> = \<bar>f a\<bar> + \<bar>\<Sum>a\<in>A. \<bar>f a\<bar>\<bar>"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   793
      by (simp del: abs_of_nonneg)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   794
    also have "\<dots> = (\<Sum>a\<in>insert a A. \<bar>f a\<bar>)" using insert by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   795
    finally show ?case .
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   796
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   797
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   798
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   799
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   800
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   801
lemma setsum_diff1_ring: assumes "finite A" "a \<in> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   802
  shows "setsum f (A - {a}) = setsum f A - (f a::'a::ring)"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   803
  unfolding setsum.remove [OF assms] by auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   804
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   805
lemma setsum_product:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   806
  fixes f :: "'a => ('b::semiring_0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   807
  shows "setsum f A * setsum g B = (\<Sum>i\<in>A. \<Sum>j\<in>B. f i * g j)"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   808
  by (simp add: setsum_right_distrib setsum_left_distrib) (rule setsum.commute)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   809
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   810
lemma setsum_mult_setsum_if_inj:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   811
fixes f :: "'a => ('b::semiring_0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   812
shows "inj_on (%(a,b). f a * g b) (A \<times> B) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   813
  setsum f A * setsum g B = setsum id {f a * g b|a b. a:A & b:B}"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   814
by(auto simp: setsum_product setsum.cartesian_product
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   815
        intro!:  setsum.reindex_cong[symmetric])
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   816
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   817
lemma setsum_SucD: "setsum f A = Suc n ==> EX a:A. 0 < f a"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   818
apply (case_tac "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   819
 prefer 2 apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   820
apply (erule rev_mp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   821
apply (erule finite_induct, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   822
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   823
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   824
lemma setsum_eq_Suc0_iff: "finite A \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   825
  setsum f A = Suc 0 \<longleftrightarrow> (EX a:A. f a = Suc 0 & (ALL b:A. a\<noteq>b \<longrightarrow> f b = 0))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   826
apply(erule finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   827
apply (auto simp add:add_is_1)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   828
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   829
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   830
lemmas setsum_eq_1_iff = setsum_eq_Suc0_iff[simplified One_nat_def[symmetric]]
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   831
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   832
lemma setsum_Un_nat: "finite A ==> finite B ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   833
  (setsum f (A Un B) :: nat) = setsum f A + setsum f B - setsum f (A Int B)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61776
diff changeset
   834
  \<comment> \<open>For the natural numbers, we have subtraction.\<close>
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   835
by (subst setsum.union_inter [symmetric], auto simp add: algebra_simps)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   836
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   837
lemma setsum_diff1_nat: "(setsum f (A - {a}) :: nat) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   838
  (if a:A then setsum f A - f a else setsum f A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   839
apply (case_tac "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   840
 prefer 2 apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   841
apply (erule finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   842
 apply (auto simp add: insert_Diff_if)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   843
apply (drule_tac a = a in mk_disjoint_insert, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   844
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   845
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   846
lemma setsum_diff_nat:
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   847
assumes "finite B" and "B \<subseteq> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   848
shows "(setsum f (A - B) :: nat) = (setsum f A) - (setsum f B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   849
using assms
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   850
proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   851
  show "setsum f (A - {}) = (setsum f A) - (setsum f {})" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   852
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   853
  fix F x assume finF: "finite F" and xnotinF: "x \<notin> F"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   854
    and xFinA: "insert x F \<subseteq> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   855
    and IH: "F \<subseteq> A \<Longrightarrow> setsum f (A - F) = setsum f A - setsum f F"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   856
  from xnotinF xFinA have xinAF: "x \<in> (A - F)" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   857
  from xinAF have A: "setsum f ((A - F) - {x}) = setsum f (A - F) - f x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   858
    by (simp add: setsum_diff1_nat)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   859
  from xFinA have "F \<subseteq> A" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   860
  with IH have "setsum f (A - F) = setsum f A - setsum f F" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   861
  with A have B: "setsum f ((A - F) - {x}) = setsum f A - setsum f F - f x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   862
    by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   863
  from xnotinF have "A - insert x F = (A - F) - {x}" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   864
  with B have C: "setsum f (A - insert x F) = setsum f A - setsum f F - f x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   865
    by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   866
  from finF xnotinF have "setsum f (insert x F) = setsum f F + f x" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   867
  with C have "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   868
    by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   869
  thus "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   870
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   871
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   872
lemma setsum_comp_morphism:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   873
  assumes "h 0 = 0" and "\<And>x y. h (x + y) = h x + h y"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   874
  shows "setsum (h \<circ> g) A = h (setsum g A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   875
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   876
  case False then show ?thesis by (simp add: assms)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   877
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   878
  case True then show ?thesis by (induct A) (simp_all add: assms)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   879
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   880
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
   881
lemma (in comm_semiring_1) dvd_setsum:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
   882
  "(\<And>a. a \<in> A \<Longrightarrow> d dvd f a) \<Longrightarrow> d dvd setsum f A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
   883
  by (induct A rule: infinite_finite_induct) simp_all
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
   884
62377
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   885
lemma (in ordered_comm_monoid_add) setsum_pos:
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   886
  "finite I \<Longrightarrow> I \<noteq> {} \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> 0 < f i) \<Longrightarrow> 0 < setsum f I"
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   887
  by (induct I rule: finite_ne_induct) (auto intro: add_pos_pos)
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   888
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   889
lemma (in ordered_comm_monoid_add) setsum_pos2:
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   890
  assumes I: "finite I" "i \<in> I" "0 < f i" "\<And>i. i \<in> I \<Longrightarrow> 0 \<le> f i"
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   891
  shows "0 < setsum f I"
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   892
proof -
62377
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   893
  have "0 < f i + setsum f (I - {i})"
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   894
    using assms by (intro add_pos_nonneg setsum_nonneg) auto
ace69956d018 moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents: 62376
diff changeset
   895
  also have "\<dots> = setsum f I"
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   896
    using assms by (simp add: setsum.remove)
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   897
  finally show ?thesis .
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   898
qed
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   899
61524
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   900
lemma setsum_cong_Suc:
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   901
  assumes "0 \<notin> A" "\<And>x. Suc x \<in> A \<Longrightarrow> f (Suc x) = g (Suc x)"
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   902
  shows   "setsum f A = setsum g A"
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   903
proof (rule setsum.cong)
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   904
  fix x assume "x \<in> A"
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   905
  with assms(1) show "f x = g x" by (cases x) (auto intro!: assms(2))
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   906
qed simp_all
f2e51e704a96 added many small lemmas about setsum/setprod/powr/...
eberlm
parents: 61378
diff changeset
   907
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   908
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   909
subsubsection \<open>Cardinality as special case of @{const setsum}\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   910
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   911
lemma card_eq_setsum:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   912
  "card A = setsum (\<lambda>x. 1) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   913
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   914
  have "plus \<circ> (\<lambda>_. Suc 0) = (\<lambda>_. Suc)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   915
    by (simp add: fun_eq_iff)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   916
  then have "Finite_Set.fold (plus \<circ> (\<lambda>_. Suc 0)) = Finite_Set.fold (\<lambda>_. Suc)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   917
    by (rule arg_cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   918
  then have "Finite_Set.fold (plus \<circ> (\<lambda>_. Suc 0)) 0 A = Finite_Set.fold (\<lambda>_. Suc) 0 A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   919
    by (blast intro: fun_cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   920
  then show ?thesis by (simp add: card.eq_fold setsum.eq_fold)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   921
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   922
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   923
lemma setsum_constant [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   924
  "(\<Sum>x \<in> A. y) = of_nat (card A) * y"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   925
apply (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   926
apply (erule finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   927
apply (auto simp add: algebra_simps)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   928
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   929
59615
fdfdf89a83a6 A few new lemmas and a bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 59416
diff changeset
   930
lemma setsum_Suc: "setsum (\<lambda>x. Suc(f x)) A = setsum f A + card A"
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   931
  using setsum.distrib[of f "\<lambda>_. 1" A]
59615
fdfdf89a83a6 A few new lemmas and a bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 59416
diff changeset
   932
  by simp
58349
107341a15946 added lemma
nipkow
parents: 58195
diff changeset
   933
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   934
lemma setsum_bounded_above:
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   935
  assumes le: "\<And>i. i\<in>A \<Longrightarrow> f i \<le> (K::'a::{semiring_1, ordered_comm_monoid_add})"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   936
  shows "setsum f A \<le> of_nat (card A) * K"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   937
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   938
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   939
  thus ?thesis using le setsum_mono[where K=A and g = "%x. K"] by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   940
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   941
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   942
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   943
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   944
lemma setsum_bounded_above_strict:
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   945
  assumes "\<And>i. i\<in>A \<Longrightarrow> f i < (K::'a::{ordered_cancel_comm_monoid_add,semiring_1})"
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   946
          "card A > 0"
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   947
  shows "setsum f A < of_nat (card A) * K"
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   948
using assms setsum_strict_mono[where A=A and g = "%x. K"]
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   949
by (simp add: card_gt_0_iff)
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   950
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   951
lemma setsum_bounded_below:
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
   952
  assumes le: "\<And>i. i\<in>A \<Longrightarrow> (K::'a::{semiring_1, ordered_comm_monoid_add}) \<le> f i"
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   953
  shows "of_nat (card A) * K \<le> setsum f A"
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   954
proof (cases "finite A")
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   955
  case True
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   956
  thus ?thesis using le setsum_mono[where K=A and f = "%x. K"] by simp
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   957
next
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   958
  case False thus ?thesis by simp
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   959
qed
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
   960
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   961
lemma card_UN_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   962
  assumes "finite I" and "\<forall>i\<in>I. finite (A i)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   963
    and "\<forall>i\<in>I. \<forall>j\<in>I. i \<noteq> j \<longrightarrow> A i \<inter> A j = {}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   964
  shows "card (UNION I A) = (\<Sum>i\<in>I. card(A i))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   965
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   966
  have "(\<Sum>i\<in>I. card (A i)) = (\<Sum>i\<in>I. \<Sum>x\<in>A i. 1)" by simp
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   967
  with assms show ?thesis by (simp add: card_eq_setsum setsum.UNION_disjoint del: setsum_constant)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   968
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   969
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   970
lemma card_Union_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   971
  "finite C ==> (ALL A:C. finite A) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   972
   (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {})
61952
546958347e05 prefer symbols for "Union", "Inter";
wenzelm
parents: 61944
diff changeset
   973
   ==> card (\<Union>C) = setsum card C"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   974
apply (frule card_UN_disjoint [of C id])
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 55096
diff changeset
   975
apply simp_all
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   976
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   977
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   978
lemma setsum_multicount_gen:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   979
  assumes "finite s" "finite t" "\<forall>j\<in>t. (card {i\<in>s. R i j} = k j)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   980
  shows "setsum (\<lambda>i. (card {j\<in>t. R i j})) s = setsum k t" (is "?l = ?r")
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   981
proof-
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   982
  have "?l = setsum (\<lambda>i. setsum (\<lambda>x.1) {j\<in>t. R i j}) s" by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   983
  also have "\<dots> = ?r" unfolding setsum.commute_restrict [OF assms(1-2)]
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   984
    using assms(3) by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   985
  finally show ?thesis .
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   986
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   987
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   988
lemma setsum_multicount:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   989
  assumes "finite S" "finite T" "\<forall>j\<in>T. (card {i\<in>S. R i j} = k)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   990
  shows "setsum (\<lambda>i. card {j\<in>T. R i j}) S = k * card T" (is "?l = ?r")
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   991
proof-
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   992
  have "?l = setsum (\<lambda>i. k) T" by (rule setsum_multicount_gen) (auto simp: assms)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   993
  also have "\<dots> = ?r" by (simp add: mult.commute)
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   994
  finally show ?thesis by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   995
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
   996
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
   997
subsubsection \<open>Cardinality of products\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   998
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   999
lemma card_SigmaI [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1000
  "\<lbrakk> finite A; ALL a:A. finite (B a) \<rbrakk>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1001
  \<Longrightarrow> card (SIGMA x: A. B x) = (\<Sum>a\<in>A. card (B a))"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57275
diff changeset
  1002
by(simp add: card_eq_setsum setsum.Sigma del:setsum_constant)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1003
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1004
(*
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1005
lemma SigmaI_insert: "y \<notin> A ==>
61943
7fba644ed827 discontinued ASCII replacement syntax <*>;
wenzelm
parents: 61799
diff changeset
  1006
  (SIGMA x:(insert y A). B x) = (({y} \<times> (B y)) \<union> (SIGMA x: A. B x))"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1007
  by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1008
*)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1009
61943
7fba644ed827 discontinued ASCII replacement syntax <*>;
wenzelm
parents: 61799
diff changeset
  1010
lemma card_cartesian_product: "card (A \<times> B) = card(A) * card(B)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1011
  by (cases "finite A \<and> finite B")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1012
    (auto simp add: card_eq_0_iff dest: finite_cartesian_productD1 finite_cartesian_productD2)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1013
61943
7fba644ed827 discontinued ASCII replacement syntax <*>;
wenzelm
parents: 61799
diff changeset
  1014
lemma card_cartesian_product_singleton:  "card({x} \<times> A) = card(A)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1015
by (simp add: card_cartesian_product)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1016
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1017
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
  1018
subsection \<open>Generalized product over a set\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1019
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1020
context comm_monoid_mult
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1021
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1022
61605
1bf7b186542e qualifier is mandatory by default;
wenzelm
parents: 61566
diff changeset
  1023
sublocale setprod: comm_monoid_set times 1
61776
57bb7da5c867 modernized
haftmann
parents: 61605
diff changeset
  1024
defines
57bb7da5c867 modernized
haftmann
parents: 61605
diff changeset
  1025
  setprod = setprod.F ..
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1026
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1027
abbreviation
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1028
  Setprod ("\<Prod>_" [1000] 999) where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1029
  "\<Prod>A \<equiv> setprod (\<lambda>x. x) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1030
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1031
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1032
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
  1033
syntax (ASCII)
60494
e726f88232d3 correccted the pretty-printing specs for setsum and setprod
paulson <lp15@cam.ac.uk>
parents: 60429
diff changeset
  1034
  "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(4PROD _:_./ _)" [0, 51, 10] 10)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
  1035
syntax
60494
e726f88232d3 correccted the pretty-printing specs for setsum and setprod
paulson <lp15@cam.ac.uk>
parents: 60429
diff changeset
  1036
  "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(2\<Prod>_\<in>_./ _)" [0, 51, 10] 10)
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61776
diff changeset
  1037
translations \<comment> \<open>Beware of argument permutation!\<close>
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
  1038
  "\<Prod>i\<in>A. b" == "CONST setprod (\<lambda>i. b) A"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1039
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
  1040
text \<open>Instead of @{term"\<Prod>x\<in>{x. P}. e"} we introduce the shorter \<open>\<Prod>x|P. e\<close>.\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1041
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
  1042
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
  1043
  "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a"  ("(4PROD _ |/ _./ _)" [0, 0, 10] 10)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1044
syntax
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
  1045
  "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a"  ("(2\<Prod>_ | (_)./ _)" [0, 0, 10] 10)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1046
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61952
diff changeset
  1047
  "\<Prod>x|P. t" => "CONST setprod (\<lambda>x. t) {x. P}"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1048
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1049
context comm_monoid_mult
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1050
begin
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1051
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
  1052
lemma setprod_dvd_setprod:
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1053
  "(\<And>a. a \<in> A \<Longrightarrow> f a dvd g a) \<Longrightarrow> setprod f A dvd setprod g A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1054
proof (induct A rule: infinite_finite_induct)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1055
  case infinite then show ?case by (auto intro: dvdI)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1056
next
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1057
  case empty then show ?case by (auto intro: dvdI)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1058
next
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1059
  case (insert a A) then
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1060
  have "f a dvd g a" and "setprod f A dvd setprod g A" by simp_all
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1061
  then obtain r s where "g a = f a * r" and "setprod g A = setprod f A * s" by (auto elim!: dvdE)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1062
  then have "g a * setprod g A = f a * setprod f A * (r * s)" by (simp add: ac_simps)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1063
  with insert.hyps show ?case by (auto intro: dvdI)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1064
qed
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1065
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1066
lemma setprod_dvd_setprod_subset:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1067
  "finite B \<Longrightarrow> A \<subseteq> B \<Longrightarrow> setprod f A dvd setprod f B"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1068
  by (auto simp add: setprod.subset_diff ac_simps intro: dvdI)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1069
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1070
end
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1071
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1072
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
  1073
subsubsection \<open>Properties in more restricted classes of structures\<close>
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1074
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1075
context comm_semiring_1
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1076
begin
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1077
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1078
lemma dvd_setprod_eqI [intro]:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1079
  assumes "finite A" and "a \<in> A" and "b = f a"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1080
  shows "b dvd setprod f A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1081
proof -
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
  1082
  from \<open>finite A\<close> have "setprod f (insert a (A - {a})) = f a * setprod f (A - {a})"
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1083
    by (intro setprod.insert) auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
  1084
  also from \<open>a \<in> A\<close> have "insert a (A - {a}) = A" by blast
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1085
  finally have "setprod f A = f a * setprod f (A - {a})" .
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
  1086
  with \<open>b = f a\<close> show ?thesis by simp
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1087
qed
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1088
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1089
lemma dvd_setprodI [intro]:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1090
  assumes "finite A" and "a \<in> A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1091
  shows "f a dvd setprod f A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1092
  using assms by auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1093
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1094
lemma setprod_zero:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1095
  assumes "finite A" and "\<exists>a\<in>A. f a = 0"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1096
  shows "setprod f A = 0"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1097
using assms proof (induct A)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1098
  case empty then show ?case by simp
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1099
next
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1100
  case (insert a A)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1101
  then have "f a = 0 \<or> (\<exists>a\<in>A. f a = 0)" by simp
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1102
  then have "f a * setprod f A = 0" by rule (simp_all add: insert)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1103
  with insert show ?case by simp
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1104
qed
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1105
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1106
lemma setprod_dvd_setprod_subset2:
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1107
  assumes "finite B" and "A \<subseteq> B" and "\<And>a. a \<in> A \<Longrightarrow> f a dvd g a"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1108
  shows "setprod f A dvd setprod g B"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1109
proof -
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1110
  from assms have "setprod f A dvd setprod g A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1111
    by (auto intro: setprod_dvd_setprod)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1112
  moreover from assms have "setprod g A dvd setprod g B"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1113
    by (auto intro: setprod_dvd_setprod_subset)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1114
  ultimately show ?thesis by (rule dvd_trans)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1115
qed
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1116
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1117
end
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1118
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1119
lemma setprod_zero_iff [simp]:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1120
  assumes "finite A"
59833
ab828c2c5d67 clarified no_zero_devisors: makes only sense in a semiring;
haftmann
parents: 59615
diff changeset
  1121
  shows "setprod f A = (0::'a::semidom) \<longleftrightarrow> (\<exists>a\<in>A. f a = 0)"
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1122
  using assms by (induct A) (auto simp: no_zero_divisors)
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1123
60353
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1124
lemma (in semidom_divide) setprod_diff1:
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1125
  assumes "finite A" and "f a \<noteq> 0"
60429
d3d1e185cd63 uniform _ div _ as infix syntax for ring division
haftmann
parents: 60353
diff changeset
  1126
  shows "setprod f (A - {a}) = (if a \<in> A then setprod f A div f a else setprod f A)"
60353
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1127
proof (cases "a \<notin> A")
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1128
  case True then show ?thesis by simp
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1129
next
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1130
  case False with assms show ?thesis
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1131
  proof (induct A rule: finite_induct)
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1132
    case empty then show ?case by simp
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1133
  next
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1134
    case (insert b B)
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1135
    then show ?case
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1136
    proof (cases "a = b")
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1137
      case True with insert show ?thesis by simp
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1138
    next
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1139
      case False with insert have "a \<in> B" by simp
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1140
      define C where "C = B - {a}"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60494
diff changeset
  1141
      with \<open>finite B\<close> \<open>a \<in> B\<close>
60353
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1142
        have *: "B = insert a C" "finite C" "a \<notin> C" by auto
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1143
      with insert show ?thesis by (auto simp add: insert_commute ac_simps)
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1144
    qed
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1145
  qed
838025c6e278 implicit partial divison operation in integral domains
haftmann
parents: 59867
diff changeset
  1146
qed
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1147
62481
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1148
lemma setsum_zero_power [simp]:
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1149
  fixes c :: "nat \<Rightarrow> 'a::division_ring"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1150
  shows "(\<Sum>i\<in>A. c i * 0^i) = (if finite A \<and> 0 \<in> A then c 0 else 0)"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1151
apply (cases "finite A")
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1152
  by (induction A rule: finite_induct) auto
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1153
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1154
lemma setsum_zero_power' [simp]:
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1155
  fixes c :: "nat \<Rightarrow> 'a::field"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1156
  shows "(\<Sum>i\<in>A. c i * 0^i / d i) = (if finite A \<and> 0 \<in> A then c 0 / d 0 else 0)"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1157
  using setsum_zero_power [of "\<lambda>i. c i / d i" A]
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1158
  by auto
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1159
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
  1160
lemma (in field) setprod_inversef:
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1161
  "finite A \<Longrightarrow> setprod (inverse \<circ> f) A = inverse (setprod f A)"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1162
  by (induct A rule: finite_induct) simp_all
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1163
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59833
diff changeset
  1164
lemma (in field) setprod_dividef:
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1165
  "finite A \<Longrightarrow> (\<Prod>x\<in>A. f x / g x) = setprod f A / setprod g A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1166
  using setprod_inversef [of A g] by (simp add: divide_inverse setprod.distrib)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1167
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1168
lemma setprod_Un:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1169
  fixes f :: "'b \<Rightarrow> 'a :: field"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1170
  assumes "finite A" and "finite B"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1171
  and "\<forall>x\<in>A \<inter> B. f x \<noteq> 0"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1172
  shows "setprod f (A \<union> B) = setprod f A * setprod f B / setprod f (A \<inter> B)"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1173
proof -
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1174
  from assms have "setprod f A * setprod f B = setprod f (A \<union> B) * setprod f (A \<inter> B)"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1175
    by (simp add: setprod.union_inter [symmetric, of A B])
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1176
  with assms show ?thesis by simp
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1177
qed
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1178
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1179
lemma (in linordered_semidom) setprod_nonneg:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1180
  "(\<forall>a\<in>A. 0 \<le> f a) \<Longrightarrow> 0 \<le> setprod f A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1181
  by (induct A rule: infinite_finite_induct) simp_all
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1182
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1183
lemma (in linordered_semidom) setprod_pos:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1184
  "(\<forall>a\<in>A. 0 < f a) \<Longrightarrow> 0 < setprod f A"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1185
  by (induct A rule: infinite_finite_induct) simp_all
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1186
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1187
lemma (in linordered_semidom) setprod_mono:
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
  1188
  "\<forall>i\<in>A. 0 \<le> f i \<and> f i \<le> g i \<Longrightarrow> setprod f A \<le> setprod g A"
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
  1189
  by (induct A rule: infinite_finite_induct) (auto intro!: setprod_nonneg mult_mono)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1190
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1191
lemma (in linordered_semidom) setprod_mono_strict:
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1192
    assumes"finite A" "\<forall>i\<in>A. 0 \<le> f i \<and> f i < g i" "A \<noteq> {}"
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1193
    shows "setprod f A < setprod g A"
62376
85f38d5f8807 Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents: 61955
diff changeset
  1194
using assms
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1195
apply (induct A rule: finite_induct)
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1196
apply (simp add: )
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1197
apply (force intro: mult_strict_mono' setprod_nonneg)
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1198
done
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60758
diff changeset
  1199
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1200
lemma (in linordered_field) abs_setprod:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1201
  "\<bar>setprod f A\<bar> = (\<Prod>x\<in>A. \<bar>f x\<bar>)"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1202
  by (induct A rule: infinite_finite_induct) (simp_all add: abs_mult)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1203
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1204
lemma setprod_eq_1_iff [simp]:
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1205
  "finite A \<Longrightarrow> setprod f A = 1 \<longleftrightarrow> (\<forall>a\<in>A. f a = (1::nat))"
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1206
  by (induct A rule: finite_induct) simp_all
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1207
59010
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1208
lemma setprod_pos_nat_iff [simp]:
ec2b4270a502 generalized lemmas and tuned proofs
haftmann
parents: 58889
diff changeset
  1209
  "finite A \<Longrightarrow> setprod f A > 0 \<longleftrightarrow> (\<forall>a\<in>A. f a > (0::nat))"
62378
85ed00c1fe7c generalize more theorems to support enat and ennreal
hoelzl
parents: 62377
diff changeset
  1210
  using setprod_zero_iff by (simp del: neq0_conv add: zero_less_iff_neq_zero)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1211
62481
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1212
lemma setprod_constant:
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1213
  "(\<Prod>x\<in> A. (y::'a::comm_monoid_mult)) = y ^ card A"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1214
  by (induct A rule: infinite_finite_induct) simp_all
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1215
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1216
lemma setprod_power_distrib:
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1217
  fixes f :: "'a \<Rightarrow> 'b::comm_semiring_1"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1218
  shows "setprod f A ^ n = setprod (\<lambda>x. (f x) ^ n) A"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1219
proof (cases "finite A")
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1220
  case True then show ?thesis
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1221
    by (induct A rule: finite_induct) (auto simp add: power_mult_distrib)
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1222
next
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1223
  case False then show ?thesis
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1224
    by simp
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1225
qed
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1226
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1227
lemma power_setsum:
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1228
  "c ^ (\<Sum>a\<in>A. f a) = (\<Prod>a\<in>A. c ^ f a)"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1229
  by (induct A rule: infinite_finite_induct) (simp_all add: power_add)
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1230
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1231
lemma setprod_gen_delta:
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1232
  assumes fS: "finite S"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1233
  shows "setprod (\<lambda>k. if k=a then b k else c) S = (if a \<in> S then (b a ::'a::comm_monoid_mult) * c^ (card S - 1) else c^ card S)"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1234
proof-
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1235
  let ?f = "(\<lambda>k. if k=a then b k else c)"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1236
  {assume a: "a \<notin> S"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1237
    hence "\<forall> k\<in> S. ?f k = c" by simp
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1238
    hence ?thesis using a setprod_constant by simp }
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1239
  moreover
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1240
  {assume a: "a \<in> S"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1241
    let ?A = "S - {a}"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1242
    let ?B = "{a}"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1243
    have eq: "S = ?A \<union> ?B" using a by blast
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1244
    have dj: "?A \<inter> ?B = {}" by simp
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1245
    from fS have fAB: "finite ?A" "finite ?B" by auto
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1246
    have fA0:"setprod ?f ?A = setprod (\<lambda>i. c) ?A"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1247
      by (rule setprod.cong) auto
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1248
    have cA: "card ?A = card S - 1" using fS a by auto
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1249
    have fA1: "setprod ?f ?A = c ^ card ?A"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1250
      unfolding fA0 by (rule setprod_constant)
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1251
    have "setprod ?f ?A * setprod ?f ?B = setprod ?f S"
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1252
      using setprod.union_disjoint[OF fAB dj, of ?f, unfolded eq[symmetric]]
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1253
      by simp
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1254
    then have ?thesis using a cA
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1255
      by (simp add: fA1 field_simps cong add: setprod.cong cong del: if_weak_cong)}
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1256
  ultimately show ?thesis by blast
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1257
qed
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62378
diff changeset
  1258
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1259
end