author | wenzelm |
Tue, 12 Jul 2016 21:53:56 +0200 | |
changeset 63466 | 2100fbbdc3f1 |
parent 63417 | c184ec919c70 |
child 63526 | f8213afea07f |
permissions | -rw-r--r-- |
63466 | 1 |
(* Title: HOL/Binomial.thy |
2 |
Author: Jacques D. Fleuriot |
|
3 |
Author: Lawrence C Paulson |
|
4 |
Author: Jeremy Avigad |
|
5 |
Author: Chaitanya Mangla |
|
6 |
Author: Manuel Eberl |
|
12196 | 7 |
*) |
8 |
||
63373 | 9 |
section \<open>Combinatorial Functions: Factorial Function, Rising Factorials, Binomial Coefficients and Binomial Theorem\<close> |
15094
a7d1a3fdc30d
conversion of Hyperreal/{Fact,Filter} to Isar scripts
paulson
parents:
12196
diff
changeset
|
10 |
|
59669
de7792ea4090
renaming HOL/Fact.thy -> Binomial.thy
paulson <lp15@cam.ac.uk>
parents:
59667
diff
changeset
|
11 |
theory Binomial |
63466 | 12 |
imports Main |
15131 | 13 |
begin |
15094
a7d1a3fdc30d
conversion of Hyperreal/{Fact,Filter} to Isar scripts
paulson
parents:
12196
diff
changeset
|
14 |
|
60758 | 15 |
subsection \<open>Factorial\<close> |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
16 |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
17 |
context semiring_char_0 |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
18 |
begin |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
19 |
|
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
20 |
definition fact :: "nat \<Rightarrow> 'a" |
63466 | 21 |
where fact_setprod: "fact n = of_nat (\<Prod>{1..n})" |
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
22 |
|
63466 | 23 |
lemma fact_setprod_Suc: "fact n = of_nat (setprod Suc {0..<n})" |
24 |
by (cases n) |
|
25 |
(simp_all add: fact_setprod setprod.atLeast_Suc_atMost_Suc_shift |
|
26 |
atLeastLessThanSuc_atLeastAtMost) |
|
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
27 |
|
63466 | 28 |
lemma fact_setprod_rev: "fact n = of_nat (\<Prod>i = 0..<n. n - i)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
29 |
using setprod.atLeast_atMost_rev [of "\<lambda>i. i" 1 n] |
63466 | 30 |
by (cases n) |
31 |
(simp_all add: fact_setprod_Suc setprod.atLeast_Suc_atMost_Suc_shift |
|
32 |
atLeastLessThanSuc_atLeastAtMost) |
|
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
33 |
|
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
34 |
lemma fact_0 [simp]: "fact 0 = 1" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
35 |
by (simp add: fact_setprod) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
36 |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
37 |
lemma fact_1 [simp]: "fact 1 = 1" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
38 |
by (simp add: fact_setprod) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
39 |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
40 |
lemma fact_Suc_0 [simp]: "fact (Suc 0) = 1" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
41 |
by (simp add: fact_setprod) |
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
42 |
|
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
43 |
lemma fact_Suc [simp]: "fact (Suc n) = of_nat (Suc n) * fact n" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
44 |
by (simp add: fact_setprod atLeastAtMostSuc_conv algebra_simps) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
45 |
|
63466 | 46 |
lemma fact_2 [simp]: "fact 2 = 2" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
47 |
by (simp add: numeral_2_eq_2) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
48 |
|
63466 | 49 |
lemma fact_split: "k \<le> n \<Longrightarrow> fact n = of_nat (setprod Suc {n - k..<n}) * fact (n - k)" |
50 |
by (simp add: fact_setprod_Suc setprod.union_disjoint [symmetric] |
|
51 |
ivl_disj_un ac_simps of_nat_mult [symmetric]) |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
52 |
|
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
53 |
end |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
54 |
|
63466 | 55 |
lemma of_nat_fact [simp]: "of_nat (fact n) = fact n" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
56 |
by (simp add: fact_setprod) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
57 |
|
63466 | 58 |
lemma of_int_fact [simp]: "of_int (fact n) = fact n" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
59 |
by (simp only: fact_setprod of_int_of_nat_eq) |
62347 | 60 |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
61 |
lemma fact_reduce: "n > 0 \<Longrightarrow> fact n = of_nat n * fact (n - 1)" |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
62 |
by (cases n) auto |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
63 |
|
59733
cd945dc13bec
more general type class for factorial. Now allows code generation (?)
paulson <lp15@cam.ac.uk>
parents:
59730
diff
changeset
|
64 |
lemma fact_nonzero [simp]: "fact n \<noteq> (0::'a::{semiring_char_0,semiring_no_zero_divisors})" |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
65 |
apply (induct n) |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
66 |
apply auto |
63466 | 67 |
using of_nat_eq_0_iff |
68 |
apply fastforce |
|
69 |
done |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
70 |
|
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
71 |
lemma fact_mono_nat: "m \<le> n \<Longrightarrow> fact m \<le> (fact n :: nat)" |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
72 |
by (induct n) (auto simp: le_Suc_eq) |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
73 |
|
63466 | 74 |
lemma fact_in_Nats: "fact n \<in> \<nat>" |
75 |
by (induct n) auto |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
76 |
|
63466 | 77 |
lemma fact_in_Ints: "fact n \<in> \<int>" |
78 |
by (induct n) auto |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
79 |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
80 |
context |
60241 | 81 |
assumes "SORT_CONSTRAINT('a::linordered_semidom)" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
82 |
begin |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
83 |
|
63466 | 84 |
lemma fact_mono: "m \<le> n \<Longrightarrow> fact m \<le> (fact n :: 'a)" |
85 |
by (metis of_nat_fact of_nat_le_iff fact_mono_nat) |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
86 |
|
63466 | 87 |
lemma fact_ge_1 [simp]: "fact n \<ge> (1 :: 'a)" |
88 |
by (metis le0 fact_0 fact_mono) |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
89 |
|
63466 | 90 |
lemma fact_gt_zero [simp]: "fact n > (0 :: 'a)" |
91 |
using fact_ge_1 less_le_trans zero_less_one by blast |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
92 |
|
63466 | 93 |
lemma fact_ge_zero [simp]: "fact n \<ge> (0 :: 'a)" |
94 |
by (simp add: less_imp_le) |
|
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
95 |
|
63466 | 96 |
lemma fact_not_neg [simp]: "\<not> fact n < (0 :: 'a)" |
97 |
by (simp add: not_less_iff_gr_or_eq) |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
98 |
|
63466 | 99 |
lemma fact_le_power: "fact n \<le> (of_nat (n^n) :: 'a)" |
100 |
proof (induct n) |
|
101 |
case 0 |
|
102 |
then show ?case by simp |
|
103 |
next |
|
104 |
case (Suc n) |
|
105 |
then have *: "fact n \<le> (of_nat (Suc n ^ n) ::'a)" |
|
106 |
by (rule order_trans) (simp add: power_mono del: of_nat_power) |
|
107 |
have "fact (Suc n) = (of_nat (Suc n) * fact n ::'a)" |
|
108 |
by (simp add: algebra_simps) |
|
109 |
also have "\<dots> \<le> of_nat (Suc n) * of_nat (Suc n ^ n)" |
|
110 |
by (simp add: * ordered_comm_semiring_class.comm_mult_left_mono del: of_nat_power) |
|
111 |
also have "\<dots> \<le> of_nat (Suc n ^ Suc n)" |
|
112 |
by (metis of_nat_mult order_refl power_Suc) |
|
113 |
finally show ?case . |
|
114 |
qed |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
115 |
|
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
116 |
end |
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
117 |
|
63466 | 118 |
text \<open>Note that @{term "fact 0 = fact 1"}\<close> |
119 |
lemma fact_less_mono_nat: "0 < m \<Longrightarrow> m < n \<Longrightarrow> fact m < (fact n :: nat)" |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
120 |
by (induct n) (auto simp: less_Suc_eq) |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
121 |
|
63466 | 122 |
lemma fact_less_mono: "0 < m \<Longrightarrow> m < n \<Longrightarrow> fact m < (fact n :: 'a::linordered_semidom)" |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
123 |
by (metis of_nat_fact of_nat_less_iff fact_less_mono_nat) |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
124 |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
125 |
lemma fact_ge_Suc_0_nat [simp]: "fact n \<ge> Suc 0" |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
126 |
by (metis One_nat_def fact_ge_1) |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
127 |
|
63466 | 128 |
lemma dvd_fact: "1 \<le> m \<Longrightarrow> m \<le> n \<Longrightarrow> m dvd fact n" |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
129 |
by (induct n) (auto simp: dvdI le_Suc_eq) |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
130 |
|
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
131 |
lemma fact_ge_self: "fact n \<ge> n" |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
132 |
by (cases "n = 0") (simp_all add: dvd_imp_le dvd_fact) |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
133 |
|
63466 | 134 |
lemma fact_dvd: "n \<le> m \<Longrightarrow> fact n dvd (fact m :: 'a::{semiring_div,linordered_semidom})" |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
135 |
by (induct m) (auto simp: le_Suc_eq) |
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
136 |
|
63466 | 137 |
lemma fact_mod: "m \<le> n \<Longrightarrow> fact n mod (fact m :: 'a::{semiring_div,linordered_semidom}) = 0" |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
138 |
by (auto simp add: fact_dvd) |
40033
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
139 |
|
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
140 |
lemma fact_div_fact: |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
141 |
assumes "m \<ge> n" |
63466 | 142 |
shows "fact m div fact n = \<Prod>{n + 1..m}" |
40033
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
143 |
proof - |
63466 | 144 |
obtain d where "d = m - n" |
145 |
by auto |
|
146 |
with assms have "m = n + d" |
|
147 |
by auto |
|
40033
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
148 |
have "fact (n + d) div (fact n) = \<Prod>{n + 1..n + d}" |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
149 |
proof (induct d) |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
150 |
case 0 |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
151 |
show ?case by simp |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
152 |
next |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
153 |
case (Suc d') |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
154 |
have "fact (n + Suc d') div fact n = Suc (n + d') * fact (n + d') div fact n" |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
155 |
by simp |
63466 | 156 |
also from Suc.hyps have "\<dots> = Suc (n + d') * \<Prod>{n + 1..n + d'}" |
40033
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
157 |
unfolding div_mult1_eq[of _ "fact (n + d')"] by (simp add: fact_mod) |
63466 | 158 |
also have "\<dots> = \<Prod>{n + 1..n + Suc d'}" |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
159 |
by (simp add: atLeastAtMostSuc_conv) |
40033
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
160 |
finally show ?case . |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
161 |
qed |
63466 | 162 |
with \<open>m = n + d\<close> show ?thesis by simp |
40033
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
163 |
qed |
84200d970bf0
added some facts about factorial and dvd, div and mod
bulwahn
parents:
35644
diff
changeset
|
164 |
|
63466 | 165 |
lemma fact_num_eq_if: "fact m = (if m = 0 then 1 else of_nat m * fact (m - 1))" |
166 |
by (cases m) auto |
|
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
30242
diff
changeset
|
167 |
|
50240
019d642d422d
add upper bounds for factorial and binomial; add equation for binomial using nat-division (both from AFP/Girth_Chromatic)
hoelzl
parents:
50224
diff
changeset
|
168 |
lemma fact_div_fact_le_pow: |
63466 | 169 |
assumes "r \<le> n" |
170 |
shows "fact n div fact (n - r) \<le> n ^ r" |
|
50240
019d642d422d
add upper bounds for factorial and binomial; add equation for binomial using nat-division (both from AFP/Girth_Chromatic)
hoelzl
parents:
50224
diff
changeset
|
171 |
proof - |
63466 | 172 |
have "r \<le> n \<Longrightarrow> \<Prod>{n - r..n} = (n - r) * \<Prod>{Suc (n - r)..n}" for r |
57418 | 173 |
by (subst setprod.insert[symmetric]) (auto simp: atLeastAtMost_insertL) |
50240
019d642d422d
add upper bounds for factorial and binomial; add equation for binomial using nat-division (both from AFP/Girth_Chromatic)
hoelzl
parents:
50224
diff
changeset
|
174 |
with assms show ?thesis |
019d642d422d
add upper bounds for factorial and binomial; add equation for binomial using nat-division (both from AFP/Girth_Chromatic)
hoelzl
parents:
50224
diff
changeset
|
175 |
by (induct r rule: nat.induct) (auto simp add: fact_div_fact Suc_diff_Suc mult_le_mono) |
019d642d422d
add upper bounds for factorial and binomial; add equation for binomial using nat-division (both from AFP/Girth_Chromatic)
hoelzl
parents:
50224
diff
changeset
|
176 |
qed |
019d642d422d
add upper bounds for factorial and binomial; add equation for binomial using nat-division (both from AFP/Girth_Chromatic)
hoelzl
parents:
50224
diff
changeset
|
177 |
|
63466 | 178 |
lemma fact_numeral: "fact (numeral k) = numeral k * fact (pred_numeral k)" |
179 |
\<comment> \<open>Evaluation for specific numerals\<close> |
|
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
180 |
by (metis fact_Suc numeral_eq_Suc of_nat_numeral) |
57113
7e95523302e6
New theorems to enable the simplification of certain functions when applied to specific natural number constants (such as 4)
paulson <lp15@cam.ac.uk>
parents:
50240
diff
changeset
|
181 |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
182 |
|
63373 | 183 |
subsection \<open>Binomial coefficients\<close> |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
184 |
|
63466 | 185 |
text \<open>This development is based on the work of Andy Gordon and Florian Kammueller.\<close> |
186 |
||
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
187 |
text \<open>Combinatorial definition\<close> |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
188 |
|
63466 | 189 |
definition binomial :: "nat \<Rightarrow> nat \<Rightarrow> nat" (infixl "choose" 65) |
190 |
where "n choose k = card {K\<in>Pow {0..<n}. card K = k}" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
191 |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
192 |
theorem n_subsets: |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
193 |
assumes "finite A" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
194 |
shows "card {B. B \<subseteq> A \<and> card B = k} = card A choose k" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
195 |
proof - |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
196 |
from assms obtain f where bij: "bij_betw f {0..<card A} A" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
197 |
by (blast dest: ex_bij_betw_nat_finite) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
198 |
then have [simp]: "card (f ` C) = card C" if "C \<subseteq> {0..<card A}" for C |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
199 |
by (meson bij_betw_imp_inj_on bij_betw_subset card_image that) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
200 |
from bij have "bij_betw (image f) (Pow {0..<card A}) (Pow A)" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
201 |
by (rule bij_betw_Pow) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
202 |
then have "inj_on (image f) (Pow {0..<card A})" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
203 |
by (rule bij_betw_imp_inj_on) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
204 |
moreover have "{K. K \<subseteq> {0..<card A} \<and> card K = k} \<subseteq> Pow {0..<card A}" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
205 |
by auto |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
206 |
ultimately have "inj_on (image f) {K. K \<subseteq> {0..<card A} \<and> card K = k}" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
207 |
by (rule inj_on_subset) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
208 |
then have "card {K. K \<subseteq> {0..<card A} \<and> card K = k} = |
63466 | 209 |
card (image f ` {K. K \<subseteq> {0..<card A} \<and> card K = k})" (is "_ = card ?C") |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
210 |
by (simp add: card_image) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
211 |
also have "?C = {K. K \<subseteq> f ` {0..<card A} \<and> card K = k}" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
212 |
by (auto elim!: subset_imageE) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
213 |
also have "f ` {0..<card A} = A" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
214 |
by (meson bij bij_betw_def) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
215 |
finally show ?thesis |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
216 |
by (simp add: binomial_def) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
217 |
qed |
63466 | 218 |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
219 |
text \<open>Recursive characterization\<close> |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
220 |
|
63466 | 221 |
lemma binomial_n_0 [simp, code]: "n choose 0 = 1" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
222 |
proof - |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
223 |
have "{K \<in> Pow {0..<n}. card K = 0} = {{}}" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
224 |
by (auto dest: finite_subset) |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
225 |
then show ?thesis |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
226 |
by (simp add: binomial_def) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
227 |
qed |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
228 |
|
63466 | 229 |
lemma binomial_0_Suc [simp, code]: "0 choose Suc k = 0" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
230 |
by (simp add: binomial_def) |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
231 |
|
63466 | 232 |
lemma binomial_Suc_Suc [simp, code]: "Suc n choose Suc k = (n choose k) + (n choose Suc k)" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
233 |
proof - |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
234 |
let ?P = "\<lambda>n k. {K. K \<subseteq> {0..<n} \<and> card K = k}" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
235 |
let ?Q = "?P (Suc n) (Suc k)" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
236 |
have inj: "inj_on (insert n) (?P n k)" |
63466 | 237 |
by rule (auto; metis atLeastLessThan_iff insert_iff less_irrefl subsetCE) |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
238 |
have disjoint: "insert n ` ?P n k \<inter> ?P n (Suc k) = {}" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
239 |
by auto |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
240 |
have "?Q = {K\<in>?Q. n \<in> K} \<union> {K\<in>?Q. n \<notin> K}" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
241 |
by auto |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
242 |
also have "{K\<in>?Q. n \<in> K} = insert n ` ?P n k" (is "?A = ?B") |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
243 |
proof (rule set_eqI) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
244 |
fix K |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
245 |
have K_finite: "finite K" if "K \<subseteq> insert n {0..<n}" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
246 |
using that by (rule finite_subset) simp_all |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
247 |
have Suc_card_K: "Suc (card K - Suc 0) = card K" if "n \<in> K" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
248 |
and "finite K" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
249 |
proof - |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
250 |
from \<open>n \<in> K\<close> obtain L where "K = insert n L" and "n \<notin> L" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
251 |
by (blast elim: Set.set_insert) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
252 |
with that show ?thesis by (simp add: card_insert) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
253 |
qed |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
254 |
show "K \<in> ?A \<longleftrightarrow> K \<in> ?B" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
255 |
by (subst in_image_insert_iff) |
63466 | 256 |
(auto simp add: card_insert subset_eq_atLeast0_lessThan_finite |
257 |
Diff_subset_conv K_finite Suc_card_K) |
|
258 |
qed |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
259 |
also have "{K\<in>?Q. n \<notin> K} = ?P n (Suc k)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
260 |
by (auto simp add: atLeast0_lessThan_Suc) |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
261 |
finally show ?thesis using inj disjoint |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
262 |
by (simp add: binomial_def card_Un_disjoint card_image) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
263 |
qed |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
264 |
|
63466 | 265 |
lemma binomial_eq_0: "n < k \<Longrightarrow> n choose k = 0" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
266 |
by (auto simp add: binomial_def dest: subset_eq_atLeast0_lessThan_card) |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
267 |
|
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
268 |
lemma zero_less_binomial: "k \<le> n \<Longrightarrow> n choose k > 0" |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
269 |
by (induct n k rule: diff_induct) simp_all |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
270 |
|
63466 | 271 |
lemma binomial_eq_0_iff [simp]: "n choose k = 0 \<longleftrightarrow> n < k" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
272 |
by (metis binomial_eq_0 less_numeral_extra(3) not_less zero_less_binomial) |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
273 |
|
63466 | 274 |
lemma zero_less_binomial_iff [simp]: "n choose k > 0 \<longleftrightarrow> k \<le> n" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
275 |
by (metis binomial_eq_0_iff not_less0 not_less zero_less_binomial) |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
276 |
|
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
277 |
lemma binomial_n_n [simp]: "n choose n = 1" |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
278 |
by (induct n) (simp_all add: binomial_eq_0) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
279 |
|
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
280 |
lemma binomial_Suc_n [simp]: "Suc n choose n = Suc n" |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
281 |
by (induct n) simp_all |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
282 |
|
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
283 |
lemma binomial_1 [simp]: "n choose Suc 0 = n" |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
284 |
by (induct n) simp_all |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
285 |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
286 |
lemma choose_reduce_nat: |
63466 | 287 |
"0 < n \<Longrightarrow> 0 < k \<Longrightarrow> |
288 |
n choose k = ((n - 1) choose (k - 1)) + ((n - 1) choose k)" |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
289 |
using binomial_Suc_Suc [of "n - 1" "k - 1"] by simp |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
290 |
|
63466 | 291 |
lemma Suc_times_binomial_eq: "Suc n * (n choose k) = (Suc n choose Suc k) * Suc k" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
292 |
apply (induct n arbitrary: k) |
63466 | 293 |
apply simp |
294 |
apply arith |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
295 |
apply (case_tac k) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
296 |
apply (auto simp add: add_mult_distrib add_mult_distrib2 le_Suc_eq binomial_eq_0) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
297 |
done |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
298 |
|
60141
833adf7db7d8
New material, mostly about limits. Consolidation.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
299 |
lemma binomial_le_pow2: "n choose k \<le> 2^n" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
300 |
apply (induct n arbitrary: k) |
63466 | 301 |
apply (case_tac k) |
302 |
apply simp_all |
|
60141
833adf7db7d8
New material, mostly about limits. Consolidation.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
303 |
apply (case_tac k) |
63466 | 304 |
apply auto |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
305 |
apply (simp add: add_le_mono mult_2) |
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
306 |
done |
60141
833adf7db7d8
New material, mostly about limits. Consolidation.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
307 |
|
63466 | 308 |
text \<open>The absorption property.\<close> |
309 |
lemma Suc_times_binomial: "Suc k * (Suc n choose Suc k) = Suc n * (n choose k)" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
310 |
using Suc_times_binomial_eq by auto |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
311 |
|
63466 | 312 |
text \<open>This is the well-known version of absorption, but it's harder to use |
313 |
because of the need to reason about division.\<close> |
|
314 |
lemma binomial_Suc_Suc_eq_times: "(Suc n choose Suc k) = (Suc n * (n choose k)) div Suc k" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
315 |
by (simp add: Suc_times_binomial_eq del: mult_Suc mult_Suc_right) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
316 |
|
63466 | 317 |
text \<open>Another version of absorption, with \<open>-1\<close> instead of \<open>Suc\<close>.\<close> |
318 |
lemma times_binomial_minus1_eq: "0 < k \<Longrightarrow> k * (n choose k) = n * ((n - 1) choose (k - 1))" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
319 |
using Suc_times_binomial_eq [where n = "n - 1" and k = "k - 1"] |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
320 |
by (auto split add: nat_diff_split) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
321 |
|
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
322 |
|
60758 | 323 |
subsection \<open>The binomial theorem (courtesy of Tobias Nipkow):\<close> |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
324 |
|
63466 | 325 |
text \<open>Avigad's version, generalized to any commutative ring\<close> |
326 |
theorem binomial_ring: "(a + b :: 'a::{comm_ring_1,power})^n = |
|
327 |
(\<Sum>k=0..n. (of_nat (n choose k)) * a^k * b^(n-k))" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
328 |
proof (induct n) |
63466 | 329 |
case 0 |
330 |
then show ?case by simp |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
331 |
next |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
332 |
case (Suc n) |
63466 | 333 |
have decomp: "{0..n+1} = {0} \<union> {n + 1} \<union> {1..n}" |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
334 |
by auto |
63466 | 335 |
have decomp2: "{0..n} = {0} \<union> {1..n}" |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
336 |
by auto |
63466 | 337 |
have "(a + b)^(n+1) = (a + b) * (\<Sum>k=0..n. of_nat (n choose k) * a^k * b^(n - k))" |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
338 |
using Suc.hyps by simp |
63466 | 339 |
also have "\<dots> = a * (\<Sum>k=0..n. of_nat (n choose k) * a^k * b^(n-k)) + |
340 |
b * (\<Sum>k=0..n. of_nat (n choose k) * a^k * b^(n-k))" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
341 |
by (rule distrib_right) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
342 |
also have "\<dots> = (\<Sum>k=0..n. of_nat (n choose k) * a^(k+1) * b^(n-k)) + |
63466 | 343 |
(\<Sum>k=0..n. of_nat (n choose k) * a^k * b^(n - k + 1))" |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
344 |
by (auto simp add: setsum_right_distrib ac_simps) |
63466 | 345 |
also have "\<dots> = (\<Sum>k=0..n. of_nat (n choose k) * a^k * b^(n + 1 - k)) + |
346 |
(\<Sum>k=1..n+1. of_nat (n choose (k - 1)) * a^k * b^(n + 1 - k))" |
|
347 |
by (simp add:setsum_shift_bounds_cl_Suc_ivl Suc_diff_le field_simps del: setsum_cl_ivl_Suc) |
|
348 |
also have "\<dots> = a^(n + 1) + b^(n + 1) + |
|
349 |
(\<Sum>k=1..n. of_nat (n choose (k - 1)) * a^k * b^(n + 1 - k)) + |
|
350 |
(\<Sum>k=1..n. of_nat (n choose k) * a^k * b^(n + 1 - k))" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
351 |
by (simp add: decomp2) |
63466 | 352 |
also have "\<dots> = a^(n + 1) + b^(n + 1) + |
353 |
(\<Sum>k=1..n. of_nat (n + 1 choose k) * a^k * b^(n + 1 - k))" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
354 |
by (auto simp add: field_simps setsum.distrib [symmetric] choose_reduce_nat) |
63466 | 355 |
also have "\<dots> = (\<Sum>k=0..n+1. of_nat (n + 1 choose k) * a^k * b^(n + 1 - k))" |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
356 |
using decomp by (simp add: field_simps) |
63466 | 357 |
finally show ?case |
358 |
by simp |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
359 |
qed |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
360 |
|
63466 | 361 |
text \<open>Original version for the naturals.\<close> |
362 |
corollary binomial: "(a + b :: nat)^n = (\<Sum>k=0..n. (of_nat (n choose k)) * a^k * b^(n - k))" |
|
363 |
using binomial_ring [of "int a" "int b" n] |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
364 |
by (simp only: of_nat_add [symmetric] of_nat_mult [symmetric] of_nat_power [symmetric] |
63466 | 365 |
of_nat_setsum [symmetric] of_nat_eq_iff of_nat_id) |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
366 |
|
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
367 |
lemma binomial_fact_lemma: "k \<le> n \<Longrightarrow> fact k * fact (n - k) * (n choose k) = fact n" |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
368 |
proof (induct n arbitrary: k rule: nat_less_induct) |
63466 | 369 |
fix n k |
370 |
assume H: "\<forall>m<n. \<forall>x\<le>m. fact x * fact (m - x) * (m choose x) = fact m" |
|
371 |
assume kn: "k \<le> n" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
372 |
let ?ths = "fact k * fact (n - k) * (n choose k) = fact n" |
63466 | 373 |
consider "n = 0 \<or> k = 0 \<or> n = k" | m h where "n = Suc m" "k = Suc h" "h < m" |
374 |
using kn by atomize_elim presburger |
|
375 |
then show "fact k * fact (n - k) * (n choose k) = fact n" |
|
376 |
proof cases |
|
377 |
case 1 |
|
378 |
with kn show ?thesis by auto |
|
379 |
next |
|
380 |
case 2 |
|
381 |
note n = \<open>n = Suc m\<close> |
|
382 |
note k = \<open>k = Suc h\<close> |
|
383 |
note hm = \<open>h < m\<close> |
|
384 |
have mn: "m < n" |
|
385 |
using n by arith |
|
386 |
have hm': "h \<le> m" |
|
387 |
using hm by arith |
|
388 |
have km: "k \<le> m" |
|
389 |
using hm k n kn by arith |
|
390 |
have "m - h = Suc (m - Suc h)" |
|
391 |
using k km hm by arith |
|
392 |
with km k have "fact (m - h) = (m - h) * fact (m - k)" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
393 |
by simp |
63466 | 394 |
with n k have "fact k * fact (n - k) * (n choose k) = |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
395 |
k * (fact h * fact (m - h) * (m choose h)) + |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
396 |
(m - h) * (fact k * fact (m - k) * (m choose k))" |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
397 |
by (simp add: field_simps) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
398 |
also have "\<dots> = (k + (m - h)) * fact m" |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
399 |
using H[rule_format, OF mn hm'] H[rule_format, OF mn km] |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
400 |
by (simp add: field_simps) |
63466 | 401 |
finally show ?thesis |
402 |
using k n km by simp |
|
403 |
qed |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
404 |
qed |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
405 |
|
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
406 |
lemma binomial_fact': |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
407 |
assumes "k \<le> n" |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
408 |
shows "n choose k = fact n div (fact k * fact (n - k))" |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
409 |
using binomial_fact_lemma [OF assms] |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
410 |
by (metis fact_nonzero mult_eq_0_iff nonzero_mult_divide_cancel_left) |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
411 |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
412 |
lemma binomial_fact: |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
413 |
assumes kn: "k \<le> n" |
63466 | 414 |
shows "(of_nat (n choose k) :: 'a::field_char_0) = fact n / (fact k * fact (n - k))" |
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
415 |
using binomial_fact_lemma[OF kn] |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
416 |
apply (simp add: field_simps) |
63466 | 417 |
apply (metis mult.commute of_nat_fact of_nat_mult) |
418 |
done |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
58889
diff
changeset
|
419 |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
420 |
lemma fact_binomial: |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
421 |
assumes "k \<le> n" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
422 |
shows "fact k * of_nat (n choose k) = (fact n / fact (n - k) :: 'a::field_char_0)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
423 |
unfolding binomial_fact [OF assms] by (simp add: field_simps) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
424 |
|
63466 | 425 |
lemma choose_two: "n choose 2 = n * (n - 1) div 2" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
426 |
proof (cases "n \<ge> 2") |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
427 |
case False |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
428 |
then have "n = 0 \<or> n = 1" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
429 |
by auto |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
430 |
then show ?thesis by auto |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
431 |
next |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
432 |
case True |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
433 |
define m where "m = n - 2" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
434 |
with True have "n = m + 2" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
435 |
by simp |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
436 |
then have "fact n = n * (n - 1) * fact (n - 2)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
437 |
by (simp add: fact_setprod_Suc atLeast0_lessThan_Suc algebra_simps) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
438 |
with True show ?thesis |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
439 |
by (simp add: binomial_fact') |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
440 |
qed |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
441 |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
442 |
lemma choose_row_sum: "(\<Sum>k=0..n. n choose k) = 2^n" |
63466 | 443 |
using binomial [of 1 "1" n] by (simp add: numeral_2_eq_2) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
444 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
445 |
lemma sum_choose_lower: "(\<Sum>k=0..n. (r+k) choose k) = Suc (r+n) choose n" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
446 |
by (induct n) auto |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
447 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
448 |
lemma sum_choose_upper: "(\<Sum>k=0..n. k choose m) = Suc n choose Suc m" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
449 |
by (induct n) auto |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
450 |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
451 |
lemma choose_alternating_sum: |
63466 | 452 |
"n > 0 \<Longrightarrow> (\<Sum>i\<le>n. (-1)^i * of_nat (n choose i)) = (0 :: 'a::comm_ring_1)" |
453 |
using binomial_ring[of "-1 :: 'a" 1 n] |
|
454 |
by (simp add: atLeast0AtMost mult_of_nat_commute zero_power) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
455 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
456 |
lemma choose_even_sum: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
457 |
assumes "n > 0" |
63466 | 458 |
shows "2 * (\<Sum>i\<le>n. if even i then of_nat (n choose i) else 0) = (2 ^ n :: 'a::comm_ring_1)" |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
459 |
proof - |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
460 |
have "2 ^ n = (\<Sum>i\<le>n. of_nat (n choose i)) + (\<Sum>i\<le>n. (-1) ^ i * of_nat (n choose i) :: 'a)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
461 |
using choose_row_sum[of n] |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
462 |
by (simp add: choose_alternating_sum assms atLeast0AtMost of_nat_setsum[symmetric]) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
463 |
also have "\<dots> = (\<Sum>i\<le>n. of_nat (n choose i) + (-1) ^ i * of_nat (n choose i))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
464 |
by (simp add: setsum.distrib) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
465 |
also have "\<dots> = 2 * (\<Sum>i\<le>n. if even i then of_nat (n choose i) else 0)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
466 |
by (subst setsum_right_distrib, intro setsum.cong) simp_all |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
467 |
finally show ?thesis .. |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
468 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
469 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
470 |
lemma choose_odd_sum: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
471 |
assumes "n > 0" |
63466 | 472 |
shows "2 * (\<Sum>i\<le>n. if odd i then of_nat (n choose i) else 0) = (2 ^ n :: 'a::comm_ring_1)" |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
473 |
proof - |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
474 |
have "2 ^ n = (\<Sum>i\<le>n. of_nat (n choose i)) - (\<Sum>i\<le>n. (-1) ^ i * of_nat (n choose i) :: 'a)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
475 |
using choose_row_sum[of n] |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
476 |
by (simp add: choose_alternating_sum assms atLeast0AtMost of_nat_setsum[symmetric]) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
477 |
also have "\<dots> = (\<Sum>i\<le>n. of_nat (n choose i) - (-1) ^ i * of_nat (n choose i))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
478 |
by (simp add: setsum_subtractf) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
479 |
also have "\<dots> = 2 * (\<Sum>i\<le>n. if odd i then of_nat (n choose i) else 0)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
480 |
by (subst setsum_right_distrib, intro setsum.cong) simp_all |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
481 |
finally show ?thesis .. |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
482 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
483 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
484 |
lemma choose_row_sum': "(\<Sum>k\<le>n. (n choose k)) = 2 ^ n" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
485 |
using choose_row_sum[of n] by (simp add: atLeast0AtMost) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
486 |
|
60758 | 487 |
text\<open>NW diagonal sum property\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
488 |
lemma sum_choose_diagonal: |
63466 | 489 |
assumes "m \<le> n" |
490 |
shows "(\<Sum>k=0..m. (n - k) choose (m - k)) = Suc n choose m" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
491 |
proof - |
63466 | 492 |
have "(\<Sum>k=0..m. (n-k) choose (m - k)) = (\<Sum>k=0..m. (n - m + k) choose k)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
493 |
using setsum.atLeast_atMost_rev [of "\<lambda>k. (n - k) choose (m - k)" 0 m] assms |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
494 |
by simp |
63466 | 495 |
also have "\<dots> = Suc (n - m + m) choose m" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
496 |
by (rule sum_choose_lower) |
63466 | 497 |
also have "\<dots> = Suc n choose m" |
498 |
using assms by simp |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
499 |
finally show ?thesis . |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
500 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
501 |
|
63373 | 502 |
|
63466 | 503 |
subsection \<open>Pochhammer's symbol: generalized rising factorial\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
504 |
|
60758 | 505 |
text \<open>See @{url "http://en.wikipedia.org/wiki/Pochhammer_symbol"}\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
506 |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
507 |
context comm_semiring_1 |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
508 |
begin |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
509 |
|
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
510 |
definition pochhammer :: "'a \<Rightarrow> nat \<Rightarrow> 'a" |
63466 | 511 |
where pochhammer_setprod: "pochhammer a n = setprod (\<lambda>i. a + of_nat i) {0..<n}" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
512 |
|
63466 | 513 |
lemma pochhammer_setprod_rev: "pochhammer a n = setprod (\<lambda>i. a + of_nat (n - i)) {1..n}" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
514 |
using setprod.atLeast_lessThan_rev_at_least_Suc_atMost [of "\<lambda>i. a + of_nat i" 0 n] |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
515 |
by (simp add: pochhammer_setprod) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
516 |
|
63466 | 517 |
lemma pochhammer_Suc_setprod: "pochhammer a (Suc n) = setprod (\<lambda>i. a + of_nat i) {0..n}" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
518 |
by (simp add: pochhammer_setprod atLeastLessThanSuc_atLeastAtMost) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
519 |
|
63466 | 520 |
lemma pochhammer_Suc_setprod_rev: "pochhammer a (Suc n) = setprod (\<lambda>i. a + of_nat (n - i)) {0..n}" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
521 |
by (simp add: pochhammer_setprod_rev setprod.atLeast_Suc_atMost_Suc_shift) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
522 |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
523 |
lemma pochhammer_0 [simp]: "pochhammer a 0 = 1" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
524 |
by (simp add: pochhammer_setprod) |
63466 | 525 |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
526 |
lemma pochhammer_1 [simp]: "pochhammer a 1 = a" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
527 |
by (simp add: pochhammer_setprod lessThan_Suc) |
63466 | 528 |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
529 |
lemma pochhammer_Suc0 [simp]: "pochhammer a (Suc 0) = a" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
530 |
by (simp add: pochhammer_setprod lessThan_Suc) |
63466 | 531 |
|
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
532 |
lemma pochhammer_Suc: "pochhammer a (Suc n) = pochhammer a n * (a + of_nat n)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
533 |
by (simp add: pochhammer_setprod atLeast0_lessThan_Suc ac_simps) |
63466 | 534 |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
535 |
end |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
536 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
537 |
lemma pochhammer_of_nat: "pochhammer (of_nat x) n = of_nat (pochhammer x n)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
538 |
by (simp add: pochhammer_setprod) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
539 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
540 |
lemma pochhammer_of_int: "pochhammer (of_int x) n = of_int (pochhammer x n)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
541 |
by (simp add: pochhammer_setprod) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
542 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
543 |
lemma pochhammer_rec: "pochhammer a (Suc n) = a * pochhammer (a + 1) n" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
544 |
by (simp add: pochhammer_setprod setprod.atLeast0_lessThan_Suc_shift ac_simps) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
545 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
546 |
lemma pochhammer_rec': "pochhammer z (Suc n) = (z + of_nat n) * pochhammer z n" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
547 |
by (simp add: pochhammer_setprod setprod.atLeast0_lessThan_Suc ac_simps) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
548 |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
549 |
lemma pochhammer_fact: "fact n = pochhammer 1 n" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
550 |
by (simp add: pochhammer_setprod fact_setprod_Suc) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
551 |
|
63466 | 552 |
lemma pochhammer_of_nat_eq_0_lemma: "k > n \<Longrightarrow> pochhammer (- (of_nat n :: 'a:: idom)) k = 0" |
553 |
by (auto simp add: pochhammer_setprod) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
554 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
555 |
lemma pochhammer_of_nat_eq_0_lemma': |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
556 |
assumes kn: "k \<le> n" |
63466 | 557 |
shows "pochhammer (- (of_nat n :: 'a::{idom,ring_char_0})) k \<noteq> 0" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
558 |
proof (cases k) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
559 |
case 0 |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
560 |
then show ?thesis by simp |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
561 |
next |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
562 |
case (Suc h) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
563 |
then show ?thesis |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
564 |
apply (simp add: pochhammer_Suc_setprod) |
63466 | 565 |
using Suc kn |
566 |
apply (auto simp add: algebra_simps) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
567 |
done |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
568 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
569 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
570 |
lemma pochhammer_of_nat_eq_0_iff: |
63466 | 571 |
"pochhammer (- (of_nat n :: 'a::{idom,ring_char_0})) k = 0 \<longleftrightarrow> k > n" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
572 |
(is "?l = ?r") |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
573 |
using pochhammer_of_nat_eq_0_lemma[of n k, where ?'a='a] |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
574 |
pochhammer_of_nat_eq_0_lemma'[of k n, where ?'a = 'a] |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
575 |
by (auto simp add: not_le[symmetric]) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
576 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
577 |
lemma pochhammer_eq_0_iff: "pochhammer a n = (0::'a::field_char_0) \<longleftrightarrow> (\<exists>k < n. a = - of_nat k)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
578 |
by (auto simp add: pochhammer_setprod eq_neg_iff_add_eq_0) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
579 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
580 |
lemma pochhammer_eq_0_mono: |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
581 |
"pochhammer a n = (0::'a::field_char_0) \<Longrightarrow> m \<ge> n \<Longrightarrow> pochhammer a m = 0" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
582 |
unfolding pochhammer_eq_0_iff by auto |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
583 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
584 |
lemma pochhammer_neq_0_mono: |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
585 |
"pochhammer a m \<noteq> (0::'a::field_char_0) \<Longrightarrow> m \<ge> n \<Longrightarrow> pochhammer a n \<noteq> 0" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
586 |
unfolding pochhammer_eq_0_iff by auto |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
587 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
588 |
lemma pochhammer_minus: |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
589 |
"pochhammer (- b) k = ((- 1) ^ k :: 'a::comm_ring_1) * pochhammer (b - of_nat k + 1) k" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
590 |
proof (cases k) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
591 |
case 0 |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
592 |
then show ?thesis by simp |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
593 |
next |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
594 |
case (Suc h) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
595 |
have eq: "((- 1) ^ Suc h :: 'a) = (\<Prod>i = 0..h. - 1)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
596 |
using setprod_constant [where A="{0.. h}" and y="- 1 :: 'a"] |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
597 |
by auto |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
598 |
with Suc show ?thesis |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
599 |
using pochhammer_Suc_setprod_rev [of "b - of_nat k + 1"] |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
600 |
by (auto simp add: pochhammer_Suc_setprod setprod.distrib [symmetric] eq of_nat_diff) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
601 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
602 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
603 |
lemma pochhammer_minus': |
63466 | 604 |
"pochhammer (b - of_nat k + 1) k = ((- 1) ^ k :: 'a::comm_ring_1) * pochhammer (- b) k" |
605 |
apply (simp only: pochhammer_minus [where b = b]) |
|
606 |
apply (simp only: mult.assoc [symmetric]) |
|
607 |
apply (simp only: power_add [symmetric]) |
|
608 |
apply simp |
|
609 |
done |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
610 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
611 |
lemma pochhammer_same: "pochhammer (- of_nat n) n = |
63466 | 612 |
((- 1) ^ n :: 'a::{semiring_char_0,comm_ring_1,semiring_no_zero_divisors}) * fact n" |
59862 | 613 |
unfolding pochhammer_minus |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
614 |
by (simp add: of_nat_diff pochhammer_fact) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
615 |
|
63466 | 616 |
lemma pochhammer_product': "pochhammer z (n + m) = pochhammer z n * pochhammer (z + of_nat n) m" |
617 |
proof (induct n arbitrary: z) |
|
618 |
case 0 |
|
619 |
then show ?case by simp |
|
620 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
621 |
case (Suc n z) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
622 |
have "pochhammer z (Suc n) * pochhammer (z + of_nat (Suc n)) m = |
63466 | 623 |
z * (pochhammer (z + 1) n * pochhammer (z + 1 + of_nat n) m)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
624 |
by (simp add: pochhammer_rec ac_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
625 |
also note Suc[symmetric] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
626 |
also have "z * pochhammer (z + 1) (n + m) = pochhammer z (Suc (n + m))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
627 |
by (subst pochhammer_rec) simp |
63466 | 628 |
finally show ?case |
629 |
by simp |
|
630 |
qed |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
631 |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
632 |
lemma pochhammer_product: |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
633 |
"m \<le> n \<Longrightarrow> pochhammer z n = pochhammer z m * pochhammer (z + of_nat m) (n - m)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
634 |
using pochhammer_product'[of z m "n - m"] by simp |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
635 |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
636 |
lemma pochhammer_times_pochhammer_half: |
63466 | 637 |
fixes z :: "'a::field_char_0" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
638 |
shows "pochhammer z (Suc n) * pochhammer (z + 1/2) (Suc n) = (\<Prod>k=0..2*n+1. z + of_nat k / 2)" |
63466 | 639 |
proof (induct n) |
640 |
case 0 |
|
641 |
then show ?case |
|
642 |
by (simp add: atLeast0_atMost_Suc) |
|
643 |
next |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
644 |
case (Suc n) |
63040 | 645 |
define n' where "n' = Suc n" |
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
646 |
have "pochhammer z (Suc n') * pochhammer (z + 1 / 2) (Suc n') = |
63466 | 647 |
(pochhammer z n' * pochhammer (z + 1 / 2) n') * ((z + of_nat n') * (z + 1/2 + of_nat n'))" |
648 |
(is "_ = _ * ?A") |
|
649 |
by (simp_all add: pochhammer_rec' mult_ac) |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
650 |
also have "?A = (z + of_nat (Suc (2 * n + 1)) / 2) * (z + of_nat (Suc (Suc (2 * n + 1))) / 2)" |
63466 | 651 |
(is "_ = ?B") |
652 |
by (simp add: field_simps n'_def) |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
653 |
also note Suc[folded n'_def] |
63466 | 654 |
also have "(\<Prod>k=0..2 * n + 1. z + of_nat k / 2) * ?B = (\<Prod>k=0..2 * Suc n + 1. z + of_nat k / 2)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
655 |
by (simp add: atLeast0_atMost_Suc) |
63466 | 656 |
finally show ?case |
657 |
by (simp add: n'_def) |
|
658 |
qed |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
659 |
|
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
660 |
lemma pochhammer_double: |
63466 | 661 |
fixes z :: "'a::field_char_0" |
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
662 |
shows "pochhammer (2 * z) (2 * n) = of_nat (2^(2*n)) * pochhammer z n * pochhammer (z+1/2) n" |
63466 | 663 |
proof (induct n) |
664 |
case 0 |
|
665 |
then show ?case by simp |
|
666 |
next |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
667 |
case (Suc n) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
668 |
have "pochhammer (2 * z) (2 * (Suc n)) = pochhammer (2 * z) (2 * n) * |
63466 | 669 |
(2 * (z + of_nat n)) * (2 * (z + of_nat n) + 1)" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
670 |
by (simp add: pochhammer_rec' ac_simps) |
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
671 |
also note Suc |
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
672 |
also have "of_nat (2 ^ (2 * n)) * pochhammer z n * pochhammer (z + 1/2) n * |
63466 | 673 |
(2 * (z + of_nat n)) * (2 * (z + of_nat n) + 1) = |
674 |
of_nat (2 ^ (2 * (Suc n))) * pochhammer z (Suc n) * pochhammer (z + 1/2) (Suc n)" |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
675 |
by (simp add: field_simps pochhammer_rec') |
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
676 |
finally show ?case . |
63466 | 677 |
qed |
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
678 |
|
63317
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
eberlm
parents:
63092
diff
changeset
|
679 |
lemma fact_double: |
63466 | 680 |
"fact (2 * n) = (2 ^ (2 * n) * pochhammer (1 / 2) n * fact n :: 'a::field_char_0)" |
63317
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
eberlm
parents:
63092
diff
changeset
|
681 |
using pochhammer_double[of "1/2::'a" n] by (simp add: pochhammer_fact) |
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
eberlm
parents:
63092
diff
changeset
|
682 |
|
63466 | 683 |
lemma pochhammer_absorb_comp: "(r - of_nat k) * pochhammer (- r) k = r * pochhammer (-r + 1) k" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
684 |
(is "?lhs = ?rhs") |
63466 | 685 |
for r :: "'a::comm_ring_1" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
686 |
proof - |
63466 | 687 |
have "?lhs = - pochhammer (- r) (Suc k)" |
688 |
by (subst pochhammer_rec') (simp add: algebra_simps) |
|
689 |
also have "\<dots> = ?rhs" |
|
690 |
by (subst pochhammer_rec) simp |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
691 |
finally show ?thesis . |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
692 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
693 |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
694 |
|
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
695 |
subsection \<open>Generalized binomial coefficients\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
696 |
|
63466 | 697 |
definition gbinomial :: "'a::{semidom_divide,semiring_char_0} \<Rightarrow> nat \<Rightarrow> 'a" (infixl "gchoose" 65) |
698 |
where gbinomial_setprod_rev: "a gchoose n = setprod (\<lambda>i. a - of_nat i) {0..<n} div fact n" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
699 |
|
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
700 |
lemma gbinomial_0 [simp]: |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
701 |
"a gchoose 0 = 1" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
702 |
"0 gchoose (Suc n) = 0" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
703 |
by (simp_all add: gbinomial_setprod_rev setprod.atLeast0_lessThan_Suc_shift) |
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
704 |
|
63466 | 705 |
lemma gbinomial_Suc: "a gchoose (Suc k) = setprod (\<lambda>i. a - of_nat i) {0..k} div fact (Suc k)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
706 |
by (simp add: gbinomial_setprod_rev atLeastLessThanSuc_atLeastAtMost) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
707 |
|
63466 | 708 |
lemma gbinomial_mult_fact: "fact n * (a gchoose n) = (\<Prod>i = 0..<n. a - of_nat i)" |
709 |
for a :: "'a::field_char_0" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
710 |
by (simp_all add: gbinomial_setprod_rev field_simps) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
711 |
|
63466 | 712 |
lemma gbinomial_mult_fact': "(a gchoose n) * fact n = (\<Prod>i = 0..<n. a - of_nat i)" |
713 |
for a :: "'a::field_char_0" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
714 |
using gbinomial_mult_fact [of n a] by (simp add: ac_simps) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
715 |
|
63466 | 716 |
lemma gbinomial_pochhammer: "a gchoose n = (- 1) ^ n * pochhammer (- a) n / fact n" |
717 |
for a :: "'a::field_char_0" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
718 |
by (cases n) |
63466 | 719 |
(simp_all add: pochhammer_minus, |
720 |
simp_all add: gbinomial_setprod_rev pochhammer_setprod_rev |
|
721 |
power_mult_distrib [symmetric] atLeastLessThanSuc_atLeastAtMost |
|
722 |
setprod.atLeast_Suc_atMost_Suc_shift of_nat_diff) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
723 |
|
63466 | 724 |
lemma gbinomial_pochhammer': "s gchoose n = pochhammer (s - of_nat n + 1) n / fact n" |
725 |
for s :: "'a::field_char_0" |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
726 |
proof - |
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
727 |
have "s gchoose n = ((-1)^n * (-1)^n) * pochhammer (s - of_nat n + 1) n / fact n" |
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
728 |
by (simp add: gbinomial_pochhammer pochhammer_minus mult_ac) |
63466 | 729 |
also have "(-1 :: 'a)^n * (-1)^n = 1" |
730 |
by (subst power_add [symmetric]) simp |
|
731 |
finally show ?thesis |
|
732 |
by simp |
|
61552
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
733 |
qed |
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents:
61531
diff
changeset
|
734 |
|
63466 | 735 |
lemma gbinomial_binomial: "n gchoose k = n choose k" |
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
736 |
proof (cases "k \<le> n") |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
737 |
case False |
63466 | 738 |
then have "n < k" |
739 |
by (simp add: not_le) |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
740 |
then have "0 \<in> (op - n) ` {0..<k}" |
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
741 |
by auto |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
742 |
then have "setprod (op - n) {0..<k} = 0" |
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
743 |
by (auto intro: setprod_zero) |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
744 |
with \<open>n < k\<close> show ?thesis |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
745 |
by (simp add: binomial_eq_0 gbinomial_setprod_rev setprod_zero) |
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
746 |
next |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
747 |
case True |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
748 |
then have "inj_on (op - n) {0..<k}" |
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
749 |
by (auto intro: inj_onI) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
750 |
then have "\<Prod>(op - n ` {0..<k}) = setprod (op - n) {0..<k}" |
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
751 |
by (auto dest: setprod.reindex) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
752 |
also have "op - n ` {0..<k} = {Suc (n - k)..n}" |
63466 | 753 |
using True by (auto simp add: image_def Bex_def) presburger (* FIXME slow *) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
754 |
finally have *: "setprod (\<lambda>q. n - q) {0..<k} = \<Prod>{Suc (n - k)..n}" .. |
63466 | 755 |
from True have "n choose k = fact n div (fact k * fact (n - k))" |
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
756 |
by (rule binomial_fact') |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
757 |
with * show ?thesis |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
758 |
by (simp add: gbinomial_setprod_rev mult.commute [of "fact k"] div_mult2_eq fact_div_fact) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
759 |
qed |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
760 |
|
63466 | 761 |
lemma of_nat_gbinomial: "of_nat (n gchoose k) = (of_nat n gchoose k :: 'a::field_char_0)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
762 |
proof (cases "k \<le> n") |
63466 | 763 |
case False |
764 |
then show ?thesis |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
765 |
by (simp add: not_le gbinomial_binomial binomial_eq_0 gbinomial_setprod_rev) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
766 |
next |
63466 | 767 |
case True |
768 |
define m where "m = n - k" |
|
769 |
with True have n: "n = m + k" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
770 |
by arith |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
771 |
from n have "fact n = ((\<Prod>i = 0..<m + k. of_nat (m + k - i) ):: 'a)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
772 |
by (simp add: fact_setprod_rev) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
773 |
also have "\<dots> = ((\<Prod>i\<in>{0..<k} \<union> {k..<m + k}. of_nat (m + k - i)) :: 'a)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
774 |
by (simp add: ivl_disj_un) |
63466 | 775 |
finally have "fact n = (fact m * (\<Prod>i = 0..<k. of_nat m + of_nat k - of_nat i) :: 'a)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
776 |
using setprod_shift_bounds_nat_ivl [of "\<lambda>i. of_nat (m + k - i) :: 'a" 0 k m] |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
777 |
by (simp add: fact_setprod_rev [of m] setprod.union_disjoint of_nat_diff) |
63466 | 778 |
then have "fact n / fact (n - k) = ((\<Prod>i = 0..<k. of_nat n - of_nat i) :: 'a)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
779 |
by (simp add: n) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
780 |
with True have "fact k * of_nat (n gchoose k) = (fact k * (of_nat n gchoose k) :: 'a)" |
63466 | 781 |
by (simp only: gbinomial_mult_fact [of k "of_nat n"] gbinomial_binomial [of n k] fact_binomial) |
782 |
then show ?thesis |
|
783 |
by simp |
|
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
784 |
qed |
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
785 |
|
63466 | 786 |
lemma binomial_gbinomial: "of_nat (n choose k) = (of_nat n gchoose k :: 'a::field_char_0)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
787 |
by (simp add: gbinomial_binomial [symmetric] of_nat_gbinomial) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
788 |
|
63466 | 789 |
setup |
790 |
\<open>Sign.add_const_constraint (@{const_name gbinomial}, SOME @{typ "'a::field_char_0 \<Rightarrow> nat \<Rightarrow> 'a"})\<close> |
|
63372
492b49535094
relating gbinomial and binomial, still using distinct definitions
haftmann
parents:
63367
diff
changeset
|
791 |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
792 |
lemma gbinomial_1[simp]: "a gchoose 1 = a" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
793 |
by (simp add: gbinomial_setprod_rev lessThan_Suc) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
794 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
795 |
lemma gbinomial_Suc0[simp]: "a gchoose (Suc 0) = a" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
796 |
by (simp add: gbinomial_setprod_rev lessThan_Suc) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
797 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
798 |
lemma gbinomial_mult_1: |
63466 | 799 |
fixes a :: "'a::field_char_0" |
800 |
shows "a * (a gchoose n) = of_nat n * (a gchoose n) + of_nat (Suc n) * (a gchoose (Suc n))" |
|
801 |
(is "?l = ?r") |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
802 |
proof - |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
803 |
have "?r = ((- 1) ^n * pochhammer (- a) n / (fact n)) * (of_nat n - (- a + of_nat n))" |
63466 | 804 |
apply (simp only: gbinomial_pochhammer pochhammer_Suc right_diff_distrib power_Suc) |
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
805 |
apply (simp del: of_nat_Suc fact_Suc) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
806 |
apply (auto simp add: field_simps simp del: of_nat_Suc) |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
807 |
done |
63466 | 808 |
also have "\<dots> = ?l" |
809 |
by (simp add: field_simps gbinomial_pochhammer) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
810 |
finally show ?thesis .. |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
811 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
812 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
813 |
lemma gbinomial_mult_1': |
63466 | 814 |
"(a gchoose n) * a = of_nat n * (a gchoose n) + of_nat (Suc n) * (a gchoose (Suc n))" |
815 |
for a :: "'a::field_char_0" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
816 |
by (simp add: mult.commute gbinomial_mult_1) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
817 |
|
63466 | 818 |
lemma gbinomial_Suc_Suc: "(a + 1) gchoose (Suc k) = a gchoose k + (a gchoose (Suc k))" |
819 |
for a :: "'a::field_char_0" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
820 |
proof (cases k) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
821 |
case 0 |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
822 |
then show ?thesis by simp |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
823 |
next |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
824 |
case (Suc h) |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
825 |
have eq0: "(\<Prod>i\<in>{1..k}. (a + 1) - of_nat i) = (\<Prod>i\<in>{0..h}. a - of_nat i)" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
826 |
apply (rule setprod.reindex_cong [where l = Suc]) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
827 |
using Suc |
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
828 |
apply (auto simp add: image_Suc_atMost) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
829 |
done |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
830 |
have "fact (Suc k) * (a gchoose k + (a gchoose (Suc k))) = |
63466 | 831 |
(a gchoose Suc h) * (fact (Suc (Suc h))) + |
832 |
(a gchoose Suc (Suc h)) * (fact (Suc (Suc h)))" |
|
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
833 |
by (simp add: Suc field_simps del: fact_Suc) |
63466 | 834 |
also have "\<dots> = |
835 |
(a gchoose Suc h) * of_nat (Suc (Suc h) * fact (Suc h)) + (\<Prod>i=0..Suc h. a - of_nat i)" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
836 |
apply (simp del: fact_Suc add: gbinomial_mult_fact field_simps mult.left_commute [of _ "2"]) |
63466 | 837 |
apply (simp del: fact_Suc add: fact_Suc [of "Suc h"] field_simps gbinomial_mult_fact |
838 |
mult.left_commute [of _ "2"] atLeastLessThanSuc_atLeastAtMost) |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
839 |
done |
63466 | 840 |
also have "\<dots> = |
841 |
(fact (Suc h) * (a gchoose Suc h)) * of_nat (Suc (Suc h)) + (\<Prod>i=0..Suc h. a - of_nat i)" |
|
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
842 |
by (simp only: fact_Suc mult.commute mult.left_commute of_nat_fact of_nat_id of_nat_mult) |
63466 | 843 |
also have "\<dots> = |
844 |
of_nat (Suc (Suc h)) * (\<Prod>i=0..h. a - of_nat i) + (\<Prod>i=0..Suc h. a - of_nat i)" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
845 |
unfolding gbinomial_mult_fact atLeastLessThanSuc_atLeastAtMost by auto |
63466 | 846 |
also have "\<dots> = |
847 |
(\<Prod>i=0..Suc h. a - of_nat i) + (of_nat h * (\<Prod>i=0..h. a - of_nat i) + 2 * (\<Prod>i=0..h. a - of_nat i))" |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
848 |
by (simp add: field_simps) |
63466 | 849 |
also have "\<dots> = |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
850 |
((a gchoose Suc h) * (fact (Suc h)) * of_nat (Suc k)) + (\<Prod>i\<in>{0..Suc h}. a - of_nat i)" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
851 |
unfolding gbinomial_mult_fact' |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
852 |
by (simp add: comm_semiring_class.distrib field_simps Suc atLeastLessThanSuc_atLeastAtMost) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
853 |
also have "\<dots> = (\<Prod>i\<in>{0..h}. a - of_nat i) * (a + 1)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
854 |
unfolding gbinomial_mult_fact' atLeast0_atMost_Suc |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
855 |
by (simp add: field_simps Suc atLeastLessThanSuc_atLeastAtMost) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
856 |
also have "\<dots> = (\<Prod>i\<in>{0..k}. (a + 1) - of_nat i)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
857 |
using eq0 |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
858 |
by (simp add: Suc setprod.atLeast0_atMost_Suc_shift) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
859 |
also have "\<dots> = (fact (Suc k)) * ((a + 1) gchoose (Suc k))" |
63466 | 860 |
by (simp only: gbinomial_mult_fact atLeastLessThanSuc_atLeastAtMost) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
861 |
finally show ?thesis |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
862 |
using fact_nonzero [of "Suc k"] by auto |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
863 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
864 |
|
63466 | 865 |
lemma gbinomial_reduce_nat: "0 < k \<Longrightarrow> a gchoose k = (a - 1) gchoose (k - 1) + ((a - 1) gchoose k)" |
866 |
for a :: "'a::field_char_0" |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
867 |
by (metis Suc_pred' diff_add_cancel gbinomial_Suc_Suc) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
868 |
|
60141
833adf7db7d8
New material, mostly about limits. Consolidation.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
869 |
lemma gchoose_row_sum_weighted: |
63466 | 870 |
"(\<Sum>k = 0..m. (r gchoose k) * (r/2 - of_nat k)) = of_nat(Suc m) / 2 * (r gchoose (Suc m))" |
871 |
for r :: "'a::field_char_0" |
|
872 |
by (induct m) (simp_all add: field_simps distrib gbinomial_mult_1) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
873 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
874 |
lemma binomial_symmetric: |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
875 |
assumes kn: "k \<le> n" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
876 |
shows "n choose k = n choose (n - k)" |
63466 | 877 |
proof - |
878 |
have kn': "n - k \<le> n" |
|
879 |
using kn by arith |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
880 |
from binomial_fact_lemma[OF kn] binomial_fact_lemma[OF kn'] |
63466 | 881 |
have "fact k * fact (n - k) * (n choose k) = fact (n - k) * fact (n - (n - k)) * (n choose (n - k))" |
882 |
by simp |
|
883 |
then show ?thesis |
|
884 |
using kn by simp |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
885 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
886 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
887 |
lemma choose_rising_sum: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
888 |
"(\<Sum>j\<le>m. ((n + j) choose n)) = ((n + m + 1) choose (n + 1))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
889 |
"(\<Sum>j\<le>m. ((n + j) choose n)) = ((n + m + 1) choose m)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
890 |
proof - |
63466 | 891 |
show "(\<Sum>j\<le>m. ((n + j) choose n)) = ((n + m + 1) choose (n + 1))" |
892 |
by (induct m) simp_all |
|
893 |
also have "\<dots> = (n + m + 1) choose m" |
|
894 |
by (subst binomial_symmetric) simp_all |
|
895 |
finally show "(\<Sum>j\<le>m. ((n + j) choose n)) = (n + m + 1) choose m" . |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
896 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
897 |
|
63466 | 898 |
lemma choose_linear_sum: "(\<Sum>i\<le>n. i * (n choose i)) = n * 2 ^ (n - 1)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
899 |
proof (cases n) |
63466 | 900 |
case 0 |
901 |
then show ?thesis by simp |
|
902 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
903 |
case (Suc m) |
63466 | 904 |
have "(\<Sum>i\<le>n. i * (n choose i)) = (\<Sum>i\<le>Suc m. i * (Suc m choose i))" |
905 |
by (simp add: Suc) |
|
906 |
also have "\<dots> = Suc m * 2 ^ m" |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
907 |
by (simp only: setsum_atMost_Suc_shift Suc_times_binomial setsum_right_distrib[symmetric]) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
908 |
(simp add: choose_row_sum') |
63466 | 909 |
finally show ?thesis |
910 |
using Suc by simp |
|
911 |
qed |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
912 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
913 |
lemma choose_alternating_linear_sum: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
914 |
assumes "n \<noteq> 1" |
63466 | 915 |
shows "(\<Sum>i\<le>n. (-1)^i * of_nat i * of_nat (n choose i) :: 'a::comm_ring_1) = 0" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
916 |
proof (cases n) |
63466 | 917 |
case 0 |
918 |
then show ?thesis by simp |
|
919 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
920 |
case (Suc m) |
63466 | 921 |
with assms have "m > 0" |
922 |
by simp |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
923 |
have "(\<Sum>i\<le>n. (-1) ^ i * of_nat i * of_nat (n choose i) :: 'a) = |
63466 | 924 |
(\<Sum>i\<le>Suc m. (-1) ^ i * of_nat i * of_nat (Suc m choose i))" |
925 |
by (simp add: Suc) |
|
926 |
also have "\<dots> = (\<Sum>i\<le>m. (-1) ^ (Suc i) * of_nat (Suc i * (Suc m choose Suc i)))" |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
927 |
by (simp only: setsum_atMost_Suc_shift setsum_right_distrib[symmetric] mult_ac of_nat_mult) simp |
63466 | 928 |
also have "\<dots> = - of_nat (Suc m) * (\<Sum>i\<le>m. (-1) ^ i * of_nat (m choose i))" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
929 |
by (subst setsum_right_distrib, rule setsum.cong[OF refl], subst Suc_times_binomial) |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
930 |
(simp add: algebra_simps) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
931 |
also have "(\<Sum>i\<le>m. (-1 :: 'a) ^ i * of_nat ((m choose i))) = 0" |
61799 | 932 |
using choose_alternating_sum[OF \<open>m > 0\<close>] by simp |
63466 | 933 |
finally show ?thesis |
934 |
by simp |
|
935 |
qed |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
936 |
|
63466 | 937 |
lemma vandermonde: "(\<Sum>k\<le>r. (m choose k) * (n choose (r - k))) = (m + n) choose r" |
938 |
proof (induct n arbitrary: r) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
939 |
case 0 |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
940 |
have "(\<Sum>k\<le>r. (m choose k) * (0 choose (r - k))) = (\<Sum>k\<le>r. if k = r then (m choose k) else 0)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
941 |
by (intro setsum.cong) simp_all |
63466 | 942 |
also have "\<dots> = m choose r" |
943 |
by (simp add: setsum.delta) |
|
944 |
finally show ?case |
|
945 |
by simp |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
946 |
next |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
947 |
case (Suc n r) |
63466 | 948 |
show ?case |
949 |
by (cases r) (simp_all add: Suc [symmetric] algebra_simps setsum.distrib Suc_diff_le) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
950 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
951 |
|
63466 | 952 |
lemma choose_square_sum: "(\<Sum>k\<le>n. (n choose k)^2) = ((2*n) choose n)" |
953 |
using vandermonde[of n n n] |
|
954 |
by (simp add: power2_eq_square mult_2 binomial_symmetric [symmetric]) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
955 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
956 |
lemma pochhammer_binomial_sum: |
63466 | 957 |
fixes a b :: "'a::comm_ring_1" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
958 |
shows "pochhammer (a + b) n = (\<Sum>k\<le>n. of_nat (n choose k) * pochhammer a k * pochhammer b (n - k))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
959 |
proof (induction n arbitrary: a b) |
63466 | 960 |
case 0 |
961 |
then show ?case by simp |
|
962 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
963 |
case (Suc n a b) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
964 |
have "(\<Sum>k\<le>Suc n. of_nat (Suc n choose k) * pochhammer a k * pochhammer b (Suc n - k)) = |
63466 | 965 |
(\<Sum>i\<le>n. of_nat (n choose i) * pochhammer a (Suc i) * pochhammer b (n - i)) + |
966 |
((\<Sum>i\<le>n. of_nat (n choose Suc i) * pochhammer a (Suc i) * pochhammer b (n - i)) + |
|
967 |
pochhammer b (Suc n))" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
968 |
by (subst setsum_atMost_Suc_shift) (simp add: ring_distribs setsum.distrib) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
969 |
also have "(\<Sum>i\<le>n. of_nat (n choose i) * pochhammer a (Suc i) * pochhammer b (n - i)) = |
63466 | 970 |
a * pochhammer ((a + 1) + b) n" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
971 |
by (subst Suc) (simp add: setsum_right_distrib pochhammer_rec mult_ac) |
63466 | 972 |
also have "(\<Sum>i\<le>n. of_nat (n choose Suc i) * pochhammer a (Suc i) * pochhammer b (n - i)) + |
973 |
pochhammer b (Suc n) = |
|
974 |
(\<Sum>i=0..Suc n. of_nat (n choose i) * pochhammer a i * pochhammer b (Suc n - i))" |
|
975 |
apply (subst setsum_head_Suc) |
|
976 |
apply simp |
|
977 |
apply (subst setsum_shift_bounds_cl_Suc_ivl) |
|
978 |
apply (simp add: atLeast0AtMost) |
|
979 |
done |
|
980 |
also have "\<dots> = (\<Sum>i\<le>n. of_nat (n choose i) * pochhammer a i * pochhammer b (Suc n - i))" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
981 |
using Suc by (intro setsum.mono_neutral_right) (auto simp: not_le binomial_eq_0) |
63466 | 982 |
also have "\<dots> = (\<Sum>i\<le>n. of_nat (n choose i) * pochhammer a i * pochhammer b (Suc (n - i)))" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
983 |
by (intro setsum.cong) (simp_all add: Suc_diff_le) |
63466 | 984 |
also have "\<dots> = b * pochhammer (a + (b + 1)) n" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
985 |
by (subst Suc) (simp add: setsum_right_distrib mult_ac pochhammer_rec) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
986 |
also have "a * pochhammer ((a + 1) + b) n + b * pochhammer (a + (b + 1)) n = |
63466 | 987 |
pochhammer (a + b) (Suc n)" |
988 |
by (simp add: pochhammer_rec algebra_simps) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
989 |
finally show ?case .. |
63466 | 990 |
qed |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
991 |
|
63466 | 992 |
text \<open>Contributed by Manuel Eberl, generalised by LCP. |
993 |
Alternative definition of the binomial coefficient as @{term "\<Prod>i<k. (n - i) / (k - i)"}.\<close> |
|
994 |
lemma gbinomial_altdef_of_nat: "x gchoose k = (\<Prod>i = 0..<k. (x - of_nat i) / of_nat (k - i) :: 'a)" |
|
995 |
for k :: nat and x :: "'a::field_char_0" |
|
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
996 |
by (simp add: setprod_dividef gbinomial_setprod_rev fact_setprod_rev) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
997 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
998 |
lemma gbinomial_ge_n_over_k_pow_k: |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
999 |
fixes k :: nat |
63466 | 1000 |
and x :: "'a::linordered_field" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1001 |
assumes "of_nat k \<le> x" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1002 |
shows "(x / of_nat k :: 'a) ^ k \<le> x gchoose k" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1003 |
proof - |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1004 |
have x: "0 \<le> x" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1005 |
using assms of_nat_0_le_iff order_trans by blast |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1006 |
have "(x / of_nat k :: 'a) ^ k = (\<Prod>i = 0..<k. x / of_nat k :: 'a)" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1007 |
by (simp add: setprod_constant) |
63466 | 1008 |
also have "\<dots> \<le> x gchoose k" (* FIXME *) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1009 |
unfolding gbinomial_altdef_of_nat |
63466 | 1010 |
apply (safe intro!: setprod_mono) |
1011 |
apply simp_all |
|
1012 |
prefer 2 |
|
1013 |
subgoal premises for i |
|
1014 |
proof - |
|
1015 |
from assms have "x * of_nat i \<ge> of_nat (i * k)" |
|
1016 |
by (metis mult.commute mult_le_cancel_right of_nat_less_0_iff of_nat_mult) |
|
1017 |
then have "x * of_nat k - x * of_nat i \<le> x * of_nat k - of_nat (i * k)" |
|
1018 |
by arith |
|
1019 |
then have "x * of_nat (k - i) \<le> (x - of_nat i) * of_nat k" |
|
1020 |
using \<open>i < k\<close> by (simp add: algebra_simps zero_less_mult_iff of_nat_diff) |
|
1021 |
then have "x * of_nat (k - i) \<le> (x - of_nat i) * (of_nat k :: 'a)" |
|
1022 |
by (simp only: of_nat_mult[symmetric] of_nat_le_iff) |
|
1023 |
with assms show ?thesis |
|
1024 |
using \<open>i < k\<close> by (simp add: field_simps) |
|
1025 |
qed |
|
1026 |
apply (simp add: x zero_le_divide_iff) |
|
1027 |
done |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1028 |
finally show ?thesis . |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1029 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1030 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1031 |
lemma gbinomial_negated_upper: "(a gchoose b) = (-1) ^ b * ((of_nat b - a - 1) gchoose b)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1032 |
by (simp add: gbinomial_pochhammer pochhammer_minus algebra_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1033 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1034 |
lemma gbinomial_minus: "((-a) gchoose b) = (-1) ^ b * ((a + of_nat b - 1) gchoose b)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1035 |
by (subst gbinomial_negated_upper) (simp add: add_ac) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1036 |
|
63466 | 1037 |
lemma Suc_times_gbinomial: "of_nat (Suc b) * ((a + 1) gchoose (Suc b)) = (a + 1) * (a gchoose b)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1038 |
proof (cases b) |
63466 | 1039 |
case 0 |
1040 |
then show ?thesis by simp |
|
1041 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1042 |
case (Suc b) |
63466 | 1043 |
then have "((a + 1) gchoose (Suc (Suc b))) = (\<Prod>i = 0..Suc b. a + (1 - of_nat i)) / fact (b + 2)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1044 |
by (simp add: field_simps gbinomial_setprod_rev atLeastLessThanSuc_atLeastAtMost) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1045 |
also have "(\<Prod>i = 0..Suc b. a + (1 - of_nat i)) = (a + 1) * (\<Prod>i = 0..b. a - of_nat i)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1046 |
by (simp add: setprod.atLeast0_atMost_Suc_shift) |
63466 | 1047 |
also have "\<dots> / fact (b + 2) = (a + 1) / of_nat (Suc (Suc b)) * (a gchoose Suc b)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1048 |
by (simp_all add: gbinomial_setprod_rev atLeastLessThanSuc_atLeastAtMost) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1049 |
finally show ?thesis by (simp add: Suc field_simps del: of_nat_Suc) |
63466 | 1050 |
qed |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1051 |
|
63466 | 1052 |
lemma gbinomial_factors: "((a + 1) gchoose (Suc b)) = (a + 1) / of_nat (Suc b) * (a gchoose b)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1053 |
proof (cases b) |
63466 | 1054 |
case 0 |
1055 |
then show ?thesis by simp |
|
1056 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1057 |
case (Suc b) |
63466 | 1058 |
then have "((a + 1) gchoose (Suc (Suc b))) = (\<Prod>i = 0 .. Suc b. a + (1 - of_nat i)) / fact (b + 2)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1059 |
by (simp add: field_simps gbinomial_setprod_rev atLeastLessThanSuc_atLeastAtMost) |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1060 |
also have "(\<Prod>i = 0 .. Suc b. a + (1 - of_nat i)) = (a + 1) * (\<Prod>i = 0..b. a - of_nat i)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1061 |
by (simp add: setprod.atLeast0_atMost_Suc_shift) |
63466 | 1062 |
also have "\<dots> / fact (b + 2) = (a + 1) / of_nat (Suc (Suc b)) * (a gchoose Suc b)" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1063 |
by (simp_all add: gbinomial_setprod_rev atLeastLessThanSuc_atLeastAtMost atLeast0AtMost) |
63466 | 1064 |
finally show ?thesis |
1065 |
by (simp add: Suc) |
|
1066 |
qed |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1067 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1068 |
lemma gbinomial_rec: "((r + 1) gchoose (Suc k)) = (r gchoose k) * ((r + 1) / of_nat (Suc k))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1069 |
using gbinomial_mult_1[of r k] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1070 |
by (subst gbinomial_Suc_Suc) (simp add: field_simps del: of_nat_Suc, simp add: algebra_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1071 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1072 |
lemma gbinomial_of_nat_symmetric: "k \<le> n \<Longrightarrow> (of_nat n) gchoose k = (of_nat n) gchoose (n - k)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1073 |
using binomial_symmetric[of k n] by (simp add: binomial_gbinomial [symmetric]) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1074 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1075 |
|
63466 | 1076 |
text \<open>The absorption identity (equation 5.5 \cite[p.~157]{GKP}): |
1077 |
\[ |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1078 |
{r \choose k} = \frac{r}{k}{r - 1 \choose k - 1},\quad \textnormal{integer } k \neq 0. |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1079 |
\]\<close> |
63466 | 1080 |
lemma gbinomial_absorption': "k > 0 \<Longrightarrow> r gchoose k = (r / of_nat k) * (r - 1 gchoose (k - 1))" |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1081 |
using gbinomial_rec[of "r - 1" "k - 1"] |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1082 |
by (simp_all add: gbinomial_rec field_simps del: of_nat_Suc) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1083 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1084 |
text \<open>The absorption identity is written in the following form to avoid |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1085 |
division by $k$ (the lower index) and therefore remove the $k \neq 0$ |
63466 | 1086 |
restriction\cite[p.~157]{GKP}: |
1087 |
\[ |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1088 |
k{r \choose k} = r{r - 1 \choose k - 1}, \quad \textnormal{integer } k. |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1089 |
\]\<close> |
63466 | 1090 |
lemma gbinomial_absorption: "of_nat (Suc k) * (r gchoose Suc k) = r * ((r - 1) gchoose k)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1091 |
using gbinomial_absorption'[of "Suc k" r] by (simp add: field_simps del: of_nat_Suc) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1092 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1093 |
text \<open>The absorption identity for natural number binomial coefficients:\<close> |
63466 | 1094 |
lemma binomial_absorption: "Suc k * (n choose Suc k) = n * ((n - 1) choose k)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1095 |
by (cases n) (simp_all add: binomial_eq_0 Suc_times_binomial del: binomial_Suc_Suc mult_Suc) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1096 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1097 |
text \<open>The absorption companion identity for natural number coefficients, |
63466 | 1098 |
following the proof by GKP \cite[p.~157]{GKP}:\<close> |
1099 |
lemma binomial_absorb_comp: "(n - k) * (n choose k) = n * ((n - 1) choose k)" |
|
1100 |
(is "?lhs = ?rhs") |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1101 |
proof (cases "n \<le> k") |
63466 | 1102 |
case True |
1103 |
then show ?thesis by auto |
|
1104 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1105 |
case False |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1106 |
then have "?rhs = Suc ((n - 1) - k) * (n choose Suc ((n - 1) - k))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1107 |
using binomial_symmetric[of k "n - 1"] binomial_absorption[of "(n - 1) - k" n] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1108 |
by simp |
63466 | 1109 |
also have "Suc ((n - 1) - k) = n - k" |
1110 |
using False by simp |
|
1111 |
also have "n choose \<dots> = n choose k" |
|
1112 |
using False by (intro binomial_symmetric [symmetric]) simp_all |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1113 |
finally show ?thesis .. |
63466 | 1114 |
qed |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1115 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1116 |
text \<open>The generalised absorption companion identity:\<close> |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1117 |
lemma gbinomial_absorb_comp: "(r - of_nat k) * (r gchoose k) = r * ((r - 1) gchoose k)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1118 |
using pochhammer_absorb_comp[of r k] by (simp add: gbinomial_pochhammer) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1119 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1120 |
lemma gbinomial_addition_formula: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1121 |
"r gchoose (Suc k) = ((r - 1) gchoose (Suc k)) + ((r - 1) gchoose k)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1122 |
using gbinomial_Suc_Suc[of "r - 1" k] by (simp add: algebra_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1123 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1124 |
lemma binomial_addition_formula: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1125 |
"0 < n \<Longrightarrow> n choose (Suc k) = ((n - 1) choose (Suc k)) + ((n - 1) choose k)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1126 |
by (subst choose_reduce_nat) simp_all |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1127 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1128 |
text \<open> |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1129 |
Equation 5.9 of the reference material \cite[p.~159]{GKP} is a useful |
63466 | 1130 |
summation formula, operating on both indices: |
1131 |
\[ |
|
1132 |
\sum\limits_{k \leq n}{r + k \choose k} = {r + n + 1 \choose n}, |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1133 |
\quad \textnormal{integer } n. |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1134 |
\] |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1135 |
\<close> |
63466 | 1136 |
lemma gbinomial_parallel_sum: "(\<Sum>k\<le>n. (r + of_nat k) gchoose k) = (r + of_nat n + 1) gchoose n" |
1137 |
proof (induct n) |
|
1138 |
case 0 |
|
1139 |
then show ?case by simp |
|
1140 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1141 |
case (Suc m) |
63466 | 1142 |
then show ?case |
1143 |
using gbinomial_Suc_Suc[of "(r + of_nat m + 1)" m] |
|
1144 |
by (simp add: add_ac) |
|
1145 |
qed |
|
1146 |
||
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1147 |
|
63373 | 1148 |
subsubsection \<open>Summation on the upper index\<close> |
63466 | 1149 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1150 |
text \<open> |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1151 |
Another summation formula is equation 5.10 of the reference material \cite[p.~160]{GKP}, |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1152 |
aptly named \emph{summation on the upper index}:\[\sum_{0 \leq k \leq n} {k \choose m} = |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1153 |
{n + 1 \choose m + 1}, \quad \textnormal{integers } m, n \geq 0.\] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1154 |
\<close> |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1155 |
lemma gbinomial_sum_up_index: |
63466 | 1156 |
"(\<Sum>k = 0..n. (of_nat k gchoose m) :: 'a::field_char_0) = (of_nat n + 1) gchoose (m + 1)" |
1157 |
proof (induct n) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1158 |
case 0 |
63466 | 1159 |
show ?case |
1160 |
using gbinomial_Suc_Suc[of 0 m] |
|
1161 |
by (cases m) auto |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1162 |
next |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1163 |
case (Suc n) |
63466 | 1164 |
then show ?case |
1165 |
using gbinomial_Suc_Suc[of "of_nat (Suc n) :: 'a" m] |
|
1166 |
by (simp add: add_ac) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1167 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1168 |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1169 |
lemma gbinomial_index_swap: |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1170 |
"((-1) ^ m) * ((- (of_nat n) - 1) gchoose m) = ((-1) ^ n) * ((- (of_nat m) - 1) gchoose n)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1171 |
(is "?lhs = ?rhs") |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1172 |
proof - |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1173 |
have "?lhs = (of_nat (m + n) gchoose m)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1174 |
by (subst gbinomial_negated_upper) (simp add: power_mult_distrib [symmetric]) |
63466 | 1175 |
also have "\<dots> = (of_nat (m + n) gchoose n)" |
1176 |
by (subst gbinomial_of_nat_symmetric) simp_all |
|
1177 |
also have "\<dots> = ?rhs" |
|
1178 |
by (subst gbinomial_negated_upper) simp |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1179 |
finally show ?thesis . |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1180 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1181 |
|
63466 | 1182 |
lemma gbinomial_sum_lower_neg: "(\<Sum>k\<le>m. (r gchoose k) * (- 1) ^ k) = (- 1) ^ m * (r - 1 gchoose m)" |
1183 |
(is "?lhs = ?rhs") |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1184 |
proof - |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1185 |
have "?lhs = (\<Sum>k\<le>m. -(r + 1) + of_nat k gchoose k)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1186 |
by (intro setsum.cong[OF refl]) (subst gbinomial_negated_upper, simp add: power_mult_distrib) |
63466 | 1187 |
also have "\<dots> = - r + of_nat m gchoose m" |
1188 |
by (subst gbinomial_parallel_sum) simp |
|
1189 |
also have "\<dots> = ?rhs" |
|
1190 |
by (subst gbinomial_negated_upper) (simp add: power_mult_distrib) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1191 |
finally show ?thesis . |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1192 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1193 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1194 |
lemma gbinomial_partial_row_sum: |
63466 | 1195 |
"(\<Sum>k\<le>m. (r gchoose k) * ((r / 2) - of_nat k)) = ((of_nat m + 1)/2) * (r gchoose (m + 1))" |
1196 |
proof (induct m) |
|
1197 |
case 0 |
|
1198 |
then show ?case by simp |
|
1199 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1200 |
case (Suc mm) |
63466 | 1201 |
then have "(\<Sum>k\<le>Suc mm. (r gchoose k) * (r / 2 - of_nat k)) = |
1202 |
(r - of_nat (Suc mm)) * (r gchoose Suc mm) / 2" |
|
1203 |
by (simp add: field_simps) |
|
1204 |
also have "\<dots> = r * (r - 1 gchoose Suc mm) / 2" |
|
1205 |
by (subst gbinomial_absorb_comp) (rule refl) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1206 |
also have "\<dots> = (of_nat (Suc mm) + 1) / 2 * (r gchoose (Suc mm + 1))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1207 |
by (subst gbinomial_absorption [symmetric]) simp |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1208 |
finally show ?case . |
63466 | 1209 |
qed |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1210 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1211 |
lemma setsum_bounds_lt_plus1: "(\<Sum>k<mm. f (Suc k)) = (\<Sum>k=1..mm. f k)" |
63466 | 1212 |
by (induct mm) simp_all |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1213 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1214 |
lemma gbinomial_partial_sum_poly: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1215 |
"(\<Sum>k\<le>m. (of_nat m + r gchoose k) * x^k * y^(m-k)) = |
63466 | 1216 |
(\<Sum>k\<le>m. (-r gchoose k) * (-x)^k * (x + y)^(m-k))" |
1217 |
(is "?lhs m = ?rhs m") |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1218 |
proof (induction m) |
63466 | 1219 |
case 0 |
1220 |
then show ?case by simp |
|
1221 |
next |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1222 |
case (Suc mm) |
63466 | 1223 |
define G where "G i k = (of_nat i + r gchoose k) * x^k * y^(i - k)" for i k |
63040 | 1224 |
define S where "S = ?lhs" |
63466 | 1225 |
have SG_def: "S = (\<lambda>i. (\<Sum>k\<le>i. (G i k)))" |
1226 |
unfolding S_def G_def .. |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1227 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1228 |
have "S (Suc mm) = G (Suc mm) 0 + (\<Sum>k=Suc 0..Suc mm. G (Suc mm) k)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1229 |
using SG_def by (simp add: setsum_head_Suc atLeast0AtMost [symmetric]) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1230 |
also have "(\<Sum>k=Suc 0..Suc mm. G (Suc mm) k) = (\<Sum>k=0..mm. G (Suc mm) (Suc k))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1231 |
by (subst setsum_shift_bounds_cl_Suc_ivl) simp |
63466 | 1232 |
also have "\<dots> = (\<Sum>k=0..mm. ((of_nat mm + r gchoose (Suc k)) + |
1233 |
(of_nat mm + r gchoose k)) * x^(Suc k) * y^(mm - k))" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1234 |
unfolding G_def by (subst gbinomial_addition_formula) simp |
63466 | 1235 |
also have "\<dots> = (\<Sum>k=0..mm. (of_nat mm + r gchoose (Suc k)) * x^(Suc k) * y^(mm - k)) + |
1236 |
(\<Sum>k=0..mm. (of_nat mm + r gchoose k) * x^(Suc k) * y^(mm - k))" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1237 |
by (subst setsum.distrib [symmetric]) (simp add: algebra_simps) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1238 |
also have "(\<Sum>k=0..mm. (of_nat mm + r gchoose (Suc k)) * x^(Suc k) * y^(mm - k)) = |
63466 | 1239 |
(\<Sum>k<Suc mm. (of_nat mm + r gchoose (Suc k)) * x^(Suc k) * y^(mm - k))" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1240 |
by (simp only: atLeast0AtMost lessThan_Suc_atMost) |
63466 | 1241 |
also have "\<dots> = (\<Sum>k<mm. (of_nat mm + r gchoose Suc k) * x^(Suc k) * y^(mm-k)) + |
1242 |
(of_nat mm + r gchoose (Suc mm)) * x^(Suc mm)" |
|
1243 |
(is "_ = ?A + ?B") |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1244 |
by (subst setsum_lessThan_Suc) simp |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1245 |
also have "?A = (\<Sum>k=1..mm. (of_nat mm + r gchoose k) * x^k * y^(mm - k + 1))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1246 |
proof (subst setsum_bounds_lt_plus1 [symmetric], intro setsum.cong[OF refl], clarify) |
63466 | 1247 |
fix k |
1248 |
assume "k < mm" |
|
1249 |
then have "mm - k = mm - Suc k + 1" |
|
1250 |
by linarith |
|
1251 |
then show "(of_nat mm + r gchoose Suc k) * x ^ Suc k * y ^ (mm - k) = |
|
1252 |
(of_nat mm + r gchoose Suc k) * x ^ Suc k * y ^ (mm - Suc k + 1)" |
|
1253 |
by (simp only:) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1254 |
qed |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1255 |
also have "\<dots> + ?B = y * (\<Sum>k=1..mm. (G mm k)) + (of_nat mm + r gchoose (Suc mm)) * x^(Suc mm)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1256 |
unfolding G_def by (subst setsum_right_distrib) (simp add: algebra_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1257 |
also have "(\<Sum>k=0..mm. (of_nat mm + r gchoose k) * x^(Suc k) * y^(mm - k)) = x * (S mm)" |
63466 | 1258 |
unfolding S_def by (subst setsum_right_distrib) (simp add: atLeast0AtMost algebra_simps) |
1259 |
also have "(G (Suc mm) 0) = y * (G mm 0)" |
|
1260 |
by (simp add: G_def) |
|
1261 |
finally have "S (Suc mm) = |
|
1262 |
y * (G mm 0 + (\<Sum>k=1..mm. (G mm k))) + (of_nat mm + r gchoose (Suc mm)) * x^(Suc mm) + x * (S mm)" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1263 |
by (simp add: ring_distribs) |
63466 | 1264 |
also have "G mm 0 + (\<Sum>k=1..mm. (G mm k)) = S mm" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1265 |
by (simp add: setsum_head_Suc[symmetric] SG_def atLeast0AtMost) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1266 |
finally have "S (Suc mm) = (x + y) * (S mm) + (of_nat mm + r gchoose (Suc mm)) * x^(Suc mm)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1267 |
by (simp add: algebra_simps) |
63466 | 1268 |
also have "(of_nat mm + r gchoose (Suc mm)) = (-1) ^ (Suc mm) * (- r gchoose (Suc mm))" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1269 |
by (subst gbinomial_negated_upper) simp |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1270 |
also have "(-1) ^ Suc mm * (- r gchoose Suc mm) * x ^ Suc mm = |
63466 | 1271 |
(- r gchoose (Suc mm)) * (-x) ^ Suc mm" |
1272 |
by (simp add: power_minus[of x]) |
|
1273 |
also have "(x + y) * S mm + \<dots> = (x + y) * ?rhs mm + (- r gchoose (Suc mm)) * (- x)^Suc mm" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1274 |
unfolding S_def by (subst Suc.IH) simp |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1275 |
also have "(x + y) * ?rhs mm = (\<Sum>n\<le>mm. ((- r gchoose n) * (- x) ^ n * (x + y) ^ (Suc mm - n)))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1276 |
by (subst setsum_right_distrib, rule setsum.cong) (simp_all add: Suc_diff_le) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1277 |
also have "\<dots> + (-r gchoose (Suc mm)) * (-x)^Suc mm = |
63466 | 1278 |
(\<Sum>n\<le>Suc mm. (- r gchoose n) * (- x) ^ n * (x + y) ^ (Suc mm - n))" |
1279 |
by simp |
|
1280 |
finally show ?case |
|
1281 |
by (simp only: S_def) |
|
1282 |
qed |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1283 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1284 |
lemma gbinomial_partial_sum_poly_xpos: |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1285 |
"(\<Sum>k\<le>m. (of_nat m + r gchoose k) * x^k * y^(m-k)) = |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1286 |
(\<Sum>k\<le>m. (of_nat k + r - 1 gchoose k) * x^k * (x + y)^(m-k))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1287 |
apply (subst gbinomial_partial_sum_poly) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1288 |
apply (subst gbinomial_negated_upper) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1289 |
apply (intro setsum.cong, rule refl) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1290 |
apply (simp add: power_mult_distrib [symmetric]) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1291 |
done |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1292 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1293 |
lemma binomial_r_part_sum: "(\<Sum>k\<le>m. (2 * m + 1 choose k)) = 2 ^ (2 * m)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1294 |
proof - |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1295 |
have "2 * 2^(2*m) = (\<Sum>k = 0..(2 * m + 1). (2 * m + 1 choose k))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1296 |
using choose_row_sum[where n="2 * m + 1"] by simp |
63466 | 1297 |
also have "(\<Sum>k = 0..(2 * m + 1). (2 * m + 1 choose k)) = |
1298 |
(\<Sum>k = 0..m. (2 * m + 1 choose k)) + |
|
1299 |
(\<Sum>k = m+1..2*m+1. (2 * m + 1 choose k))" |
|
1300 |
using setsum_ub_add_nat[of 0 m "\<lambda>k. 2 * m + 1 choose k" "m+1"] |
|
1301 |
by (simp add: mult_2) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1302 |
also have "(\<Sum>k = m+1..2*m+1. (2 * m + 1 choose k)) = |
63466 | 1303 |
(\<Sum>k = 0..m. (2 * m + 1 choose (k + (m + 1))))" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1304 |
by (subst setsum_shift_bounds_cl_nat_ivl [symmetric]) (simp add: mult_2) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1305 |
also have "\<dots> = (\<Sum>k = 0..m. (2 * m + 1 choose (m - k)))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1306 |
by (intro setsum.cong[OF refl], subst binomial_symmetric) simp_all |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1307 |
also have "\<dots> = (\<Sum>k = 0..m. (2 * m + 1 choose k))" |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1308 |
using setsum.atLeast_atMost_rev [of "\<lambda>k. 2 * m + 1 choose (m - k)" 0 m] |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1309 |
by simp |
63466 | 1310 |
also have "\<dots> + \<dots> = 2 * \<dots>" |
1311 |
by simp |
|
1312 |
finally show ?thesis |
|
1313 |
by (subst (asm) mult_cancel1) (simp add: atLeast0AtMost) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1314 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1315 |
|
63466 | 1316 |
lemma gbinomial_r_part_sum: "(\<Sum>k\<le>m. (2 * (of_nat m) + 1 gchoose k)) = 2 ^ (2 * m)" |
1317 |
(is "?lhs = ?rhs") |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1318 |
proof - |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1319 |
have "?lhs = of_nat (\<Sum>k\<le>m. (2 * m + 1) choose k)" |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
1320 |
by (simp add: binomial_gbinomial add_ac) |
63466 | 1321 |
also have "\<dots> = of_nat (2 ^ (2 * m))" |
1322 |
by (subst binomial_r_part_sum) (rule refl) |
|
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
1323 |
finally show ?thesis by simp |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1324 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1325 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1326 |
lemma gbinomial_sum_nat_pow2: |
63466 | 1327 |
"(\<Sum>k\<le>m. (of_nat (m + k) gchoose k :: 'a::field_char_0) / 2 ^ k) = 2 ^ m" |
1328 |
(is "?lhs = ?rhs") |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1329 |
proof - |
63466 | 1330 |
have "2 ^ m * 2 ^ m = (2 ^ (2*m) :: 'a)" |
1331 |
by (induct m) simp_all |
|
1332 |
also have "\<dots> = (\<Sum>k\<le>m. (2 * (of_nat m) + 1 gchoose k))" |
|
1333 |
using gbinomial_r_part_sum .. |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1334 |
also have "\<dots> = (\<Sum>k\<le>m. (of_nat (m + k) gchoose k) * 2 ^ (m - k))" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1335 |
using gbinomial_partial_sum_poly_xpos[where x="1" and y="1" and r="of_nat m + 1" and m="m"] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1336 |
by (simp add: add_ac) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1337 |
also have "\<dots> = 2 ^ m * (\<Sum>k\<le>m. (of_nat (m + k) gchoose k) / 2 ^ k)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1338 |
by (subst setsum_right_distrib) (simp add: algebra_simps power_diff) |
63466 | 1339 |
finally show ?thesis |
1340 |
by (subst (asm) mult_left_cancel) simp_all |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1341 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1342 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1343 |
lemma gbinomial_trinomial_revision: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1344 |
assumes "k \<le> m" |
63466 | 1345 |
shows "(r gchoose m) * (of_nat m gchoose k) = (r gchoose k) * (r - of_nat k gchoose (m - k))" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1346 |
proof - |
63466 | 1347 |
have "(r gchoose m) * (of_nat m gchoose k) = (r gchoose m) * fact m / (fact k * fact (m - k))" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1348 |
using assms by (simp add: binomial_gbinomial [symmetric] binomial_fact) |
63466 | 1349 |
also have "\<dots> = (r gchoose k) * (r - of_nat k gchoose (m - k))" |
1350 |
using assms by (simp add: gbinomial_pochhammer power_diff pochhammer_product) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1351 |
finally show ?thesis . |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1352 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61076
diff
changeset
|
1353 |
|
63466 | 1354 |
text \<open>Versions of the theorems above for the natural-number version of "choose"\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1355 |
lemma binomial_altdef_of_nat: |
63466 | 1356 |
"k \<le> n \<Longrightarrow> of_nat (n choose k) = (\<Prod>i = 0..<k. of_nat (n - i) / of_nat (k - i) :: 'a)" |
1357 |
for n k :: nat and x :: "'a::field_char_0" |
|
1358 |
by (simp add: gbinomial_altdef_of_nat binomial_gbinomial of_nat_diff) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1359 |
|
63466 | 1360 |
lemma binomial_ge_n_over_k_pow_k: "k \<le> n \<Longrightarrow> (of_nat n / of_nat k :: 'a) ^ k \<le> of_nat (n choose k)" |
1361 |
for k n :: nat and x :: "'a::linordered_field" |
|
1362 |
by (simp add: gbinomial_ge_n_over_k_pow_k binomial_gbinomial of_nat_diff) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1363 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1364 |
lemma binomial_le_pow: |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1365 |
assumes "r \<le> n" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1366 |
shows "n choose r \<le> n ^ r" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1367 |
proof - |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1368 |
have "n choose r \<le> fact n div fact (n - r)" |
63466 | 1369 |
using assms by (subst binomial_fact_lemma[symmetric]) auto |
1370 |
with fact_div_fact_le_pow [OF assms] show ?thesis |
|
1371 |
by auto |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1372 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1373 |
|
63466 | 1374 |
lemma binomial_altdef_nat: "k \<le> n \<Longrightarrow> n choose k = fact n div (fact k * fact (n - k))" |
1375 |
for k n :: nat |
|
1376 |
by (subst binomial_fact_lemma [symmetric]) auto |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1377 |
|
63466 | 1378 |
lemma choose_dvd: |
1379 |
"k \<le> n \<Longrightarrow> fact k * fact (n - k) dvd (fact n :: 'a::{semiring_div,linordered_semidom})" |
|
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
1380 |
unfolding dvd_def |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
1381 |
apply (rule exI [where x="of_nat (n choose k)"]) |
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
1382 |
using binomial_fact_lemma [of k n, THEN arg_cong [where f = of_nat and 'b='a]] |
63366
209c4cbbc4cd
define binomial coefficents directly via combinatorial definition
haftmann
parents:
63363
diff
changeset
|
1383 |
apply auto |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1384 |
done |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1385 |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1386 |
lemma fact_fact_dvd_fact: |
63466 | 1387 |
"fact k * fact n dvd (fact (k + n) :: 'a::{semiring_div,linordered_semidom})" |
1388 |
by (metis add.commute add_diff_cancel_left' choose_dvd le_add2) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1389 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1390 |
lemma choose_mult_lemma: |
63466 | 1391 |
"((m + r + k) choose (m + k)) * ((m + k) choose k) = ((m + r + k) choose k) * ((m + r) choose m)" |
1392 |
(is "?lhs = _") |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1393 |
proof - |
63466 | 1394 |
have "?lhs = |
1395 |
fact (m + r + k) div (fact (m + k) * fact (m + r - m)) * (fact (m + k) div (fact k * fact m))" |
|
63092 | 1396 |
by (simp add: binomial_altdef_nat) |
63466 | 1397 |
also have "\<dots> = fact (m + r + k) div (fact r * (fact k * fact m))" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1398 |
apply (subst div_mult_div_if_dvd) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
1399 |
apply (auto simp: algebra_simps fact_fact_dvd_fact) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1400 |
apply (metis add.assoc add.commute fact_fact_dvd_fact) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1401 |
done |
63466 | 1402 |
also have "\<dots> = (fact (m + r + k) * fact (m + r)) div (fact r * (fact k * fact m) * fact (m + r))" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1403 |
apply (subst div_mult_div_if_dvd [symmetric]) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
1404 |
apply (auto simp add: algebra_simps) |
62344
759d684c0e60
pulled out legacy aliasses and infamous dvd interpretations into theory appendix
haftmann
parents:
62142
diff
changeset
|
1405 |
apply (metis fact_fact_dvd_fact dvd_trans nat_mult_dvd_cancel_disj) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1406 |
done |
63466 | 1407 |
also have "\<dots> = |
1408 |
(fact (m + r + k) div (fact k * fact (m + r)) * (fact (m + r) div (fact r * fact m)))" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1409 |
apply (subst div_mult_div_if_dvd) |
59730
b7c394c7a619
The factorial function, "fact", now has type "nat => 'a"
paulson <lp15@cam.ac.uk>
parents:
59669
diff
changeset
|
1410 |
apply (auto simp: fact_fact_dvd_fact algebra_simps) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1411 |
done |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1412 |
finally show ?thesis |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1413 |
by (simp add: binomial_altdef_nat mult.commute) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1414 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1415 |
|
63466 | 1416 |
text \<open>The "Subset of a Subset" identity.\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1417 |
lemma choose_mult: |
63466 | 1418 |
"k \<le> m \<Longrightarrow> m \<le> n \<Longrightarrow> (n choose m) * (m choose k) = (n choose k) * ((n - k) choose (m - k))" |
1419 |
using choose_mult_lemma [of "m-k" "n-m" k] by simp |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1420 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1421 |
|
63373 | 1422 |
subsection \<open>More on Binomial Coefficients\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1423 |
|
63466 | 1424 |
lemma choose_one: "n choose 1 = n" for n :: nat |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1425 |
by simp |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1426 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1427 |
(*FIXME: messy and apparently unused*) |
63466 | 1428 |
lemma binomial_induct [rule_format]: "(\<forall>n::nat. P n n) \<longrightarrow> |
1429 |
(\<forall>n. P (Suc n) 0) \<longrightarrow> (\<forall>n. (\<forall>k < n. P n k \<longrightarrow> P n (Suc k) \<longrightarrow> |
|
1430 |
P (Suc n) (Suc k))) \<longrightarrow> (\<forall>k \<le> n. P n k)" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1431 |
apply (induct n) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1432 |
apply auto |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1433 |
apply (case_tac "k = 0") |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1434 |
apply auto |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1435 |
apply (case_tac "k = Suc n") |
63367
6c731c8b7f03
simplified definitions of combinatorial functions
haftmann
parents:
63366
diff
changeset
|
1436 |
apply (auto simp add: le_Suc_eq elim: lessE) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1437 |
done |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1438 |
|
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1439 |
lemma card_UNION: |
63466 | 1440 |
assumes "finite A" |
1441 |
and "\<forall>k \<in> A. finite k" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1442 |
shows "card (\<Union>A) = nat (\<Sum>I | I \<subseteq> A \<and> I \<noteq> {}. (- 1) ^ (card I + 1) * int (card (\<Inter>I)))" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1443 |
(is "?lhs = ?rhs") |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1444 |
proof - |
63466 | 1445 |
have "?rhs = nat (\<Sum>I | I \<subseteq> A \<and> I \<noteq> {}. (- 1) ^ (card I + 1) * (\<Sum>_\<in>\<Inter>I. 1))" |
1446 |
by simp |
|
1447 |
also have "\<dots> = nat (\<Sum>I | I \<subseteq> A \<and> I \<noteq> {}. (\<Sum>_\<in>\<Inter>I. (- 1) ^ (card I + 1)))" |
|
1448 |
(is "_ = nat ?rhs") |
|
1449 |
by (subst setsum_right_distrib) simp |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1450 |
also have "?rhs = (\<Sum>(I, _)\<in>Sigma {I. I \<subseteq> A \<and> I \<noteq> {}} Inter. (- 1) ^ (card I + 1))" |
63466 | 1451 |
using assms by (subst setsum.Sigma) auto |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1452 |
also have "\<dots> = (\<Sum>(x, I)\<in>(SIGMA x:UNIV. {I. I \<subseteq> A \<and> I \<noteq> {} \<and> x \<in> \<Inter>I}). (- 1) ^ (card I + 1))" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1453 |
by (rule setsum.reindex_cong [where l = "\<lambda>(x, y). (y, x)"]) (auto intro: inj_onI simp add: split_beta) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1454 |
also have "\<dots> = (\<Sum>(x, I)\<in>(SIGMA x:\<Union>A. {I. I \<subseteq> A \<and> I \<noteq> {} \<and> x \<in> \<Inter>I}). (- 1) ^ (card I + 1))" |
63466 | 1455 |
using assms |
1456 |
by (auto intro!: setsum.mono_neutral_cong_right finite_SigmaI2 intro: finite_subset[where B="\<Union>A"]) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1457 |
also have "\<dots> = (\<Sum>x\<in>\<Union>A. (\<Sum>I|I \<subseteq> A \<and> I \<noteq> {} \<and> x \<in> \<Inter>I. (- 1) ^ (card I + 1)))" |
63466 | 1458 |
using assms by (subst setsum.Sigma) auto |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1459 |
also have "\<dots> = (\<Sum>_\<in>\<Union>A. 1)" (is "setsum ?lhs _ = _") |
63466 | 1460 |
proof (rule setsum.cong[OF refl]) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1461 |
fix x |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1462 |
assume x: "x \<in> \<Union>A" |
63040 | 1463 |
define K where "K = {X \<in> A. x \<in> X}" |
63466 | 1464 |
with \<open>finite A\<close> have K: "finite K" |
1465 |
by auto |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1466 |
let ?I = "\<lambda>i. {I. I \<subseteq> A \<and> card I = i \<and> x \<in> \<Inter>I}" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1467 |
have "inj_on snd (SIGMA i:{1..card A}. ?I i)" |
63466 | 1468 |
using assms by (auto intro!: inj_onI) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1469 |
moreover have [symmetric]: "snd ` (SIGMA i:{1..card A}. ?I i) = {I. I \<subseteq> A \<and> I \<noteq> {} \<and> x \<in> \<Inter>I}" |
63466 | 1470 |
using assms |
1471 |
by (auto intro!: rev_image_eqI[where x="(card a, a)" for a] |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1472 |
simp add: card_gt_0_iff[folded Suc_le_eq] |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1473 |
dest: finite_subset intro: card_mono) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1474 |
ultimately have "?lhs x = (\<Sum>(i, I)\<in>(SIGMA i:{1..card A}. ?I i). (- 1) ^ (i + 1))" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1475 |
by (rule setsum.reindex_cong [where l = snd]) fastforce |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1476 |
also have "\<dots> = (\<Sum>i=1..card A. (\<Sum>I|I \<subseteq> A \<and> card I = i \<and> x \<in> \<Inter>I. (- 1) ^ (i + 1)))" |
63466 | 1477 |
using assms by (subst setsum.Sigma) auto |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1478 |
also have "\<dots> = (\<Sum>i=1..card A. (- 1) ^ (i + 1) * (\<Sum>I|I \<subseteq> A \<and> card I = i \<and> x \<in> \<Inter>I. 1))" |
63466 | 1479 |
by (subst setsum_right_distrib) simp |
1480 |
also have "\<dots> = (\<Sum>i=1..card K. (- 1) ^ (i + 1) * (\<Sum>I|I \<subseteq> K \<and> card I = i. 1))" |
|
1481 |
(is "_ = ?rhs") |
|
1482 |
proof (rule setsum.mono_neutral_cong_right[rule_format]) |
|
1483 |
show "finite {1..card A}" |
|
1484 |
by simp |
|
1485 |
show "{1..card K} \<subseteq> {1..card A}" |
|
1486 |
using \<open>finite A\<close> by (auto simp add: K_def intro: card_mono) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1487 |
next |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1488 |
fix i |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1489 |
assume "i \<in> {1..card A} - {1..card K}" |
63466 | 1490 |
then have i: "i \<le> card A" "card K < i" |
1491 |
by auto |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1492 |
have "{I. I \<subseteq> A \<and> card I = i \<and> x \<in> \<Inter>I} = {I. I \<subseteq> K \<and> card I = i}" |
63466 | 1493 |
by (auto simp add: K_def) |
1494 |
also have "\<dots> = {}" |
|
1495 |
using \<open>finite A\<close> i by (auto simp add: K_def dest: card_mono[rotated 1]) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1496 |
finally show "(- 1) ^ (i + 1) * (\<Sum>I | I \<subseteq> A \<and> card I = i \<and> x \<in> \<Inter>I. 1 :: int) = 0" |
63466 | 1497 |
by (simp only:) simp |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1498 |
next |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1499 |
fix i |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1500 |
have "(\<Sum>I | I \<subseteq> A \<and> card I = i \<and> x \<in> \<Inter>I. 1) = (\<Sum>I | I \<subseteq> K \<and> card I = i. 1 :: int)" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1501 |
(is "?lhs = ?rhs") |
63466 | 1502 |
by (rule setsum.cong) (auto simp add: K_def) |
1503 |
then show "(- 1) ^ (i + 1) * ?lhs = (- 1) ^ (i + 1) * ?rhs" |
|
1504 |
by simp |
|
1505 |
qed |
|
1506 |
also have "{I. I \<subseteq> K \<and> card I = 0} = {{}}" |
|
1507 |
using assms by (auto simp add: card_eq_0_iff K_def dest: finite_subset) |
|
1508 |
then have "?rhs = (\<Sum>i = 0..card K. (- 1) ^ (i + 1) * (\<Sum>I | I \<subseteq> K \<and> card I = i. 1 :: int)) + 1" |
|
1509 |
by (subst (2) setsum_head_Suc) simp_all |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1510 |
also have "\<dots> = (\<Sum>i = 0..card K. (- 1) * ((- 1) ^ i * int (card K choose i))) + 1" |
63466 | 1511 |
using K by (subst n_subsets[symmetric]) simp_all |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1512 |
also have "\<dots> = - (\<Sum>i = 0..card K. (- 1) ^ i * int (card K choose i)) + 1" |
63466 | 1513 |
by (subst setsum_right_distrib[symmetric]) simp |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1514 |
also have "\<dots> = - ((-1 + 1) ^ card K) + 1" |
63466 | 1515 |
by (subst binomial_ring) (simp add: ac_simps) |
1516 |
also have "\<dots> = 1" |
|
1517 |
using x K by (auto simp add: K_def card_gt_0_iff) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1518 |
finally show "?lhs x = 1" . |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1519 |
qed |
63466 | 1520 |
also have "nat \<dots> = card (\<Union>A)" |
1521 |
by simp |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1522 |
finally show ?thesis .. |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1523 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1524 |
|
63466 | 1525 |
text \<open>The number of nat lists of length \<open>m\<close> summing to \<open>N\<close> is @{term "(N + m - 1) choose N"}:\<close> |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1526 |
lemma card_length_listsum_rec: |
63466 | 1527 |
assumes "m \<ge> 1" |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1528 |
shows "card {l::nat list. length l = m \<and> listsum l = N} = |
63466 | 1529 |
card {l. length l = (m - 1) \<and> listsum l = N} + |
1530 |
card {l. length l = m \<and> listsum l + 1 = N}" |
|
1531 |
(is "card ?C = card ?A + card ?B") |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1532 |
proof - |
63466 | 1533 |
let ?A' = "{l. length l = m \<and> listsum l = N \<and> hd l = 0}" |
1534 |
let ?B' = "{l. length l = m \<and> listsum l = N \<and> hd l \<noteq> 0}" |
|
1535 |
let ?f = "\<lambda>l. 0 # l" |
|
1536 |
let ?g = "\<lambda>l. (hd l + 1) # tl l" |
|
1537 |
have 1: "xs \<noteq> [] \<Longrightarrow> x = hd xs \<Longrightarrow> x # tl xs = xs" for x xs |
|
1538 |
by simp |
|
1539 |
have 2: "xs \<noteq> [] \<Longrightarrow> listsum(tl xs) = listsum xs - hd xs" for xs :: "nat list" |
|
1540 |
by (auto simp add: neq_Nil_conv) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1541 |
have f: "bij_betw ?f ?A ?A'" |
63466 | 1542 |
apply (rule bij_betw_byWitness[where f' = tl]) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1543 |
using assms |
63466 | 1544 |
apply (auto simp: 2 length_0_conv[symmetric] 1 simp del: length_0_conv) |
1545 |
done |
|
1546 |
have 3: "xs \<noteq> [] \<Longrightarrow> hd xs + (listsum xs - hd xs) = listsum xs" for xs :: "nat list" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1547 |
by (metis 1 listsum_simps(2) 2) |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1548 |
have g: "bij_betw ?g ?B ?B'" |
63466 | 1549 |
apply (rule bij_betw_byWitness[where f' = "\<lambda>l. (hd l - 1) # tl l"]) |
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1550 |
using assms |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1551 |
by (auto simp: 2 length_0_conv[symmetric] intro!: 3 |
63466 | 1552 |
simp del: length_greater_0_conv length_0_conv) |
1553 |
have fin: "finite {xs. size xs = M \<and> set xs \<subseteq> {0..<N}}" for M N :: nat |
|
1554 |
using finite_lists_length_eq[OF finite_atLeastLessThan] conj_commute by auto |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1555 |
have fin_A: "finite ?A" using fin[of _ "N+1"] |
63466 | 1556 |
by (intro finite_subset[where ?A = "?A" and ?B = "{xs. size xs = m - 1 \<and> set xs \<subseteq> {0..<N+1}}"]) |
1557 |
(auto simp: member_le_listsum_nat less_Suc_eq_le) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1558 |
have fin_B: "finite ?B" |
63466 | 1559 |
by (intro finite_subset[where ?A = "?B" and ?B = "{xs. size xs = m \<and> set xs \<subseteq> {0..<N}}"]) |
1560 |
(auto simp: member_le_listsum_nat less_Suc_eq_le fin) |
|
1561 |
have uni: "?C = ?A' \<union> ?B'" |
|
1562 |
by auto |
|
1563 |
have disj: "?A' \<inter> ?B' = {}" |
|
1564 |
by auto |
|
1565 |
have "card ?C = card(?A' \<union> ?B')" |
|
1566 |
using uni by simp |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1567 |
also have "\<dots> = card ?A + card ?B" |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1568 |
using card_Un_disjoint[OF _ _ disj] bij_betw_finite[OF f] bij_betw_finite[OF g] |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1569 |
bij_betw_same_card[OF f] bij_betw_same_card[OF g] fin_A fin_B |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1570 |
by presburger |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1571 |
finally show ?thesis . |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1572 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1573 |
|
63466 | 1574 |
lemma card_length_listsum: "card {l::nat list. size l = m \<and> listsum l = N} = (N + m - 1) choose N" |
1575 |
\<comment> "by Holden Lee, tidied by Tobias Nipkow" |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1576 |
proof (cases m) |
63466 | 1577 |
case 0 |
1578 |
then show ?thesis |
|
1579 |
by (cases N) (auto cong: conj_cong) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1580 |
next |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1581 |
case (Suc m') |
63466 | 1582 |
have m: "m \<ge> 1" |
1583 |
by (simp add: Suc) |
|
1584 |
then show ?thesis |
|
1585 |
proof (induct "N + m - 1" arbitrary: N m) |
|
1586 |
case 0 \<comment> "In the base case, the only solution is [0]." |
|
1587 |
have [simp]: "{l::nat list. length l = Suc 0 \<and> (\<forall>n\<in>set l. n = 0)} = {[0]}" |
|
1588 |
by (auto simp: length_Suc_conv) |
|
1589 |
have "m = 1 \<and> N = 0" |
|
1590 |
using 0 by linarith |
|
1591 |
then show ?case |
|
1592 |
by simp |
|
1593 |
next |
|
1594 |
case (Suc k) |
|
1595 |
have c1: "card {l::nat list. size l = (m - 1) \<and> listsum l = N} = (N + (m - 1) - 1) choose N" |
|
1596 |
proof (cases "m = 1") |
|
1597 |
case True |
|
1598 |
with Suc.hyps have "N \<ge> 1" |
|
1599 |
by auto |
|
1600 |
with True show ?thesis |
|
1601 |
by (simp add: binomial_eq_0) |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1602 |
next |
63466 | 1603 |
case False |
1604 |
then show ?thesis |
|
1605 |
using Suc by fastforce |
|
1606 |
qed |
|
1607 |
from Suc have c2: "card {l::nat list. size l = m \<and> listsum l + 1 = N} = |
|
1608 |
(if N > 0 then ((N - 1) + m - 1) choose (N - 1) else 0)" |
|
1609 |
proof - |
|
1610 |
have *: "n > 0 \<Longrightarrow> Suc m = n \<longleftrightarrow> m = n - 1" for m n |
|
1611 |
by arith |
|
1612 |
from Suc have "N > 0 \<Longrightarrow> |
|
1613 |
card {l::nat list. size l = m \<and> listsum l + 1 = N} = |
|
1614 |
((N - 1) + m - 1) choose (N - 1)" |
|
1615 |
by (simp add: *) |
|
1616 |
then show ?thesis |
|
1617 |
by auto |
|
1618 |
qed |
|
1619 |
from Suc.prems have "(card {l::nat list. size l = (m - 1) \<and> listsum l = N} + |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1620 |
card {l::nat list. size l = m \<and> listsum l + 1 = N}) = (N + m - 1) choose N" |
63466 | 1621 |
by (auto simp: c1 c2 choose_reduce_nat[of "N + m - 1" N] simp del: One_nat_def) |
1622 |
then show ?case |
|
1623 |
using card_length_listsum_rec[OF Suc.prems] by auto |
|
1624 |
qed |
|
59667
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1625 |
qed |
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
1626 |
|
63466 | 1627 |
lemma Suc_times_binomial_add: "Suc a * (Suc (a + b) choose Suc a) = Suc b * (Suc (a + b) choose a)" |
1628 |
\<comment> \<open>by Lukas Bulwahn\<close> |
|
60604 | 1629 |
proof - |
1630 |
have dvd: "Suc a * (fact a * fact b) dvd fact (Suc (a + b))" for a b |
|
1631 |
using fact_fact_dvd_fact[of "Suc a" "b", where 'a=nat] |
|
1632 |
by (simp only: fact_Suc add_Suc[symmetric] of_nat_id mult.assoc) |
|
1633 |
have "Suc a * (fact (Suc (a + b)) div (Suc a * fact a * fact b)) = |
|
1634 |
Suc a * fact (Suc (a + b)) div (Suc a * (fact a * fact b))" |
|
1635 |
by (subst div_mult_swap[symmetric]; simp only: mult.assoc dvd) |
|
1636 |
also have "\<dots> = Suc b * fact (Suc (a + b)) div (Suc b * (fact a * fact b))" |
|
1637 |
by (simp only: div_mult_mult1) |
|
1638 |
also have "\<dots> = Suc b * (fact (Suc (a + b)) div (Suc b * (fact a * fact b)))" |
|
1639 |
using dvd[of b a] by (subst div_mult_swap[symmetric]; simp only: ac_simps dvd) |
|
1640 |
finally show ?thesis |
|
1641 |
by (subst (1 2) binomial_altdef_nat) |
|
63466 | 1642 |
(simp_all only: ac_simps diff_Suc_Suc Suc_diff_le diff_add_inverse fact_Suc of_nat_id) |
60604 | 1643 |
qed |
1644 |
||
63373 | 1645 |
|
1646 |
subsection \<open>Misc\<close> |
|
1647 |
||
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1648 |
lemma fact_code [code]: |
63466 | 1649 |
"fact n = (of_nat (fold_atLeastAtMost_nat (op *) 2 n 1) :: 'a::semiring_char_0)" |
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1650 |
proof - |
63417
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1651 |
have "fact n = (of_nat (\<Prod>{1..n}) :: 'a)" |
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents:
63373
diff
changeset
|
1652 |
by (simp add: fact_setprod) |
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1653 |
also have "\<Prod>{1..n} = \<Prod>{2..n}" |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1654 |
by (intro setprod.mono_neutral_right) auto |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1655 |
also have "\<dots> = fold_atLeastAtMost_nat (op *) 2 n 1" |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1656 |
by (simp add: setprod_atLeastAtMost_code) |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1657 |
finally show ?thesis . |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1658 |
qed |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1659 |
|
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1660 |
lemma pochhammer_code [code]: |
63466 | 1661 |
"pochhammer a n = |
1662 |
(if n = 0 then 1 |
|
1663 |
else fold_atLeastAtMost_nat (\<lambda>n acc. (a + of_nat n) * acc) 0 (n - 1) 1)" |
|
1664 |
by (cases n) |
|
1665 |
(simp_all add: pochhammer_setprod setprod_atLeastAtMost_code [symmetric] |
|
1666 |
atLeastLessThanSuc_atLeastAtMost) |
|
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1667 |
|
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1668 |
lemma gbinomial_code [code]: |
63466 | 1669 |
"a gchoose n = |
1670 |
(if n = 0 then 1 |
|
1671 |
else fold_atLeastAtMost_nat (\<lambda>n acc. (a - of_nat n) * acc) 0 (n - 1) 1 / fact n)" |
|
1672 |
by (cases n) |
|
1673 |
(simp_all add: gbinomial_setprod_rev setprod_atLeastAtMost_code [symmetric] |
|
1674 |
atLeastLessThanSuc_atLeastAtMost) |
|
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1675 |
|
63466 | 1676 |
(* FIXME *) |
62142
18a217591310
Deleted problematic code equation in Binomial temporarily.
eberlm
parents:
62128
diff
changeset
|
1677 |
(*TODO: This code equation breaks Scala code generation in HOL-Codegenerator_Test. We have to figure out why and how to prevent that. *) |
18a217591310
Deleted problematic code equation in Binomial temporarily.
eberlm
parents:
62128
diff
changeset
|
1678 |
|
18a217591310
Deleted problematic code equation in Binomial temporarily.
eberlm
parents:
62128
diff
changeset
|
1679 |
(* |
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1680 |
lemma binomial_code [code]: |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1681 |
"(n choose k) = |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1682 |
(if k > n then 0 |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1683 |
else if 2 * k > n then (n choose (n - k)) |
62142
18a217591310
Deleted problematic code equation in Binomial temporarily.
eberlm
parents:
62128
diff
changeset
|
1684 |
else (fold_atLeastAtMost_nat (op * ) (n-k+1) n 1 div fact k))" |
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1685 |
proof - |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1686 |
{ |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1687 |
assume "k \<le> n" |
63466 | 1688 |
then have "{1..n} = {1..n-k} \<union> {n-k+1..n}" by auto |
1689 |
then have "(fact n :: nat) = fact (n-k) * \<Prod>{n-k+1..n}" |
|
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1690 |
by (simp add: setprod.union_disjoint fact_altdef_nat) |
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1691 |
} |
63466 | 1692 |
then show ?thesis by (auto simp: binomial_altdef_nat mult_ac setprod_atLeastAtMost_code) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62347
diff
changeset
|
1693 |
qed |
62142
18a217591310
Deleted problematic code equation in Binomial temporarily.
eberlm
parents:
62128
diff
changeset
|
1694 |
*) |
62128
3201ddb00097
Integrated some material from Algebraic_Numbers AFP entry to Polynomials; generalised some polynomial stuff.
eberlm
parents:
61799
diff
changeset
|
1695 |
|
15131 | 1696 |
end |