src/HOL/Library/Binomial.thy
author wenzelm
Wed, 11 Feb 2009 21:40:16 +0100
changeset 29728 2a4f000d1e4d
parent 29694 2f2558d7bc3e
child 29906 80369da39838
permissions -rw-r--r--
more refs;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Binomial.thy
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
29694
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
     3
    Author:     Lawrence C Paulson, Amine Chaieb
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     4
    Copyright   1997  University of Cambridge
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     5
*)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     6
21263
wenzelm
parents: 21256
diff changeset
     7
header {* Binomial Coefficients *}
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     8
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     9
theory Binomial
29694
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
    10
imports Fact Plain "~~/src/HOL/SetInterval" Presburger 
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    11
begin
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    12
21263
wenzelm
parents: 21256
diff changeset
    13
text {* This development is based on the work of Andy Gordon and
wenzelm
parents: 21256
diff changeset
    14
  Florian Kammueller. *}
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    15
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    16
consts
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    17
  binomial :: "nat \<Rightarrow> nat \<Rightarrow> nat"      (infixl "choose" 65)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    18
primrec
21263
wenzelm
parents: 21256
diff changeset
    19
  binomial_0: "(0 choose k) = (if k = 0 then 1 else 0)"
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    20
  binomial_Suc: "(Suc n choose k) =
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    21
                 (if k = 0 then 1 else (n choose (k - 1)) + (n choose k))"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    22
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    23
lemma binomial_n_0 [simp]: "(n choose 0) = 1"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    24
by (cases n) simp_all
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    25
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    26
lemma binomial_0_Suc [simp]: "(0 choose Suc k) = 0"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    27
by simp
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    28
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    29
lemma binomial_Suc_Suc [simp]:
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    30
  "(Suc n choose Suc k) = (n choose k) + (n choose Suc k)"
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    31
by simp
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    32
21263
wenzelm
parents: 21256
diff changeset
    33
lemma binomial_eq_0: "!!k. n < k ==> (n choose k) = 0"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    34
by (induct n) auto
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    35
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    36
declare binomial_0 [simp del] binomial_Suc [simp del]
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    37
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    38
lemma binomial_n_n [simp]: "(n choose n) = 1"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    39
by (induct n) (simp_all add: binomial_eq_0)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    40
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    41
lemma binomial_Suc_n [simp]: "(Suc n choose n) = Suc n"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    42
by (induct n) simp_all
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    43
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    44
lemma binomial_1 [simp]: "(n choose Suc 0) = n"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    45
by (induct n) simp_all
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    46
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25134
diff changeset
    47
lemma zero_less_binomial: "k \<le> n ==> (n choose k) > 0"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    48
by (induct n k rule: diff_induct) simp_all
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    49
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    50
lemma binomial_eq_0_iff: "(n choose k = 0) = (n<k)"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    51
apply (safe intro!: binomial_eq_0)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    52
apply (erule contrapos_pp)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    53
apply (simp add: zero_less_binomial)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    54
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    55
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25134
diff changeset
    56
lemma zero_less_binomial_iff: "(n choose k > 0) = (k\<le>n)"
ad4d5365d9d8 went back to >0
nipkow
parents: 25134
diff changeset
    57
by(simp add: linorder_not_less binomial_eq_0_iff neq0_conv[symmetric]
ad4d5365d9d8 went back to >0
nipkow
parents: 25134
diff changeset
    58
        del:neq0_conv)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    59
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    60
(*Might be more useful if re-oriented*)
21263
wenzelm
parents: 21256
diff changeset
    61
lemma Suc_times_binomial_eq:
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    62
  "!!k. k \<le> n ==> Suc n * (n choose k) = (Suc n choose Suc k) * Suc k"
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    63
apply (induct n)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    64
apply (simp add: binomial_0)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    65
apply (case_tac k)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    66
apply (auto simp add: add_mult_distrib add_mult_distrib2 le_Suc_eq
21263
wenzelm
parents: 21256
diff changeset
    67
    binomial_eq_0)
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
    68
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    69
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    70
text{*This is the well-known version, but it's harder to use because of the
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    71
  need to reason about division.*}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    72
lemma binomial_Suc_Suc_eq_times:
21263
wenzelm
parents: 21256
diff changeset
    73
    "k \<le> n ==> (Suc n choose Suc k) = (Suc n * (n choose k)) div Suc k"
wenzelm
parents: 21256
diff changeset
    74
  by (simp add: Suc_times_binomial_eq div_mult_self_is_m zero_less_Suc
wenzelm
parents: 21256
diff changeset
    75
    del: mult_Suc mult_Suc_right)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    76
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    77
text{*Another version, with -1 instead of Suc.*}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    78
lemma times_binomial_minus1_eq:
21263
wenzelm
parents: 21256
diff changeset
    79
    "[|k \<le> n;  0<k|] ==> (n choose k) * k = n * ((n - 1) choose (k - 1))"
wenzelm
parents: 21256
diff changeset
    80
  apply (cut_tac n = "n - 1" and k = "k - 1" in Suc_times_binomial_eq)
wenzelm
parents: 21256
diff changeset
    81
  apply (simp split add: nat_diff_split, auto)
wenzelm
parents: 21256
diff changeset
    82
  done
wenzelm
parents: 21256
diff changeset
    83
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    84
25378
dca691610489 tuned document;
wenzelm
parents: 25162
diff changeset
    85
subsection {* Theorems about @{text "choose"} *}
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    86
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    87
text {*
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    88
  \medskip Basic theorem about @{text "choose"}.  By Florian
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    89
  Kamm\"uller, tidied by LCP.
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    90
*}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    91
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    92
lemma card_s_0_eq_empty:
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    93
    "finite A ==> card {B. B \<subseteq> A & card B = 0} = 1"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    94
  apply (simp cong add: conj_cong add: finite_subset [THEN card_0_eq])
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    95
  apply (simp cong add: rev_conj_cong)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    96
  done
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    97
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    98
lemma choose_deconstruct: "finite M ==> x \<notin> M
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    99
  ==> {s. s <= insert x M & card(s) = Suc k}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   100
       = {s. s <= M & card(s) = Suc k} Un
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   101
         {s. EX t. t <= M & card(t) = k & s = insert x t}"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   102
  apply safe
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   103
   apply (auto intro: finite_subset [THEN card_insert_disjoint])
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   104
  apply (drule_tac x = "xa - {x}" in spec)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   105
  apply (subgoal_tac "x \<notin> xa", auto)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   106
  apply (erule rev_mp, subst card_Diff_singleton)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   107
  apply (auto intro: finite_subset)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   108
  done
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   109
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   110
text{*There are as many subsets of @{term A} having cardinality @{term k}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   111
 as there are sets obtained from the former by inserting a fixed element
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   112
 @{term x} into each.*}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   113
lemma constr_bij:
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   114
   "[|finite A; x \<notin> A|] ==>
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   115
    card {B. EX C. C <= A & card(C) = k & B = insert x C} =
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   116
    card {B. B <= A & card(B) = k}"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   117
  apply (rule_tac f = "%s. s - {x}" and g = "insert x" in card_bij_eq)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   118
       apply (auto elim!: equalityE simp add: inj_on_def)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   119
    apply (subst Diff_insert0, auto)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   120
   txt {* finiteness of the two sets *}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   121
   apply (rule_tac [2] B = "Pow (A)" in finite_subset)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   122
   apply (rule_tac B = "Pow (insert x A)" in finite_subset)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   123
   apply fast+
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   124
  done
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   125
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   126
text {*
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   127
  Main theorem: combinatorial statement about number of subsets of a set.
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   128
*}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   129
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   130
lemma n_sub_lemma:
21263
wenzelm
parents: 21256
diff changeset
   131
    "!!A. finite A ==> card {B. B <= A & card B = k} = (card A choose k)"
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   132
  apply (induct k)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   133
   apply (simp add: card_s_0_eq_empty, atomize)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   134
  apply (rotate_tac -1, erule finite_induct)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   135
   apply (simp_all (no_asm_simp) cong add: conj_cong
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   136
     add: card_s_0_eq_empty choose_deconstruct)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   137
  apply (subst card_Un_disjoint)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   138
     prefer 4 apply (force simp add: constr_bij)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   139
    prefer 3 apply force
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   140
   prefer 2 apply (blast intro: finite_Pow_iff [THEN iffD2]
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   141
     finite_subset [of _ "Pow (insert x F)", standard])
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   142
  apply (blast intro: finite_Pow_iff [THEN iffD2, THEN [2] finite_subset])
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   143
  done
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   144
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   145
theorem n_subsets:
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   146
    "finite A ==> card {B. B <= A & card B = k} = (card A choose k)"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   147
  by (simp add: n_sub_lemma)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   148
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   149
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   150
text{* The binomial theorem (courtesy of Tobias Nipkow): *}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   151
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   152
theorem binomial: "(a+b::nat)^n = (\<Sum>k=0..n. (n choose k) * a^k * b^(n-k))"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   153
proof (induct n)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   154
  case 0 thus ?case by simp
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   155
next
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   156
  case (Suc n)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   157
  have decomp: "{0..n+1} = {0} \<union> {n+1} \<union> {1..n}"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   158
    by (auto simp add:atLeastAtMost_def atLeast_def atMost_def)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   159
  have decomp2: "{0..n} = {0} \<union> {1..n}"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   160
    by (auto simp add:atLeastAtMost_def atLeast_def atMost_def)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   161
  have "(a+b::nat)^(n+1) = (a+b) * (\<Sum>k=0..n. (n choose k) * a^k * b^(n-k))"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   162
    using Suc by simp
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   163
  also have "\<dots> =  a*(\<Sum>k=0..n. (n choose k) * a^k * b^(n-k)) +
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   164
                   b*(\<Sum>k=0..n. (n choose k) * a^k * b^(n-k))"
21263
wenzelm
parents: 21256
diff changeset
   165
    by (rule nat_distrib)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   166
  also have "\<dots> = (\<Sum>k=0..n. (n choose k) * a^(k+1) * b^(n-k)) +
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   167
                  (\<Sum>k=0..n. (n choose k) * a^k * b^(n-k+1))"
21263
wenzelm
parents: 21256
diff changeset
   168
    by (simp add: setsum_right_distrib mult_ac)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   169
  also have "\<dots> = (\<Sum>k=0..n. (n choose k) * a^k * b^(n+1-k)) +
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   170
                  (\<Sum>k=1..n+1. (n choose (k - 1)) * a^k * b^(n+1-k))"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   171
    by (simp add:setsum_shift_bounds_cl_Suc_ivl Suc_diff_le
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   172
             del:setsum_cl_ivl_Suc)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   173
  also have "\<dots> = a^(n+1) + b^(n+1) +
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   174
                  (\<Sum>k=1..n. (n choose (k - 1)) * a^k * b^(n+1-k)) +
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   175
                  (\<Sum>k=1..n. (n choose k) * a^k * b^(n+1-k))"
21263
wenzelm
parents: 21256
diff changeset
   176
    by (simp add: decomp2)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   177
  also have
21263
wenzelm
parents: 21256
diff changeset
   178
      "\<dots> = a^(n+1) + b^(n+1) + (\<Sum>k=1..n. (n+1 choose k) * a^k * b^(n+1-k))"
wenzelm
parents: 21256
diff changeset
   179
    by (simp add: nat_distrib setsum_addf binomial.simps)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   180
  also have "\<dots> = (\<Sum>k=0..n+1. (n+1 choose k) * a^k * b^(n+1-k))"
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   181
    using decomp by simp
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   182
  finally show ?case by simp
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   183
qed
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   184
29694
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   185
section{* Pochhammer's symbol : generalized raising factorial*}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   186
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   187
definition "pochhammer (a::'a::comm_semiring_1) n = (if n = 0 then 1 else setprod (\<lambda>n. a + of_nat n) {0 .. n - 1})"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   188
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   189
lemma pochhammer_0[simp]: "pochhammer a 0 = 1" 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   190
  by (simp add: pochhammer_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   191
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   192
lemma pochhammer_1[simp]: "pochhammer a 1 = a" by (simp add: pochhammer_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   193
lemma pochhammer_Suc0[simp]: "pochhammer a (Suc 0) = a" 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   194
  by (simp add: pochhammer_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   195
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   196
lemma pochhammer_Suc_setprod: "pochhammer a (Suc n) = setprod (\<lambda>n. a + of_nat n) {0 .. n}"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   197
  by (simp add: pochhammer_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   198
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   199
lemma setprod_nat_ivl_Suc: "setprod f {0 .. Suc n} = setprod f {0..n} * f (Suc n)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   200
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   201
  have th: "finite {0..n}" "finite {Suc n}" "{0..n} \<inter> {Suc n} = {}" by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   202
  have eq: "{0..Suc n} = {0..n} \<union> {Suc n}" by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   203
  show ?thesis unfolding eq setprod_Un_disjoint[OF th] by simp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   204
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   205
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   206
lemma setprod_nat_ivl_1_Suc: "setprod f {0 .. Suc n} = f 0 * setprod f {1.. Suc n}"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   207
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   208
  have th: "finite {0}" "finite {1..Suc n}" "{0} \<inter> {1.. Suc n} = {}" by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   209
  have eq: "{0..Suc n} = {0} \<union> {1 .. Suc n}" by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   210
  show ?thesis unfolding eq setprod_Un_disjoint[OF th] by simp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   211
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   212
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   213
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   214
lemma pochhammer_Suc: "pochhammer a (Suc n) = pochhammer a n * (a + of_nat n)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   215
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   216
  {assume "n=0" then have ?thesis by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   217
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   218
  {fix m assume m: "n = Suc m"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   219
    have ?thesis  unfolding m pochhammer_Suc_setprod setprod_nat_ivl_Suc ..}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   220
  ultimately show ?thesis by (cases n, auto)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   221
qed 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   222
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   223
lemma pochhammer_rec: "pochhammer a (Suc n) = a * pochhammer (a + 1) n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   224
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   225
  {assume "n=0" then have ?thesis by (simp add: pochhammer_Suc_setprod)}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   226
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   227
  {assume n0: "n \<noteq> 0"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   228
    have th0: "finite {1 .. n}" "0 \<notin> {1 .. n}" by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   229
    have eq: "insert 0 {1 .. n} = {0..n}" by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   230
    have th1: "(\<Prod>n\<in>{1\<Colon>nat..n}. a + of_nat n) =
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   231
      (\<Prod>n\<in>{0\<Colon>nat..n - 1}. a + 1 + of_nat n)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   232
      apply (rule setprod_reindex_cong[where f = "Suc"])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   233
      using n0 by (auto simp add: expand_fun_eq ring_simps)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   234
    have ?thesis apply (simp add: pochhammer_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   235
    unfolding setprod_insert[OF th0, unfolded eq]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   236
    using th1 by (simp add: ring_simps)}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   237
ultimately show ?thesis by blast
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   238
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   239
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   240
lemma fact_setprod: "fact n = setprod id {1 .. n}"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   241
  apply (induct n, simp)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   242
  apply (simp only: fact_Suc atLeastAtMostSuc_conv)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   243
  apply (subst setprod_insert)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   244
  by simp_all
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   245
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   246
lemma pochhammer_fact: "of_nat (fact n) = pochhammer 1 n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   247
  unfolding fact_setprod
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   248
  
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   249
  apply (cases n, simp_all add: of_nat_setprod pochhammer_Suc_setprod)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   250
  apply (rule setprod_reindex_cong[where f=Suc])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   251
  by (auto simp add: expand_fun_eq)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   252
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   253
lemma pochhammer_of_nat_eq_0_lemma: assumes kn: "k > n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   254
  shows "pochhammer (- (of_nat n :: 'a:: idom)) k = 0"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   255
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   256
  from kn obtain h where h: "k = Suc h" by (cases k, auto)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   257
  {assume n0: "n=0" then have ?thesis using kn 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   258
      by (cases k, simp_all add: pochhammer_rec del: pochhammer_Suc)}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   259
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   260
  {assume n0: "n \<noteq> 0"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   261
    then have ?thesis apply (simp add: h pochhammer_Suc_setprod)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   262
  apply (rule iffD2[OF setprod_zero_eq])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   263
  apply auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   264
  apply (rule_tac x="n" in bexI)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   265
  using h kn by auto}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   266
ultimately show ?thesis by blast
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   267
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   268
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   269
lemma pochhammer_of_nat_eq_0_lemma': assumes kn: "k \<le> n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   270
  shows "pochhammer (- (of_nat n :: 'a:: {idom, ring_char_0})) k \<noteq> 0"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   271
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   272
  {assume "k=0" then have ?thesis by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   273
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   274
  {fix h assume h: "k = Suc h"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   275
    then have ?thesis apply (simp add: pochhammer_Suc_setprod)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   276
      apply (subst setprod_zero_eq_field)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   277
      using h kn by (auto simp add: ring_simps)}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   278
  ultimately show ?thesis by (cases k, auto)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   279
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   280
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   281
lemma pochhammer_of_nat_eq_0_iff: 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   282
  shows "pochhammer (- (of_nat n :: 'a:: {idom, ring_char_0})) k = 0 \<longleftrightarrow> k > n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   283
  (is "?l = ?r")
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   284
  using pochhammer_of_nat_eq_0_lemma[of n k, where ?'a='a] 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   285
    pochhammer_of_nat_eq_0_lemma'[of k n, where ?'a = 'a]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   286
  by (auto simp add: not_le[symmetric])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   287
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   288
section{* Generalized binomial coefficients *}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   289
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   290
definition gbinomial :: "'a::{field, recpower,ring_char_0} \<Rightarrow> nat \<Rightarrow> 'a" (infixl "gchoose" 65)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   291
  where "a gchoose n = (if n = 0 then 1 else (setprod (\<lambda>i. a - of_nat i) {0 .. n - 1}) / of_nat (fact n))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   292
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   293
lemma gbinomial_0[simp]: "a gchoose 0 = 1" "0 gchoose (Suc n) = 0"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   294
  apply (simp_all add: gbinomial_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   295
  apply (subgoal_tac "(\<Prod>i\<Colon>nat\<in>{0\<Colon>nat..n}. - of_nat i) = (0::'b)")
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   296
  apply simp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   297
  apply (rule iffD2[OF setprod_zero_eq])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   298
  by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   299
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   300
lemma gbinomial_pochhammer: "a gchoose n = (- 1) ^ n * pochhammer (- a) n / of_nat (fact n)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   301
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   302
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   303
  {assume "n=0" then have ?thesis by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   304
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   305
  {assume n0: "n\<noteq>0"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   306
    from n0 setprod_constant[of "{0 .. n - 1}" "- (1:: 'a)"]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   307
    have eq: "(- (1\<Colon>'a)) ^ n = setprod (\<lambda>i. - 1) {0 .. n - 1}"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   308
      by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   309
    from n0 have ?thesis 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   310
      by (simp add: pochhammer_def gbinomial_def field_simps eq setprod_timesf[symmetric])}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   311
  ultimately show ?thesis by blast
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   312
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   313
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   314
lemma binomial_fact_lemma:
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   315
  "k \<le> n \<Longrightarrow> fact k * fact (n - k) * (n choose k) = fact n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   316
proof(induct n arbitrary: k rule: nat_less_induct)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   317
  fix n k assume H: "\<forall>m<n. \<forall>x\<le>m. fact x * fact (m - x) * (m choose x) =
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   318
                      fact m" and kn: "k \<le> n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   319
    let ?ths = "fact k * fact (n - k) * (n choose k) = fact n"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   320
  {assume "n=0" then have ?ths using kn by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   321
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   322
  {assume "k=0" then have ?ths using kn by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   323
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   324
  {assume nk: "n=k" then have ?ths by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   325
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   326
  {fix m h assume n: "n = Suc m" and h: "k = Suc h" and hm: "h < m"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   327
    from n have mn: "m < n" by arith
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   328
    from hm have hm': "h \<le> m" by arith
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   329
    from hm h n kn have km: "k \<le> m" by arith
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   330
    have "m - h = Suc (m - Suc h)" using  h km hm by arith 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   331
    with km h have th0: "fact (m - h) = (m - h) * fact (m - k)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   332
      by simp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   333
    from n h th0 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   334
    have "fact k * fact (n - k) * (n choose k) = k * (fact h * fact (m - h) * (m choose h)) +  (m - h) * (fact k * fact (m - k) * (m choose k))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   335
      by (simp add: ring_simps)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   336
    also have "\<dots> = (k + (m - h)) * fact m"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   337
      using H[rule_format, OF mn hm'] H[rule_format, OF mn km]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   338
      by (simp add: ring_simps)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   339
    finally have ?ths using h n km by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   340
  moreover have "n=0 \<or> k = 0 \<or> k = n \<or> (EX m h. n=Suc m \<and> k = Suc h \<and> h < m)" using kn by presburger
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   341
  ultimately show ?ths by blast
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   342
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   343
  
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   344
lemma binomial_fact: 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   345
  assumes kn: "k \<le> n" 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   346
  shows "(of_nat (n choose k) :: 'a::{field, ring_char_0}) = of_nat (fact n) / (of_nat (fact k) * of_nat (fact (n - k)))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   347
  using binomial_fact_lemma[OF kn]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   348
  by (simp add: field_simps fact_not_eq_zero of_nat_mult[symmetric])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   349
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   350
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   351
lemma binomial_gbinomial: "of_nat (n choose k) = of_nat n gchoose k"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   352
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   353
  {assume kn: "k > n" 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   354
    from kn binomial_eq_0[OF kn] have ?thesis 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   355
      by (simp add: gbinomial_pochhammer field_simps
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   356
	pochhammer_of_nat_eq_0_iff)}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   357
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   358
  {assume "k=0" then have ?thesis by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   359
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   360
  {assume kn: "k \<le> n" and k0: "k\<noteq> 0"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   361
    from k0 obtain h where h: "k = Suc h" by (cases k, auto)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   362
    from h
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   363
    have eq:"(- 1 :: 'a) ^ k = setprod (\<lambda>i. - 1) {0..h}"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   364
      by (subst setprod_constant, auto)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   365
    have eq': "(\<Prod>i\<in>{0..h}. of_nat n + - (of_nat i :: 'a)) = (\<Prod>i\<in>{n - h..n}. of_nat i)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   366
      apply (rule strong_setprod_reindex_cong[where f="op - n"])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   367
      using h kn 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   368
      apply (simp_all add: inj_on_def image_iff Bex_def expand_set_eq)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   369
      apply clarsimp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   370
      apply (presburger)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   371
      apply presburger
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   372
      by (simp add: expand_fun_eq ring_simps of_nat_add[symmetric] del: of_nat_add)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   373
    have th0: "finite {1..n - Suc h}" "finite {n - h .. n}" 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   374
"{1..n - Suc h} \<inter> {n - h .. n} = {}" and eq3: "{1..n - Suc h} \<union> {n - h .. n} = {1..n}" using h kn by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   375
    from eq[symmetric]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   376
    have ?thesis using kn
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   377
      apply (simp add: binomial_fact[OF kn, where ?'a = 'a] 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   378
	gbinomial_pochhammer field_simps pochhammer_Suc_setprod)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   379
      apply (simp add: pochhammer_Suc_setprod fact_setprod h of_nat_setprod setprod_timesf[symmetric] eq' del: One_nat_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   380
      unfolding setprod_Un_disjoint[OF th0, unfolded eq3, of "of_nat:: nat \<Rightarrow> 'a"] eq[unfolded h]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   381
      unfolding mult_assoc[symmetric] 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   382
      unfolding setprod_timesf[symmetric]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   383
      apply simp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   384
      apply (rule disjI2)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   385
      apply (rule strong_setprod_reindex_cong[where f= "op - n"])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   386
      apply (auto simp add: inj_on_def image_iff Bex_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   387
      apply presburger
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   388
      apply (subgoal_tac "(of_nat (n - x) :: 'a) = of_nat n - of_nat x")
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   389
      apply simp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   390
      by (rule of_nat_diff, simp)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   391
  }
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   392
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   393
  have "k > n \<or> k = 0 \<or> (k \<le> n \<and> k \<noteq> 0)" by arith
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   394
  ultimately show ?thesis by blast
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   395
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   396
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   397
lemma gbinomial_1[simp]: "a gchoose 1 = a"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   398
  by (simp add: gbinomial_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   399
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   400
lemma gbinomial_Suc0[simp]: "a gchoose (Suc 0) = a"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   401
  by (simp add: gbinomial_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   402
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   403
lemma gbinomial_mult_1: "a * (a gchoose n) = of_nat n * (a gchoose n) + of_nat (Suc n) * (a gchoose (Suc n))" (is "?l = ?r")
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   404
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   405
  have "?r = ((- 1) ^n * pochhammer (- a) n / of_nat (fact n)) * (of_nat n - (- a + of_nat n))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   406
    unfolding gbinomial_pochhammer
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   407
    pochhammer_Suc fact_Suc of_nat_mult right_diff_distrib power_Suc
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   408
    by (simp add:  field_simps del: of_nat_Suc)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   409
  also have "\<dots> = ?l" unfolding gbinomial_pochhammer
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   410
    by (simp add: ring_simps)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   411
  finally show ?thesis ..
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   412
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   413
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   414
lemma gbinomial_mult_1': "(a gchoose n) * a = of_nat n * (a gchoose n) + of_nat (Suc n) * (a gchoose (Suc n))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   415
  by (simp add: mult_commute gbinomial_mult_1)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   416
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   417
lemma gbinomial_Suc: "a gchoose (Suc k) = (setprod (\<lambda>i. a - of_nat i) {0 .. k}) / of_nat (fact (Suc k))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   418
  by (simp add: gbinomial_def)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   419
 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   420
lemma gbinomial_mult_fact:
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   421
  "(of_nat (fact (Suc k)) :: 'a) * ((a::'a::{field, ring_char_0,recpower}) gchoose (Suc k)) = (setprod (\<lambda>i. a - of_nat i) {0 .. k})"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   422
  unfolding gbinomial_Suc
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   423
  by (simp_all add: field_simps del: fact_Suc)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   424
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   425
lemma gbinomial_mult_fact':
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   426
  "((a::'a::{field, ring_char_0,recpower}) gchoose (Suc k)) * (of_nat (fact (Suc k)) :: 'a) = (setprod (\<lambda>i. a - of_nat i) {0 .. k})"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   427
  using gbinomial_mult_fact[of k a]
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   428
  apply (subst mult_commute) .
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   429
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   430
lemma gbinomial_Suc_Suc: "((a::'a::{field,recpower, ring_char_0}) + 1) gchoose (Suc k) = a gchoose k + (a gchoose (Suc k))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   431
proof-
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   432
  {assume "k = 0" then have ?thesis by simp}
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   433
  moreover
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   434
  {fix h assume h: "k = Suc h"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   435
   have eq0: "(\<Prod>i\<in>{1..k}. (a + 1) - of_nat i) = (\<Prod>i\<in>{0..h}. a - of_nat i)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   436
     apply (rule strong_setprod_reindex_cong[where f = Suc])
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   437
     using h by auto
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   438
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   439
    have "of_nat (fact (Suc k)) * (a gchoose k + (a gchoose (Suc k))) = ((a gchoose Suc h) * of_nat (fact (Suc h)) * of_nat (Suc k)) + (\<Prod>i\<in>{0\<Colon>nat..Suc h}. a - of_nat i)" 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   440
      unfolding h
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   441
      apply (simp add: ring_simps del: fact_Suc)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   442
      unfolding gbinomial_mult_fact'
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   443
      apply (subst fact_Suc)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   444
      unfolding of_nat_mult 
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   445
      apply (subst mult_commute)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   446
      unfolding mult_assoc
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   447
      unfolding gbinomial_mult_fact
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   448
      by (simp add: ring_simps)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   449
    also have "\<dots> = (\<Prod>i\<in>{0..h}. a - of_nat i) * (a + 1)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   450
      unfolding gbinomial_mult_fact' setprod_nat_ivl_Suc
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   451
      by (simp add: ring_simps h)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   452
    also have "\<dots> = (\<Prod>i\<in>{0..k}. (a + 1) - of_nat i)"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   453
      using eq0
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   454
      unfolding h  setprod_nat_ivl_1_Suc
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   455
      by simp
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   456
    also have "\<dots> = of_nat (fact (Suc k)) * ((a + 1) gchoose (Suc k))"
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   457
      unfolding gbinomial_mult_fact ..
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   458
    finally have ?thesis by (simp del: fact_Suc) }
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   459
  ultimately show ?thesis by (cases k, auto)
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   460
qed
2f2558d7bc3e Added a formalization of generalized raising Factorials (Pochhammer's symbol) and binomial coefficients
chaieb
parents: 27487
diff changeset
   461
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   462
end