src/HOL/Groups_Big.thy
author blanchet
Thu, 12 Jun 2014 01:00:49 +0200
changeset 57231 dca8d06ecbba
parent 57129 7edb7550663e
child 57275 0ddb5b755cdc
permissions -rw-r--r--
reduces Sledgehammer dependencies
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
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     6
header {* Big sum and product over finite (non-empty) sets *}
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
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
     9
imports Finite_Set
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
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    12
subsection {* Generic monoid operation over a set *}
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
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    21
  by default (simp add: fun_eq_iff left_commute)
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 -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    47
  from `x \<in> A` obtain B where A: "A = insert x B" and "x \<notin> B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    48
    by (auto dest: mk_disjoint_insert)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    49
  moreover from `finite A` A have "finite B" by simp
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"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    70
  -- {* The reversed orientation looks more natural, but LOOPS as a simprule! *}
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
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    90
lemma subset_diff:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    91
  assumes "B \<subseteq> A" and "finite A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    92
  shows "F g A = F g (A - B) * F g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    93
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    94
  from assms have "finite (A - B)" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    95
  moreover from assms have "finite B" by (rule finite_subset)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    96
  moreover from assms have "(A - B) \<inter> B = {}" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    97
  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
    98
  moreover from assms have "A \<union> B = A" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
    99
  ultimately show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   100
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   101
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   102
lemma setdiff_irrelevant:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   103
  assumes "finite A"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   104
  shows "F g (A - {x. g x = z}) = F g A"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   105
  using assms by (induct A) (simp_all add: insert_Diff_if) 
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   106
  
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   107
lemma not_neutral_contains_not_neutral:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   108
  assumes "F g A \<noteq> z"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   109
  obtains a where "a \<in> A" and "g a \<noteq> z"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   110
proof -
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   111
  from assms have "\<exists>a\<in>A. g a \<noteq> z"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   112
  proof (induct A rule: infinite_finite_induct)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   113
    case (insert a A)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   114
    then show ?case by simp (rule, simp)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   115
  qed simp_all
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   116
  with that show thesis by blast
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   117
qed
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56544
diff changeset
   118
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   119
lemma reindex:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   120
  assumes "inj_on h A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   121
  shows "F g (h ` A) = F (g \<circ> h) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   122
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   123
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   124
  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
   125
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   126
  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
   127
  with False show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   128
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   129
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   130
lemma cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   131
  assumes "A = B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   132
  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
   133
  shows "F g A = F h B"
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   134
  using g_h unfolding `A = B`
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   135
  by (induct B rule: infinite_finite_induct) auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   136
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   137
lemma strong_cong [cong]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   138
  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
   139
  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
   140
  by (rule cong) (insert assms, simp_all add: simp_implies_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   141
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   142
lemma UNION_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   143
  assumes "finite I" and "\<forall>i\<in>I. finite (A i)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   144
  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
   145
  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
   146
apply (insert assms)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   147
apply (induct rule: finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   148
apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   149
apply atomize
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   150
apply (subgoal_tac "\<forall>i\<in>Fa. x \<noteq> i")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   151
 prefer 2 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   152
apply (subgoal_tac "A x Int UNION Fa A = {}")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   153
 prefer 2 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   154
apply (simp add: union_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   155
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   156
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   157
lemma Union_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   158
  assumes "\<forall>A\<in>C. finite A" "\<forall>A\<in>C. \<forall>B\<in>C. A \<noteq> B \<longrightarrow> A \<inter> B = {}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   159
  shows "F g (Union C) = F (F g) C"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   160
proof cases
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   161
  assume "finite C"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   162
  from UNION_disjoint [OF this assms]
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 55096
diff changeset
   163
  show ?thesis by simp
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   164
qed (auto dest: finite_UnionD intro: infinite)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   165
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   166
lemma distrib:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   167
  "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
   168
  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
   169
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   170
lemma Sigma:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   171
  "finite A \<Longrightarrow> \<forall>x\<in>A. finite (B x) \<Longrightarrow> F (\<lambda>x. F (g x) (B x)) A = F (split g) (SIGMA x:A. B x)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   172
apply (subst Sigma_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   173
apply (subst UNION_disjoint, assumption, simp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   174
 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   175
apply (rule cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   176
apply rule
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   177
apply (simp add: fun_eq_iff)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   178
apply (subst UNION_disjoint, simp, simp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   179
 apply blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   180
apply (simp add: comp_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   181
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   182
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   183
lemma related: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   184
  assumes Re: "R 1 1" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   185
  and Rop: "\<forall>x1 y1 x2 y2. R x1 x2 \<and> R y1 y2 \<longrightarrow> R (x1 * y1) (x2 * y2)" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   186
  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
   187
  shows "R (F h S) (F g S)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   188
  using fS by (rule finite_subset_induct) (insert assms, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   189
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   190
lemma mono_neutral_cong_left:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   191
  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
   192
  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
   193
proof-
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   194
  have eq: "T = S \<union> (T - S)" using `S \<subseteq> T` by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   195
  have d: "S \<inter> (T - S) = {}" using `S \<subseteq> T` by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   196
  from `finite T` `S \<subseteq> T` have f: "finite S" "finite (T - S)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   197
    by (auto intro: finite_subset)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   198
  show ?thesis using assms(4)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   199
    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
   200
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   201
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   202
lemma mono_neutral_cong_right:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   203
  "\<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
   204
   \<Longrightarrow> F g T = F h S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   205
  by (auto intro!: mono_neutral_cong_left [symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   206
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   207
lemma mono_neutral_left:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   208
  "\<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
   209
  by (blast intro: mono_neutral_cong_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   210
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   211
lemma mono_neutral_right:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   212
  "\<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
   213
  by (blast intro!: mono_neutral_left [symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   214
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   215
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
   216
  by (auto simp: bij_betw_def reindex)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   217
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   218
lemma reindex_bij_witness:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   219
  assumes witness:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   220
    "\<And>a. a \<in> S \<Longrightarrow> i (j a) = a"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   221
    "\<And>a. a \<in> S \<Longrightarrow> j a \<in> T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   222
    "\<And>b. b \<in> T \<Longrightarrow> j (i b) = b"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   223
    "\<And>b. b \<in> T \<Longrightarrow> i b \<in> S"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   224
  assumes eq:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   225
    "\<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
   226
  shows "F g S = F h T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   227
proof -
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   228
  have "bij_betw j S T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   229
    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
   230
  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
   231
    by (intro cong) (auto simp: eq)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   232
  ultimately show ?thesis
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   233
    by (simp add: reindex_bij_betw)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   234
qed
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   235
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   236
lemma reindex_bij_betw_not_neutral:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   237
  assumes fin: "finite S'" "finite T'"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   238
  assumes bij: "bij_betw h (S - S') (T - T')"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   239
  assumes nn:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   240
    "\<And>a. a \<in> S' \<Longrightarrow> g (h a) = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   241
    "\<And>b. b \<in> T' \<Longrightarrow> g b = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   242
  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
   243
proof -
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   244
  have [simp]: "finite S \<longleftrightarrow> finite T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   245
    using bij_betw_finite[OF bij] fin by auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   246
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   247
  show ?thesis
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   248
  proof cases
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   249
    assume "finite S"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   250
    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
   251
      by (intro mono_neutral_cong_right) auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   252
    also have "\<dots> = F g (T - T')"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   253
      using bij by (rule reindex_bij_betw)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   254
    also have "\<dots> = F g T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   255
      using nn `finite S` by (intro mono_neutral_cong_left) auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   256
    finally show ?thesis .
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   257
  qed simp
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   258
qed
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   259
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   260
lemma reindex_bij_witness_not_neutral:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   261
  assumes fin: "finite S'" "finite T'"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   262
  assumes witness:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   263
    "\<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
   264
    "\<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
   265
    "\<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
   266
    "\<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
   267
  assumes nn:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   268
    "\<And>a. a \<in> S' \<Longrightarrow> g a = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   269
    "\<And>b. b \<in> T' \<Longrightarrow> h b = z"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   270
  assumes eq:
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   271
    "\<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
   272
  shows "F g S = F h T"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   273
proof -
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   274
  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
   275
    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
   276
  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
   277
    by (intro cong) (auto simp: eq)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   278
  show ?thesis
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   279
    unfolding F_eq using fin nn eq
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   280
    by (intro reindex_bij_betw_not_neutral[OF _ _ bij]) auto
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   281
qed
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   282
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   283
lemma delta: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   284
  assumes fS: "finite S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   285
  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
   286
proof-
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   287
  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
   288
  { assume a: "a \<notin> S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   289
    hence "\<forall>k\<in>S. ?f k = 1" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   290
    hence ?thesis  using a by simp }
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   291
  moreover
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   292
  { assume a: "a \<in> S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   293
    let ?A = "S - {a}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   294
    let ?B = "{a}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   295
    have eq: "S = ?A \<union> ?B" using a by blast 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   296
    have dj: "?A \<inter> ?B = {}" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   297
    from fS have fAB: "finite ?A" "finite ?B" by auto  
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   298
    have "F ?f S = F ?f ?A * F ?f ?B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   299
      using union_disjoint [OF fAB dj, of ?f, unfolded eq [symmetric]]
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   300
      by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   301
    then have ?thesis using a by simp }
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   302
  ultimately show ?thesis by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   303
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   304
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   305
lemma delta': 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   306
  assumes fS: "finite S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   307
  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
   308
  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
   309
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   310
lemma If_cases:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   311
  fixes P :: "'b \<Rightarrow> bool" and g h :: "'b \<Rightarrow> 'a"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   312
  assumes fA: "finite A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   313
  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
   314
    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
   315
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   316
  have a: "A = A \<inter> {x. P x} \<union> A \<inter> -{x. P x}" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   317
          "(A \<inter> {x. P x}) \<inter> (A \<inter> -{x. P x}) = {}" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   318
    by blast+
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   319
  from fA 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   320
  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
   321
  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
   322
  from union_disjoint [OF f a(2), of ?g] a(1)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   323
  show ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   324
    by (subst (1 2) cong) simp_all
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   325
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   326
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   327
lemma cartesian_product:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   328
   "F (\<lambda>x. F (g x) B) A = F (split g) (A <*> B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   329
apply (rule sym)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   330
apply (cases "finite A") 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   331
 apply (cases "finite B") 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   332
  apply (simp add: Sigma)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   333
 apply (cases "A={}", simp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   334
 apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   335
apply (auto intro: infinite dest: finite_cartesian_productD2)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   336
apply (cases "B = {}") apply (auto intro: infinite dest: finite_cartesian_productD1)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   337
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   338
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   339
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   340
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   341
notation times (infixl "*" 70)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   342
notation Groups.one ("1")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   343
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   344
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   345
subsection {* Generalized summation over a set *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   346
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   347
context comm_monoid_add
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   348
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   349
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   350
definition setsum :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b set \<Rightarrow> 'a"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   351
where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   352
  "setsum = comm_monoid_set.F plus 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   353
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   354
sublocale setsum!: comm_monoid_set plus 0
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   355
where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   356
  "comm_monoid_set.F plus 0 = setsum"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   357
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   358
  show "comm_monoid_set plus 0" ..
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   359
  then interpret setsum!: comm_monoid_set plus 0 .
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   360
  from setsum_def show "comm_monoid_set.F plus 0 = setsum" by rule
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   361
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   362
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   363
abbreviation
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   364
  Setsum ("\<Sum>_" [1000] 999) where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   365
  "\<Sum>A \<equiv> setsum (%x. x) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   366
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   367
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   368
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   369
text{* Now: lot's of fancy syntax. First, @{term "setsum (%x. e) A"} is
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   370
written @{text"\<Sum>x\<in>A. e"}. *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   371
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   372
syntax
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   373
  "_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add"    ("(3SUM _:_. _)" [0, 51, 10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   374
syntax (xsymbols)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   375
  "_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add"    ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   376
syntax (HTML output)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   377
  "_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add"    ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   378
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   379
translations -- {* Beware of argument permutation! *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   380
  "SUM i:A. b" == "CONST setsum (%i. b) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   381
  "\<Sum>i\<in>A. b" == "CONST setsum (%i. b) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   382
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   383
text{* Instead of @{term"\<Sum>x\<in>{x. P}. e"} we introduce the shorter
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   384
 @{text"\<Sum>x|P. e"}. *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   385
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   386
syntax
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   387
  "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3SUM _ |/ _./ _)" [0,0,10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   388
syntax (xsymbols)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   389
  "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   390
syntax (HTML output)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   391
  "_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   392
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   393
translations
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   394
  "SUM x|P. t" => "CONST setsum (%x. t) {x. P}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   395
  "\<Sum>x|P. t" => "CONST setsum (%x. t) {x. P}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   396
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   397
print_translation {*
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   398
let
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   399
  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
   400
        if x <> y then raise Match
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   401
        else
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   402
          let
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   403
            val x' = Syntax_Trans.mark_bound_body (x, Tx);
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   404
            val t' = subst_bound (x', t);
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   405
            val P' = subst_bound (x', P);
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   406
          in
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   407
            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
   408
          end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   409
    | setsum_tr' _ = raise Match;
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   410
in [(@{const_syntax setsum}, K setsum_tr')] end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   411
*}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   412
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   413
text {* TODO These are candidates for generalization *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   414
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   415
context comm_monoid_add
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   416
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   417
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   418
lemma setsum_reindex_id: 
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   419
  "inj_on f B \<Longrightarrow> setsum f B = setsum id (f ` B)"
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   420
  by (simp add: setsum.reindex)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   421
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   422
lemma setsum_reindex_nonzero:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   423
  assumes fS: "finite S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   424
  and nz: "\<And>x y. x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x \<noteq> y \<Longrightarrow> f x = f y \<Longrightarrow> h (f x) = 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   425
  shows "setsum h (f ` S) = setsum (h \<circ> f) S"
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   426
proof (subst setsum.reindex_bij_betw_not_neutral[symmetric])
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   427
  show "bij_betw f (S - {x\<in>S. h (f x) = 0}) (f`S - f`{x\<in>S. h (f x) = 0})"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   428
    using nz by (auto intro!: inj_onI simp: bij_betw_def)
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   429
qed (insert fS, auto)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   430
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   431
lemma setsum_cong2:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   432
  "(\<And>x. x \<in> A \<Longrightarrow> f x = g x) \<Longrightarrow> setsum f A = setsum g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   433
  by (auto intro: setsum.cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   434
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   435
lemma setsum_reindex_cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   436
   "[|inj_on f A; B = f ` A; !!a. a:A \<Longrightarrow> g a = h (f a)|] 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   437
    ==> setsum h B = setsum g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   438
  by (simp add: setsum.reindex)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   439
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   440
lemma setsum_restrict_set:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   441
  assumes fA: "finite A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   442
  shows "setsum f (A \<inter> B) = setsum (\<lambda>x. if x \<in> B then f x else 0) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   443
proof-
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   444
  from fA have fab: "finite (A \<inter> B)" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   445
  have aba: "A \<inter> B \<subseteq> A" by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   446
  let ?g = "\<lambda>x. if x \<in> A\<inter>B then f x else 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   447
  from setsum.mono_neutral_left [OF fA aba, of ?g]
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   448
  show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   449
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   450
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   451
lemma setsum_Union_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   452
  assumes "\<forall>A\<in>C. finite A" "\<forall>A\<in>C. \<forall>B\<in>C. A \<noteq> B \<longrightarrow> A Int B = {}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   453
  shows "setsum f (Union C) = setsum (setsum f) C"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   454
  using assms by (fact setsum.Union_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   455
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   456
lemma setsum_cartesian_product:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   457
  "(\<Sum>x\<in>A. (\<Sum>y\<in>B. f x y)) = (\<Sum>(x,y) \<in> A <*> B. f x y)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   458
  by (fact setsum.cartesian_product)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   459
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   460
lemma setsum_UNION_zero:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   461
  assumes fS: "finite S" and fSS: "\<forall>T \<in> S. finite T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   462
  and f0: "\<And>T1 T2 x. T1\<in>S \<Longrightarrow> T2\<in>S \<Longrightarrow> T1 \<noteq> T2 \<Longrightarrow> x \<in> T1 \<Longrightarrow> x \<in> T2 \<Longrightarrow> f x = 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   463
  shows "setsum f (\<Union>S) = setsum (\<lambda>T. setsum f T) S"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   464
  using fSS f0
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   465
proof(induct rule: finite_induct[OF fS])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   466
  case 1 thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   467
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   468
  case (2 T F)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   469
  then have fTF: "finite T" "\<forall>T\<in>F. finite T" "finite F" and TF: "T \<notin> F" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   470
    and H: "setsum f (\<Union> F) = setsum (setsum f) F" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   471
  from fTF have fUF: "finite (\<Union>F)" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   472
  from "2.prems" TF fTF
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   473
  show ?case 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   474
    by (auto simp add: H [symmetric] intro: setsum.union_inter_neutral [OF fTF(1) fUF, of f])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   475
qed
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
text {* Commuting outer and inner summation *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   478
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   479
lemma setsum_commute:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   480
  "(\<Sum>i\<in>A. \<Sum>j\<in>B. f i j) = (\<Sum>j\<in>B. \<Sum>i\<in>A. f i j)"
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   481
  unfolding setsum_cartesian_product
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
   482
  by (rule setsum.reindex_bij_witness[where i="\<lambda>(i, j). (j, i)" and j="\<lambda>(i, j). (j, i)"]) auto
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   483
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   484
lemma setsum_Plus:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   485
  fixes A :: "'a set" and B :: "'b set"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   486
  assumes fin: "finite A" "finite B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   487
  shows "setsum f (A <+> B) = setsum (f \<circ> Inl) A + setsum (f \<circ> Inr) B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   488
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   489
  have "A <+> B = Inl ` A \<union> Inr ` B" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   490
  moreover from fin have "finite (Inl ` A :: ('a + 'b) set)" "finite (Inr ` B :: ('a + 'b) set)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   491
    by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   492
  moreover have "Inl ` A \<inter> Inr ` B = ({} :: ('a + 'b) set)" by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   493
  moreover have "inj_on (Inl :: 'a \<Rightarrow> 'a + 'b) A" "inj_on (Inr :: 'b \<Rightarrow> 'a + 'b) B" by(auto intro: inj_onI)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   494
  ultimately show ?thesis using fin by(simp add: setsum.union_disjoint setsum.reindex)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   495
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   496
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   497
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   498
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   499
text {* TODO These are legacy *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   500
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   501
lemma setsum_empty:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   502
  "setsum f {} = 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   503
  by (fact setsum.empty)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   504
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   505
lemma setsum_insert:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   506
  "finite F ==> a \<notin> F ==> setsum f (insert a F) = f a + setsum f F"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   507
  by (fact setsum.insert)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   508
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   509
lemma setsum_infinite:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   510
  "~ finite A ==> setsum f A = 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   511
  by (fact setsum.infinite)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   512
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   513
lemma setsum_reindex:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   514
  "inj_on f B \<Longrightarrow> setsum h (f ` B) = setsum (h \<circ> f) B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   515
  by (fact setsum.reindex)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   516
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   517
lemma setsum_cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   518
  "A = B ==> (!!x. x:B ==> f x = g x) ==> setsum f A = setsum g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   519
  by (fact setsum.cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   520
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   521
lemma strong_setsum_cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   522
  "A = B ==> (!!x. x:B =simp=> f x = g x)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   523
   ==> setsum (%x. f x) A = setsum (%x. g x) B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   524
  by (fact setsum.strong_cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   525
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   526
lemmas setsum_0 = setsum.neutral_const
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   527
lemmas setsum_0' = setsum.neutral
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   528
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   529
lemma setsum_Un_Int: "finite A ==> finite B ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   530
  setsum g (A Un B) + setsum g (A Int B) = setsum g A + setsum g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   531
  -- {* The reversed orientation looks more natural, but LOOPS as a simprule! *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   532
  by (fact setsum.union_inter)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   533
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   534
lemma setsum_Un_disjoint: "finite A ==> finite B
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   535
  ==> A Int B = {} ==> setsum g (A Un B) = setsum g A + setsum g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   536
  by (fact setsum.union_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   537
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   538
lemma setsum_subset_diff: "\<lbrakk> B \<subseteq> A; finite A \<rbrakk> \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   539
    setsum f A = setsum f (A - B) + setsum f B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   540
  by (fact setsum.subset_diff)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   541
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   542
lemma setsum_mono_zero_left: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   543
  "\<lbrakk> finite T; S \<subseteq> T; \<forall>i \<in> T - S. f i = 0 \<rbrakk> \<Longrightarrow> setsum f S = setsum f T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   544
  by (fact setsum.mono_neutral_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   545
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   546
lemmas setsum_mono_zero_right = setsum.mono_neutral_right
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   547
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   548
lemma setsum_mono_zero_cong_left: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   549
  "\<lbrakk> finite T; S \<subseteq> T; \<forall>i \<in> T - S. g i = 0; \<And>x. x \<in> S \<Longrightarrow> f x = g x \<rbrakk>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   550
  \<Longrightarrow> setsum f S = setsum g T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   551
  by (fact setsum.mono_neutral_cong_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   552
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   553
lemmas setsum_mono_zero_cong_right = setsum.mono_neutral_cong_right
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   554
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   555
lemma setsum_delta: "finite S \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   556
  setsum (\<lambda>k. if k=a then b k else 0) S = (if a \<in> S then b a else 0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   557
  by (fact setsum.delta)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   558
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   559
lemma setsum_delta': "finite S \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   560
  setsum (\<lambda>k. if a = k then b k else 0) S = (if a\<in> S then b a else 0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   561
  by (fact setsum.delta')
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   562
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   563
lemma setsum_cases:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   564
  assumes "finite A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   565
  shows "setsum (\<lambda>x. if P x then f x else g x) A =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   566
         setsum f (A \<inter> {x. P x}) + setsum g (A \<inter> - {x. P x})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   567
  using assms by (fact setsum.If_cases)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   568
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   569
(*But we can't get rid of finite I. If infinite, although the rhs is 0, 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   570
  the lhs need not be, since UNION I A could still be finite.*)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   571
lemma setsum_UN_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   572
  assumes "finite I" and "ALL i:I. finite (A i)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   573
    and "ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   574
  shows "setsum f (UNION I A) = (\<Sum>i\<in>I. setsum f (A i))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   575
  using assms by (fact setsum.UNION_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   576
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   577
(*But we can't get rid of finite A. If infinite, although the lhs is 0, 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   578
  the rhs need not be, since SIGMA A B could still be finite.*)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   579
lemma setsum_Sigma:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   580
  assumes "finite A" and  "ALL x:A. finite (B x)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   581
  shows "(\<Sum>x\<in>A. (\<Sum>y\<in>B x. f x y)) = (\<Sum>(x,y)\<in>(SIGMA x:A. B x). f x y)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   582
  using assms by (fact setsum.Sigma)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   583
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   584
lemma setsum_addf: "setsum (%x. f x + g x) A = (setsum f A + setsum g A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   585
  by (fact setsum.distrib)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   586
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   587
lemma setsum_Un_zero:  
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   588
  "\<lbrakk> finite S; finite T; \<forall>x \<in> S\<inter>T. f x = 0 \<rbrakk> \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   589
  setsum f (S \<union> T) = setsum f S + setsum f T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   590
  by (fact setsum.union_inter_neutral)
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
subsubsection {* Properties in more restricted classes of structures *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   593
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   594
lemma setsum_Un: "finite A ==> finite B ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   595
  (setsum f (A Un B) :: 'a :: ab_group_add) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   596
   setsum f A + setsum f B - setsum f (A Int B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   597
by (subst setsum_Un_Int [symmetric], auto simp add: algebra_simps)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   598
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   599
lemma setsum_Un2:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   600
  assumes "finite (A \<union> B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   601
  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
   602
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   603
  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
   604
    by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   605
  with assms show ?thesis by simp (subst setsum_Un_disjoint, auto)+
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   606
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   607
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   608
lemma setsum_diff1: "finite A \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   609
  (setsum f (A - {a}) :: ('a::ab_group_add)) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   610
  (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
   611
by (erule finite_induct) (auto simp add: insert_Diff_if)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   612
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   613
lemma setsum_diff:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   614
  assumes le: "finite A" "B \<subseteq> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   615
  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
   616
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   617
  from le have finiteB: "finite B" using finite_subset by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   618
  show ?thesis using finiteB le
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   619
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   620
    case empty
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   621
    thus ?case by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   622
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   623
    case (insert x F)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   624
    thus ?case using le finiteB 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   625
      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
   626
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   627
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   628
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   629
lemma setsum_mono:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   630
  assumes le: "\<And>i. i\<in>K \<Longrightarrow> f (i::'a) \<le> ((g i)::('b::{comm_monoid_add, ordered_ab_semigroup_add}))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   631
  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
   632
proof (cases "finite K")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   633
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   634
  thus ?thesis using le
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   635
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   636
    case empty
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   637
    thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   638
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   639
    case insert
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   640
    thus ?case using add_mono by fastforce
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   641
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   642
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   643
  case False then show ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   644
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   645
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   646
lemma setsum_strict_mono:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   647
  fixes f :: "'a \<Rightarrow> 'b::{ordered_cancel_ab_semigroup_add,comm_monoid_add}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   648
  assumes "finite A"  "A \<noteq> {}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   649
    and "!!x. x:A \<Longrightarrow> f x < g x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   650
  shows "setsum f A < setsum g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   651
  using assms
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   652
proof (induct rule: finite_ne_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   653
  case singleton thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   654
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   655
  case insert thus ?case by (auto simp: add_strict_mono)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   656
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   657
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   658
lemma setsum_strict_mono_ex1:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   659
fixes f :: "'a \<Rightarrow> 'b::{comm_monoid_add, ordered_cancel_ab_semigroup_add}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   660
assumes "finite A" and "ALL x:A. f x \<le> g x" and "EX a:A. f a < g a"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   661
shows "setsum f A < setsum g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   662
proof-
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   663
  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
   664
  have "setsum f A = setsum f ((A-{a}) \<union> {a})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   665
    by(simp add:insert_absorb[OF `a:A`])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   666
  also have "\<dots> = setsum f (A-{a}) + setsum f {a}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   667
    using `finite A` by(subst setsum_Un_disjoint) auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   668
  also have "setsum f (A-{a}) \<le> setsum g (A-{a})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   669
    by(rule setsum_mono)(simp add: assms(2))
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   670
  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
   671
  also have "setsum g (A - {a}) + setsum g {a} = setsum g((A-{a}) \<union> {a})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   672
    using `finite A` by(subst setsum_Un_disjoint[symmetric]) auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   673
  also have "\<dots> = setsum g A" by(simp add:insert_absorb[OF `a:A`])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   674
  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
   675
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   676
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   677
lemma setsum_negf:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   678
  "setsum (%x. - (f x)::'a::ab_group_add) A = - setsum f A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   679
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   680
  case True thus ?thesis by (induct set: finite) auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   681
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   682
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   683
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   684
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   685
lemma setsum_subtractf:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   686
  "setsum (%x. ((f x)::'a::ab_group_add) - g x) A =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   687
    setsum f A - setsum g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   688
  using setsum_addf [of f "- g" A] by (simp add: setsum_negf)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   689
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   690
lemma setsum_nonneg:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   691
  assumes nn: "\<forall>x\<in>A. (0::'a::{ordered_ab_semigroup_add,comm_monoid_add}) \<le> f x"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   692
  shows "0 \<le> setsum f A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   693
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   694
  case True thus ?thesis using nn
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   695
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   696
    case empty then show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   697
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   698
    case (insert x F)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   699
    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
   700
    with insert show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   701
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   702
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   703
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   704
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   705
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   706
lemma setsum_nonpos:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   707
  assumes np: "\<forall>x\<in>A. f x \<le> (0::'a::{ordered_ab_semigroup_add,comm_monoid_add})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   708
  shows "setsum f A \<le> 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   709
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   710
  case True thus ?thesis using np
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   711
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   712
    case empty then show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   713
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   714
    case (insert x F)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   715
    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
   716
    with insert show ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   717
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   718
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   719
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   720
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   721
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   722
lemma setsum_nonneg_leq_bound:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   723
  fixes f :: "'a \<Rightarrow> 'b::{ordered_ab_group_add}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   724
  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
   725
  shows "f i \<le> B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   726
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   727
  have "0 \<le> (\<Sum> i \<in> s - {i}. f i)" and "0 \<le> f i"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   728
    using assms by (auto intro!: setsum_nonneg)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   729
  moreover
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   730
  have "(\<Sum> i \<in> s - {i}. f i) + f i = B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   731
    using assms by (simp add: setsum_diff1)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   732
  ultimately show ?thesis by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   733
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   734
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   735
lemma setsum_nonneg_0:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   736
  fixes f :: "'a \<Rightarrow> 'b::{ordered_ab_group_add}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   737
  assumes "finite s" and pos: "\<And> i. i \<in> s \<Longrightarrow> f i \<ge> 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   738
  and "(\<Sum> i \<in> s. f i) = 0" and i: "i \<in> s"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   739
  shows "f i = 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   740
  using setsum_nonneg_leq_bound[OF assms] pos[OF i] by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   741
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   742
lemma setsum_mono2:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   743
fixes f :: "'a \<Rightarrow> 'b :: ordered_comm_monoid_add"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   744
assumes fin: "finite B" and sub: "A \<subseteq> B" and nn: "\<And>b. b \<in> B-A \<Longrightarrow> 0 \<le> f b"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   745
shows "setsum f A \<le> setsum f B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   746
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   747
  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
   748
    by(simp add: add_increasing2[OF setsum_nonneg] nn Ball_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   749
  also have "\<dots> = setsum f (A \<union> (B-A))" using fin finite_subset[OF sub fin]
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   750
    by (simp add:setsum_Un_disjoint del:Un_Diff_cancel)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   751
  also have "A \<union> (B-A) = B" using sub by blast
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   752
  finally show ?thesis .
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   753
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   754
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   755
lemma setsum_mono3: "finite B ==> A <= B ==> 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   756
    ALL x: B - A. 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   757
      0 <= ((f x)::'a::{comm_monoid_add,ordered_ab_semigroup_add}) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   758
        setsum f A <= setsum f B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   759
  apply (subgoal_tac "setsum f B = setsum f A + setsum f (B - A)")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   760
  apply (erule ssubst)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   761
  apply (subgoal_tac "setsum f A + 0 <= setsum f A + setsum f (B - A)")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   762
  apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   763
  apply (rule add_left_mono)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   764
  apply (erule setsum_nonneg)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   765
  apply (subst setsum_Un_disjoint [THEN sym])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   766
  apply (erule finite_subset, assumption)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   767
  apply (rule finite_subset)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   768
  prefer 2
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   769
  apply assumption
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   770
  apply (auto simp add: sup_absorb2)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   771
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   772
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   773
lemma setsum_right_distrib: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   774
  fixes f :: "'a => ('b::semiring_0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   775
  shows "r * setsum f A = setsum (%n. r * f n) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   776
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   777
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   778
  thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   779
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   780
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   781
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   782
    case (insert x A) thus ?case by (simp add: distrib_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   783
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   784
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   785
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   786
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   787
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   788
lemma setsum_left_distrib:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   789
  "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
   790
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   791
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   792
  then show ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   793
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   794
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   795
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   796
    case (insert x A) thus ?case by (simp add: distrib_right)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   797
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   798
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   799
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   800
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   801
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   802
lemma setsum_divide_distrib:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   803
  "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
   804
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   805
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   806
  then show ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   807
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   808
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   809
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   810
    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
   811
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   812
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   813
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   814
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   815
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   816
lemma setsum_abs[iff]: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   817
  fixes f :: "'a => ('b::ordered_ab_group_add_abs)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   818
  shows "abs (setsum f A) \<le> setsum (%i. abs(f i)) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   819
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   820
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   821
  thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   822
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   823
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   824
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   825
    case (insert x A)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   826
    thus ?case by (auto intro: abs_triangle_ineq order_trans)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   827
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   828
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   829
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   830
qed
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_abs_ge_zero[iff]: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   833
  fixes f :: "'a => ('b::ordered_ab_group_add_abs)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   834
  shows "0 \<le> setsum (%i. abs(f i)) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   835
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   836
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   837
  thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   838
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   839
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   840
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   841
    case (insert x A) thus ?case by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   842
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   843
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   844
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   845
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   846
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   847
lemma abs_setsum_abs[simp]: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   848
  fixes f :: "'a => ('b::ordered_ab_group_add_abs)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   849
  shows "abs (\<Sum>a\<in>A. abs(f a)) = (\<Sum>a\<in>A. abs(f a))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   850
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   851
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   852
  thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   853
  proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   854
    case empty thus ?case by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   855
  next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   856
    case (insert a A)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   857
    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
   858
    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
   859
    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
   860
      by (simp del: abs_of_nonneg)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   861
    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
   862
    finally show ?case .
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   863
  qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   864
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   865
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   866
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   867
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   868
lemma setsum_diff1'[rule_format]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   869
  "finite A \<Longrightarrow> a \<in> A \<longrightarrow> (\<Sum> x \<in> A. f x) = f a + (\<Sum> x \<in> (A - {a}). f x)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   870
apply (erule finite_induct[where F=A and P="% A. (a \<in> A \<longrightarrow> (\<Sum> x \<in> A. f x) = f a + (\<Sum> x \<in> (A - {a}). f x))"])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   871
apply (auto simp add: insert_Diff_if add_ac)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   872
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   873
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   874
lemma setsum_diff1_ring: assumes "finite A" "a \<in> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   875
  shows "setsum f (A - {a}) = setsum f A - (f a::'a::ring)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   876
unfolding setsum_diff1'[OF assms] by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   877
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   878
lemma setsum_product:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   879
  fixes f :: "'a => ('b::semiring_0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   880
  shows "setsum f A * setsum g B = (\<Sum>i\<in>A. \<Sum>j\<in>B. f i * g j)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   881
  by (simp add: setsum_right_distrib setsum_left_distrib) (rule setsum_commute)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   882
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   883
lemma setsum_mult_setsum_if_inj:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   884
fixes f :: "'a => ('b::semiring_0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   885
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
   886
  setsum f A * setsum g B = setsum id {f a * g b|a b. a:A & b:B}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   887
by(auto simp: setsum_product setsum_cartesian_product
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   888
        intro!:  setsum_reindex_cong[symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   889
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   890
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
   891
apply (case_tac "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   892
 prefer 2 apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   893
apply (erule rev_mp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   894
apply (erule finite_induct, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   895
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   896
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   897
lemma setsum_eq_0_iff [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   898
  "finite F ==> (setsum f F = 0) = (ALL a:F. f a = (0::nat))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   899
  by (induct set: finite) auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   900
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   901
lemma setsum_eq_Suc0_iff: "finite A \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   902
  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
   903
apply(erule finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   904
apply (auto simp add:add_is_1)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   905
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   906
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   907
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
   908
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   909
lemma setsum_Un_nat: "finite A ==> finite B ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   910
  (setsum f (A Un B) :: nat) = setsum f A + setsum f B - setsum f (A Int B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   911
  -- {* For the natural numbers, we have subtraction. *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   912
by (subst setsum_Un_Int [symmetric], auto simp add: algebra_simps)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   913
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   914
lemma setsum_diff1_nat: "(setsum f (A - {a}) :: nat) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   915
  (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
   916
apply (case_tac "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   917
 prefer 2 apply simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   918
apply (erule finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   919
 apply (auto simp add: insert_Diff_if)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   920
apply (drule_tac a = a in mk_disjoint_insert, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   921
done
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_diff_nat: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   924
assumes "finite B" and "B \<subseteq> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   925
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
   926
using assms
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   927
proof induct
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   928
  show "setsum f (A - {}) = (setsum f A) - (setsum f {})" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   929
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   930
  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
   931
    and xFinA: "insert x F \<subseteq> A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   932
    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
   933
  from xnotinF xFinA have xinAF: "x \<in> (A - F)" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   934
  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
   935
    by (simp add: setsum_diff1_nat)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   936
  from xFinA have "F \<subseteq> A" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   937
  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
   938
  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
   939
    by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   940
  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
   941
  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
   942
    by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   943
  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
   944
  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
   945
    by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   946
  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
   947
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   948
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   949
lemma setsum_comp_morphism:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   950
  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
   951
  shows "setsum (h \<circ> g) A = h (setsum g A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   952
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   953
  case False then show ?thesis by (simp add: assms)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   954
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   955
  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
   956
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   957
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   958
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   959
subsubsection {* Cardinality as special case of @{const setsum} *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   960
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   961
lemma card_eq_setsum:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   962
  "card A = setsum (\<lambda>x. 1) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   963
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   964
  have "plus \<circ> (\<lambda>_. Suc 0) = (\<lambda>_. Suc)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   965
    by (simp add: fun_eq_iff)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   966
  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
   967
    by (rule arg_cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   968
  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
   969
    by (blast intro: fun_cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   970
  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
   971
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   972
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   973
lemma setsum_constant [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   974
  "(\<Sum>x \<in> A. y) = of_nat (card A) * y"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   975
apply (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   976
apply (erule finite_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   977
apply (auto simp add: algebra_simps)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   978
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   979
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   980
lemma setsum_bounded:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   981
  assumes le: "\<And>i. i\<in>A \<Longrightarrow> f i \<le> (K::'a::{semiring_1, ordered_ab_semigroup_add})"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   982
  shows "setsum f A \<le> of_nat (card A) * K"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   983
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   984
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   985
  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
   986
next
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   987
  case False thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   988
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   989
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   990
lemma card_UN_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   991
  assumes "finite I" and "\<forall>i\<in>I. finite (A i)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   992
    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
   993
  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
   994
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   995
  have "(\<Sum>i\<in>I. card (A i)) = (\<Sum>i\<in>I. \<Sum>x\<in>A i. 1)" by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   996
  with assms show ?thesis by (simp add: card_eq_setsum setsum_UN_disjoint del: setsum_constant)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
   997
qed
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_Union_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1000
  "finite C ==> (ALL A:C. finite A) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1001
   (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {})
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1002
   ==> card (Union C) = setsum card C"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1003
apply (frule card_UN_disjoint [of C id])
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 55096
diff changeset
  1004
apply simp_all
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1005
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1006
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1007
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1008
subsubsection {* Cardinality of products *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1009
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1010
lemma card_SigmaI [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1011
  "\<lbrakk> finite A; ALL a:A. finite (B a) \<rbrakk>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1012
  \<Longrightarrow> card (SIGMA x: A. B x) = (\<Sum>a\<in>A. card (B a))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1013
by(simp add: card_eq_setsum setsum_Sigma del:setsum_constant)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1014
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1015
(*
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1016
lemma SigmaI_insert: "y \<notin> A ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1017
  (SIGMA x:(insert y A). B x) = (({y} <*> (B y)) \<union> (SIGMA x: A. B x))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1018
  by auto
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
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1021
lemma card_cartesian_product: "card (A <*> B) = card(A) * card(B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1022
  by (cases "finite A \<and> finite B")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1023
    (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
  1024
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1025
lemma card_cartesian_product_singleton:  "card({x} <*> A) = card(A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1026
by (simp add: card_cartesian_product)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1027
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1028
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1029
subsection {* Generalized product over a set *}
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
context comm_monoid_mult
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1032
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1033
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1034
definition setprod :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b set \<Rightarrow> 'a"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1035
where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1036
  "setprod = comm_monoid_set.F times 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1037
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1038
sublocale setprod!: comm_monoid_set times 1
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1039
where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1040
  "comm_monoid_set.F times 1 = setprod"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1041
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1042
  show "comm_monoid_set times 1" ..
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1043
  then interpret setprod!: comm_monoid_set times 1 .
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1044
  from setprod_def show "comm_monoid_set.F times 1 = setprod" by rule
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1045
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1046
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1047
abbreviation
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1048
  Setprod ("\<Prod>_" [1000] 999) where
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1049
  "\<Prod>A \<equiv> setprod (\<lambda>x. x) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1050
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1051
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1052
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1053
syntax
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1054
  "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(3PROD _:_. _)" [0, 51, 10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1055
syntax (xsymbols)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1056
  "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1057
syntax (HTML output)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1058
  "_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult"  ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1059
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1060
translations -- {* Beware of argument permutation! *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1061
  "PROD i:A. b" == "CONST setprod (%i. b) A" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1062
  "\<Prod>i\<in>A. b" == "CONST setprod (%i. b) A" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1063
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1064
text{* Instead of @{term"\<Prod>x\<in>{x. P}. e"} we introduce the shorter
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1065
 @{text"\<Prod>x|P. e"}. *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1066
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1067
syntax
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1068
  "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3PROD _ |/ _./ _)" [0,0,10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1069
syntax (xsymbols)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1070
  "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Prod>_ | (_)./ _)" [0,0,10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1071
syntax (HTML output)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1072
  "_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Prod>_ | (_)./ _)" [0,0,10] 10)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1073
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1074
translations
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1075
  "PROD x|P. t" => "CONST setprod (%x. t) {x. P}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1076
  "\<Prod>x|P. t" => "CONST setprod (%x. t) {x. P}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1077
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1078
text {* TODO These are candidates for generalization *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1079
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1080
context comm_monoid_mult
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1081
begin
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1082
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1083
lemma setprod_reindex_id:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1084
  "inj_on f B ==> setprod f B = setprod id (f ` B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1085
  by (auto simp add: setprod.reindex)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1086
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1087
lemma setprod_reindex_cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1088
  "inj_on f A ==> B = f ` A ==> g = h \<circ> f ==> setprod h B = setprod g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1089
  by (frule setprod.reindex, simp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1090
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1091
lemma strong_setprod_reindex_cong:
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
  1092
  "inj_on f A \<Longrightarrow> B = f ` A \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> g x = (h \<circ> f) x) \<Longrightarrow> setprod h B = setprod g A"
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
  1093
  by (subst setprod.reindex_bij_betw[symmetric, where h=f])
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56545
diff changeset
  1094
     (auto simp: bij_betw_def)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1095
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1096
lemma setprod_Union_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1097
  assumes "\<forall>A\<in>C. finite A" "\<forall>A\<in>C. \<forall>B\<in>C. A \<noteq> B \<longrightarrow> A Int B = {}" 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1098
  shows "setprod f (Union C) = setprod (setprod f) C"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1099
  using assms by (fact setprod.Union_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1100
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1101
text{*Here we can eliminate the finiteness assumptions, by cases.*}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1102
lemma setprod_cartesian_product:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1103
  "(\<Prod>x\<in>A. (\<Prod>y\<in> B. f x y)) = (\<Prod>(x,y)\<in>(A <*> B). f x y)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1104
  by (fact setprod.cartesian_product)
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_Un2:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1107
  assumes "finite (A \<union> B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1108
  shows "setprod f (A \<union> B) = setprod f (A - B) * setprod f (B - A) * setprod f (A \<inter> B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1109
proof -
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1110
  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
  1111
    by auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1112
  with assms show ?thesis by simp (subst setprod.union_disjoint, auto)+
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1113
qed
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1114
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1115
end
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1116
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1117
text {* TODO These are legacy *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1118
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1119
lemma setprod_empty: "setprod f {} = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1120
  by (fact setprod.empty)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1121
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1122
lemma setprod_insert: "[| finite A; a \<notin> A |] ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1123
    setprod f (insert a A) = f a * setprod f A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1124
  by (fact setprod.insert)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1125
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1126
lemma setprod_infinite: "~ finite A ==> setprod f A = 1"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1127
  by (fact setprod.infinite)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1128
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1129
lemma setprod_reindex:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1130
  "inj_on f B ==> setprod h (f ` B) = setprod (h \<circ> f) B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1131
  by (fact setprod.reindex)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1132
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1133
lemma setprod_cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1134
  "A = B ==> (!!x. x:B ==> f x = g x) ==> setprod f A = setprod g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1135
  by (fact setprod.cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1136
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1137
lemma strong_setprod_cong:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1138
  "A = B ==> (!!x. x:B =simp=> f x = g x) ==> setprod f A = setprod g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1139
  by (fact setprod.strong_cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1140
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1141
lemma setprod_Un_one:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1142
  "\<lbrakk> finite S; finite T; \<forall>x \<in> S\<inter>T. f x = 1 \<rbrakk>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1143
  \<Longrightarrow> setprod f (S \<union> T) = setprod f S  * setprod f T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1144
  by (fact setprod.union_inter_neutral)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1145
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1146
lemmas setprod_1 = setprod.neutral_const
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1147
lemmas setprod_1' = setprod.neutral
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1148
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1149
lemma setprod_Un_Int: "finite A ==> finite B
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1150
    ==> setprod g (A Un B) * setprod g (A Int B) = setprod g A * setprod g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1151
  by (fact setprod.union_inter)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1152
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1153
lemma setprod_Un_disjoint: "finite A ==> finite B
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1154
  ==> A Int B = {} ==> setprod g (A Un B) = setprod g A * setprod g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1155
  by (fact setprod.union_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1156
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1157
lemma setprod_subset_diff: "\<lbrakk> B \<subseteq> A; finite A \<rbrakk> \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1158
    setprod f A = setprod f (A - B) * setprod f B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1159
  by (fact setprod.subset_diff)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1160
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1161
lemma setprod_mono_one_left:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1162
  "\<lbrakk> finite T; S \<subseteq> T; \<forall>i \<in> T - S. f i = 1 \<rbrakk> \<Longrightarrow> setprod f S = setprod f T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1163
  by (fact setprod.mono_neutral_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1164
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1165
lemmas setprod_mono_one_right = setprod.mono_neutral_right
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1166
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1167
lemma setprod_mono_one_cong_left: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1168
  "\<lbrakk> finite T; S \<subseteq> T; \<forall>i \<in> T - S. g i = 1; \<And>x. x \<in> S \<Longrightarrow> f x = g x \<rbrakk>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1169
  \<Longrightarrow> setprod f S = setprod g T"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1170
  by (fact setprod.mono_neutral_cong_left)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1171
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1172
lemmas setprod_mono_one_cong_right = setprod.mono_neutral_cong_right
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1173
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1174
lemma setprod_delta: "finite S \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1175
  setprod (\<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
  1176
  by (fact setprod.delta)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1177
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1178
lemma setprod_delta': "finite S \<Longrightarrow>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1179
  setprod (\<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
  1180
  by (fact setprod.delta')
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1181
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1182
lemma setprod_UN_disjoint:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1183
    "finite I ==> (ALL i:I. finite (A i)) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1184
        (ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1185
      setprod f (UNION I A) = setprod (%i. setprod f (A i)) I"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1186
  by (fact setprod.UNION_disjoint)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1187
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1188
lemma setprod_Sigma: "finite A ==> ALL x:A. finite (B x) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1189
    (\<Prod>x\<in>A. (\<Prod>y\<in> B x. f x y)) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1190
    (\<Prod>(x,y)\<in>(SIGMA x:A. B x). f x y)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1191
  by (fact setprod.Sigma)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1192
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1193
lemma setprod_timesf: "setprod (\<lambda>x. f x * g x) A = setprod f A * setprod g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1194
  by (fact setprod.distrib)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1195
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1196
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1197
subsubsection {* Properties in more restricted classes of structures *}
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1198
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1199
lemma setprod_zero:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1200
     "finite A ==> EX x: A. f x = (0::'a::comm_semiring_1) ==> setprod f A = 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1201
apply (induct set: finite, force, clarsimp)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1202
apply (erule disjE, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1203
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1204
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1205
lemma setprod_zero_iff[simp]: "finite A ==> 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1206
  (setprod f A = (0::'a::{comm_semiring_1,no_zero_divisors})) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1207
  (EX x: A. f x = 0)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1208
by (erule finite_induct, auto simp:no_zero_divisors)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1209
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1210
lemma setprod_Un: "finite A ==> finite B ==> (ALL x: A Int B. f x \<noteq> 0) ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1211
  (setprod f (A Un B) :: 'a ::{field})
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1212
   = setprod f A * setprod f B / setprod f (A Int B)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1213
by (subst setprod_Un_Int [symmetric], auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1214
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1215
lemma setprod_nonneg [rule_format]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1216
   "(ALL x: A. (0::'a::linordered_semidom) \<le> f x) --> 0 \<le> setprod f A"
56536
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 56166
diff changeset
  1217
by (cases "finite A", induct set: finite, simp_all)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1218
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1219
lemma setprod_pos [rule_format]: "(ALL x: A. (0::'a::linordered_semidom) < f x)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1220
  --> 0 < setprod f A"
56544
b60d5d119489 made mult_pos_pos a simp rule
nipkow
parents: 56536
diff changeset
  1221
by (cases "finite A", induct set: finite, simp_all)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1222
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1223
lemma setprod_diff1: "finite A ==> f a \<noteq> 0 ==>
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1224
  (setprod f (A - {a}) :: 'a :: {field}) =
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1225
  (if a:A then setprod f A / f a else setprod f A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1226
  by (erule finite_induct) (auto simp add: insert_Diff_if)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1227
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1228
lemma setprod_inversef: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1229
  fixes f :: "'b \<Rightarrow> 'a::field_inverse_zero"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1230
  shows "finite A ==> setprod (inverse \<circ> f) A = inverse (setprod f A)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1231
by (erule finite_induct) auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1232
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1233
lemma setprod_dividef:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1234
  fixes f :: "'b \<Rightarrow> 'a::field_inverse_zero"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1235
  shows "finite A
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1236
    ==> setprod (%x. f x / g x) A = setprod f A / setprod g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1237
apply (subgoal_tac
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1238
         "setprod (%x. f x / g x) A = setprod (%x. f x * (inverse \<circ> g) x) A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1239
apply (erule ssubst)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1240
apply (subst divide_inverse)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1241
apply (subst setprod_timesf)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1242
apply (subst setprod_inversef, assumption+, rule refl)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1243
apply (rule setprod_cong, rule refl)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1244
apply (subst divide_inverse, auto)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1245
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1246
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1247
lemma setprod_dvd_setprod [rule_format]: 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1248
    "(ALL x : A. f x dvd g x) \<longrightarrow> setprod f A dvd setprod g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1249
  apply (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1250
  apply (induct set: finite)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1251
  apply (auto simp add: dvd_def)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1252
  apply (rule_tac x = "k * ka" in exI)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1253
  apply (simp add: algebra_simps)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1254
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1255
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1256
lemma setprod_dvd_setprod_subset:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1257
  "finite B \<Longrightarrow> A <= B \<Longrightarrow> setprod f A dvd setprod f B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1258
  apply (subgoal_tac "setprod f B = setprod f A * setprod f (B - A)")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1259
  apply (unfold dvd_def, blast)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1260
  apply (subst setprod_Un_disjoint [symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1261
  apply (auto elim: finite_subset intro: setprod_cong)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1262
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1263
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1264
lemma setprod_dvd_setprod_subset2:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1265
  "finite B \<Longrightarrow> A <= B \<Longrightarrow> ALL x : A. (f x::'a::comm_semiring_1) dvd g x \<Longrightarrow> 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1266
      setprod f A dvd setprod g B"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1267
  apply (rule dvd_trans)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1268
  apply (rule setprod_dvd_setprod, erule (1) bspec)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1269
  apply (erule (1) setprod_dvd_setprod_subset)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1270
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1271
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1272
lemma dvd_setprod: "finite A \<Longrightarrow> i:A \<Longrightarrow> 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1273
    (f i ::'a::comm_semiring_1) dvd setprod f A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1274
by (induct set: finite) (auto intro: dvd_mult)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1275
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1276
lemma dvd_setsum [rule_format]: "(ALL i : A. d dvd f i) \<longrightarrow> 
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1277
    (d::'a::comm_semiring_1) dvd (SUM x : A. f x)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1278
  apply (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1279
  apply (induct set: finite)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1280
  apply auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1281
done
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1282
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1283
lemma setprod_mono:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1284
  fixes f :: "'a \<Rightarrow> 'b\<Colon>linordered_semidom"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1285
  assumes "\<forall>i\<in>A. 0 \<le> f i \<and> f i \<le> g i"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1286
  shows "setprod f A \<le> setprod g A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1287
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1288
  case True
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1289
  hence ?thesis "setprod f A \<ge> 0" using subset_refl[of A]
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1290
  proof (induct A rule: finite_subset_induct)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1291
    case (insert a F)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1292
    thus "setprod f (insert a F) \<le> setprod g (insert a F)" "0 \<le> setprod f (insert a F)"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1293
      unfolding setprod_insert[OF insert(1,3)]
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1294
      using assms[rule_format,OF insert(2)] insert
56536
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 56166
diff changeset
  1295
      by (auto intro: mult_mono)
54744
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1296
  qed auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1297
  thus ?thesis by simp
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1298
qed auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1299
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1300
lemma abs_setprod:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1301
  fixes f :: "'a \<Rightarrow> 'b\<Colon>{linordered_field,abs}"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1302
  shows "abs (setprod f A) = setprod (\<lambda>x. abs (f x)) A"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1303
proof (cases "finite A")
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1304
  case True thus ?thesis
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1305
    by induct (auto simp add: field_simps abs_mult)
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1306
qed auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1307
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1308
lemma setprod_eq_1_iff [simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1309
  "finite F ==> setprod f F = 1 \<longleftrightarrow> (ALL a:F. f a = (1::nat))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1310
  by (induct set: finite) auto
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1311
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1312
lemma setprod_pos_nat:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1313
  "finite S ==> (ALL x : S. f x > (0::nat)) ==> setprod f S > 0"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1314
using setprod_zero_iff by(simp del:neq0_conv add:neq0_conv[symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1315
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1316
lemma setprod_pos_nat_iff[simp]:
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1317
  "finite S ==> (setprod f S > 0) = (ALL x : S. f x > (0::nat))"
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1318
using setprod_zero_iff by(simp del:neq0_conv add:neq0_conv[symmetric])
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1319
1e7f2d296e19 more algebraic terminology for theories about big operators
haftmann
parents:
diff changeset
  1320
end