| author | haftmann | 
| Fri, 24 Feb 2012 07:30:24 +0100 | |
| changeset 46636 | 353731f11559 | 
| parent 46131 | ab07a3ef821c | 
| child 46757 | ad878aff9c15 | 
| permissions | -rw-r--r-- | 
| 41959 | 1 | (* Title: HOL/Library/Formal_Power_Series.thy | 
| 29687 | 2 | Author: Amine Chaieb, University of Cambridge | 
| 3 | *) | |
| 4 | ||
| 5 | header{* A formalization of formal power series *}
 | |
| 6 | ||
| 7 | theory Formal_Power_Series | |
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 8 | imports Complex_Main Binomial | 
| 29687 | 9 | begin | 
| 10 | ||
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 11 | |
| 29906 | 12 | subsection {* The type of formal power series*}
 | 
| 29687 | 13 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 14 | typedef (open) 'a fps = "{f :: nat \<Rightarrow> 'a. True}"
 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 15 | morphisms fps_nth Abs_fps | 
| 29687 | 16 | by simp | 
| 17 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 18 | notation fps_nth (infixl "$" 75) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 19 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 20 | lemma expand_fps_eq: "p = q \<longleftrightarrow> (\<forall>n. p $ n = q $ n)" | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 21 | by (simp add: fps_nth_inject [symmetric] fun_eq_iff) | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 22 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 23 | lemma fps_ext: "(\<And>n. p $ n = q $ n) \<Longrightarrow> p = q" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 24 | by (simp add: expand_fps_eq) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 25 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 26 | lemma fps_nth_Abs_fps [simp]: "Abs_fps f $ n = f n" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 27 | by (simp add: Abs_fps_inverse) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 28 | |
| 29687 | 29 | text{* Definition of the basic elements 0 and 1 and the basic operations of addition, negation and multiplication *}
 | 
| 30 | ||
| 36409 | 31 | instantiation fps :: (zero) zero | 
| 29687 | 32 | begin | 
| 33 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 34 | definition fps_zero_def: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 35 | "0 = Abs_fps (\<lambda>n. 0)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 36 | |
| 29687 | 37 | instance .. | 
| 38 | end | |
| 39 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 40 | lemma fps_zero_nth [simp]: "0 $ n = 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 41 | unfolding fps_zero_def by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 42 | |
| 36409 | 43 | instantiation fps :: ("{one, zero}") one
 | 
| 29687 | 44 | begin | 
| 45 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 46 | definition fps_one_def: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 47 | "1 = Abs_fps (\<lambda>n. if n = 0 then 1 else 0)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 48 | |
| 29687 | 49 | instance .. | 
| 50 | end | |
| 51 | ||
| 30488 | 52 | lemma fps_one_nth [simp]: "1 $ n = (if n = 0 then 1 else 0)" | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 53 | unfolding fps_one_def by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 54 | |
| 29687 | 55 | instantiation fps :: (plus) plus | 
| 56 | begin | |
| 57 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 58 | definition fps_plus_def: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 59 | "op + = (\<lambda>f g. Abs_fps (\<lambda>n. f $ n + g $ n))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 60 | |
| 29687 | 61 | instance .. | 
| 62 | end | |
| 63 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 64 | lemma fps_add_nth [simp]: "(f + g) $ n = f $ n + g $ n" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 65 | unfolding fps_plus_def by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 66 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 67 | instantiation fps :: (minus) minus | 
| 29687 | 68 | begin | 
| 69 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 70 | definition fps_minus_def: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 71 | "op - = (\<lambda>f g. Abs_fps (\<lambda>n. f $ n - g $ n))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 72 | |
| 29687 | 73 | instance .. | 
| 74 | end | |
| 75 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 76 | lemma fps_sub_nth [simp]: "(f - g) $ n = f $ n - g $ n" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 77 | unfolding fps_minus_def by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 78 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 79 | instantiation fps :: (uminus) uminus | 
| 29687 | 80 | begin | 
| 81 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 82 | definition fps_uminus_def: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 83 | "uminus = (\<lambda>f. Abs_fps (\<lambda>n. - (f $ n)))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 84 | |
| 29687 | 85 | instance .. | 
| 86 | end | |
| 87 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 88 | lemma fps_neg_nth [simp]: "(- f) $ n = - (f $ n)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 89 | unfolding fps_uminus_def by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 90 | |
| 29687 | 91 | instantiation fps :: ("{comm_monoid_add, times}")  times
 | 
| 92 | begin | |
| 93 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 94 | definition fps_times_def: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 95 | "op * = (\<lambda>f g. Abs_fps (\<lambda>n. \<Sum>i=0..n. f $ i * g $ (n - i)))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 96 | |
| 29687 | 97 | instance .. | 
| 98 | end | |
| 99 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 100 | lemma fps_mult_nth: "(f * g) $ n = (\<Sum>i=0..n. f$i * g$(n - i))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 101 | unfolding fps_times_def by simp | 
| 29687 | 102 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 103 | declare atLeastAtMost_iff[presburger] | 
| 29687 | 104 | declare Bex_def[presburger] | 
| 105 | declare Ball_def[presburger] | |
| 106 | ||
| 29913 | 107 | lemma mult_delta_left: | 
| 108 | fixes x y :: "'a::mult_zero" | |
| 109 | shows "(if b then x else 0) * y = (if b then x * y else 0)" | |
| 110 | by simp | |
| 111 | ||
| 112 | lemma mult_delta_right: | |
| 113 | fixes x y :: "'a::mult_zero" | |
| 114 | shows "x * (if b then y else 0) = (if b then x * y else 0)" | |
| 115 | by simp | |
| 116 | ||
| 29687 | 117 | lemma cond_value_iff: "f (if b then x else y) = (if b then f x else f y)" | 
| 118 | by auto | |
| 119 | lemma cond_application_beta: "(if b then f else g) x = (if b then f x else g x)" | |
| 120 | by auto | |
| 121 | ||
| 30488 | 122 | subsection{* Formal power series form a commutative ring with unity, if the range of sequences
 | 
| 29687 | 123 | they represent is a commutative ring with unity*} | 
| 124 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 125 | instance fps :: (semigroup_add) semigroup_add | 
| 29687 | 126 | proof | 
| 127 | fix a b c :: "'a fps" show "a + b + c = a + (b + c)" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 128 | by (simp add: fps_ext add_assoc) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 129 | qed | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 130 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 131 | instance fps :: (ab_semigroup_add) ab_semigroup_add | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 132 | proof | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 133 | fix a b :: "'a fps" show "a + b = b + a" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 134 | by (simp add: fps_ext add_commute) | 
| 29687 | 135 | qed | 
| 136 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 137 | lemma fps_mult_assoc_lemma: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 138 | fixes k :: nat and f :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> 'a::comm_monoid_add" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 139 | shows "(\<Sum>j=0..k. \<Sum>i=0..j. f i (j - i) (n - j)) = | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 140 | (\<Sum>j=0..k. \<Sum>i=0..k - j. f j i (n - j - i))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 141 | proof (induct k) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 142 | case 0 show ?case by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 143 | next | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 144 | case (Suc k) thus ?case | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 145 | by (simp add: Suc_diff_le setsum_addf add_assoc | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 146 | cong: strong_setsum_cong) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 147 | qed | 
| 29687 | 148 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 149 | instance fps :: (semiring_0) semigroup_mult | 
| 29687 | 150 | proof | 
| 151 | fix a b c :: "'a fps" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 152 | show "(a * b) * c = a * (b * c)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 153 | proof (rule fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 154 | fix n :: nat | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 155 | have "(\<Sum>j=0..n. \<Sum>i=0..j. a$i * b$(j - i) * c$(n - j)) = | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 156 | (\<Sum>j=0..n. \<Sum>i=0..n - j. a$j * b$i * c$(n - j - i))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 157 | by (rule fps_mult_assoc_lemma) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 158 | thus "((a * b) * c) $ n = (a * (b * c)) $ n" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 159 | by (simp add: fps_mult_nth setsum_right_distrib | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 160 | setsum_left_distrib mult_assoc) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 161 | qed | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 162 | qed | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 163 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 164 | lemma fps_mult_commute_lemma: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 165 | fixes n :: nat and f :: "nat \<Rightarrow> nat \<Rightarrow> 'a::comm_monoid_add" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 166 | shows "(\<Sum>i=0..n. f i (n - i)) = (\<Sum>i=0..n. f (n - i) i)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 167 | proof (rule setsum_reindex_cong) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 168 |   show "inj_on (\<lambda>i. n - i) {0..n}"
 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 169 | by (rule inj_onI) simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 170 |   show "{0..n} = (\<lambda>i. n - i) ` {0..n}"
 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 171 | by (auto, rule_tac x="n - x" in image_eqI, simp_all) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 172 | next | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 173 |   fix i assume "i \<in> {0..n}"
 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 174 | hence "n - (n - i) = i" by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 175 | thus "f (n - i) i = f (n - i) (n - (n - i))" by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 176 | qed | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 177 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 178 | instance fps :: (comm_semiring_0) ab_semigroup_mult | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 179 | proof | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 180 | fix a b :: "'a fps" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 181 | show "a * b = b * a" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 182 | proof (rule fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 183 | fix n :: nat | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 184 | have "(\<Sum>i=0..n. a$i * b$(n - i)) = (\<Sum>i=0..n. a$(n - i) * b$i)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 185 | by (rule fps_mult_commute_lemma) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 186 | thus "(a * b) $ n = (b * a) $ n" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 187 | by (simp add: fps_mult_nth mult_commute) | 
| 29687 | 188 | qed | 
| 189 | qed | |
| 190 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 191 | instance fps :: (monoid_add) monoid_add | 
| 29687 | 192 | proof | 
| 193 | fix a :: "'a fps" show "0 + a = a " | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 194 | by (simp add: fps_ext) | 
| 29687 | 195 | next | 
| 196 | fix a :: "'a fps" show "a + 0 = a " | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 197 | by (simp add: fps_ext) | 
| 29687 | 198 | qed | 
| 199 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 200 | instance fps :: (comm_monoid_add) comm_monoid_add | 
| 29687 | 201 | proof | 
| 202 | fix a :: "'a fps" show "0 + a = a " | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 203 | by (simp add: fps_ext) | 
| 29687 | 204 | qed | 
| 205 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 206 | instance fps :: (semiring_1) monoid_mult | 
| 29687 | 207 | proof | 
| 208 | fix a :: "'a fps" show "1 * a = a" | |
| 29913 | 209 | by (simp add: fps_ext fps_mult_nth mult_delta_left setsum_delta) | 
| 29687 | 210 | next | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 211 | fix a :: "'a fps" show "a * 1 = a" | 
| 29913 | 212 | by (simp add: fps_ext fps_mult_nth mult_delta_right setsum_delta') | 
| 29687 | 213 | qed | 
| 214 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 215 | instance fps :: (cancel_semigroup_add) cancel_semigroup_add | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 216 | proof | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 217 | fix a b c :: "'a fps" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 218 | assume "a + b = a + c" then show "b = c" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 219 | by (simp add: expand_fps_eq) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 220 | next | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 221 | fix a b c :: "'a fps" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 222 | assume "b + a = c + a" then show "b = c" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 223 | by (simp add: expand_fps_eq) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 224 | qed | 
| 29687 | 225 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 226 | instance fps :: (cancel_ab_semigroup_add) cancel_ab_semigroup_add | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 227 | proof | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 228 | fix a b c :: "'a fps" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 229 | assume "a + b = a + c" then show "b = c" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 230 | by (simp add: expand_fps_eq) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 231 | qed | 
| 29687 | 232 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 233 | instance fps :: (cancel_comm_monoid_add) cancel_comm_monoid_add .. | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 234 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 235 | instance fps :: (group_add) group_add | 
| 29687 | 236 | proof | 
| 237 | fix a :: "'a fps" show "- a + a = 0" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 238 | by (simp add: fps_ext) | 
| 29687 | 239 | next | 
| 240 | fix a b :: "'a fps" show "a - b = a + - b" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 241 | by (simp add: fps_ext diff_minus) | 
| 29687 | 242 | qed | 
| 243 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 244 | instance fps :: (ab_group_add) ab_group_add | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 245 | proof | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 246 | fix a :: "'a fps" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 247 | show "- a + a = 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 248 | by (simp add: fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 249 | next | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 250 | fix a b :: "'a fps" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 251 | show "a - b = a + - b" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 252 | by (simp add: fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 253 | qed | 
| 29687 | 254 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 255 | instance fps :: (zero_neq_one) zero_neq_one | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 256 | by default (simp add: expand_fps_eq) | 
| 29687 | 257 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 258 | instance fps :: (semiring_0) semiring | 
| 29687 | 259 | proof | 
| 260 | fix a b c :: "'a fps" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 261 | show "(a + b) * c = a * c + b * c" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 262 | by (simp add: expand_fps_eq fps_mult_nth left_distrib setsum_addf) | 
| 29687 | 263 | next | 
| 264 | fix a b c :: "'a fps" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 265 | show "a * (b + c) = a * b + a * c" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 266 | by (simp add: expand_fps_eq fps_mult_nth right_distrib setsum_addf) | 
| 29687 | 267 | qed | 
| 268 | ||
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 269 | instance fps :: (semiring_0) semiring_0 | 
| 29687 | 270 | proof | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 271 | fix a:: "'a fps" show "0 * a = 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 272 | by (simp add: fps_ext fps_mult_nth) | 
| 29687 | 273 | next | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 274 | fix a:: "'a fps" show "a * 0 = 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 275 | by (simp add: fps_ext fps_mult_nth) | 
| 29687 | 276 | qed | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 277 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 278 | instance fps :: (semiring_0_cancel) semiring_0_cancel .. | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 279 | |
| 29906 | 280 | subsection {* Selection of the nth power of the implicit variable in the infinite sum*}
 | 
| 29687 | 281 | |
| 282 | lemma fps_nonzero_nth: "f \<noteq> 0 \<longleftrightarrow> (\<exists> n. f $n \<noteq> 0)" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 283 | by (simp add: expand_fps_eq) | 
| 29687 | 284 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 285 | lemma fps_nonzero_nth_minimal: | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 286 | "f \<noteq> 0 \<longleftrightarrow> (\<exists>n. f $ n \<noteq> 0 \<and> (\<forall>m<n. f $ m = 0))" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 287 | proof | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 288 | let ?n = "LEAST n. f $ n \<noteq> 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 289 | assume "f \<noteq> 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 290 | then have "\<exists>n. f $ n \<noteq> 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 291 | by (simp add: fps_nonzero_nth) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 292 | then have "f $ ?n \<noteq> 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 293 | by (rule LeastI_ex) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 294 | moreover have "\<forall>m<?n. f $ m = 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 295 | by (auto dest: not_less_Least) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 296 | ultimately have "f $ ?n \<noteq> 0 \<and> (\<forall>m<?n. f $ m = 0)" .. | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 297 | then show "\<exists>n. f $ n \<noteq> 0 \<and> (\<forall>m<n. f $ m = 0)" .. | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 298 | next | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 299 | assume "\<exists>n. f $ n \<noteq> 0 \<and> (\<forall>m<n. f $ m = 0)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 300 | then show "f \<noteq> 0" by (auto simp add: expand_fps_eq) | 
| 29687 | 301 | qed | 
| 302 | ||
| 303 | lemma fps_eq_iff: "f = g \<longleftrightarrow> (\<forall>n. f $ n = g $n)" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 304 | by (rule expand_fps_eq) | 
| 29687 | 305 | |
| 30488 | 306 | lemma fps_setsum_nth: "(setsum f S) $ n = setsum (\<lambda>k. (f k) $ n) S" | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 307 | proof (cases "finite S") | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 308 | assume "\<not> finite S" then show ?thesis by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 309 | next | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 310 | assume "finite S" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 311 | then show ?thesis by (induct set: finite) auto | 
| 29687 | 312 | qed | 
| 313 | ||
| 29906 | 314 | subsection{* Injection of the basic ring elements and multiplication by scalars *}
 | 
| 29687 | 315 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 316 | definition | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 317 | "fps_const c = Abs_fps (\<lambda>n. if n = 0 then c else 0)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 318 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 319 | lemma fps_nth_fps_const [simp]: "fps_const c $ n = (if n = 0 then c else 0)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 320 | unfolding fps_const_def by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 321 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 322 | lemma fps_const_0_eq_0 [simp]: "fps_const 0 = 0" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 323 | by (simp add: fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 324 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 325 | lemma fps_const_1_eq_1 [simp]: "fps_const 1 = 1" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 326 | by (simp add: fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 327 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 328 | lemma fps_const_neg [simp]: "- (fps_const (c::'a::ring)) = fps_const (- c)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 329 | by (simp add: fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 330 | |
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 331 | lemma fps_const_add [simp]: "fps_const (c::'a\<Colon>monoid_add) + fps_const d = fps_const (c + d)" | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 332 | by (simp add: fps_ext) | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 333 | lemma fps_const_sub [simp]: "fps_const (c::'a\<Colon>group_add) - fps_const d = fps_const (c - d)" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 334 | by (simp add: fps_ext) | 
| 29687 | 335 | lemma fps_const_mult[simp]: "fps_const (c::'a\<Colon>ring) * fps_const d = fps_const (c * d)" | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 336 | by (simp add: fps_eq_iff fps_mult_nth setsum_0') | 
| 29687 | 337 | |
| 338 | lemma fps_const_add_left: "fps_const (c::'a\<Colon>monoid_add) + f = Abs_fps (\<lambda>n. if n = 0 then c + f$0 else f$n)" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 339 | by (simp add: fps_ext) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 340 | |
| 29687 | 341 | lemma fps_const_add_right: "f + fps_const (c::'a\<Colon>monoid_add) = Abs_fps (\<lambda>n. if n = 0 then f$0 + c else f$n)" | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 342 | by (simp add: fps_ext) | 
| 29687 | 343 | |
| 344 | lemma fps_const_mult_left: "fps_const (c::'a\<Colon>semiring_0) * f = Abs_fps (\<lambda>n. c * f$n)" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 345 | unfolding fps_eq_iff fps_mult_nth | 
| 29913 | 346 | by (simp add: fps_const_def mult_delta_left setsum_delta) | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 347 | |
| 29687 | 348 | lemma fps_const_mult_right: "f * fps_const (c::'a\<Colon>semiring_0) = Abs_fps (\<lambda>n. f$n * c)" | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 349 | unfolding fps_eq_iff fps_mult_nth | 
| 29913 | 350 | by (simp add: fps_const_def mult_delta_right setsum_delta') | 
| 29687 | 351 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 352 | lemma fps_mult_left_const_nth [simp]: "(fps_const (c::'a::semiring_1) * f)$n = c* f$n" | 
| 29913 | 353 | by (simp add: fps_mult_nth mult_delta_left setsum_delta) | 
| 29687 | 354 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 355 | lemma fps_mult_right_const_nth [simp]: "(f * fps_const (c::'a::semiring_1))$n = f$n * c" | 
| 29913 | 356 | by (simp add: fps_mult_nth mult_delta_right setsum_delta') | 
| 29687 | 357 | |
| 29906 | 358 | subsection {* Formal power series form an integral domain*}
 | 
| 29687 | 359 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 360 | instance fps :: (ring) ring .. | 
| 29687 | 361 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 362 | instance fps :: (ring_1) ring_1 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 363 | by (intro_classes, auto simp add: diff_minus left_distrib) | 
| 29687 | 364 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 365 | instance fps :: (comm_ring_1) comm_ring_1 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 366 | by (intro_classes, auto simp add: diff_minus left_distrib) | 
| 29687 | 367 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 368 | instance fps :: (ring_no_zero_divisors) ring_no_zero_divisors | 
| 29687 | 369 | proof | 
| 370 | fix a b :: "'a fps" | |
| 371 | assume a0: "a \<noteq> 0" and b0: "b \<noteq> 0" | |
| 372 | then obtain i j where i: "a$i\<noteq>0" "\<forall>k<i. a$k=0" | |
| 373 | and j: "b$j \<noteq>0" "\<forall>k<j. b$k =0" unfolding fps_nonzero_nth_minimal | |
| 374 | by blast+ | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 375 | have "(a * b) $ (i+j) = (\<Sum>k=0..i+j. a$k * b$(i+j-k))" | 
| 29687 | 376 | by (rule fps_mult_nth) | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 377 |   also have "\<dots> = (a$i * b$(i+j-i)) + (\<Sum>k\<in>{0..i+j}-{i}. a$k * b$(i+j-k))"
 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 378 | by (rule setsum_diff1') simp_all | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 379 |   also have "(\<Sum>k\<in>{0..i+j}-{i}. a$k * b$(i+j-k)) = 0"
 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 380 | proof (rule setsum_0' [rule_format]) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 381 |       fix k assume "k \<in> {0..i+j} - {i}"
 | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 382 | then have "k < i \<or> i+j-k < j" by auto | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 383 | then show "a$k * b$(i+j-k) = 0" using i j by auto | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 384 | qed | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 385 | also have "a$i * b$(i+j-i) + 0 = a$i * b$j" by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 386 | also have "a$i * b$j \<noteq> 0" using i j by simp | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 387 | finally have "(a*b) $ (i+j) \<noteq> 0" . | 
| 29687 | 388 | then show "a*b \<noteq> 0" unfolding fps_nonzero_nth by blast | 
| 389 | qed | |
| 390 | ||
| 36311 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 391 | instance fps :: (ring_1_no_zero_divisors) ring_1_no_zero_divisors .. | 
| 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 392 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 393 | instance fps :: (idom) idom .. | 
| 29687 | 394 | |
| 30746 | 395 | instantiation fps :: (comm_ring_1) number_ring | 
| 396 | begin | |
| 397 | definition number_of_fps_def: "(number_of k::'a fps) = of_int k" | |
| 398 | ||
| 31273 | 399 | instance proof | 
| 400 | qed (rule number_of_fps_def) | |
| 30746 | 401 | end | 
| 402 | ||
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 403 | lemma number_of_fps_const: "(number_of k::('a::comm_ring_1) fps) = fps_const (of_int k)"
 | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 404 | |
| 36811 
4ab4aa5bee1c
renamed former Int.int_induct to Int.int_of_nat_induct, former Presburger.int_induct to Int.int_induct: is more conservative and more natural than the intermediate solution
 haftmann parents: 
36808diff
changeset | 405 | proof(induct k rule: int_induct [where k=0]) | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 406 | case base thus ?case unfolding number_of_fps_def of_int_0 by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 407 | next | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 408 | case (step1 i) thus ?case unfolding number_of_fps_def | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 409 | by (simp add: fps_const_add[symmetric] del: fps_const_add) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 410 | next | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 411 | case (step2 i) thus ?case unfolding number_of_fps_def | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 412 | by (simp add: fps_const_sub[symmetric] del: fps_const_sub) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 413 | qed | 
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 414 | subsection{* The eXtractor series X*}
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 415 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 416 | lemma minus_one_power_iff: "(- (1::'a :: {comm_ring_1})) ^ n = (if even n then 1 else - 1)"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 417 | by (induct n, auto) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 418 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 419 | definition "X = Abs_fps (\<lambda>n. if n = 1 then 1 else 0)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 420 | lemma X_mult_nth[simp]: "(X * (f :: ('a::semiring_1) fps)) $n = (if n = 0 then 0 else f $ (n - 1))"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 421 | proof- | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 422 |   {assume n: "n \<noteq> 0"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 423 |     have fN: "finite {0 .. n}" by simp
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 424 | have "(X * f) $n = (\<Sum>i = 0..n. X $ i * f $ (n - i))" by (simp add: fps_mult_nth) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 425 | also have "\<dots> = f $ (n - 1)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 426 | using n by (simp add: X_def mult_delta_left setsum_delta [OF fN]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 427 | finally have ?thesis using n by simp } | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 428 | moreover | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 429 |   {assume n: "n=0" hence ?thesis by (simp add: fps_mult_nth X_def)}
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 430 | ultimately show ?thesis by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 431 | qed | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 432 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 433 | lemma X_mult_right_nth[simp]: "((f :: ('a::comm_semiring_1) fps) * X) $n = (if n = 0 then 0 else f $ (n - 1))"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 434 | by (metis X_mult_nth mult_commute) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 435 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 436 | lemma X_power_iff: "X^k = Abs_fps (\<lambda>n. if n = k then (1::'a::comm_ring_1) else 0)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 437 | proof(induct k) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 438 | case 0 thus ?case by (simp add: X_def fps_eq_iff) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 439 | next | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 440 | case (Suc k) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 441 |   {fix m
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 442 | have "(X^Suc k) $ m = (if m = 0 then (0::'a) else (X^k) $ (m - 1))" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 443 | by (simp add: power_Suc del: One_nat_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 444 | then have "(X^Suc k) $ m = (if m = Suc k then (1::'a) else 0)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 445 | using Suc.hyps by (auto cong del: if_weak_cong)} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 446 | then show ?case by (simp add: fps_eq_iff) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 447 | qed | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 448 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 449 | lemma X_power_mult_nth: "(X^k * (f :: ('a::comm_ring_1) fps)) $n = (if n < k then 0 else f $ (n - k))"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 450 | apply (induct k arbitrary: n) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 451 | apply (simp) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 452 | unfolding power_Suc mult_assoc | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 453 | by (case_tac n, auto) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 454 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 455 | lemma X_power_mult_right_nth: "((f :: ('a::comm_ring_1) fps) * X^k) $n = (if n < k then 0 else f $ (n - k))"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 456 | by (metis X_power_mult_nth mult_commute) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 457 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 458 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 459 | |
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 460 | |
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 461 | subsection{* Formal Power series form a metric space *}
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 462 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 463 | definition (in dist) ball_def: "ball x r = {y. dist y x < r}"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 464 | instantiation fps :: (comm_ring_1) dist | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 465 | begin | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 466 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 467 | definition dist_fps_def: "dist (a::'a fps) b = (if (\<exists>n. a$n \<noteq> b$n) then inverse (2 ^ The (leastP (\<lambda>n. a$n \<noteq> b$n))) else 0)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 468 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 469 | lemma dist_fps_ge0: "dist (a::'a fps) b \<ge> 0" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 470 | by (simp add: dist_fps_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 471 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 472 | lemma dist_fps_sym: "dist (a::'a fps) b = dist b a" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 473 | apply (auto simp add: dist_fps_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 474 | apply (rule cong[OF refl, where x="(\<lambda>n\<Colon>nat. a $ n \<noteq> b $ n)"]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 475 | apply (rule ext) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 476 | by auto | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 477 | instance .. | 
| 30746 | 478 | end | 
| 479 | ||
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 480 | lemma fps_nonzero_least_unique: assumes a0: "a \<noteq> 0" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 481 | shows "\<exists>! n. leastP (\<lambda>n. a$n \<noteq> 0) n" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 482 | proof- | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 483 | from fps_nonzero_nth_minimal[of a] a0 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 484 | obtain n where n: "a$n \<noteq> 0" "\<forall>m < n. a$m = 0" by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 485 | from n have ln: "leastP (\<lambda>n. a$n \<noteq> 0) n" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 486 | by (auto simp add: leastP_def setge_def not_le[symmetric]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 487 | moreover | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 488 |   {fix m assume "leastP (\<lambda>n. a$n \<noteq> 0) m"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 489 | then have "m = n" using ln | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 490 | apply (auto simp add: leastP_def setge_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 491 | apply (erule allE[where x=n]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 492 | apply (erule allE[where x=m]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 493 | by simp} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 494 | ultimately show ?thesis by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 495 | qed | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 496 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 497 | lemma fps_eq_least_unique: assumes ab: "(a::('a::ab_group_add) fps) \<noteq> b"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 498 | shows "\<exists>! n. leastP (\<lambda>n. a$n \<noteq> b$n) n" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 499 | using fps_nonzero_least_unique[of "a - b"] ab | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 500 | by auto | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 501 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 502 | instantiation fps :: (comm_ring_1) metric_space | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 503 | begin | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 504 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 505 | definition open_fps_def: "open (S :: 'a fps set) = (\<forall>a \<in> S. \<exists>r. r >0 \<and> ball a r \<subseteq> S)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 506 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 507 | instance | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 508 | proof | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 509 | fix S :: "'a fps set" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 510 | show "open S = (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 511 | by (auto simp add: open_fps_def ball_def subset_eq) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 512 | next | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 513 | {  fix a b :: "'a fps"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 514 |   {assume ab: "a = b"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 515 | then have "\<not> (\<exists>n. a$n \<noteq> b$n)" by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 516 | then have "dist a b = 0" by (simp add: dist_fps_def)} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 517 | moreover | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 518 |  {assume d: "dist a b = 0"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 519 | then have "\<forall>n. a$n = b$n" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 520 | by - (rule ccontr, simp add: dist_fps_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 521 | then have "a = b" by (simp add: fps_eq_iff)} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 522 | ultimately show "dist a b =0 \<longleftrightarrow> a = b" by blast} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 523 | note th = this | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 524 | from th have th'[simp]: "\<And>a::'a fps. dist a a = 0" by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 525 | fix a b c :: "'a fps" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 526 |   {assume ab: "a = b" then have d0: "dist a b = 0"  unfolding th .
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 527 | then have "dist a b \<le> dist a c + dist b c" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 528 | using dist_fps_ge0[of a c] dist_fps_ge0[of b c] by simp} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 529 | moreover | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 530 |   {assume c: "c = a \<or> c = b" then have "dist a b \<le> dist a c + dist b c"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 531 | by (cases "c=a", simp_all add: th dist_fps_sym) } | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 532 | moreover | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 533 |   {assume ab: "a \<noteq> b" and ac: "a \<noteq> c" and bc: "b \<noteq> c"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 534 | let ?P = "\<lambda>a b n. a$n \<noteq> b$n" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 535 | from fps_eq_least_unique[OF ab] fps_eq_least_unique[OF ac] | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 536 | fps_eq_least_unique[OF bc] | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 537 | obtain nab nac nbc where nab: "leastP (?P a b) nab" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 538 | and nac: "leastP (?P a c) nac" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 539 | and nbc: "leastP (?P b c) nbc" by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 540 | from nab have nab': "\<And>m. m < nab \<Longrightarrow> a$m = b$m" "a$nab \<noteq> b$nab" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 541 | by (auto simp add: leastP_def setge_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 542 | from nac have nac': "\<And>m. m < nac \<Longrightarrow> a$m = c$m" "a$nac \<noteq> c$nac" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 543 | by (auto simp add: leastP_def setge_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 544 | from nbc have nbc': "\<And>m. m < nbc \<Longrightarrow> b$m = c$m" "b$nbc \<noteq> c$nbc" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 545 | by (auto simp add: leastP_def setge_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 546 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 547 | have th0: "\<And>(a::'a fps) b. a \<noteq> b \<longleftrightarrow> (\<exists>n. a$n \<noteq> b$n)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 548 | by (simp add: fps_eq_iff) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 549 | from ab ac bc nab nac nbc | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 550 | have dab: "dist a b = inverse (2 ^ nab)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 551 | and dac: "dist a c = inverse (2 ^ nac)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 552 | and dbc: "dist b c = inverse (2 ^ nbc)" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 553 | unfolding th0 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 554 | apply (simp_all add: dist_fps_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 555 | apply (erule the1_equality[OF fps_eq_least_unique[OF ab]]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 556 | apply (erule the1_equality[OF fps_eq_least_unique[OF ac]]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 557 | by (erule the1_equality[OF fps_eq_least_unique[OF bc]]) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 558 | from ab ac bc have nz: "dist a b \<noteq> 0" "dist a c \<noteq> 0" "dist b c \<noteq> 0" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 559 | unfolding th by simp_all | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 560 | from nz have pos: "dist a b > 0" "dist a c > 0" "dist b c > 0" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 561 | using dist_fps_ge0[of a b] dist_fps_ge0[of a c] dist_fps_ge0[of b c] | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 562 | by auto | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 563 | have th1: "\<And>n. (2::real)^n >0" by auto | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 564 |     {assume h: "dist a b > dist a c + dist b c"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 565 | then have gt: "dist a b > dist a c" "dist a b > dist b c" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 566 | using pos by auto | 
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 567 | from gt have gtn: "nab < nbc" "nab < nac" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 568 | unfolding dab dbc dac by (auto simp add: th1) | 
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 569 | from nac'(1)[OF gtn(2)] nbc'(1)[OF gtn(1)] | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 570 | have "a$nab = b$nab" by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 571 | with nab'(2) have False by simp} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 572 | then have "dist a b \<le> dist a c + dist b c" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 573 | by (auto simp add: not_le[symmetric]) } | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 574 | ultimately show "dist a b \<le> dist a c + dist b c" by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 575 | qed | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 576 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 577 | end | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 578 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 579 | text{* The infinite sums and justification of the notation in textbooks*}
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 580 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 581 | lemma reals_power_lt_ex: assumes xp: "x > 0" and y1: "(y::real) > 1" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 582 | shows "\<exists>k>0. (1/y)^k < x" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 583 | proof- | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 584 | have yp: "y > 0" using y1 by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 585 | from reals_Archimedean2[of "max 0 (- log y x) + 1"] | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 586 | obtain k::nat where k: "real k > max 0 (- log y x) + 1" by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 587 | from k have kp: "k > 0" by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 588 | from k have "real k > - log y x" by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 589 | then have "ln y * real k > - ln x" unfolding log_def | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 590 | using ln_gt_zero_iff[OF yp] y1 | 
| 36350 | 591 | by (simp add: minus_divide_left field_simps del:minus_divide_left[symmetric]) | 
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 592 | then have "ln y * real k + ln x > 0" by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 593 | then have "exp (real k * ln y + ln x) > exp 0" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 594 | by (simp add: mult_ac) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 595 | then have "y ^ k * x > 1" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 596 | unfolding exp_zero exp_add exp_real_of_nat_mult | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 597 | exp_ln[OF xp] exp_ln[OF yp] by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 598 | then have "x > (1/y)^k" using yp | 
| 36350 | 599 | by (simp add: field_simps nonzero_power_divide) | 
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 600 | then show ?thesis using kp by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 601 | qed | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 602 | lemma X_nth[simp]: "X$n = (if n = 1 then 1 else 0)" by (simp add: X_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 603 | lemma X_power_nth[simp]: "(X^k) $n = (if n = k then 1 else (0::'a::comm_ring_1))" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 604 | by (simp add: X_power_iff) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 605 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 606 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 607 | lemma fps_sum_rep_nth: "(setsum (%i. fps_const(a$i)*X^i) {0..m})$n = (if n \<le> m then a$n else (0::'a::comm_ring_1))"
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 608 | apply (auto simp add: fps_eq_iff fps_setsum_nth X_power_nth cond_application_beta cond_value_iff cong del: if_weak_cong) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 609 | by (simp add: setsum_delta') | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 610 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 611 | lemma fps_notation: | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 612 |   "(%n. setsum (%i. fps_const(a$i) * X^i) {0..n}) ----> a" (is "?s ----> a")
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 613 | proof- | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 614 |     {fix r:: real
 | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 615 | assume rp: "r > 0" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 616 | have th0: "(2::real) > 1" by simp | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 617 | from reals_power_lt_ex[OF rp th0] | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 618 | obtain n0 where n0: "(1/2)^n0 < r" "n0 > 0" by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 619 |       {fix n::nat
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 620 | assume nn0: "n \<ge> n0" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 621 | then have thnn0: "(1/2)^n <= (1/2 :: real)^n0" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 622 | by (auto intro: power_decreasing) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 623 |         {assume "?s n = a" then have "dist (?s n) a < r" 
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 624 | unfolding dist_eq_0_iff[of "?s n" a, symmetric] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 625 | using rp by (simp del: dist_eq_0_iff)} | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 626 | moreover | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 627 |         {assume neq: "?s n \<noteq> a"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 628 | from fps_eq_least_unique[OF neq] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 629 | obtain k where k: "leastP (\<lambda>i. ?s n $ i \<noteq> a$i) k" by blast | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 630 | have th0: "\<And>(a::'a fps) b. a \<noteq> b \<longleftrightarrow> (\<exists>n. a$n \<noteq> b$n)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 631 | by (simp add: fps_eq_iff) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 632 | from neq have dth: "dist (?s n) a = (1/2)^k" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 633 | unfolding th0 dist_fps_def | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 634 | unfolding the1_equality[OF fps_eq_least_unique[OF neq], OF k] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 635 | by (auto simp add: inverse_eq_divide power_divide) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 636 | |
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 637 | from k have kn: "k > n" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 638 | by (simp add: leastP_def setge_def fps_sum_rep_nth split:split_if_asm) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 639 | then have "dist (?s n) a < (1/2)^n" unfolding dth | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 640 | by (auto intro: power_strict_decreasing) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 641 | also have "\<dots> <= (1/2)^n0" using nn0 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 642 | by (auto intro: power_decreasing) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 643 | also have "\<dots> < r" using n0 by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 644 | finally have "dist (?s n) a < r" .} | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 645 | ultimately have "dist (?s n) a < r" by blast} | 
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 646 | then have "\<exists>n0. \<forall> n \<ge> n0. dist (?s n) a < r " by blast} | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 647 | then show ?thesis unfolding LIMSEQ_def by blast | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 648 | qed | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 649 | |
| 29906 | 650 | subsection{* Inverses of formal power series *}
 | 
| 29687 | 651 | |
| 652 | declare setsum_cong[fundef_cong] | |
| 653 | ||
| 36311 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 654 | instantiation fps :: ("{comm_monoid_add, inverse, times, uminus}") inverse
 | 
| 29687 | 655 | begin | 
| 656 | ||
| 30488 | 657 | fun natfun_inverse:: "'a fps \<Rightarrow> nat \<Rightarrow> 'a" where | 
| 29687 | 658 | "natfun_inverse f 0 = inverse (f$0)" | 
| 30488 | 659 | | "natfun_inverse f n = - inverse (f$0) * setsum (\<lambda>i. f$i * natfun_inverse f (n - i)) {1..n}"
 | 
| 29687 | 660 | |
| 30488 | 661 | definition fps_inverse_def: | 
| 36311 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 662 | "inverse f = (if f $ 0 = 0 then 0 else Abs_fps (natfun_inverse f))" | 
| 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 663 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 664 | definition fps_divide_def: "divide = (\<lambda>(f::'a fps) g. f * inverse g)" | 
| 36311 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 665 | |
| 29687 | 666 | instance .. | 
| 36311 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 667 | |
| 29687 | 668 | end | 
| 669 | ||
| 30488 | 670 | lemma fps_inverse_zero[simp]: | 
| 29687 | 671 |   "inverse (0 :: 'a::{comm_monoid_add,inverse, times, uminus} fps) = 0"
 | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 672 | by (simp add: fps_ext fps_inverse_def) | 
| 29687 | 673 | |
| 674 | lemma fps_inverse_one[simp]: "inverse (1 :: 'a::{division_ring,zero_neq_one} fps) = 1"
 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 675 | apply (auto simp add: expand_fps_eq fps_inverse_def) | 
| 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 676 | by (case_tac n, auto) | 
| 29687 | 677 | |
| 36311 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 678 | lemma inverse_mult_eq_1 [intro]: assumes f0: "f$0 \<noteq> (0::'a::field)" | 
| 29687 | 679 | shows "inverse f * f = 1" | 
| 680 | proof- | |
| 681 | have c: "inverse f * f = f * inverse f" by (simp add: mult_commute) | |
| 30488 | 682 | from f0 have ifn: "\<And>n. inverse f $ n = natfun_inverse f n" | 
| 29687 | 683 | by (simp add: fps_inverse_def) | 
| 684 | from f0 have th0: "(inverse f * f) $ 0 = 1" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 685 | by (simp add: fps_mult_nth fps_inverse_def) | 
| 29687 | 686 |   {fix n::nat assume np: "n >0 "
 | 
| 687 |     from np have eq: "{0..n} = {0} \<union> {1 .. n}" by auto
 | |
| 688 |     have d: "{0} \<inter> {1 .. n} = {}" by auto
 | |
| 689 |     have f: "finite {0::nat}" "finite {1..n}" by auto
 | |
| 30488 | 690 | from f0 np have th0: "- (inverse f$n) = | 
| 29687 | 691 |       (setsum (\<lambda>i. f$i * natfun_inverse f (n - i)) {1..n}) / (f$0)"
 | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 692 | by (cases n, simp, simp add: divide_inverse fps_inverse_def) | 
| 29687 | 693 | from th0[symmetric, unfolded nonzero_divide_eq_eq[OF f0]] | 
| 30488 | 694 |     have th1: "setsum (\<lambda>i. f$i * natfun_inverse f (n - i)) {1..n} =
 | 
| 695 | - (f$0) * (inverse f)$n" | |
| 36350 | 696 | by (simp add: field_simps) | 
| 30488 | 697 | have "(f * inverse f) $ n = (\<Sum>i = 0..n. f $i * natfun_inverse f (n - i))" | 
| 29687 | 698 | unfolding fps_mult_nth ifn .. | 
| 30488 | 699 | also have "\<dots> = f$0 * natfun_inverse f n | 
| 29687 | 700 | + (\<Sum>i = 1..n. f$i * natfun_inverse f (n-i))" | 
| 701 | unfolding setsum_Un_disjoint[OF f d, unfolded eq[symmetric]] | |
| 702 | by simp | |
| 703 | also have "\<dots> = 0" unfolding th1 ifn by simp | |
| 704 | finally have "(inverse f * f)$n = 0" unfolding c . } | |
| 705 | with th0 show ?thesis by (simp add: fps_eq_iff) | |
| 706 | qed | |
| 707 | ||
| 708 | lemma fps_inverse_0_iff[simp]: "(inverse f)$0 = (0::'a::division_ring) \<longleftrightarrow> f$0 = 0" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 709 | by (simp add: fps_inverse_def nonzero_imp_inverse_nonzero) | 
| 29687 | 710 | |
| 711 | lemma fps_inverse_eq_0_iff[simp]: "inverse f = (0:: ('a::field) fps) \<longleftrightarrow> f $0 = 0"
 | |
| 712 | proof- | |
| 713 |   {assume "f$0 = 0" hence "inverse f = 0" by (simp add: fps_inverse_def)}
 | |
| 714 | moreover | |
| 715 |   {assume h: "inverse f = 0" and c: "f $0 \<noteq> 0"
 | |
| 716 | from inverse_mult_eq_1[OF c] h have False by simp} | |
| 717 | ultimately show ?thesis by blast | |
| 718 | qed | |
| 719 | ||
| 720 | lemma fps_inverse_idempotent[intro]: assumes f0: "f$0 \<noteq> (0::'a::field)" | |
| 721 | shows "inverse (inverse f) = f" | |
| 722 | proof- | |
| 723 | from f0 have if0: "inverse f $ 0 \<noteq> 0" by simp | |
| 30488 | 724 | from inverse_mult_eq_1[OF f0] inverse_mult_eq_1[OF if0] | 
| 29687 | 725 | have th0: "inverse f * f = inverse f * inverse (inverse f)" by (simp add: mult_ac) | 
| 726 | then show ?thesis using f0 unfolding mult_cancel_left by simp | |
| 727 | qed | |
| 728 | ||
| 30488 | 729 | lemma fps_inverse_unique: assumes f0: "f$0 \<noteq> (0::'a::field)" and fg: "f*g = 1" | 
| 29687 | 730 | shows "inverse f = g" | 
| 731 | proof- | |
| 732 | from inverse_mult_eq_1[OF f0] fg | |
| 733 | have th0: "inverse f * f = g * f" by (simp add: mult_ac) | |
| 734 | then show ?thesis using f0 unfolding mult_cancel_right | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 735 | by (auto simp add: expand_fps_eq) | 
| 29687 | 736 | qed | 
| 737 | ||
| 30488 | 738 | lemma fps_inverse_gp: "inverse (Abs_fps(\<lambda>n. (1::'a::field))) | 
| 29687 | 739 | = Abs_fps (\<lambda>n. if n= 0 then 1 else if n=1 then - 1 else 0)" | 
| 740 | apply (rule fps_inverse_unique) | |
| 741 | apply simp | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 742 | apply (simp add: fps_eq_iff fps_mult_nth) | 
| 29687 | 743 | proof(clarsimp) | 
| 744 | fix n::nat assume n: "n > 0" | |
| 745 | let ?f = "\<lambda>i. if n = i then (1\<Colon>'a) else if n - i = 1 then - 1 else 0" | |
| 746 | let ?g = "\<lambda>i. if i = n then 1 else if i=n - 1 then - 1 else 0" | |
| 747 | let ?h = "\<lambda>i. if i=n - 1 then - 1 else 0" | |
| 30488 | 748 |   have th1: "setsum ?f {0..n} = setsum ?g {0..n}"
 | 
| 29687 | 749 | by (rule setsum_cong2) auto | 
| 30488 | 750 |   have th2: "setsum ?g {0..n - 1} = setsum ?h {0..n - 1}"
 | 
| 29687 | 751 | using n apply - by (rule setsum_cong2) auto | 
| 752 |   have eq: "{0 .. n} = {0.. n - 1} \<union> {n}" by auto
 | |
| 30488 | 753 |   from n have d: "{0.. n - 1} \<inter> {n} = {}" by auto
 | 
| 29687 | 754 |   have f: "finite {0.. n - 1}" "finite {n}" by auto
 | 
| 755 |   show "setsum ?f {0..n} = 0"
 | |
| 30488 | 756 | unfolding th1 | 
| 29687 | 757 | apply (simp add: setsum_Un_disjoint[OF f d, unfolded eq[symmetric]] del: One_nat_def) | 
| 758 | unfolding th2 | |
| 759 | by(simp add: setsum_delta) | |
| 760 | qed | |
| 761 | ||
| 29912 | 762 | subsection{* Formal Derivatives, and the MacLaurin theorem around 0*}
 | 
| 29687 | 763 | |
| 764 | definition "fps_deriv f = Abs_fps (\<lambda>n. of_nat (n + 1) * f $ (n + 1))" | |
| 765 | ||
| 766 | lemma fps_deriv_nth[simp]: "fps_deriv f $ n = of_nat (n +1) * f $ (n+1)" by (simp add: fps_deriv_def) | |
| 767 | ||
| 768 | lemma fps_deriv_linear[simp]: "fps_deriv (fps_const (a::'a::comm_semiring_1) * f + fps_const b * g) = fps_const a * fps_deriv f + fps_const b * fps_deriv g" | |
| 36350 | 769 | unfolding fps_eq_iff fps_add_nth fps_const_mult_left fps_deriv_nth by (simp add: field_simps) | 
| 29687 | 770 | |
| 30488 | 771 | lemma fps_deriv_mult[simp]: | 
| 29687 | 772 |   fixes f :: "('a :: comm_ring_1) fps"
 | 
| 773 | shows "fps_deriv (f * g) = f * fps_deriv g + fps_deriv f * g" | |
| 774 | proof- | |
| 775 | let ?D = "fps_deriv" | |
| 776 |   {fix n::nat
 | |
| 777 |     let ?Zn = "{0 ..n}"
 | |
| 778 |     let ?Zn1 = "{0 .. n + 1}"
 | |
| 779 | let ?f = "\<lambda>i. i + 1" | |
| 780 |     have fi: "inj_on ?f {0..n}" by (simp add: inj_on_def)
 | |
| 781 |     have eq: "{1.. n+1} = ?f ` {0..n}" by auto
 | |
| 782 | let ?g = "\<lambda>i. of_nat (i+1) * g $ (i+1) * f $ (n - i) + | |
| 783 | of_nat (i+1)* f $ (i+1) * g $ (n - i)" | |
| 784 | let ?h = "\<lambda>i. of_nat i * g $ i * f $ ((n+1) - i) + | |
| 785 | of_nat i* f $ i * g $ ((n + 1) - i)" | |
| 786 |     {fix k assume k: "k \<in> {0..n}"
 | |
| 787 | have "?h (k + 1) = ?g k" using k by auto} | |
| 788 | note th0 = this | |
| 789 |     have eq': "{0..n +1}- {1 .. n+1} = {0}" by auto
 | |
| 790 | have s0: "setsum (\<lambda>i. of_nat i * f $ i * g $ (n + 1 - i)) ?Zn1 = setsum (\<lambda>i. of_nat (n + 1 - i) * f $ (n + 1 - i) * g $ i) ?Zn1" | |
| 791 | apply (rule setsum_reindex_cong[where f="\<lambda>i. n + 1 - i"]) | |
| 792 | apply (simp add: inj_on_def Ball_def) | |
| 793 | apply presburger | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 794 | apply (rule set_eqI) | 
| 29687 | 795 | apply (presburger add: image_iff) | 
| 796 | by simp | |
| 797 | have s1: "setsum (\<lambda>i. f $ i * g $ (n + 1 - i)) ?Zn1 = setsum (\<lambda>i. f $ (n + 1 - i) * g $ i) ?Zn1" | |
| 798 | apply (rule setsum_reindex_cong[where f="\<lambda>i. n + 1 - i"]) | |
| 799 | apply (simp add: inj_on_def Ball_def) | |
| 800 | apply presburger | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 801 | apply (rule set_eqI) | 
| 29687 | 802 | apply (presburger add: image_iff) | 
| 803 | by simp | |
| 804 | have "(f * ?D g + ?D f * g)$n = (?D g * f + ?D f * g)$n" by (simp only: mult_commute) | |
| 805 | also have "\<dots> = (\<Sum>i = 0..n. ?g i)" | |
| 806 | by (simp add: fps_mult_nth setsum_addf[symmetric]) | |
| 807 |     also have "\<dots> = setsum ?h {1..n+1}"
 | |
| 808 | using th0 setsum_reindex_cong[OF fi eq, of "?g" "?h"] by auto | |
| 809 |     also have "\<dots> = setsum ?h {0..n+1}"
 | |
| 810 | apply (rule setsum_mono_zero_left) | |
| 811 | apply simp | |
| 812 | apply (simp add: subset_eq) | |
| 813 | unfolding eq' | |
| 814 | by simp | |
| 815 | also have "\<dots> = (fps_deriv (f * g)) $ n" | |
| 816 | apply (simp only: fps_deriv_nth fps_mult_nth setsum_addf) | |
| 817 | unfolding s0 s1 | |
| 818 | unfolding setsum_addf[symmetric] setsum_right_distrib | |
| 819 | apply (rule setsum_cong2) | |
| 36350 | 820 | by (auto simp add: of_nat_diff field_simps) | 
| 29687 | 821 | finally have "(f * ?D g + ?D f * g) $ n = ?D (f*g) $ n" .} | 
| 30488 | 822 | then show ?thesis unfolding fps_eq_iff by auto | 
| 29687 | 823 | qed | 
| 824 | ||
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 825 | lemma fps_deriv_X[simp]: "fps_deriv X = 1" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 826 | by (simp add: fps_deriv_def X_def fps_eq_iff) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 827 | |
| 29687 | 828 | lemma fps_deriv_neg[simp]: "fps_deriv (- (f:: ('a:: comm_ring_1) fps)) = - (fps_deriv f)"
 | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 829 | by (simp add: fps_eq_iff fps_deriv_def) | 
| 29687 | 830 | lemma fps_deriv_add[simp]: "fps_deriv ((f:: ('a::comm_ring_1) fps) + g) = fps_deriv f + fps_deriv g"
 | 
| 831 | using fps_deriv_linear[of 1 f 1 g] by simp | |
| 832 | ||
| 833 | lemma fps_deriv_sub[simp]: "fps_deriv ((f:: ('a::comm_ring_1) fps) - g) = fps_deriv f - fps_deriv g"
 | |
| 30488 | 834 | unfolding diff_minus by simp | 
| 29687 | 835 | |
| 836 | lemma fps_deriv_const[simp]: "fps_deriv (fps_const c) = 0" | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 837 | by (simp add: fps_ext fps_deriv_def fps_const_def) | 
| 29687 | 838 | |
| 839 | lemma fps_deriv_mult_const_left[simp]: "fps_deriv (fps_const (c::'a::comm_ring_1) * f) = fps_const c * fps_deriv f" | |
| 840 | by simp | |
| 841 | ||
| 842 | lemma fps_deriv_0[simp]: "fps_deriv 0 = 0" | |
| 843 | by (simp add: fps_deriv_def fps_eq_iff) | |
| 844 | ||
| 845 | lemma fps_deriv_1[simp]: "fps_deriv 1 = 0" | |
| 846 | by (simp add: fps_deriv_def fps_eq_iff ) | |
| 847 | ||
| 848 | lemma fps_deriv_mult_const_right[simp]: "fps_deriv (f * fps_const (c::'a::comm_ring_1)) = fps_deriv f * fps_const c" | |
| 849 | by simp | |
| 850 | ||
| 851 | lemma fps_deriv_setsum: "fps_deriv (setsum f S) = setsum (\<lambda>i. fps_deriv (f i :: ('a::comm_ring_1) fps)) S"
 | |
| 852 | proof- | |
| 853 |   {assume "\<not> finite S" hence ?thesis by simp}
 | |
| 854 | moreover | |
| 855 |   {assume fS: "finite S"
 | |
| 856 | have ?thesis by (induct rule: finite_induct[OF fS], simp_all)} | |
| 857 | ultimately show ?thesis by blast | |
| 858 | qed | |
| 859 | ||
| 860 | lemma fps_deriv_eq_0_iff[simp]: "fps_deriv f = 0 \<longleftrightarrow> (f = fps_const (f$0 :: 'a::{idom,semiring_char_0}))"
 | |
| 861 | proof- | |
| 862 |   {assume "f= fps_const (f$0)" hence "fps_deriv f = fps_deriv (fps_const (f$0))" by simp
 | |
| 863 | hence "fps_deriv f = 0" by simp } | |
| 864 | moreover | |
| 865 |   {assume z: "fps_deriv f = 0"
 | |
| 866 | hence "\<forall>n. (fps_deriv f)$n = 0" by simp | |
| 867 | hence "\<forall>n. f$(n+1) = 0" by (simp del: of_nat_Suc of_nat_add One_nat_def) | |
| 868 | hence "f = fps_const (f$0)" | |
| 869 | apply (clarsimp simp add: fps_eq_iff fps_const_def) | |
| 870 | apply (erule_tac x="n - 1" in allE) | |
| 871 | by simp} | |
| 872 | ultimately show ?thesis by blast | |
| 873 | qed | |
| 874 | ||
| 30488 | 875 | lemma fps_deriv_eq_iff: | 
| 29687 | 876 |   fixes f:: "('a::{idom,semiring_char_0}) fps"
 | 
| 877 | shows "fps_deriv f = fps_deriv g \<longleftrightarrow> (f = fps_const(f$0 - g$0) + g)" | |
| 878 | proof- | |
| 879 | have "fps_deriv f = fps_deriv g \<longleftrightarrow> fps_deriv (f - g) = 0" by simp | |
| 880 | also have "\<dots> \<longleftrightarrow> f - g = fps_const ((f-g)$0)" unfolding fps_deriv_eq_0_iff .. | |
| 36350 | 881 | finally show ?thesis by (simp add: field_simps) | 
| 29687 | 882 | qed | 
| 883 | ||
| 884 | lemma fps_deriv_eq_iff_ex: "(fps_deriv f = fps_deriv g) \<longleftrightarrow> (\<exists>(c::'a::{idom,semiring_char_0}). f = fps_const c + g)"
 | |
| 885 | apply auto unfolding fps_deriv_eq_iff by blast | |
| 30488 | 886 | |
| 29687 | 887 | |
| 888 | fun fps_nth_deriv :: "nat \<Rightarrow> ('a::semiring_1) fps \<Rightarrow> 'a fps" where
 | |
| 889 | "fps_nth_deriv 0 f = f" | |
| 890 | | "fps_nth_deriv (Suc n) f = fps_nth_deriv n (fps_deriv f)" | |
| 891 | ||
| 892 | lemma fps_nth_deriv_commute: "fps_nth_deriv (Suc n) f = fps_deriv (fps_nth_deriv n f)" | |
| 893 | by (induct n arbitrary: f, auto) | |
| 894 | ||
| 895 | lemma fps_nth_deriv_linear[simp]: "fps_nth_deriv n (fps_const (a::'a::comm_semiring_1) * f + fps_const b * g) = fps_const a * fps_nth_deriv n f + fps_const b * fps_nth_deriv n g" | |
| 896 | by (induct n arbitrary: f g, auto simp add: fps_nth_deriv_commute) | |
| 897 | ||
| 898 | lemma fps_nth_deriv_neg[simp]: "fps_nth_deriv n (- (f:: ('a:: comm_ring_1) fps)) = - (fps_nth_deriv n f)"
 | |
| 899 | by (induct n arbitrary: f, simp_all) | |
| 900 | ||
| 901 | lemma fps_nth_deriv_add[simp]: "fps_nth_deriv n ((f:: ('a::comm_ring_1) fps) + g) = fps_nth_deriv n f + fps_nth_deriv n g"
 | |
| 902 | using fps_nth_deriv_linear[of n 1 f 1 g] by simp | |
| 903 | ||
| 904 | lemma fps_nth_deriv_sub[simp]: "fps_nth_deriv n ((f:: ('a::comm_ring_1) fps) - g) = fps_nth_deriv n f - fps_nth_deriv n g"
 | |
| 30488 | 905 | unfolding diff_minus fps_nth_deriv_add by simp | 
| 29687 | 906 | |
| 907 | lemma fps_nth_deriv_0[simp]: "fps_nth_deriv n 0 = 0" | |
| 908 | by (induct n, simp_all ) | |
| 909 | ||
| 910 | lemma fps_nth_deriv_1[simp]: "fps_nth_deriv n 1 = (if n = 0 then 1 else 0)" | |
| 911 | by (induct n, simp_all ) | |
| 912 | ||
| 913 | lemma fps_nth_deriv_const[simp]: "fps_nth_deriv n (fps_const c) = (if n = 0 then fps_const c else 0)" | |
| 914 | by (cases n, simp_all) | |
| 915 | ||
| 916 | lemma fps_nth_deriv_mult_const_left[simp]: "fps_nth_deriv n (fps_const (c::'a::comm_ring_1) * f) = fps_const c * fps_nth_deriv n f" | |
| 917 | using fps_nth_deriv_linear[of n "c" f 0 0 ] by simp | |
| 918 | ||
| 919 | lemma fps_nth_deriv_mult_const_right[simp]: "fps_nth_deriv n (f * fps_const (c::'a::comm_ring_1)) = fps_nth_deriv n f * fps_const c" | |
| 920 | using fps_nth_deriv_linear[of n "c" f 0 0] by (simp add: mult_commute) | |
| 921 | ||
| 922 | lemma fps_nth_deriv_setsum: "fps_nth_deriv n (setsum f S) = setsum (\<lambda>i. fps_nth_deriv n (f i :: ('a::comm_ring_1) fps)) S"
 | |
| 923 | proof- | |
| 924 |   {assume "\<not> finite S" hence ?thesis by simp}
 | |
| 925 | moreover | |
| 926 |   {assume fS: "finite S"
 | |
| 927 | have ?thesis by (induct rule: finite_induct[OF fS], simp_all)} | |
| 928 | ultimately show ?thesis by blast | |
| 929 | qed | |
| 930 | ||
| 931 | lemma fps_deriv_maclauren_0: "(fps_nth_deriv k (f:: ('a::comm_semiring_1) fps)) $ 0 = of_nat (fact k) * f$(k)"
 | |
| 36350 | 932 | by (induct k arbitrary: f) (auto simp add: field_simps of_nat_mult) | 
| 29687 | 933 | |
| 29906 | 934 | subsection {* Powers*}
 | 
| 29687 | 935 | |
| 936 | lemma fps_power_zeroth_eq_one: "a$0 =1 \<Longrightarrow> a^n $ 0 = (1::'a::semiring_1)" | |
| 30960 | 937 | by (induct n, auto simp add: expand_fps_eq fps_mult_nth) | 
| 29687 | 938 | |
| 939 | lemma fps_power_first_eq: "(a:: 'a::comm_ring_1 fps)$0 =1 \<Longrightarrow> a^n $ 1 = of_nat n * a$1" | |
| 940 | proof(induct n) | |
| 30960 | 941 | case 0 thus ?case by simp | 
| 29687 | 942 | next | 
| 943 | case (Suc n) | |
| 944 | note h = Suc.hyps[OF `a$0 = 1`] | |
| 30488 | 945 | show ?case unfolding power_Suc fps_mult_nth | 
| 36350 | 946 | using h `a$0 = 1` fps_power_zeroth_eq_one[OF `a$0=1`] by (simp add: field_simps) | 
| 29687 | 947 | qed | 
| 948 | ||
| 949 | lemma startsby_one_power:"a $ 0 = (1::'a::comm_ring_1) \<Longrightarrow> a^n $ 0 = 1" | |
| 30960 | 950 | by (induct n, auto simp add: fps_mult_nth) | 
| 29687 | 951 | |
| 952 | lemma startsby_zero_power:"a $0 = (0::'a::comm_ring_1) \<Longrightarrow> n > 0 \<Longrightarrow> a^n $0 = 0" | |
| 30960 | 953 | by (induct n, auto simp add: fps_mult_nth) | 
| 29687 | 954 | |
| 31021 | 955 | lemma startsby_power:"a $0 = (v::'a::{comm_ring_1}) \<Longrightarrow> a^n $0 = v^n"
 | 
| 30960 | 956 | by (induct n, auto simp add: fps_mult_nth power_Suc) | 
| 29687 | 957 | |
| 958 | lemma startsby_zero_power_iff[simp]: | |
| 31021 | 959 |   "a^n $0 = (0::'a::{idom}) \<longleftrightarrow> (n \<noteq> 0 \<and> a$0 = 0)"
 | 
| 29687 | 960 | apply (rule iffI) | 
| 961 | apply (induct n, auto simp add: power_Suc fps_mult_nth) | |
| 962 | by (rule startsby_zero_power, simp_all) | |
| 963 | ||
| 30488 | 964 | lemma startsby_zero_power_prefix: | 
| 29687 | 965 | assumes a0: "a $0 = (0::'a::idom)" | 
| 966 | shows "\<forall>n < k. a ^ k $ n = 0" | |
| 30488 | 967 | using a0 | 
| 29687 | 968 | proof(induct k rule: nat_less_induct) | 
| 969 | fix k assume H: "\<forall>m<k. a $0 = 0 \<longrightarrow> (\<forall>n<m. a ^ m $ n = 0)" and a0: "a $0 = (0\<Colon>'a)" | |
| 970 | let ?ths = "\<forall>m<k. a ^ k $ m = 0" | |
| 971 |   {assume "k = 0" then have ?ths by simp}
 | |
| 972 | moreover | |
| 973 |   {fix l assume k: "k = Suc l"
 | |
| 974 |     {fix m assume mk: "m < k"
 | |
| 30488 | 975 |       {assume "m=0" hence "a^k $ m = 0" using startsby_zero_power[of a k] k a0
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 976 | by simp} | 
| 29687 | 977 | moreover | 
| 978 |       {assume m0: "m \<noteq> 0"
 | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 979 | have "a ^k $ m = (a^l * a) $m" by (simp add: k power_Suc mult_commute) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 980 | also have "\<dots> = (\<Sum>i = 0..m. a ^ l $ i * a $ (m - i))" by (simp add: fps_mult_nth) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 981 | also have "\<dots> = 0" apply (rule setsum_0') | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 982 | apply auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 983 | apply (case_tac "aa = m") | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 984 | using a0 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 985 | apply simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 986 | apply (rule H[rule_format]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 987 | using a0 k mk by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 988 | finally have "a^k $ m = 0" .} | 
| 29687 | 989 | ultimately have "a^k $ m = 0" by blast} | 
| 990 | hence ?ths by blast} | |
| 991 | ultimately show ?ths by (cases k, auto) | |
| 992 | qed | |
| 993 | ||
| 30488 | 994 | lemma startsby_zero_setsum_depends: | 
| 29687 | 995 | assumes a0: "a $0 = (0::'a::idom)" and kn: "n \<ge> k" | 
| 996 |   shows "setsum (\<lambda>i. (a ^ i)$k) {0 .. n} = setsum (\<lambda>i. (a ^ i)$k) {0 .. k}"
 | |
| 997 | apply (rule setsum_mono_zero_right) | |
| 998 | using kn apply auto | |
| 999 | apply (rule startsby_zero_power_prefix[rule_format, OF a0]) | |
| 1000 | by arith | |
| 1001 | ||
| 31021 | 1002 | lemma startsby_zero_power_nth_same: assumes a0: "a$0 = (0::'a::{idom})"
 | 
| 29687 | 1003 | shows "a^n $ n = (a$1) ^ n" | 
| 1004 | proof(induct n) | |
| 1005 | case 0 thus ?case by (simp add: power_0) | |
| 1006 | next | |
| 1007 | case (Suc n) | |
| 36350 | 1008 | have "a ^ Suc n $ (Suc n) = (a^n * a)$(Suc n)" by (simp add: field_simps power_Suc) | 
| 29687 | 1009 |   also have "\<dots> = setsum (\<lambda>i. a^n$i * a $ (Suc n - i)) {0.. Suc n}" by (simp add: fps_mult_nth)
 | 
| 1010 |   also have "\<dots> = setsum (\<lambda>i. a^n$i * a $ (Suc n - i)) {n .. Suc n}"
 | |
| 1011 | apply (rule setsum_mono_zero_right) | |
| 1012 | apply simp | |
| 1013 | apply clarsimp | |
| 1014 | apply clarsimp | |
| 1015 | apply (rule startsby_zero_power_prefix[rule_format, OF a0]) | |
| 1016 | apply arith | |
| 1017 | done | |
| 1018 | also have "\<dots> = a^n $ n * a$1" using a0 by simp | |
| 1019 | finally show ?case using Suc.hyps by (simp add: power_Suc) | |
| 1020 | qed | |
| 1021 | ||
| 1022 | lemma fps_inverse_power: | |
| 31021 | 1023 |   fixes a :: "('a::{field}) fps"
 | 
| 29687 | 1024 | shows "inverse (a^n) = inverse a ^ n" | 
| 1025 | proof- | |
| 1026 |   {assume a0: "a$0 = 0"
 | |
| 1027 | hence eq: "inverse a = 0" by (simp add: fps_inverse_def) | |
| 1028 |     {assume "n = 0" hence ?thesis by simp}
 | |
| 1029 | moreover | |
| 1030 |     {assume n: "n > 0"
 | |
| 30488 | 1031 | from startsby_zero_power[OF a0 n] eq a0 n have ?thesis | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1032 | by (simp add: fps_inverse_def)} | 
| 29687 | 1033 | ultimately have ?thesis by blast} | 
| 1034 | moreover | |
| 1035 |   {assume a0: "a$0 \<noteq> 0"
 | |
| 1036 | have ?thesis | |
| 1037 | apply (rule fps_inverse_unique) | |
| 1038 | apply (simp add: a0) | |
| 1039 | unfolding power_mult_distrib[symmetric] | |
| 1040 | apply (rule ssubst[where t = "a * inverse a" and s= 1]) | |
| 1041 | apply simp_all | |
| 1042 | apply (subst mult_commute) | |
| 1043 | by (rule inverse_mult_eq_1[OF a0])} | |
| 1044 | ultimately show ?thesis by blast | |
| 1045 | qed | |
| 1046 | ||
| 1047 | lemma fps_deriv_power: "fps_deriv (a ^ n) = fps_const (of_nat n :: 'a:: comm_ring_1) * fps_deriv a * a ^ (n - 1)" | |
| 36350 | 1048 | apply (induct n, auto simp add: power_Suc field_simps fps_const_add[symmetric] simp del: fps_const_add) | 
| 1049 | by (case_tac n, auto simp add: power_Suc field_simps) | |
| 29687 | 1050 | |
| 30488 | 1051 | lemma fps_inverse_deriv: | 
| 29687 | 1052 |   fixes a:: "('a :: field) fps"
 | 
| 1053 | assumes a0: "a$0 \<noteq> 0" | |
| 1054 | shows "fps_deriv (inverse a) = - fps_deriv a * inverse a ^ 2" | |
| 1055 | proof- | |
| 1056 | from inverse_mult_eq_1[OF a0] | |
| 1057 | have "fps_deriv (inverse a * a) = 0" by simp | |
| 1058 | hence "inverse a * fps_deriv a + fps_deriv (inverse a) * a = 0" by simp | |
| 1059 | hence "inverse a * (inverse a * fps_deriv a + fps_deriv (inverse a) * a) = 0" by simp | |
| 1060 | with inverse_mult_eq_1[OF a0] | |
| 1061 | have "inverse a ^ 2 * fps_deriv a + fps_deriv (inverse a) = 0" | |
| 1062 | unfolding power2_eq_square | |
| 36350 | 1063 | apply (simp add: field_simps) | 
| 29687 | 1064 | by (simp add: mult_assoc[symmetric]) | 
| 1065 | hence "inverse a ^ 2 * fps_deriv a + fps_deriv (inverse a) - fps_deriv a * inverse a ^ 2 = 0 - fps_deriv a * inverse a ^ 2" | |
| 1066 | by simp | |
| 36350 | 1067 | then show "fps_deriv (inverse a) = - fps_deriv a * inverse a ^ 2" by (simp add: field_simps) | 
| 29687 | 1068 | qed | 
| 1069 | ||
| 30488 | 1070 | lemma fps_inverse_mult: | 
| 29687 | 1071 |   fixes a::"('a :: field) fps"
 | 
| 1072 | shows "inverse (a * b) = inverse a * inverse b" | |
| 1073 | proof- | |
| 1074 |   {assume a0: "a$0 = 0" hence ab0: "(a*b)$0 = 0" by (simp add: fps_mult_nth)
 | |
| 1075 | from a0 ab0 have th: "inverse a = 0" "inverse (a*b) = 0" by simp_all | |
| 1076 | have ?thesis unfolding th by simp} | |
| 1077 | moreover | |
| 1078 |   {assume b0: "b$0 = 0" hence ab0: "(a*b)$0 = 0" by (simp add: fps_mult_nth)
 | |
| 1079 | from b0 ab0 have th: "inverse b = 0" "inverse (a*b) = 0" by simp_all | |
| 1080 | have ?thesis unfolding th by simp} | |
| 1081 | moreover | |
| 1082 |   {assume a0: "a$0 \<noteq> 0" and b0: "b$0 \<noteq> 0"
 | |
| 1083 | from a0 b0 have ab0:"(a*b) $ 0 \<noteq> 0" by (simp add: fps_mult_nth) | |
| 30488 | 1084 | from inverse_mult_eq_1[OF ab0] | 
| 29687 | 1085 | have "inverse (a*b) * (a*b) * inverse a * inverse b = 1 * inverse a * inverse b" by simp | 
| 1086 | then have "inverse (a*b) * (inverse a * a) * (inverse b * b) = inverse a * inverse b" | |
| 36350 | 1087 | by (simp add: field_simps) | 
| 29687 | 1088 | then have ?thesis using inverse_mult_eq_1[OF a0] inverse_mult_eq_1[OF b0] by simp} | 
| 1089 | ultimately show ?thesis by blast | |
| 1090 | qed | |
| 1091 | ||
| 30488 | 1092 | lemma fps_inverse_deriv': | 
| 29687 | 1093 |   fixes a:: "('a :: field) fps"
 | 
| 1094 | assumes a0: "a$0 \<noteq> 0" | |
| 1095 | shows "fps_deriv (inverse a) = - fps_deriv a / a ^ 2" | |
| 1096 | using fps_inverse_deriv[OF a0] | |
| 1097 | unfolding power2_eq_square fps_divide_def | |
| 1098 | fps_inverse_mult by simp | |
| 1099 | ||
| 1100 | lemma inverse_mult_eq_1': assumes f0: "f$0 \<noteq> (0::'a::field)" | |
| 1101 | shows "f * inverse f= 1" | |
| 1102 | by (metis mult_commute inverse_mult_eq_1 f0) | |
| 1103 | ||
| 1104 | lemma fps_divide_deriv:   fixes a:: "('a :: field) fps"
 | |
| 1105 | assumes a0: "b$0 \<noteq> 0" | |
| 1106 | shows "fps_deriv (a / b) = (fps_deriv a * b - a * fps_deriv b) / b ^ 2" | |
| 1107 | using fps_inverse_deriv[OF a0] | |
| 36350 | 1108 | by (simp add: fps_divide_def field_simps power2_eq_square fps_inverse_mult inverse_mult_eq_1'[OF a0]) | 
| 30488 | 1109 | |
| 29687 | 1110 | |
| 30488 | 1111 | lemma fps_inverse_gp': "inverse (Abs_fps(\<lambda>n. (1::'a::field))) | 
| 29687 | 1112 | = 1 - X" | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 1113 | by (simp add: fps_inverse_gp fps_eq_iff X_def) | 
| 29687 | 1114 | |
| 1115 | lemma fps_nth_deriv_X[simp]: "fps_nth_deriv n X = (if n = 0 then X else if n=1 then 1 else 0)" | |
| 1116 | by (cases "n", simp_all) | |
| 1117 | ||
| 1118 | ||
| 1119 | lemma fps_inverse_X_plus1: | |
| 31021 | 1120 |   "inverse (1 + X) = Abs_fps (\<lambda>n. (- (1::'a::{field})) ^ n)" (is "_ = ?r")
 | 
| 29687 | 1121 | proof- | 
| 1122 | have eq: "(1 + X) * ?r = 1" | |
| 1123 | unfolding minus_one_power_iff | |
| 36350 | 1124 | by (auto simp add: field_simps fps_eq_iff) | 
| 29687 | 1125 | show ?thesis by (auto simp add: eq intro: fps_inverse_unique) | 
| 1126 | qed | |
| 1127 | ||
| 30488 | 1128 | |
| 29906 | 1129 | subsection{* Integration *}
 | 
| 31273 | 1130 | |
| 1131 | definition | |
| 1132 | fps_integral :: "'a::field_char_0 fps \<Rightarrow> 'a \<Rightarrow> 'a fps" where | |
| 1133 | "fps_integral a a0 = Abs_fps (\<lambda>n. if n = 0 then a0 else (a$(n - 1) / of_nat n))" | |
| 29687 | 1134 | |
| 31273 | 1135 | lemma fps_deriv_fps_integral: "fps_deriv (fps_integral a a0) = a" | 
| 1136 | unfolding fps_integral_def fps_deriv_def | |
| 1137 | by (simp add: fps_eq_iff del: of_nat_Suc) | |
| 29687 | 1138 | |
| 31273 | 1139 | lemma fps_integral_linear: | 
| 1140 | "fps_integral (fps_const a * f + fps_const b * g) (a*a0 + b*b0) = | |
| 1141 | fps_const a * fps_integral f a0 + fps_const b * fps_integral g b0" | |
| 1142 | (is "?l = ?r") | |
| 29687 | 1143 | proof- | 
| 1144 | have "fps_deriv ?l = fps_deriv ?r" by (simp add: fps_deriv_fps_integral) | |
| 1145 | moreover have "?l$0 = ?r$0" by (simp add: fps_integral_def) | |
| 1146 | ultimately show ?thesis | |
| 1147 | unfolding fps_deriv_eq_iff by auto | |
| 1148 | qed | |
| 30488 | 1149 | |
| 29906 | 1150 | subsection {* Composition of FPSs *}
 | 
| 29687 | 1151 | definition fps_compose :: "('a::semiring_1) fps \<Rightarrow> 'a fps \<Rightarrow> 'a fps" (infixl "oo" 55) where
 | 
| 1152 |   fps_compose_def: "a oo b = Abs_fps (\<lambda>n. setsum (\<lambda>i. a$i * (b^i$n)) {0..n})"
 | |
| 1153 | ||
| 1154 | lemma fps_compose_nth: "(a oo b)$n = setsum (\<lambda>i. a$i * (b^i$n)) {0..n}" by (simp add: fps_compose_def)
 | |
| 1155 | ||
| 1156 | lemma fps_compose_X[simp]: "a oo X = (a :: ('a :: comm_ring_1) fps)"
 | |
| 29913 | 1157 | by (simp add: fps_ext fps_compose_def mult_delta_right setsum_delta') | 
| 30488 | 1158 | |
| 1159 | lemma fps_const_compose[simp]: | |
| 29687 | 1160 |   "fps_const (a::'a::{comm_ring_1}) oo b = fps_const (a)"
 | 
| 29913 | 1161 | by (simp add: fps_eq_iff fps_compose_nth mult_delta_left setsum_delta) | 
| 29687 | 1162 | |
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 1163 | lemma number_of_compose[simp]: "(number_of k::('a::{comm_ring_1}) fps) oo b = number_of k"
 | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 1164 | unfolding number_of_fps_const by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 1165 | |
| 29687 | 1166 | lemma X_fps_compose_startby0[simp]: "a$0 = 0 \<Longrightarrow> X oo a = (a :: ('a :: comm_ring_1) fps)"
 | 
| 29913 | 1167 | by (simp add: fps_eq_iff fps_compose_def mult_delta_left setsum_delta | 
| 1168 | power_Suc not_le) | |
| 29687 | 1169 | |
| 1170 | ||
| 29906 | 1171 | subsection {* Rules from Herbert Wilf's Generatingfunctionology*}
 | 
| 29687 | 1172 | |
| 29906 | 1173 | subsubsection {* Rule 1 *}
 | 
| 29687 | 1174 |   (* {a_{n+k}}_0^infty Corresponds to (f - setsum (\<lambda>i. a_i * x^i))/x^h, for h>0*)
 | 
| 1175 | ||
| 30488 | 1176 | lemma fps_power_mult_eq_shift: | 
| 30992 | 1177 |   "X^Suc k * Abs_fps (\<lambda>n. a (n + Suc k)) = Abs_fps a - setsum (\<lambda>i. fps_const (a i :: 'a:: comm_ring_1) * X^i) {0 .. k}" (is "?lhs = ?rhs")
 | 
| 29687 | 1178 | proof- | 
| 1179 |   {fix n:: nat
 | |
| 30488 | 1180 | have "?lhs $ n = (if n < Suc k then 0 else a n)" | 
| 29687 | 1181 | unfolding X_power_mult_nth by auto | 
| 1182 | also have "\<dots> = ?rhs $ n" | |
| 1183 | proof(induct k) | |
| 1184 | case 0 thus ?case by (simp add: fps_setsum_nth power_Suc) | |
| 1185 | next | |
| 1186 | case (Suc k) | |
| 1187 | note th = Suc.hyps[symmetric] | |
| 36350 | 1188 |       have "(Abs_fps a - setsum (\<lambda>i. fps_const (a i :: 'a) * X^i) {0 .. Suc k})$n = (Abs_fps a - setsum (\<lambda>i. fps_const (a i :: 'a) * X^i) {0 .. k} - fps_const (a (Suc k)) * X^ Suc k) $ n" by (simp add: field_simps)
 | 
| 29687 | 1189 | also have "\<dots> = (if n < Suc k then 0 else a n) - (fps_const (a (Suc k)) * X^ Suc k)$n" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1190 | using th | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1191 | unfolding fps_sub_nth by simp | 
| 29687 | 1192 | also have "\<dots> = (if n < Suc (Suc k) then 0 else a n)" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1193 | unfolding X_power_mult_right_nth | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1194 | apply (auto simp add: not_less fps_const_def) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1195 | apply (rule cong[of a a, OF refl]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1196 | by arith | 
| 29687 | 1197 | finally show ?case by simp | 
| 1198 | qed | |
| 1199 | finally have "?lhs $ n = ?rhs $ n" .} | |
| 1200 | then show ?thesis by (simp add: fps_eq_iff) | |
| 1201 | qed | |
| 1202 | ||
| 29906 | 1203 | subsubsection{* Rule 2*}
 | 
| 29687 | 1204 | |
| 1205 | (* We can not reach the form of Wilf, but still near to it using rewrite rules*) | |
| 30488 | 1206 |   (* If f reprents {a_n} and P is a polynomial, then
 | 
| 29687 | 1207 |         P(xD) f represents {P(n) a_n}*)
 | 
| 1208 | ||
| 1209 | definition "XD = op * X o fps_deriv" | |
| 1210 | ||
| 1211 | lemma XD_add[simp]:"XD (a + b) = XD a + XD (b :: ('a::comm_ring_1) fps)"
 | |
| 36350 | 1212 | by (simp add: XD_def field_simps) | 
| 29687 | 1213 | |
| 1214 | lemma XD_mult_const[simp]:"XD (fps_const (c::'a::comm_ring_1) * a) = fps_const c * XD a" | |
| 36350 | 1215 | by (simp add: XD_def field_simps) | 
| 29687 | 1216 | |
| 1217 | lemma XD_linear[simp]: "XD (fps_const c * a + fps_const d * b) = fps_const c * XD a + fps_const d * XD (b :: ('a::comm_ring_1) fps)"
 | |
| 1218 | by simp | |
| 1219 | ||
| 30952 
7ab2716dd93b
power operation on functions with syntax o^; power operation on relations with syntax ^^
 haftmann parents: 
30837diff
changeset | 1220 | lemma XDN_linear: | 
| 30971 | 1221 |   "(XD ^^ n) (fps_const c * a + fps_const d * b) = fps_const c * (XD ^^ n) a + fps_const d * (XD ^^ n) (b :: ('a::comm_ring_1) fps)"
 | 
| 29687 | 1222 | by (induct n, simp_all) | 
| 1223 | ||
| 1224 | lemma fps_mult_X_deriv_shift: "X* fps_deriv a = Abs_fps (\<lambda>n. of_nat n* a$n)" by (simp add: fps_eq_iff) | |
| 1225 | ||
| 30994 | 1226 | |
| 30952 
7ab2716dd93b
power operation on functions with syntax o^; power operation on relations with syntax ^^
 haftmann parents: 
30837diff
changeset | 1227 | lemma fps_mult_XD_shift: | 
| 31021 | 1228 |   "(XD ^^ k) (a:: ('a::{comm_ring_1}) fps) = Abs_fps (\<lambda>n. (of_nat n ^ k) * a$n)"
 | 
| 36350 | 1229 | by (induct k arbitrary: a) (simp_all add: power_Suc XD_def fps_eq_iff field_simps del: One_nat_def) | 
| 29687 | 1230 | |
| 29906 | 1231 | subsubsection{* Rule 3 is trivial and is given by @{text fps_times_def}*}
 | 
| 1232 | subsubsection{* Rule 5 --- summation and "division" by (1 - X)*}
 | |
| 29687 | 1233 | |
| 1234 | lemma fps_divide_X_minus1_setsum_lemma: | |
| 1235 |   "a = ((1::('a::comm_ring_1) fps) - X) * Abs_fps (\<lambda>n. setsum (\<lambda>i. a $ i) {0..n})"
 | |
| 1236 | proof- | |
| 1237 |   let ?X = "X::('a::comm_ring_1) fps"
 | |
| 1238 |   let ?sa = "Abs_fps (\<lambda>n. setsum (\<lambda>i. a $ i) {0..n})"
 | |
| 1239 | have th0: "\<And>i. (1 - (X::'a fps)) $ i = (if i = 0 then 1 else if i = 1 then - 1 else 0)" by simp | |
| 1240 |   {fix n:: nat
 | |
| 30488 | 1241 |     {assume "n=0" hence "a$n = ((1 - ?X) * ?sa) $ n"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1242 | by (simp add: fps_mult_nth)} | 
| 29687 | 1243 | moreover | 
| 1244 |     {assume n0: "n \<noteq> 0"
 | |
| 1245 |       then have u: "{0} \<union> ({1} \<union> {2..n}) = {0..n}" "{1}\<union>{2..n} = {1..n}"
 | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1246 |         "{0..n - 1}\<union>{n} = {0..n}"
 | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1247 | by (auto simp: set_eq_iff) | 
| 30488 | 1248 |       have d: "{0} \<inter> ({1} \<union> {2..n}) = {}" "{1} \<inter> {2..n} = {}"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1249 |         "{0..n - 1}\<inter>{n} ={}" using n0 by simp_all
 | 
| 30488 | 1250 |       have f: "finite {0}" "finite {1}" "finite {2 .. n}"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1251 |         "finite {0 .. n - 1}" "finite {n}" by simp_all
 | 
| 29687 | 1252 |     have "((1 - ?X) * ?sa) $ n = setsum (\<lambda>i. (1 - ?X)$ i * ?sa $ (n - i)) {0 .. n}"
 | 
| 1253 | by (simp add: fps_mult_nth) | |
| 1254 | also have "\<dots> = a$n" unfolding th0 | |
| 1255 | unfolding setsum_Un_disjoint[OF f(1) finite_UnI[OF f(2,3)] d(1), unfolded u(1)] | |
| 1256 | unfolding setsum_Un_disjoint[OF f(2) f(3) d(2)] | |
| 1257 | apply (simp) | |
| 1258 | unfolding setsum_Un_disjoint[OF f(4,5) d(3), unfolded u(3)] | |
| 1259 | by simp | |
| 1260 | finally have "a$n = ((1 - ?X) * ?sa) $ n" by simp} | |
| 1261 | ultimately have "a$n = ((1 - ?X) * ?sa) $ n" by blast} | |
| 30488 | 1262 | then show ?thesis | 
| 29687 | 1263 | unfolding fps_eq_iff by blast | 
| 1264 | qed | |
| 1265 | ||
| 1266 | lemma fps_divide_X_minus1_setsum: | |
| 1267 |   "a /((1::('a::field) fps) - X)  = Abs_fps (\<lambda>n. setsum (\<lambda>i. a $ i) {0..n})"
 | |
| 1268 | proof- | |
| 1269 |   let ?X = "1 - (X::('a::field) fps)"
 | |
| 1270 | have th0: "?X $ 0 \<noteq> 0" by simp | |
| 1271 |   have "a /?X = ?X *  Abs_fps (\<lambda>n\<Colon>nat. setsum (op $ a) {0..n}) * inverse ?X"
 | |
| 1272 | using fps_divide_X_minus1_setsum_lemma[of a, symmetric] th0 | |
| 1273 | by (simp add: fps_divide_def mult_assoc) | |
| 1274 |   also have "\<dots> = (inverse ?X * ?X) * Abs_fps (\<lambda>n\<Colon>nat. setsum (op $ a) {0..n}) "
 | |
| 1275 | by (simp add: mult_ac) | |
| 1276 | finally show ?thesis by (simp add: inverse_mult_eq_1[OF th0]) | |
| 1277 | qed | |
| 1278 | ||
| 30488 | 1279 | subsubsection{* Rule 4 in its more general form: generalizes Rule 3 for an arbitrary
 | 
| 29687 | 1280 | finite product of FPS, also the relvant instance of powers of a FPS*} | 
| 1281 | ||
| 46131 | 1282 | definition "natpermute n k = {l :: nat list. length l = k \<and> listsum l = n}"
 | 
| 29687 | 1283 | |
| 1284 | lemma natlist_trivial_1: "natpermute n 1 = {[n]}"
 | |
| 1285 | apply (auto simp add: natpermute_def) | |
| 1286 | apply (case_tac x, auto) | |
| 1287 | done | |
| 1288 | ||
| 1289 | lemma append_natpermute_less_eq: | |
| 46131 | 1290 | assumes h: "xs@ys \<in> natpermute n k" shows "listsum xs \<le> n" and "listsum ys \<le> n" | 
| 29687 | 1291 | proof- | 
| 46131 | 1292 |   {from h have "listsum (xs @ ys) = n" by (simp add: natpermute_def)
 | 
| 1293 | hence "listsum xs + listsum ys = n" by simp} | |
| 29687 | 1294 | note th = this | 
| 46131 | 1295 |   {from th show "listsum xs \<le> n" by simp}
 | 
| 1296 |   {from th show "listsum ys \<le> n" by simp}
 | |
| 29687 | 1297 | qed | 
| 1298 | ||
| 1299 | lemma natpermute_split: | |
| 1300 | assumes mn: "h \<le> k" | |
| 1301 |   shows "natpermute n k = (\<Union>m \<in>{0..n}. {l1 @ l2 |l1 l2. l1 \<in> natpermute m h \<and> l2 \<in> natpermute (n - m) (k - h)})" (is "?L = ?R" is "?L = (\<Union>m \<in>{0..n}. ?S m)")
 | |
| 1302 | proof- | |
| 30488 | 1303 |   {fix l assume l: "l \<in> ?R"
 | 
| 29687 | 1304 |     from l obtain m xs ys where h: "m \<in> {0..n}" and xs: "xs \<in> natpermute m h" and ys: "ys \<in> natpermute (n - m) (k - h)"  and leq: "l = xs@ys" by blast
 | 
| 46131 | 1305 | from xs have xs': "listsum xs = m" by (simp add: natpermute_def) | 
| 1306 | from ys have ys': "listsum ys = n - m" by (simp add: natpermute_def) | |
| 30488 | 1307 | have "l \<in> ?L" using leq xs ys h | 
| 46131 | 1308 | apply (clarsimp simp add: natpermute_def) | 
| 29687 | 1309 | unfolding xs' ys' | 
| 30488 | 1310 | using mn xs ys | 
| 29687 | 1311 | unfolding natpermute_def by simp} | 
| 1312 | moreover | |
| 1313 |   {fix l assume l: "l \<in> natpermute n k"
 | |
| 1314 | let ?xs = "take h l" | |
| 1315 | let ?ys = "drop h l" | |
| 46131 | 1316 | let ?m = "listsum ?xs" | 
| 1317 | from l have ls: "listsum (?xs @ ?ys) = n" by (simp add: natpermute_def) | |
| 30488 | 1318 | have xs: "?xs \<in> natpermute ?m h" using l mn by (simp add: natpermute_def) | 
| 46131 | 1319 | have l_take_drop: "listsum l = listsum (take h l @ drop h l)" by simp | 
| 1320 | then have ys: "?ys \<in> natpermute (n - ?m) (k - h)" using l mn ls | |
| 1321 | by (auto simp add: natpermute_def simp del: append_take_drop_id) | |
| 1322 |     from ls have m: "?m \<in> {0..n}" by (simp add: l_take_drop del: append_take_drop_id)
 | |
| 30488 | 1323 | from xs ys ls have "l \<in> ?R" | 
| 29687 | 1324 | apply auto | 
| 1325 | apply (rule bexI[where x = "?m"]) | |
| 1326 | apply (rule exI[where x = "?xs"]) | |
| 1327 | apply (rule exI[where x = "?ys"]) | |
| 46131 | 1328 | using ls l | 
| 1329 | apply (auto simp add: natpermute_def l_take_drop simp del: append_take_drop_id) | |
| 1330 | by simp} | |
| 29687 | 1331 | ultimately show ?thesis by blast | 
| 1332 | qed | |
| 1333 | ||
| 1334 | lemma natpermute_0: "natpermute n 0 = (if n = 0 then {[]} else {})"
 | |
| 1335 | by (auto simp add: natpermute_def) | |
| 1336 | lemma natpermute_0'[simp]: "natpermute 0 k = (if k = 0 then {[]} else {replicate k 0})"
 | |
| 1337 | apply (auto simp add: set_replicate_conv_if natpermute_def) | |
| 1338 | apply (rule nth_equalityI) | |
| 1339 | by simp_all | |
| 1340 | ||
| 1341 | lemma natpermute_finite: "finite (natpermute n k)" | |
| 1342 | proof(induct k arbitrary: n) | |
| 30488 | 1343 | case 0 thus ?case | 
| 29687 | 1344 | apply (subst natpermute_split[of 0 0, simplified]) | 
| 1345 | by (simp add: natpermute_0) | |
| 1346 | next | |
| 1347 | case (Suc k) | |
| 1348 | then show ?case unfolding natpermute_split[of k "Suc k", simplified] | |
| 1349 | apply - | |
| 1350 | apply (rule finite_UN_I) | |
| 1351 | apply simp | |
| 1352 | unfolding One_nat_def[symmetric] natlist_trivial_1 | |
| 1353 | apply simp | |
| 1354 | done | |
| 1355 | qed | |
| 1356 | ||
| 1357 | lemma natpermute_contain_maximal: | |
| 1358 |   "{xs \<in> natpermute n (k+1). n \<in> set xs} = UNION {0 .. k} (\<lambda>i. {(replicate (k+1) 0) [i:=n]})"
 | |
| 1359 | (is "?A = ?B") | |
| 1360 | proof- | |
| 1361 |   {fix xs assume H: "xs \<in> natpermute n (k+1)" and n: "n \<in> set xs"
 | |
| 1362 |     from n obtain i where i: "i \<in> {0.. k}" "xs!i = n" using H
 | |
| 30488 | 1363 | unfolding in_set_conv_nth by (auto simp add: less_Suc_eq_le natpermute_def) | 
| 29687 | 1364 |     have eqs: "({0..k} - {i}) \<union> {i} = {0..k}" using i by auto
 | 
| 1365 |     have f: "finite({0..k} - {i})" "finite {i}" by auto
 | |
| 1366 |     have d: "({0..k} - {i}) \<inter> {i} = {}" using i by auto
 | |
| 1367 |     from H have "n = setsum (nth xs) {0..k}" apply (simp add: natpermute_def)
 | |
| 46131 | 1368 | by (auto simp add: atLeastLessThanSuc_atLeastAtMost listsum_setsum_nth) | 
| 29687 | 1369 |     also have "\<dots> = n + setsum (nth xs) ({0..k} - {i})"
 | 
| 1370 | unfolding setsum_Un_disjoint[OF f d, unfolded eqs] using i by simp | |
| 1371 |     finally have zxs: "\<forall> j\<in> {0..k} - {i}. xs!j = 0" by auto
 | |
| 1372 | from H have xsl: "length xs = k+1" by (simp add: natpermute_def) | |
| 1373 | from i have i': "i < length (replicate (k+1) 0)" "i < k+1" | |
| 1374 | unfolding length_replicate by arith+ | |
| 1375 | have "xs = replicate (k+1) 0 [i := n]" | |
| 1376 | apply (rule nth_equalityI) | |
| 1377 | unfolding xsl length_list_update length_replicate | |
| 1378 | apply simp | |
| 1379 | apply clarify | |
| 1380 | unfolding nth_list_update[OF i'(1)] | |
| 1381 | using i zxs | |
| 1382 | by (case_tac "ia=i", auto simp del: replicate.simps) | |
| 1383 | then have "xs \<in> ?B" using i by blast} | |
| 1384 | moreover | |
| 1385 |   {fix i assume i: "i \<in> {0..k}"
 | |
| 1386 | let ?xs = "replicate (k+1) 0 [i:=n]" | |
| 1387 | have nxs: "n \<in> set ?xs" | |
| 1388 | apply (rule set_update_memI) using i by simp | |
| 1389 | have xsl: "length ?xs = k+1" by (simp only: length_replicate length_list_update) | |
| 46131 | 1390 |     have "listsum ?xs = setsum (nth ?xs) {0..<k+1}"
 | 
| 1391 | unfolding listsum_setsum_nth xsl .. | |
| 29687 | 1392 |     also have "\<dots> = setsum (\<lambda>j. if j = i then n else 0) {0..< k+1}"
 | 
| 1393 | apply (rule setsum_cong2) by (simp del: replicate.simps) | |
| 1394 | also have "\<dots> = n" using i by (simp add: setsum_delta) | |
| 30488 | 1395 | finally | 
| 44174 
d1d79f0e1ea6
make more HOL theories work with separate set type
 huffman parents: 
41959diff
changeset | 1396 | have "?xs \<in> natpermute n (k+1)" using xsl unfolding natpermute_def mem_Collect_eq | 
| 29687 | 1397 | by blast | 
| 1398 | then have "?xs \<in> ?A" using nxs by blast} | |
| 1399 | ultimately show ?thesis by auto | |
| 1400 | qed | |
| 1401 | ||
| 30488 | 1402 | (* The general form *) | 
| 29687 | 1403 | lemma fps_setprod_nth: | 
| 1404 |   fixes m :: nat and a :: "nat \<Rightarrow> ('a::comm_ring_1) fps"
 | |
| 1405 |   shows "(setprod a {0 .. m})$n = setsum (\<lambda>v. setprod (\<lambda>j. (a j) $ (v!j)) {0..m}) (natpermute n (m+1))"
 | |
| 1406 | (is "?P m n") | |
| 1407 | proof(induct m arbitrary: n rule: nat_less_induct) | |
| 1408 | fix m n assume H: "\<forall>m' < m. \<forall>n. ?P m' n" | |
| 1409 |   {assume m0: "m = 0"
 | |
| 1410 | hence "?P m n" apply simp | |
| 1411 | unfolding natlist_trivial_1[where n = n, unfolded One_nat_def] by simp} | |
| 1412 | moreover | |
| 1413 |   {fix k assume k: "m = Suc k"
 | |
| 1414 | have km: "k < m" using k by arith | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1415 |     have u0: "{0 .. k} \<union> {m} = {0..m}" using k apply (simp add: set_eq_iff) by presburger
 | 
| 29687 | 1416 |     have f0: "finite {0 .. k}" "finite {m}" by auto
 | 
| 1417 |     have d0: "{0 .. k} \<inter> {m} = {}" using k by auto
 | |
| 1418 |     have "(setprod a {0 .. m}) $ n = (setprod a {0 .. k} * a m) $ n"
 | |
| 1419 | unfolding setprod_Un_disjoint[OF f0 d0, unfolded u0] by simp | |
| 1420 |     also have "\<dots> = (\<Sum>i = 0..n. (\<Sum>v\<in>natpermute i (k + 1). \<Prod>j\<in>{0..k}. a j $ v ! j) * a m $ (n - i))"
 | |
| 1421 | unfolding fps_mult_nth H[rule_format, OF km] .. | |
| 1422 |     also have "\<dots> = (\<Sum>v\<in>natpermute n (m + 1). \<Prod>j\<in>{0..m}. a j $ v ! j)"
 | |
| 1423 | apply (simp add: k) | |
| 1424 | unfolding natpermute_split[of m "m + 1", simplified, of n, unfolded natlist_trivial_1[unfolded One_nat_def] k] | |
| 1425 | apply (subst setsum_UN_disjoint) | |
| 30488 | 1426 | apply simp | 
| 29687 | 1427 | apply simp | 
| 1428 | unfolding image_Collect[symmetric] | |
| 1429 | apply clarsimp | |
| 1430 | apply (rule finite_imageI) | |
| 1431 | apply (rule natpermute_finite) | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1432 | apply (clarsimp simp add: set_eq_iff) | 
| 29687 | 1433 | apply auto | 
| 1434 | apply (rule setsum_cong2) | |
| 1435 | unfolding setsum_left_distrib | |
| 1436 | apply (rule sym) | |
| 1437 | apply (rule_tac f="\<lambda>xs. xs @[n - x]" in setsum_reindex_cong) | |
| 1438 | apply (simp add: inj_on_def) | |
| 1439 | apply auto | |
| 1440 | unfolding setprod_Un_disjoint[OF f0 d0, unfolded u0, unfolded k] | |
| 1441 | apply (clarsimp simp add: natpermute_def nth_append) | |
| 1442 | done | |
| 1443 | finally have "?P m n" .} | |
| 1444 | ultimately show "?P m n " by (cases m, auto) | |
| 1445 | qed | |
| 1446 | ||
| 1447 | text{* The special form for powers *}
 | |
| 1448 | lemma fps_power_nth_Suc: | |
| 1449 |   fixes m :: nat and a :: "('a::comm_ring_1) fps"
 | |
| 1450 |   shows "(a ^ Suc m)$n = setsum (\<lambda>v. setprod (\<lambda>j. a $ (v!j)) {0..m}) (natpermute n (m+1))"
 | |
| 1451 | proof- | |
| 1452 |   have f: "finite {0 ..m}" by simp
 | |
| 1453 |   have th0: "a^Suc m = setprod (\<lambda>i. a) {0..m}" unfolding setprod_constant[OF f, of a] by simp
 | |
| 1454 | show ?thesis unfolding th0 fps_setprod_nth .. | |
| 1455 | qed | |
| 1456 | lemma fps_power_nth: | |
| 1457 |   fixes m :: nat and a :: "('a::comm_ring_1) fps"
 | |
| 1458 |   shows "(a ^m)$n = (if m=0 then 1$n else setsum (\<lambda>v. setprod (\<lambda>j. a $ (v!j)) {0..m - 1}) (natpermute n m))"
 | |
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
29915diff
changeset | 1459 | by (cases m, simp_all add: fps_power_nth_Suc del: power_Suc) | 
| 29687 | 1460 | |
| 30488 | 1461 | lemma fps_nth_power_0: | 
| 31021 | 1462 |   fixes m :: nat and a :: "('a::{comm_ring_1}) fps"
 | 
| 29687 | 1463 | shows "(a ^m)$0 = (a$0) ^ m" | 
| 1464 | proof- | |
| 1465 |   {assume "m=0" hence ?thesis by simp}
 | |
| 1466 | moreover | |
| 1467 |   {fix n assume m: "m = Suc n"
 | |
| 1468 |     have c: "m = card {0..n}" using m by simp
 | |
| 1469 |    have "(a ^m)$0 = setprod (\<lambda>i. a$0) {0..n}"
 | |
| 30837 
3d4832d9f7e4
added strong_setprod_cong[cong] (in analogy with setsum)
 nipkow parents: 
30747diff
changeset | 1470 | by (simp add: m fps_power_nth del: replicate.simps power_Suc) | 
| 29687 | 1471 | also have "\<dots> = (a$0) ^ m" | 
| 1472 | unfolding c by (rule setprod_constant, simp) | |
| 1473 | finally have ?thesis .} | |
| 1474 | ultimately show ?thesis by (cases m, auto) | |
| 1475 | qed | |
| 1476 | ||
| 30488 | 1477 | lemma fps_compose_inj_right: | 
| 31021 | 1478 |   assumes a0: "a$0 = (0::'a::{idom})"
 | 
| 29687 | 1479 | and a1: "a$1 \<noteq> 0" | 
| 1480 | shows "(b oo a = c oo a) \<longleftrightarrow> b = c" (is "?lhs \<longleftrightarrow>?rhs") | |
| 1481 | proof- | |
| 1482 |   {assume ?rhs then have "?lhs" by simp}
 | |
| 1483 | moreover | |
| 1484 |   {assume h: ?lhs
 | |
| 30488 | 1485 |     {fix n have "b$n = c$n"
 | 
| 29687 | 1486 | proof(induct n rule: nat_less_induct) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1487 | fix n assume H: "\<forall>m<n. b$m = c$m" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1488 |         {assume n0: "n=0"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1489 | from h have "(b oo a)$n = (c oo a)$n" by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1490 | hence "b$n = c$n" using n0 by (simp add: fps_compose_nth)} | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1491 | moreover | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1492 |         {fix n1 assume n1: "n = Suc n1"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1493 |           have f: "finite {0 .. n1}" "finite {n}" by simp_all
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1494 |           have eq: "{0 .. n1} \<union> {n} = {0 .. n}" using n1 by auto
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1495 |           have d: "{0 .. n1} \<inter> {n} = {}" using n1 by auto
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1496 | have seq: "(\<Sum>i = 0..n1. b $ i * a ^ i $ n) = (\<Sum>i = 0..n1. c $ i * a ^ i $ n)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1497 | apply (rule setsum_cong2) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1498 | using H n1 by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1499 | have th0: "(b oo a) $n = (\<Sum>i = 0..n1. c $ i * a ^ i $ n) + b$n * (a$1)^n" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1500 | unfolding fps_compose_nth setsum_Un_disjoint[OF f d, unfolded eq] seq | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1501 | using startsby_zero_power_nth_same[OF a0] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1502 | by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1503 | have th1: "(c oo a) $n = (\<Sum>i = 0..n1. c $ i * a ^ i $ n) + c$n * (a$1)^n" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1504 | unfolding fps_compose_nth setsum_Un_disjoint[OF f d, unfolded eq] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1505 | using startsby_zero_power_nth_same[OF a0] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1506 | by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1507 | from h[unfolded fps_eq_iff, rule_format, of n] th0 th1 a1 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1508 | have "b$n = c$n" by auto} | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1509 | ultimately show "b$n = c$n" by (cases n, auto) | 
| 29687 | 1510 | qed} | 
| 1511 | then have ?rhs by (simp add: fps_eq_iff)} | |
| 1512 | ultimately show ?thesis by blast | |
| 1513 | qed | |
| 1514 | ||
| 1515 | ||
| 29906 | 1516 | subsection {* Radicals *}
 | 
| 29687 | 1517 | |
| 1518 | declare setprod_cong[fundef_cong] | |
| 31021 | 1519 | function radical :: "(nat \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> nat \<Rightarrow> ('a::{field}) fps \<Rightarrow> nat \<Rightarrow> 'a" where
 | 
| 29687 | 1520 | "radical r 0 a 0 = 1" | 
| 1521 | | "radical r 0 a (Suc n) = 0" | |
| 1522 | | "radical r (Suc k) a 0 = r (Suc k) (a$0)" | |
| 1523 | | "radical r (Suc k) a (Suc n) = (a$ Suc n - setsum (\<lambda>xs. setprod (\<lambda>j. radical r (Suc k) a (xs ! j)) {0..k}) {xs. xs \<in> natpermute (Suc n) (Suc k) \<and> Suc n \<notin> set xs}) / (of_nat (Suc k) * (radical r (Suc k) a 0)^k)"
 | |
| 1524 | by pat_completeness auto | |
| 1525 | ||
| 1526 | termination radical | |
| 1527 | proof | |
| 1528 | let ?R = "measure (\<lambda>(r, k, a, n). n)" | |
| 1529 |   {
 | |
| 1530 | show "wf ?R" by auto} | |
| 1531 |   {fix r k a n xs i
 | |
| 1532 |     assume xs: "xs \<in> {xs \<in> natpermute (Suc n) (Suc k). Suc n \<notin> set xs}" and i: "i \<in> {0..k}"
 | |
| 1533 |     {assume c: "Suc n \<le> xs ! i"
 | |
| 1534 | from xs i have "xs !i \<noteq> Suc n" by (auto simp add: in_set_conv_nth natpermute_def) | |
| 1535 | with c have c': "Suc n < xs!i" by arith | |
| 1536 |       have fths: "finite {0 ..< i}" "finite {i}" "finite {i+1..<Suc k}" by simp_all
 | |
| 1537 |       have d: "{0 ..< i} \<inter> ({i} \<union> {i+1 ..< Suc k}) = {}" "{i} \<inter> {i+1..< Suc k} = {}" by auto
 | |
| 1538 |       have eqs: "{0..<Suc k} = {0 ..< i} \<union> ({i} \<union> {i+1 ..< Suc k})" using i by auto
 | |
| 46131 | 1539 | from xs have "Suc n = listsum xs" by (simp add: natpermute_def) | 
| 1540 |       also have "\<dots> = setsum (nth xs) {0..<Suc k}" using xs
 | |
| 1541 | by (simp add: natpermute_def listsum_setsum_nth) | |
| 29687 | 1542 |       also have "\<dots> = xs!i + setsum (nth xs) {0..<i} + setsum (nth xs) {i+1..<Suc k}"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1543 | unfolding eqs setsum_Un_disjoint[OF fths(1) finite_UnI[OF fths(2,3)] d(1)] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1544 | unfolding setsum_Un_disjoint[OF fths(2) fths(3) d(2)] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1545 | by simp | 
| 29687 | 1546 | finally have False using c' by simp} | 
| 30488 | 1547 | then show "((r,Suc k,a,xs!i), r, Suc k, a, Suc n) \<in> ?R" | 
| 29687 | 1548 | apply auto by (metis not_less)} | 
| 30488 | 1549 |   {fix r k a n
 | 
| 29687 | 1550 | show "((r,Suc k, a, 0),r, Suc k, a, Suc n) \<in> ?R" by simp} | 
| 1551 | qed | |
| 1552 | ||
| 1553 | definition "fps_radical r n a = Abs_fps (radical r n a)" | |
| 1554 | ||
| 1555 | lemma fps_radical0[simp]: "fps_radical r 0 a = 1" | |
| 1556 | apply (auto simp add: fps_eq_iff fps_radical_def) by (case_tac n, auto) | |
| 1557 | ||
| 1558 | lemma fps_radical_nth_0[simp]: "fps_radical r n a $ 0 = (if n=0 then 1 else r n (a$0))" | |
| 1559 | by (cases n, simp_all add: fps_radical_def) | |
| 1560 | ||
| 30488 | 1561 | lemma fps_radical_power_nth[simp]: | 
| 29687 | 1562 | assumes r: "(r k (a$0)) ^ k = a$0" | 
| 1563 | shows "fps_radical r k a ^ k $ 0 = (if k = 0 then 1 else a$0)" | |
| 1564 | proof- | |
| 1565 |   {assume "k=0" hence ?thesis by simp }
 | |
| 1566 | moreover | |
| 30488 | 1567 |   {fix h assume h: "k = Suc h"
 | 
| 29687 | 1568 |     have fh: "finite {0..h}" by simp
 | 
| 1569 |     have eq1: "fps_radical r k a ^ k $ 0 = (\<Prod>j\<in>{0..h}. fps_radical r k a $ (replicate k 0) ! j)"
 | |
| 1570 | unfolding fps_power_nth h by simp | |
| 1571 |     also have "\<dots> = (\<Prod>j\<in>{0..h}. r k (a$0))"
 | |
| 1572 | apply (rule setprod_cong) | |
| 1573 | apply simp | |
| 1574 | using h | |
| 1575 | apply (subgoal_tac "replicate k (0::nat) ! x = 0") | |
| 1576 | by (auto intro: nth_replicate simp del: replicate.simps) | |
| 1577 | also have "\<dots> = a$0" | |
| 1578 | unfolding setprod_constant[OF fh] using r by (simp add: h) | |
| 1579 | finally have ?thesis using h by simp} | |
| 1580 | ultimately show ?thesis by (cases k, auto) | |
| 30488 | 1581 | qed | 
| 29687 | 1582 | |
| 30488 | 1583 | lemma natpermute_max_card: assumes n0: "n\<noteq>0" | 
| 29687 | 1584 |   shows "card {xs \<in> natpermute n (k+1). n \<in> set xs} = k+1"
 | 
| 1585 | unfolding natpermute_contain_maximal | |
| 1586 | proof- | |
| 1587 |   let ?A= "\<lambda>i. {replicate (k + 1) 0[i := n]}"
 | |
| 1588 |   let ?K = "{0 ..k}"
 | |
| 1589 | have fK: "finite ?K" by simp | |
| 1590 | have fAK: "\<forall>i\<in>?K. finite (?A i)" by auto | |
| 1591 |   have d: "\<forall>i\<in> ?K. \<forall>j\<in> ?K. i \<noteq> j \<longrightarrow> {replicate (k + 1) 0[i := n]} \<inter> {replicate (k + 1) 0[j := n]} = {}"
 | |
| 1592 | proof(clarify) | |
| 1593 | fix i j assume i: "i \<in> ?K" and j: "j\<in> ?K" and ij: "i\<noteq>j" | |
| 1594 |     {assume eq: "replicate (k+1) 0 [i:=n] = replicate (k+1) 0 [j:= n]"
 | |
| 1595 | have "(replicate (k+1) 0 [i:=n] ! i) = n" using i by (simp del: replicate.simps) | |
| 1596 | moreover | |
| 1597 | have "(replicate (k+1) 0 [j:=n] ! i) = 0" using i ij by (simp del: replicate.simps) | |
| 1598 | ultimately have False using eq n0 by (simp del: replicate.simps)} | |
| 1599 |     then show "{replicate (k + 1) 0[i := n]} \<inter> {replicate (k + 1) 0[j := n]} = {}"
 | |
| 1600 | by auto | |
| 1601 | qed | |
| 30488 | 1602 | from card_UN_disjoint[OF fK fAK d] | 
| 29687 | 1603 |   show "card (\<Union>i\<in>{0..k}. {replicate (k + 1) 0[i := n]}) = k+1" by simp
 | 
| 1604 | qed | |
| 30488 | 1605 | |
| 1606 | lemma power_radical: | |
| 31273 | 1607 | fixes a:: "'a::field_char_0 fps" | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1608 | assumes a0: "a$0 \<noteq> 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1609 | shows "(r (Suc k) (a$0)) ^ Suc k = a$0 \<longleftrightarrow> (fps_radical r (Suc k) a) ^ (Suc k) = a" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1610 | proof- | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1611 | let ?r = "fps_radical r (Suc k) a" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1612 |   {assume r0: "(r (Suc k) (a$0)) ^ Suc k = a$0"
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1613 | from a0 r0 have r00: "r (Suc k) (a$0) \<noteq> 0" by auto | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1614 |     {fix z have "?r ^ Suc k $ z = a$z"
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1615 | proof(induct z rule: nat_less_induct) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1616 | fix n assume H: "\<forall>m<n. ?r ^ Suc k $ m = a$m" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1617 |         {assume "n = 0" hence "?r ^ Suc k $ n = a $n"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1618 | using fps_radical_power_nth[of r "Suc k" a, OF r0] by simp} | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1619 | moreover | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1620 |         {fix n1 assume n1: "n = Suc n1"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1621 |           have fK: "finite {0..k}" by simp
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1622 | have nz: "n \<noteq> 0" using n1 by arith | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1623 | let ?Pnk = "natpermute n (k + 1)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1624 |           let ?Pnkn = "{xs \<in> ?Pnk. n \<in> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1625 |           let ?Pnknn = "{xs \<in> ?Pnk. n \<notin> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1626 | have eq: "?Pnkn \<union> ?Pnknn = ?Pnk" by blast | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1627 |           have d: "?Pnkn \<inter> ?Pnknn = {}" by blast
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1628 | have f: "finite ?Pnkn" "finite ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1629 | using finite_Un[of ?Pnkn ?Pnknn, unfolded eq] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1630 | by (metis natpermute_finite)+ | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1631 |           let ?f = "\<lambda>v. \<Prod>j\<in>{0..k}. ?r $ v ! j"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1632 | have "setsum ?f ?Pnkn = setsum (\<lambda>v. ?r $ n * r (Suc k) (a $ 0) ^ k) ?Pnkn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1633 | proof(rule setsum_cong2) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1634 |             fix v assume v: "v \<in> {xs \<in> natpermute n (k + 1). n \<in> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1635 |             let ?ths = "(\<Prod>j\<in>{0..k}. fps_radical r (Suc k) a $ v ! j) = fps_radical r (Suc k) a $ n * r (Suc k) (a $ 0) ^ k"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1636 |           from v obtain i where i: "i \<in> {0..k}" "v = replicate (k+1) 0 [i:= n]"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1637 | unfolding natpermute_contain_maximal by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1638 |           have "(\<Prod>j\<in>{0..k}. fps_radical r (Suc k) a $ v ! j) = (\<Prod>j\<in>{0..k}. if j = i then fps_radical r (Suc k) a $ n else r (Suc k) (a$0))"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1639 | apply (rule setprod_cong, simp) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1640 | using i r0 by (simp del: replicate.simps) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1641 | also have "\<dots> = (fps_radical r (Suc k) a $ n) * r (Suc k) (a$0) ^ k" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1642 | unfolding setprod_gen_delta[OF fK] using i r0 by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1643 | finally show ?ths . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1644 | qed | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1645 | then have "setsum ?f ?Pnkn = of_nat (k+1) * ?r $ n * r (Suc k) (a $ 0) ^ k" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1646 | by (simp add: natpermute_max_card[OF nz, simplified]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1647 | also have "\<dots> = a$n - setsum ?f ?Pnknn" | 
| 36350 | 1648 | unfolding n1 using r00 a0 by (simp add: field_simps fps_radical_def del: of_nat_Suc) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1649 | finally have fn: "setsum ?f ?Pnkn = a$n - setsum ?f ?Pnknn" . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1650 | have "(?r ^ Suc k)$n = setsum ?f ?Pnkn + setsum ?f ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1651 | unfolding fps_power_nth_Suc setsum_Un_disjoint[OF f d, unfolded eq] .. | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1652 | also have "\<dots> = a$n" unfolding fn by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1653 | finally have "?r ^ Suc k $ n = a $n" .} | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1654 | ultimately show "?r ^ Suc k $ n = a $n" by (cases n, auto) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1655 | qed } | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1656 | then have ?thesis using r0 by (simp add: fps_eq_iff)} | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1657 | moreover | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1658 | { assume h: "(fps_radical r (Suc k) a) ^ (Suc k) = a"
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1659 | hence "((fps_radical r (Suc k) a) ^ (Suc k))$0 = a$0" by simp | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1660 | then have "(r (Suc k) (a$0)) ^ Suc k = a$0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1661 | unfolding fps_power_nth_Suc | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1662 | by (simp add: setprod_constant del: replicate.simps)} | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1663 | ultimately show ?thesis by blast | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1664 | qed | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1665 | |
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1666 | (* | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1667 | lemma power_radical: | 
| 31273 | 1668 | fixes a:: "'a::field_char_0 fps" | 
| 29687 | 1669 | assumes r0: "(r (Suc k) (a$0)) ^ Suc k = a$0" and a0: "a$0 \<noteq> 0" | 
| 30488 | 1670 | shows "(fps_radical r (Suc k) a) ^ (Suc k) = a" | 
| 29687 | 1671 | proof- | 
| 1672 | let ?r = "fps_radical r (Suc k) a" | |
| 1673 | from a0 r0 have r00: "r (Suc k) (a$0) \<noteq> 0" by auto | |
| 1674 |   {fix z have "?r ^ Suc k $ z = a$z"
 | |
| 1675 | proof(induct z rule: nat_less_induct) | |
| 1676 | fix n assume H: "\<forall>m<n. ?r ^ Suc k $ m = a$m" | |
| 1677 |       {assume "n = 0" hence "?r ^ Suc k $ n = a $n"
 | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1678 | using fps_radical_power_nth[of r "Suc k" a, OF r0] by simp} | 
| 29687 | 1679 | moreover | 
| 1680 |       {fix n1 assume n1: "n = Suc n1"
 | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1681 |         have fK: "finite {0..k}" by simp
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1682 | have nz: "n \<noteq> 0" using n1 by arith | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1683 | let ?Pnk = "natpermute n (k + 1)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1684 |         let ?Pnkn = "{xs \<in> ?Pnk. n \<in> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1685 |         let ?Pnknn = "{xs \<in> ?Pnk. n \<notin> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1686 | have eq: "?Pnkn \<union> ?Pnknn = ?Pnk" by blast | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1687 |         have d: "?Pnkn \<inter> ?Pnknn = {}" by blast
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1688 | have f: "finite ?Pnkn" "finite ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1689 | using finite_Un[of ?Pnkn ?Pnknn, unfolded eq] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1690 | by (metis natpermute_finite)+ | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1691 |         let ?f = "\<lambda>v. \<Prod>j\<in>{0..k}. ?r $ v ! j"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1692 | have "setsum ?f ?Pnkn = setsum (\<lambda>v. ?r $ n * r (Suc k) (a $ 0) ^ k) ?Pnkn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1693 | proof(rule setsum_cong2) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1694 |           fix v assume v: "v \<in> {xs \<in> natpermute n (k + 1). n \<in> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1695 |           let ?ths = "(\<Prod>j\<in>{0..k}. fps_radical r (Suc k) a $ v ! j) = fps_radical r (Suc k) a $ n * r (Suc k) (a $ 0) ^ k"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1696 |           from v obtain i where i: "i \<in> {0..k}" "v = replicate (k+1) 0 [i:= n]"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1697 | unfolding natpermute_contain_maximal by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1698 |           have "(\<Prod>j\<in>{0..k}. fps_radical r (Suc k) a $ v ! j) = (\<Prod>j\<in>{0..k}. if j = i then fps_radical r (Suc k) a $ n else r (Suc k) (a$0))"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1699 | apply (rule setprod_cong, simp) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1700 | using i r0 by (simp del: replicate.simps) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1701 | also have "\<dots> = (fps_radical r (Suc k) a $ n) * r (Suc k) (a$0) ^ k" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1702 | unfolding setprod_gen_delta[OF fK] using i r0 by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1703 | finally show ?ths . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1704 | qed | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1705 | then have "setsum ?f ?Pnkn = of_nat (k+1) * ?r $ n * r (Suc k) (a $ 0) ^ k" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1706 | by (simp add: natpermute_max_card[OF nz, simplified]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1707 | also have "\<dots> = a$n - setsum ?f ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1708 | unfolding n1 using r00 a0 by (simp add: field_simps fps_radical_def del: of_nat_Suc ) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1709 | finally have fn: "setsum ?f ?Pnkn = a$n - setsum ?f ?Pnknn" . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1710 | have "(?r ^ Suc k)$n = setsum ?f ?Pnkn + setsum ?f ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1711 | unfolding fps_power_nth_Suc setsum_Un_disjoint[OF f d, unfolded eq] .. | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1712 | also have "\<dots> = a$n" unfolding fn by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1713 | finally have "?r ^ Suc k $ n = a $n" .} | 
| 29687 | 1714 | ultimately show "?r ^ Suc k $ n = a $n" by (cases n, auto) | 
| 1715 | qed } | |
| 1716 | then show ?thesis by (simp add: fps_eq_iff) | |
| 1717 | qed | |
| 1718 | ||
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1719 | *) | 
| 29687 | 1720 | lemma eq_divide_imp': assumes c0: "(c::'a::field) ~= 0" and eq: "a * c = b" | 
| 30488 | 1721 | shows "a = b / c" | 
| 29687 | 1722 | proof- | 
| 1723 | from eq have "a * c * inverse c = b * inverse c" by simp | |
| 36350 | 1724 | hence "a * (inverse c * c) = b/c" by (simp only: field_simps divide_inverse) | 
| 29687 | 1725 | then show "a = b/c" unfolding field_inverse[OF c0] by simp | 
| 1726 | qed | |
| 1727 | ||
| 30488 | 1728 | lemma radical_unique: | 
| 1729 | assumes r0: "(r (Suc k) (b$0)) ^ Suc k = b$0" | |
| 31273 | 1730 | and a0: "r (Suc k) (b$0 ::'a::field_char_0) = a$0" and b0: "b$0 \<noteq> 0" | 
| 29687 | 1731 | shows "a^(Suc k) = b \<longleftrightarrow> a = fps_radical r (Suc k) b" | 
| 1732 | proof- | |
| 1733 | let ?r = "fps_radical r (Suc k) b" | |
| 1734 | have r00: "r (Suc k) (b$0) \<noteq> 0" using b0 r0 by auto | |
| 1735 |   {assume H: "a = ?r"
 | |
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1736 | from H have "a^Suc k = b" using power_radical[OF b0, of r k, unfolded r0] by simp} | 
| 29687 | 1737 | moreover | 
| 1738 |   {assume H: "a^Suc k = b"
 | |
| 1739 |     have ceq: "card {0..k} = Suc k" by simp
 | |
| 1740 |     have fk: "finite {0..k}" by simp
 | |
| 1741 | from a0 have a0r0: "a$0 = ?r$0" by simp | |
| 1742 |     {fix n have "a $ n = ?r $ n"
 | |
| 1743 | proof(induct n rule: nat_less_induct) | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1744 | fix n assume h: "\<forall>m<n. a$m = ?r $m" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1745 |         {assume "n = 0" hence "a$n = ?r $n" using a0 by simp }
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1746 | moreover | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1747 |         {fix n1 assume n1: "n = Suc n1"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1748 |           have fK: "finite {0..k}" by simp
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1749 | have nz: "n \<noteq> 0" using n1 by arith | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1750 | let ?Pnk = "natpermute n (Suc k)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1751 |         let ?Pnkn = "{xs \<in> ?Pnk. n \<in> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1752 |         let ?Pnknn = "{xs \<in> ?Pnk. n \<notin> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1753 | have eq: "?Pnkn \<union> ?Pnknn = ?Pnk" by blast | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1754 |         have d: "?Pnkn \<inter> ?Pnknn = {}" by blast
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1755 | have f: "finite ?Pnkn" "finite ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1756 | using finite_Un[of ?Pnkn ?Pnknn, unfolded eq] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1757 | by (metis natpermute_finite)+ | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1758 |         let ?f = "\<lambda>v. \<Prod>j\<in>{0..k}. ?r $ v ! j"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1759 |         let ?g = "\<lambda>v. \<Prod>j\<in>{0..k}. a $ v ! j"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1760 | have "setsum ?g ?Pnkn = setsum (\<lambda>v. a $ n * (?r$0)^k) ?Pnkn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1761 | proof(rule setsum_cong2) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1762 |           fix v assume v: "v \<in> {xs \<in> natpermute n (Suc k). n \<in> set xs}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1763 |           let ?ths = "(\<Prod>j\<in>{0..k}. a $ v ! j) = a $ n * (?r$0)^k"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1764 |           from v obtain i where i: "i \<in> {0..k}" "v = replicate (k+1) 0 [i:= n]"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1765 | unfolding Suc_eq_plus1 natpermute_contain_maximal by (auto simp del: replicate.simps) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1766 |           have "(\<Prod>j\<in>{0..k}. a $ v ! j) = (\<Prod>j\<in>{0..k}. if j = i then a $ n else r (Suc k) (b$0))"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1767 | apply (rule setprod_cong, simp) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1768 | using i a0 by (simp del: replicate.simps) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1769 | also have "\<dots> = a $ n * (?r $ 0)^k" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1770 | unfolding setprod_gen_delta[OF fK] using i by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1771 | finally show ?ths . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1772 | qed | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1773 | then have th0: "setsum ?g ?Pnkn = of_nat (k+1) * a $ n * (?r $ 0)^k" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1774 | by (simp add: natpermute_max_card[OF nz, simplified]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1775 | have th1: "setsum ?g ?Pnknn = setsum ?f ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1776 | proof (rule setsum_cong2, rule setprod_cong, simp) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1777 |           fix xs i assume xs: "xs \<in> ?Pnknn" and i: "i \<in> {0..k}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1778 |           {assume c: "n \<le> xs ! i"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1779 | from xs i have "xs !i \<noteq> n" by (auto simp add: in_set_conv_nth natpermute_def) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1780 | with c have c': "n < xs!i" by arith | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1781 |             have fths: "finite {0 ..< i}" "finite {i}" "finite {i+1..<Suc k}" by simp_all
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1782 |             have d: "{0 ..< i} \<inter> ({i} \<union> {i+1 ..< Suc k}) = {}" "{i} \<inter> {i+1..< Suc k} = {}" by auto
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1783 |             have eqs: "{0..<Suc k} = {0 ..< i} \<union> ({i} \<union> {i+1 ..< Suc k})" using i by auto
 | 
| 46131 | 1784 | from xs have "n = listsum xs" by (simp add: natpermute_def) | 
| 1785 |             also have "\<dots> = setsum (nth xs) {0..<Suc k}" using xs
 | |
| 1786 | by (simp add: natpermute_def listsum_setsum_nth) | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1787 |             also have "\<dots> = xs!i + setsum (nth xs) {0..<i} + setsum (nth xs) {i+1..<Suc k}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1788 | unfolding eqs setsum_Un_disjoint[OF fths(1) finite_UnI[OF fths(2,3)] d(1)] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1789 | unfolding setsum_Un_disjoint[OF fths(2) fths(3) d(2)] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1790 | by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1791 | finally have False using c' by simp} | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1792 | then have thn: "xs!i < n" by arith | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1793 | from h[rule_format, OF thn] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1794 | show "a$(xs !i) = ?r$(xs!i)" . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1795 | qed | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1796 | have th00: "\<And>(x::'a). of_nat (Suc k) * (x * inverse (of_nat (Suc k))) = x" | 
| 36350 | 1797 | by (simp add: field_simps del: of_nat_Suc) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1798 | from H have "b$n = a^Suc k $ n" by (simp add: fps_eq_iff) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1799 | also have "a ^ Suc k$n = setsum ?g ?Pnkn + setsum ?g ?Pnknn" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1800 | unfolding fps_power_nth_Suc | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1801 | using setsum_Un_disjoint[OF f d, unfolded Suc_eq_plus1[symmetric], | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1802 | unfolded eq, of ?g] by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1803 | also have "\<dots> = of_nat (k+1) * a $ n * (?r $ 0)^k + setsum ?f ?Pnknn" unfolding th0 th1 .. | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1804 | finally have "of_nat (k+1) * a $ n * (?r $ 0)^k = b$n - setsum ?f ?Pnknn" by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1805 | then have "a$n = (b$n - setsum ?f ?Pnknn) / (of_nat (k+1) * (?r $ 0)^k)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1806 | apply - | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1807 | apply (rule eq_divide_imp') | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1808 | using r00 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1809 | apply (simp del: of_nat_Suc) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1810 | by (simp add: mult_ac) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1811 | then have "a$n = ?r $n" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1812 | apply (simp del: of_nat_Suc) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1813 | unfolding fps_radical_def n1 | 
| 36350 | 1814 | by (simp add: field_simps n1 th00 del: of_nat_Suc)} | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1815 | ultimately show "a$n = ?r $ n" by (cases n, auto) | 
| 29687 | 1816 | qed} | 
| 1817 | then have "a = ?r" by (simp add: fps_eq_iff)} | |
| 1818 | ultimately show ?thesis by blast | |
| 1819 | qed | |
| 1820 | ||
| 1821 | ||
| 30488 | 1822 | lemma radical_power: | 
| 1823 | assumes r0: "r (Suc k) ((a$0) ^ Suc k) = a$0" | |
| 31273 | 1824 | and a0: "(a$0 ::'a::field_char_0) \<noteq> 0" | 
| 29687 | 1825 | shows "(fps_radical r (Suc k) (a ^ Suc k)) = a" | 
| 1826 | proof- | |
| 1827 | let ?ak = "a^ Suc k" | |
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
29915diff
changeset | 1828 | have ak0: "?ak $ 0 = (a$0) ^ Suc k" by (simp add: fps_nth_power_0 del: power_Suc) | 
| 29687 | 1829 | from r0 have th0: "r (Suc k) (a ^ Suc k $ 0) ^ Suc k = a ^ Suc k $ 0" using ak0 by auto | 
| 1830 | from r0 ak0 have th1: "r (Suc k) (a ^ Suc k $ 0) = a $ 0" by auto | |
| 1831 | from ak0 a0 have ak00: "?ak $ 0 \<noteq>0 " by auto | |
| 1832 | from radical_unique[of r k ?ak a, OF th0 th1 ak00] show ?thesis by metis | |
| 1833 | qed | |
| 1834 | ||
| 30488 | 1835 | lemma fps_deriv_radical: | 
| 31273 | 1836 | fixes a:: "'a::field_char_0 fps" | 
| 29687 | 1837 | assumes r0: "(r (Suc k) (a$0)) ^ Suc k = a$0" and a0: "a$0 \<noteq> 0" | 
| 1838 | shows "fps_deriv (fps_radical r (Suc k) a) = fps_deriv a / (fps_const (of_nat (Suc k)) * (fps_radical r (Suc k) a) ^ k)" | |
| 1839 | proof- | |
| 1840 | let ?r= "fps_radical r (Suc k) a" | |
| 1841 | let ?w = "(fps_const (of_nat (Suc k)) * ?r ^ k)" | |
| 1842 | from a0 r0 have r0': "r (Suc k) (a$0) \<noteq> 0" by auto | |
| 1843 | from r0' have w0: "?w $ 0 \<noteq> 0" by (simp del: of_nat_Suc) | |
| 1844 | note th0 = inverse_mult_eq_1[OF w0] | |
| 1845 | let ?iw = "inverse ?w" | |
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1846 | from iffD1[OF power_radical[of a r], OF a0 r0] | 
| 29687 | 1847 | have "fps_deriv (?r ^ Suc k) = fps_deriv a" by simp | 
| 1848 | hence "fps_deriv ?r * ?w = fps_deriv a" | |
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
29915diff
changeset | 1849 | by (simp add: fps_deriv_power mult_ac del: power_Suc) | 
| 29687 | 1850 | hence "?iw * fps_deriv ?r * ?w = ?iw * fps_deriv a" by simp | 
| 1851 | hence "fps_deriv ?r * (?iw * ?w) = fps_deriv a / ?w" | |
| 1852 | by (simp add: fps_divide_def) | |
| 30488 | 1853 | then show ?thesis unfolding th0 by simp | 
| 29687 | 1854 | qed | 
| 1855 | ||
| 30488 | 1856 | lemma radical_mult_distrib: | 
| 31273 | 1857 | fixes a:: "'a::field_char_0 fps" | 
| 30488 | 1858 | assumes | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1859 | k: "k > 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1860 | and ra0: "r k (a $ 0) ^ k = a $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1861 | and rb0: "r k (b $ 0) ^ k = b $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1862 | and a0: "a$0 \<noteq> 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1863 | and b0: "b$0 \<noteq> 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1864 | shows "r k ((a * b) $ 0) = r k (a $ 0) * r k (b $ 0) \<longleftrightarrow> fps_radical r (k) (a*b) = fps_radical r (k) a * fps_radical r (k) (b)" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1865 | proof- | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1866 |   {assume  r0': "r k ((a * b) $ 0) = r k (a $ 0) * r k (b $ 0)"
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1867 | from r0' have r0: "(r (k) ((a*b)$0)) ^ k = (a*b)$0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1868 | by (simp add: fps_mult_nth ra0 rb0 power_mult_distrib) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1869 |   {assume "k=0" hence ?thesis using r0' by simp}
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1870 | moreover | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1871 |   {fix h assume k: "k = Suc h"
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1872 | let ?ra = "fps_radical r (Suc h) a" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1873 | let ?rb = "fps_radical r (Suc h) b" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1874 | have th0: "r (Suc h) ((a * b) $ 0) = (fps_radical r (Suc h) a * fps_radical r (Suc h) b) $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1875 | using r0' k by (simp add: fps_mult_nth) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1876 | have ab0: "(a*b) $ 0 \<noteq> 0" using a0 b0 by (simp add: fps_mult_nth) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1877 | from radical_unique[of r h "a*b" "fps_radical r (Suc h) a * fps_radical r (Suc h) b", OF r0[unfolded k] th0 ab0, symmetric] | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1878 | iffD1[OF power_radical[of _ r], OF a0 ra0[unfolded k]] iffD1[OF power_radical[of _ r], OF b0 rb0[unfolded k]] k r0' | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1879 | have ?thesis by (auto simp add: power_mult_distrib simp del: power_Suc)} | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1880 | ultimately have ?thesis by (cases k, auto)} | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1881 | moreover | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1882 | {assume h: "fps_radical r k (a*b) = fps_radical r k a * fps_radical r k b"
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1883 | hence "(fps_radical r k (a*b))$0 = (fps_radical r k a * fps_radical r k b)$0" by simp | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1884 | then have "r k ((a * b) $ 0) = r k (a $ 0) * r k (b $ 0)" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1885 | using k by (simp add: fps_mult_nth)} | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1886 | ultimately show ?thesis by blast | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1887 | qed | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1888 | |
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1889 | (* | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1890 | lemma radical_mult_distrib: | 
| 31273 | 1891 | fixes a:: "'a::field_char_0 fps" | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1892 | assumes | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1893 | ra0: "r k (a $ 0) ^ k = a $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1894 | and rb0: "r k (b $ 0) ^ k = b $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1895 | and r0': "r k ((a * b) $ 0) = r k (a $ 0) * r k (b $ 0)" | 
| 29687 | 1896 | and a0: "a$0 \<noteq> 0" | 
| 1897 | and b0: "b$0 \<noteq> 0" | |
| 1898 | shows "fps_radical r (k) (a*b) = fps_radical r (k) a * fps_radical r (k) (b)" | |
| 1899 | proof- | |
| 1900 | from r0' have r0: "(r (k) ((a*b)$0)) ^ k = (a*b)$0" | |
| 1901 | by (simp add: fps_mult_nth ra0 rb0 power_mult_distrib) | |
| 1902 |   {assume "k=0" hence ?thesis by simp}
 | |
| 1903 | moreover | |
| 1904 |   {fix h assume k: "k = Suc h"
 | |
| 1905 | let ?ra = "fps_radical r (Suc h) a" | |
| 1906 | let ?rb = "fps_radical r (Suc h) b" | |
| 30488 | 1907 | have th0: "r (Suc h) ((a * b) $ 0) = (fps_radical r (Suc h) a * fps_radical r (Suc h) b) $ 0" | 
| 29687 | 1908 | using r0' k by (simp add: fps_mult_nth) | 
| 1909 | have ab0: "(a*b) $ 0 \<noteq> 0" using a0 b0 by (simp add: fps_mult_nth) | |
| 30488 | 1910 | from radical_unique[of r h "a*b" "fps_radical r (Suc h) a * fps_radical r (Suc h) b", OF r0[unfolded k] th0 ab0, symmetric] | 
| 29687 | 1911 | power_radical[of r, OF ra0[unfolded k] a0] power_radical[of r, OF rb0[unfolded k] b0] k | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
29915diff
changeset | 1912 | have ?thesis by (auto simp add: power_mult_distrib simp del: power_Suc)} | 
| 29687 | 1913 | ultimately show ?thesis by (cases k, auto) | 
| 1914 | qed | |
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1915 | *) | 
| 29687 | 1916 | |
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1917 | lemma fps_divide_1[simp]: "(a:: ('a::field) fps) / 1 = a"
 | 
| 29687 | 1918 | by (simp add: fps_divide_def) | 
| 1919 | ||
| 1920 | lemma radical_divide: | |
| 31273 | 1921 | fixes a :: "'a::field_char_0 fps" | 
| 30488 | 1922 | assumes | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1923 | kp: "k>0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1924 | and ra0: "(r k (a $ 0)) ^ k = a $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1925 | and rb0: "(r k (b $ 0)) ^ k = b $ 0" | 
| 30488 | 1926 | and a0: "a$0 \<noteq> 0" | 
| 29687 | 1927 | and b0: "b$0 \<noteq> 0" | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1928 | shows "r k ((a $ 0) / (b$0)) = r k (a$0) / r k (b $ 0) \<longleftrightarrow> fps_radical r k (a/b) = fps_radical r k a / fps_radical r k b" (is "?lhs = ?rhs") | 
| 29687 | 1929 | proof- | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1930 | let ?r = "fps_radical r k" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1931 | from kp obtain h where k: "k = Suc h" by (cases k, auto) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1932 | have ra0': "r k (a$0) \<noteq> 0" using a0 ra0 k by auto | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1933 | have rb0': "r k (b$0) \<noteq> 0" using b0 rb0 k by auto | 
| 30488 | 1934 | |
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1935 |   {assume ?rhs
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1936 | then have "?r (a/b) $ 0 = (?r a / ?r b)$0" by simp | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1937 | then have ?lhs using k a0 b0 rb0' | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1938 | by (simp add: fps_divide_def fps_mult_nth fps_inverse_def divide_inverse) } | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1939 | moreover | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1940 |   {assume h: ?lhs
 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1941 | from a0 b0 have ab0[simp]: "(a/b)$0 = a$0 / b$0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1942 | by (simp add: fps_divide_def fps_mult_nth divide_inverse fps_inverse_def) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1943 | have th0: "r k ((a/b)$0) ^ k = (a/b)$0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1944 | by (simp add: h nonzero_power_divide[OF rb0'] ra0 rb0 del: k) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1945 | from a0 b0 ra0' rb0' kp h | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1946 | have th1: "r k ((a / b) $ 0) = (fps_radical r k a / fps_radical r k b) $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1947 | by (simp add: fps_divide_def fps_mult_nth fps_inverse_def divide_inverse del: k) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1948 | from a0 b0 ra0' rb0' kp have ab0': "(a / b) $ 0 \<noteq> 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1949 | by (simp add: fps_divide_def fps_mult_nth fps_inverse_def nonzero_imp_inverse_nonzero) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1950 | note tha[simp] = iffD1[OF power_radical[where r=r and k=h], OF a0 ra0[unfolded k], unfolded k[symmetric]] | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1951 | note thb[simp] = iffD1[OF power_radical[where r=r and k=h], OF b0 rb0[unfolded k], unfolded k[symmetric]] | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1952 | have th2: "(?r a / ?r b)^k = a/b" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1953 | by (simp add: fps_divide_def power_mult_distrib fps_inverse_power[symmetric]) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1954 | from iffD1[OF radical_unique[where r=r and a="?r a / ?r b" and b="a/b" and k=h], symmetric, unfolded k[symmetric], OF th0 th1 ab0' th2] have ?rhs .} | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1955 | ultimately show ?thesis by blast | 
| 29687 | 1956 | qed | 
| 1957 | ||
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1958 | lemma radical_inverse: | 
| 31273 | 1959 | fixes a :: "'a::field_char_0 fps" | 
| 31073 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1960 | assumes | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1961 | k: "k>0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1962 | and ra0: "r k (a $ 0) ^ k = a $ 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1963 | and r1: "(r k 1)^k = 1" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1964 | and a0: "a$0 \<noteq> 0" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1965 | shows "r k (inverse (a $ 0)) = r k 1 / (r k (a $ 0)) \<longleftrightarrow> fps_radical r k (inverse a) = fps_radical r k 1 / fps_radical r k a" | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1966 | using radical_divide[where k=k and r=r and a=1 and b=a, OF k ] ra0 r1 a0 | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1967 | by (simp add: divide_inverse fps_divide_def) | 
| 
4b44c4d08aa6
Generalized distributivity theorems of radicals over multiplication, division and inverses
 chaieb parents: 
31021diff
changeset | 1968 | |
| 29906 | 1969 | subsection{* Derivative of composition *}
 | 
| 29687 | 1970 | |
| 30488 | 1971 | lemma fps_compose_deriv: | 
| 29687 | 1972 |   fixes a:: "('a::idom) fps"
 | 
| 1973 | assumes b0: "b$0 = 0" | |
| 1974 | shows "fps_deriv (a oo b) = ((fps_deriv a) oo b) * (fps_deriv b)" | |
| 1975 | proof- | |
| 1976 |   {fix n
 | |
| 1977 |     have "(fps_deriv (a oo b))$n = setsum (\<lambda>i. a $ i * (fps_deriv (b^i))$n) {0.. Suc n}"
 | |
| 36350 | 1978 | by (simp add: fps_compose_def field_simps setsum_right_distrib del: of_nat_Suc) | 
| 29687 | 1979 |     also have "\<dots> = setsum (\<lambda>i. a$i * ((fps_const (of_nat i)) * (fps_deriv b * (b^(i - 1))))$n) {0.. Suc n}"
 | 
| 36350 | 1980 | by (simp add: field_simps fps_deriv_power del: fps_mult_left_const_nth of_nat_Suc) | 
| 29687 | 1981 |   also have "\<dots> = setsum (\<lambda>i. of_nat i * a$i * (((b^(i - 1)) * fps_deriv b))$n) {0.. Suc n}"
 | 
| 36350 | 1982 | unfolding fps_mult_left_const_nth by (simp add: field_simps) | 
| 29687 | 1983 |   also have "\<dots> = setsum (\<lambda>i. of_nat i * a$i * (setsum (\<lambda>j. (b^ (i - 1))$j * (fps_deriv b)$(n - j)) {0..n})) {0.. Suc n}"
 | 
| 1984 | unfolding fps_mult_nth .. | |
| 1985 |   also have "\<dots> = setsum (\<lambda>i. of_nat i * a$i * (setsum (\<lambda>j. (b^ (i - 1))$j * (fps_deriv b)$(n - j)) {0..n})) {1.. Suc n}"
 | |
| 1986 | apply (rule setsum_mono_zero_right) | |
| 29913 | 1987 | apply (auto simp add: mult_delta_left setsum_delta not_le) | 
| 1988 | done | |
| 29687 | 1989 |   also have "\<dots> = setsum (\<lambda>i. of_nat (i + 1) * a$(i+1) * (setsum (\<lambda>j. (b^ i)$j * of_nat (n - j + 1) * b$(n - j + 1)) {0..n})) {0.. n}"
 | 
| 1990 | unfolding fps_deriv_nth | |
| 37388 | 1991 | apply (rule setsum_reindex_cong [where f = Suc]) | 
| 29687 | 1992 | by (auto simp add: mult_assoc) | 
| 1993 |   finally have th0: "(fps_deriv (a oo b))$n = setsum (\<lambda>i. of_nat (i + 1) * a$(i+1) * (setsum (\<lambda>j. (b^ i)$j * of_nat (n - j + 1) * b$(n - j + 1)) {0..n})) {0.. n}" .
 | |
| 30488 | 1994 | |
| 29687 | 1995 |   have "(((fps_deriv a) oo b) * (fps_deriv b))$n = setsum (\<lambda>i. (fps_deriv b)$ (n - i) * ((fps_deriv a) oo b)$i) {0..n}"
 | 
| 1996 | unfolding fps_mult_nth by (simp add: mult_ac) | |
| 1997 |   also have "\<dots> = setsum (\<lambda>i. setsum (\<lambda>j. of_nat (n - i +1) * b$(n - i + 1) * of_nat (j + 1) * a$(j+1) * (b^j)$i) {0..n}) {0..n}"
 | |
| 1998 | unfolding fps_deriv_nth fps_compose_nth setsum_right_distrib mult_assoc | |
| 1999 | apply (rule setsum_cong2) | |
| 2000 | apply (rule setsum_mono_zero_left) | |
| 2001 | apply (simp_all add: subset_eq) | |
| 2002 | apply clarify | |
| 2003 | apply (subgoal_tac "b^i$x = 0") | |
| 2004 | apply simp | |
| 2005 | apply (rule startsby_zero_power_prefix[OF b0, rule_format]) | |
| 2006 | by simp | |
| 2007 |   also have "\<dots> = setsum (\<lambda>i. of_nat (i + 1) * a$(i+1) * (setsum (\<lambda>j. (b^ i)$j * of_nat (n - j + 1) * b$(n - j + 1)) {0..n})) {0.. n}"
 | |
| 2008 | unfolding setsum_right_distrib | |
| 2009 | apply (subst setsum_commute) | |
| 2010 | by ((rule setsum_cong2)+) simp | |
| 2011 | finally have "(fps_deriv (a oo b))$n = (((fps_deriv a) oo b) * (fps_deriv b)) $n" | |
| 2012 | unfolding th0 by simp} | |
| 2013 | then show ?thesis by (simp add: fps_eq_iff) | |
| 2014 | qed | |
| 2015 | ||
| 2016 | lemma fps_mult_X_plus_1_nth: | |
| 2017 | "((1+X)*a) $n = (if n = 0 then (a$n :: 'a::comm_ring_1) else a$n + a$(n - 1))" | |
| 2018 | proof- | |
| 2019 |   {assume "n = 0" hence ?thesis by (simp add: fps_mult_nth )}
 | |
| 2020 | moreover | |
| 2021 |   {fix m assume m: "n = Suc m"
 | |
| 2022 |     have "((1+X)*a) $n = setsum (\<lambda>i. (1+X)$i * a$(n-i)) {0..n}"
 | |
| 2023 | by (simp add: fps_mult_nth) | |
| 2024 |     also have "\<dots> = setsum (\<lambda>i. (1+X)$i * a$(n-i)) {0.. 1}"
 | |
| 2025 | unfolding m | |
| 2026 | apply (rule setsum_mono_zero_right) | |
| 2027 | by (auto simp add: ) | |
| 2028 | also have "\<dots> = (if n = 0 then (a$n :: 'a::comm_ring_1) else a$n + a$(n - 1))" | |
| 2029 | unfolding m | |
| 2030 | by (simp add: ) | |
| 2031 | finally have ?thesis .} | |
| 2032 | ultimately show ?thesis by (cases n, auto) | |
| 2033 | qed | |
| 2034 | ||
| 29906 | 2035 | subsection{* Finite FPS (i.e. polynomials) and X *}
 | 
| 29687 | 2036 | lemma fps_poly_sum_X: | 
| 30488 | 2037 | assumes z: "\<forall>i > n. a$i = (0::'a::comm_ring_1)" | 
| 29687 | 2038 |   shows "a = setsum (\<lambda>i. fps_const (a$i) * X^i) {0..n}" (is "a = ?r")
 | 
| 2039 | proof- | |
| 2040 |   {fix i
 | |
| 30488 | 2041 | have "a$i = ?r$i" | 
| 29687 | 2042 | unfolding fps_setsum_nth fps_mult_left_const_nth X_power_nth | 
| 29913 | 2043 | by (simp add: mult_delta_right setsum_delta' z) | 
| 2044 | } | |
| 29687 | 2045 | then show ?thesis unfolding fps_eq_iff by blast | 
| 2046 | qed | |
| 2047 | ||
| 29906 | 2048 | subsection{* Compositional inverses *}
 | 
| 29687 | 2049 | |
| 2050 | ||
| 31021 | 2051 | fun compinv :: "'a fps \<Rightarrow> nat \<Rightarrow> 'a::{field}" where
 | 
| 29687 | 2052 | "compinv a 0 = X$0" | 
| 2053 | | "compinv a (Suc n) = (X$ Suc n - setsum (\<lambda>i. (compinv a i) * (a^i)$Suc n) {0 .. n}) / (a$1) ^ Suc n"
 | |
| 2054 | ||
| 2055 | definition "fps_inv a = Abs_fps (compinv a)" | |
| 2056 | ||
| 2057 | lemma fps_inv: assumes a0: "a$0 = 0" and a1: "a$1 \<noteq> 0" | |
| 2058 | shows "fps_inv a oo a = X" | |
| 2059 | proof- | |
| 2060 | let ?i = "fps_inv a oo a" | |
| 2061 |   {fix n
 | |
| 30488 | 2062 | have "?i $n = X$n" | 
| 29687 | 2063 | proof(induct n rule: nat_less_induct) | 
| 2064 | fix n assume h: "\<forall>m<n. ?i$m = X$m" | |
| 30488 | 2065 |       {assume "n=0" hence "?i $n = X$n" using a0
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2066 | by (simp add: fps_compose_nth fps_inv_def)} | 
| 29687 | 2067 | moreover | 
| 2068 |       {fix n1 assume n1: "n = Suc n1"
 | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2069 |         have "?i $ n = setsum (\<lambda>i. (fps_inv a $ i) * (a^i)$n) {0 .. n1} + fps_inv a $ Suc n1 * (a $ 1)^ Suc n1"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2070 | by (simp add: fps_compose_nth n1 startsby_zero_power_nth_same[OF a0] | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
29915diff
changeset | 2071 | del: power_Suc) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2072 |         also have "\<dots> = setsum (\<lambda>i. (fps_inv a $ i) * (a^i)$n) {0 .. n1} + (X$ Suc n1 - setsum (\<lambda>i. (fps_inv a $ i) * (a^i)$n) {0 .. n1})"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2073 | using a0 a1 n1 by (simp add: fps_inv_def) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2074 | also have "\<dots> = X$n" using n1 by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2075 | finally have "?i $ n = X$n" .} | 
| 29687 | 2076 | ultimately show "?i $ n = X$n" by (cases n, auto) | 
| 2077 | qed} | |
| 2078 | then show ?thesis by (simp add: fps_eq_iff) | |
| 2079 | qed | |
| 2080 | ||
| 2081 | ||
| 31021 | 2082 | fun gcompinv :: "'a fps \<Rightarrow> 'a fps \<Rightarrow> nat \<Rightarrow> 'a::{field}" where
 | 
| 29687 | 2083 | "gcompinv b a 0 = b$0" | 
| 2084 | | "gcompinv b a (Suc n) = (b$ Suc n - setsum (\<lambda>i. (gcompinv b a i) * (a^i)$Suc n) {0 .. n}) / (a$1) ^ Suc n"
 | |
| 2085 | ||
| 2086 | definition "fps_ginv b a = Abs_fps (gcompinv b a)" | |
| 2087 | ||
| 2088 | lemma fps_ginv: assumes a0: "a$0 = 0" and a1: "a$1 \<noteq> 0" | |
| 2089 | shows "fps_ginv b a oo a = b" | |
| 2090 | proof- | |
| 2091 | let ?i = "fps_ginv b a oo a" | |
| 2092 |   {fix n
 | |
| 30488 | 2093 | have "?i $n = b$n" | 
| 29687 | 2094 | proof(induct n rule: nat_less_induct) | 
| 2095 | fix n assume h: "\<forall>m<n. ?i$m = b$m" | |
| 30488 | 2096 |       {assume "n=0" hence "?i $n = b$n" using a0
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2097 | by (simp add: fps_compose_nth fps_ginv_def)} | 
| 29687 | 2098 | moreover | 
| 2099 |       {fix n1 assume n1: "n = Suc n1"
 | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2100 |         have "?i $ n = setsum (\<lambda>i. (fps_ginv b a $ i) * (a^i)$n) {0 .. n1} + fps_ginv b a $ Suc n1 * (a $ 1)^ Suc n1"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2101 | by (simp add: fps_compose_nth n1 startsby_zero_power_nth_same[OF a0] | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
29915diff
changeset | 2102 | del: power_Suc) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2103 |         also have "\<dots> = setsum (\<lambda>i. (fps_ginv b a $ i) * (a^i)$n) {0 .. n1} + (b$ Suc n1 - setsum (\<lambda>i. (fps_ginv b a $ i) * (a^i)$n) {0 .. n1})"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2104 | using a0 a1 n1 by (simp add: fps_ginv_def) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2105 | also have "\<dots> = b$n" using n1 by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2106 | finally have "?i $ n = b$n" .} | 
| 29687 | 2107 | ultimately show "?i $ n = b$n" by (cases n, auto) | 
| 2108 | qed} | |
| 2109 | then show ?thesis by (simp add: fps_eq_iff) | |
| 2110 | qed | |
| 2111 | ||
| 2112 | lemma fps_inv_ginv: "fps_inv = fps_ginv X" | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 2113 | apply (auto simp add: fun_eq_iff fps_eq_iff fps_inv_def fps_ginv_def) | 
| 29687 | 2114 | apply (induct_tac n rule: nat_less_induct, auto) | 
| 2115 | apply (case_tac na) | |
| 2116 | apply simp | |
| 2117 | apply simp | |
| 2118 | done | |
| 2119 | ||
| 2120 | lemma fps_compose_1[simp]: "1 oo a = 1" | |
| 30960 | 2121 | by (simp add: fps_eq_iff fps_compose_nth mult_delta_left setsum_delta) | 
| 29687 | 2122 | |
| 2123 | lemma fps_compose_0[simp]: "0 oo a = 0" | |
| 29913 | 2124 | by (simp add: fps_eq_iff fps_compose_nth) | 
| 29687 | 2125 | |
| 2126 | lemma fps_compose_0_right[simp]: "a oo 0 = fps_const (a$0)" | |
| 30960 | 2127 | by (auto simp add: fps_eq_iff fps_compose_nth power_0_left setsum_0') | 
| 29687 | 2128 | |
| 2129 | lemma fps_compose_add_distrib: "(a + b) oo c = (a oo c) + (b oo c)" | |
| 36350 | 2130 | by (simp add: fps_eq_iff fps_compose_nth field_simps setsum_addf) | 
| 29687 | 2131 | |
| 2132 | lemma fps_compose_setsum_distrib: "(setsum f S) oo a = setsum (\<lambda>i. f i oo a) S" | |
| 2133 | proof- | |
| 2134 |   {assume "\<not> finite S" hence ?thesis by simp}
 | |
| 2135 | moreover | |
| 2136 |   {assume fS: "finite S"
 | |
| 2137 | have ?thesis | |
| 2138 | proof(rule finite_induct[OF fS]) | |
| 2139 |       show "setsum f {} oo a = (\<Sum>i\<in>{}. f i oo a)" by simp
 | |
| 2140 | next | |
| 2141 | fix x F assume fF: "finite F" and xF: "x \<notin> F" and h: "setsum f F oo a = setsum (\<lambda>i. f i oo a) F" | |
| 2142 | show "setsum f (insert x F) oo a = setsum (\<lambda>i. f i oo a) (insert x F)" | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2143 | using fF xF h by (simp add: fps_compose_add_distrib) | 
| 29687 | 2144 | qed} | 
| 30488 | 2145 | ultimately show ?thesis by blast | 
| 29687 | 2146 | qed | 
| 2147 | ||
| 30488 | 2148 | lemma convolution_eq: | 
| 29687 | 2149 |   "setsum (%i. a (i :: nat) * b (n - i)) {0 .. n} = setsum (%(i,j). a i * b j) {(i,j). i <= n \<and> j \<le> n \<and> i + j = n}"
 | 
| 2150 | apply (rule setsum_reindex_cong[where f=fst]) | |
| 2151 | apply (clarsimp simp add: inj_on_def) | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 2152 | apply (auto simp add: set_eq_iff image_iff) | 
| 29687 | 2153 | apply (rule_tac x= "x" in exI) | 
| 2154 | apply clarsimp | |
| 2155 | apply (rule_tac x="n - x" in exI) | |
| 2156 | apply arith | |
| 2157 | done | |
| 2158 | ||
| 2159 | lemma product_composition_lemma: | |
| 2160 | assumes c0: "c$0 = (0::'a::idom)" and d0: "d$0 = 0" | |
| 2161 |   shows "((a oo c) * (b oo d))$n = setsum (%(k,m). a$k * b$m * (c^k * d^m) $ n) {(k,m). k + m \<le> n}" (is "?l = ?r")
 | |
| 2162 | proof- | |
| 2163 |   let ?S = "{(k\<Colon>nat, m\<Colon>nat). k + m \<le> n}"
 | |
| 30488 | 2164 |   have s: "?S \<subseteq> {0..n} <*> {0..n}" by (auto simp add: subset_eq)
 | 
| 2165 |   have f: "finite {(k\<Colon>nat, m\<Colon>nat). k + m \<le> n}"
 | |
| 29687 | 2166 | apply (rule finite_subset[OF s]) | 
| 2167 | by auto | |
| 2168 |   have "?r =  setsum (%i. setsum (%(k,m). a$k * (c^k)$i * b$m * (d^m) $ (n - i)) {(k,m). k + m \<le> n}) {0..n}"
 | |
| 2169 | apply (simp add: fps_mult_nth setsum_right_distrib) | |
| 2170 | apply (subst setsum_commute) | |
| 2171 | apply (rule setsum_cong2) | |
| 36350 | 2172 | by (auto simp add: field_simps) | 
| 30488 | 2173 | also have "\<dots> = ?l" | 
| 29687 | 2174 | apply (simp add: fps_mult_nth fps_compose_nth setsum_product) | 
| 2175 | apply (rule setsum_cong2) | |
| 2176 | apply (simp add: setsum_cartesian_product mult_assoc) | |
| 2177 | apply (rule setsum_mono_zero_right[OF f]) | |
| 2178 | apply (simp add: subset_eq) apply presburger | |
| 2179 | apply clarsimp | |
| 2180 | apply (rule ccontr) | |
| 2181 | apply (clarsimp simp add: not_le) | |
| 2182 | apply (case_tac "x < aa") | |
| 2183 | apply simp | |
| 2184 | apply (frule_tac startsby_zero_power_prefix[rule_format, OF c0]) | |
| 2185 | apply blast | |
| 2186 | apply simp | |
| 2187 | apply (frule_tac startsby_zero_power_prefix[rule_format, OF d0]) | |
| 2188 | apply blast | |
| 2189 | done | |
| 2190 | finally show ?thesis by simp | |
| 2191 | qed | |
| 2192 | ||
| 2193 | lemma product_composition_lemma': | |
| 2194 | assumes c0: "c$0 = (0::'a::idom)" and d0: "d$0 = 0" | |
| 2195 |   shows "((a oo c) * (b oo d))$n = setsum (%k. setsum (%m. a$k * b$m * (c^k * d^m) $ n) {0..n}) {0..n}" (is "?l = ?r")
 | |
| 2196 | unfolding product_composition_lemma[OF c0 d0] | |
| 2197 | unfolding setsum_cartesian_product | |
| 2198 | apply (rule setsum_mono_zero_left) | |
| 2199 | apply simp | |
| 2200 | apply (clarsimp simp add: subset_eq) | |
| 2201 | apply clarsimp | |
| 2202 | apply (rule ccontr) | |
| 2203 | apply (subgoal_tac "(c^aa * d^ba) $ n = 0") | |
| 2204 | apply simp | |
| 2205 | unfolding fps_mult_nth | |
| 2206 | apply (rule setsum_0') | |
| 2207 | apply (clarsimp simp add: not_le) | |
| 2208 | apply (case_tac "aaa < aa") | |
| 2209 | apply (rule startsby_zero_power_prefix[OF c0, rule_format]) | |
| 2210 | apply simp | |
| 2211 | apply (subgoal_tac "n - aaa < ba") | |
| 2212 | apply (frule_tac k = "ba" in startsby_zero_power_prefix[OF d0, rule_format]) | |
| 2213 | apply simp | |
| 2214 | apply arith | |
| 2215 | done | |
| 30488 | 2216 | |
| 29687 | 2217 | |
| 30488 | 2218 | lemma setsum_pair_less_iff: | 
| 29687 | 2219 |   "setsum (%((k::nat),m). a k * b m * c (k + m)) {(k,m). k + m \<le> n} = setsum (%s. setsum (%i. a i * b (s - i) * c s) {0..s}) {0..n}" (is "?l = ?r")
 | 
| 2220 | proof- | |
| 2221 |   let ?KM=  "{(k,m). k + m \<le> n}"
 | |
| 2222 |   let ?f = "%s. UNION {(0::nat)..s} (%i. {(i,s - i)})"
 | |
| 2223 |   have th0: "?KM = UNION {0..n} ?f"
 | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 2224 | apply (simp add: set_eq_iff) | 
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 2225 | apply arith (* FIXME: VERY slow! *) | 
| 29687 | 2226 | done | 
| 2227 | show "?l = ?r " | |
| 2228 | unfolding th0 | |
| 2229 | apply (subst setsum_UN_disjoint) | |
| 2230 | apply auto | |
| 2231 | apply (subst setsum_UN_disjoint) | |
| 2232 | apply auto | |
| 2233 | done | |
| 2234 | qed | |
| 2235 | ||
| 2236 | lemma fps_compose_mult_distrib_lemma: | |
| 2237 | assumes c0: "c$0 = (0::'a::idom)" | |
| 2238 |   shows "((a oo c) * (b oo c))$n = setsum (%s. setsum (%i. a$i * b$(s - i) * (c^s) $ n) {0..s}) {0..n}" (is "?l = ?r")
 | |
| 2239 | unfolding product_composition_lemma[OF c0 c0] power_add[symmetric] | |
| 2240 | unfolding setsum_pair_less_iff[where a = "%k. a$k" and b="%m. b$m" and c="%s. (c ^ s)$n" and n = n] .. | |
| 2241 | ||
| 2242 | ||
| 30488 | 2243 | lemma fps_compose_mult_distrib: | 
| 29687 | 2244 | assumes c0: "c$0 = (0::'a::idom)" | 
| 2245 | shows "(a * b) oo c = (a oo c) * (b oo c)" (is "?l = ?r") | |
| 2246 | apply (simp add: fps_eq_iff fps_compose_mult_distrib_lemma[OF c0]) | |
| 2247 | by (simp add: fps_compose_nth fps_mult_nth setsum_left_distrib) | |
| 30488 | 2248 | lemma fps_compose_setprod_distrib: | 
| 29687 | 2249 | assumes c0: "c$0 = (0::'a::idom)" | 
| 2250 | shows "(setprod a S) oo c = setprod (%k. a k oo c) S" (is "?l = ?r") | |
| 2251 | apply (cases "finite S") | |
| 2252 | apply simp_all | |
| 2253 | apply (induct S rule: finite_induct) | |
| 2254 | apply simp | |
| 2255 | apply (simp add: fps_compose_mult_distrib[OF c0]) | |
| 2256 | done | |
| 2257 | ||
| 2258 | lemma fps_compose_power: assumes c0: "c$0 = (0::'a::idom)" | |
| 2259 | shows "(a oo c)^n = a^n oo c" (is "?l = ?r") | |
| 2260 | proof- | |
| 2261 |   {assume "n=0" then have ?thesis by simp}
 | |
| 2262 | moreover | |
| 2263 |   {fix m assume m: "n = Suc m"
 | |
| 2264 |     have th0: "a^n = setprod (%k. a) {0..m}" "(a oo c) ^ n = setprod (%k. a oo c) {0..m}"
 | |
| 2265 | by (simp_all add: setprod_constant m) | |
| 2266 | then have ?thesis | |
| 2267 | by (simp add: fps_compose_setprod_distrib[OF c0])} | |
| 2268 | ultimately show ?thesis by (cases n, auto) | |
| 2269 | qed | |
| 2270 | ||
| 31199 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2271 | lemma fps_compose_uminus: "- (a::'a::ring_1 fps) oo c = - (a oo c)" | 
| 36350 | 2272 | by (simp add: fps_eq_iff fps_compose_nth field_simps setsum_negf[symmetric]) | 
| 31199 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2273 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2274 | lemma fps_compose_sub_distrib: | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2275 | shows "(a - b) oo (c::'a::ring_1 fps) = (a oo c) - (b oo c)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2276 | unfolding diff_minus fps_compose_uminus fps_compose_add_distrib .. | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2277 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2278 | lemma X_fps_compose:"X oo a = Abs_fps (\<lambda>n. if n = 0 then (0::'a::comm_ring_1) else a$n)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2279 | by (simp add: fps_eq_iff fps_compose_nth mult_delta_left setsum_delta power_Suc) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2280 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2281 | lemma fps_inverse_compose: | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2282 | assumes b0: "(b$0 :: 'a::field) = 0" and a0: "a$0 \<noteq> 0" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2283 | shows "inverse a oo b = inverse (a oo b)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2284 | proof- | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2285 | let ?ia = "inverse a" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2286 | let ?ab = "a oo b" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2287 | let ?iab = "inverse ?ab" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2288 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2289 | from a0 have ia0: "?ia $ 0 \<noteq> 0" by (simp ) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2290 | from a0 have ab0: "?ab $ 0 \<noteq> 0" by (simp add: fps_compose_def) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2291 | have "(?ia oo b) * (a oo b) = 1" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2292 | unfolding fps_compose_mult_distrib[OF b0, symmetric] | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2293 | unfolding inverse_mult_eq_1[OF a0] | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2294 | fps_compose_1 .. | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2295 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2296 | then have "(?ia oo b) * (a oo b) * ?iab = 1 * ?iab" by simp | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2297 | then have "(?ia oo b) * (?iab * (a oo b)) = ?iab" by simp | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2298 | then show ?thesis | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2299 | unfolding inverse_mult_eq_1[OF ab0] by simp | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2300 | qed | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2301 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2302 | lemma fps_divide_compose: | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2303 | assumes c0: "(c$0 :: 'a::field) = 0" and b0: "b$0 \<noteq> 0" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2304 | shows "(a/b) oo c = (a oo c) / (b oo c)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2305 | unfolding fps_divide_def fps_compose_mult_distrib[OF c0] | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2306 | fps_inverse_compose[OF c0 b0] .. | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2307 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2308 | lemma gp: assumes a0: "a$0 = (0::'a::field)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2309 | shows "(Abs_fps (\<lambda>n. 1)) oo a = 1/(1 - a)" (is "?one oo a = _") | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2310 | proof- | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2311 | have o0: "?one $ 0 \<noteq> 0" by simp | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2312 | have th0: "(1 - X) $ 0 \<noteq> (0::'a)" by simp | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2313 | from fps_inverse_gp[where ?'a = 'a] | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2314 | have "inverse ?one = 1 - X" by (simp add: fps_eq_iff) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2315 | hence "inverse (inverse ?one) = inverse (1 - X)" by simp | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2316 | hence th: "?one = 1/(1 - X)" unfolding fps_inverse_idempotent[OF o0] | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2317 | by (simp add: fps_divide_def) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2318 | show ?thesis unfolding th | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2319 | unfolding fps_divide_compose[OF a0 th0] | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2320 | fps_compose_1 fps_compose_sub_distrib X_fps_compose_startby0[OF a0] .. | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2321 | qed | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2322 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2323 | lemma fps_const_power[simp]: "fps_const (c::'a::ring_1) ^ n = fps_const (c^n)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2324 | by (induct n, auto) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2325 | |
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2326 | lemma fps_compose_radical: | 
| 31273 | 2327 | assumes b0: "b$0 = (0::'a::field_char_0)" | 
| 31199 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2328 | and ra0: "r (Suc k) (a$0) ^ Suc k = a$0" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2329 | and a0: "a$0 \<noteq> 0" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2330 | shows "fps_radical r (Suc k) a oo b = fps_radical r (Suc k) (a oo b)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2331 | proof- | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2332 | let ?r = "fps_radical r (Suc k)" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2333 | let ?ab = "a oo b" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2334 | have ab0: "?ab $ 0 = a$0" by (simp add: fps_compose_def) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2335 | from ab0 a0 ra0 have rab0: "?ab $ 0 \<noteq> 0" "r (Suc k) (?ab $ 0) ^ Suc k = ?ab $ 0" by simp_all | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2336 | have th00: "r (Suc k) ((a oo b) $ 0) = (fps_radical r (Suc k) a oo b) $ 0" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2337 | by (simp add: ab0 fps_compose_def) | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2338 | have th0: "(?r a oo b) ^ (Suc k) = a oo b" | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2339 | unfolding fps_compose_power[OF b0] | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2340 | unfolding iffD1[OF power_radical[of a r k], OF a0 ra0] .. | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2341 | from iffD1[OF radical_unique[where r=r and k=k and b= ?ab and a = "?r a oo b", OF rab0(2) th00 rab0(1)], OF th0] show ?thesis . | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2342 | qed | 
| 
10d413b08fa7
FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
 chaieb parents: 
31148diff
changeset | 2343 | |
| 29687 | 2344 | lemma fps_const_mult_apply_left: | 
| 2345 | "fps_const c * (a oo b) = (fps_const c * a) oo b" | |
| 2346 | by (simp add: fps_eq_iff fps_compose_nth setsum_right_distrib mult_assoc) | |
| 2347 | ||
| 2348 | lemma fps_const_mult_apply_right: | |
| 2349 | "(a oo b) * fps_const (c::'a::comm_semiring_1) = (fps_const c * a) oo b" | |
| 2350 | by (auto simp add: fps_const_mult_apply_left mult_commute) | |
| 2351 | ||
| 30488 | 2352 | lemma fps_compose_assoc: | 
| 29687 | 2353 | assumes c0: "c$0 = (0::'a::idom)" and b0: "b$0 = 0" | 
| 2354 | shows "a oo (b oo c) = a oo b oo c" (is "?l = ?r") | |
| 2355 | proof- | |
| 2356 |   {fix n
 | |
| 2357 |     have "?l$n = (setsum (\<lambda>i. (fps_const (a$i) * b^i) oo c) {0..n})$n"
 | |
| 2358 | by (simp add: fps_compose_nth fps_compose_power[OF c0] fps_const_mult_apply_left setsum_right_distrib mult_assoc fps_setsum_nth) | |
| 2359 |     also have "\<dots> = ((setsum (\<lambda>i. fps_const (a$i) * b^i) {0..n}) oo c)$n"
 | |
| 2360 | by (simp add: fps_compose_setsum_distrib) | |
| 2361 | also have "\<dots> = ?r$n" | |
| 2362 | apply (simp add: fps_compose_nth fps_setsum_nth setsum_left_distrib mult_assoc) | |
| 2363 | apply (rule setsum_cong2) | |
| 2364 | apply (rule setsum_mono_zero_right) | |
| 2365 | apply (auto simp add: not_le) | |
| 2366 | by (erule startsby_zero_power_prefix[OF b0, rule_format]) | |
| 2367 | finally have "?l$n = ?r$n" .} | |
| 2368 | then show ?thesis by (simp add: fps_eq_iff) | |
| 2369 | qed | |
| 2370 | ||
| 2371 | ||
| 2372 | lemma fps_X_power_compose: | |
| 2373 |   assumes a0: "a$0=0" shows "X^k oo a = (a::('a::idom fps))^k" (is "?l = ?r")
 | |
| 2374 | proof- | |
| 2375 |   {assume "k=0" hence ?thesis by simp}
 | |
| 2376 | moreover | |
| 2377 |   {fix h assume h: "k = Suc h"
 | |
| 2378 |     {fix n
 | |
| 30488 | 2379 |       {assume kn: "k>n" hence "?l $ n = ?r $n" using a0 startsby_zero_power_prefix[OF a0] h
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2380 | by (simp add: fps_compose_nth del: power_Suc)} | 
| 29687 | 2381 | moreover | 
| 2382 |       {assume kn: "k \<le> n"
 | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2383 | hence "?l$n = ?r$n" | 
| 29913 | 2384 | by (simp add: fps_compose_nth mult_delta_left setsum_delta)} | 
| 29687 | 2385 | moreover have "k >n \<or> k\<le> n" by arith | 
| 2386 | ultimately have "?l$n = ?r$n" by blast} | |
| 2387 | then have ?thesis unfolding fps_eq_iff by blast} | |
| 2388 | ultimately show ?thesis by (cases k, auto) | |
| 2389 | qed | |
| 2390 | ||
| 2391 | lemma fps_inv_right: assumes a0: "a$0 = 0" and a1: "a$1 \<noteq> 0" | |
| 2392 | shows "a oo fps_inv a = X" | |
| 2393 | proof- | |
| 2394 | let ?ia = "fps_inv a" | |
| 2395 | let ?iaa = "a oo fps_inv a" | |
| 2396 | have th0: "?ia $ 0 = 0" by (simp add: fps_inv_def) | |
| 30488 | 2397 | have th1: "?iaa $ 0 = 0" using a0 a1 | 
| 29687 | 2398 | by (simp add: fps_inv_def fps_compose_nth) | 
| 2399 | have th2: "X$0 = 0" by simp | |
| 2400 | from fps_inv[OF a0 a1] have "a oo (fps_inv a oo a) = a oo X" by simp | |
| 2401 | then have "(a oo fps_inv a) oo a = X oo a" | |
| 2402 | by (simp add: fps_compose_assoc[OF a0 th0] X_fps_compose_startby0[OF a0]) | |
| 2403 | with fps_compose_inj_right[OF a0 a1] | |
| 30488 | 2404 | show ?thesis by simp | 
| 29687 | 2405 | qed | 
| 2406 | ||
| 2407 | lemma fps_inv_deriv: | |
| 31021 | 2408 |   assumes a0:"a$0 = (0::'a::{field})" and a1: "a$1 \<noteq> 0"
 | 
| 29687 | 2409 | shows "fps_deriv (fps_inv a) = inverse (fps_deriv a oo fps_inv a)" | 
| 2410 | proof- | |
| 2411 | let ?ia = "fps_inv a" | |
| 2412 | let ?d = "fps_deriv a oo ?ia" | |
| 2413 | let ?dia = "fps_deriv ?ia" | |
| 2414 | have ia0: "?ia$0 = 0" by (simp add: fps_inv_def) | |
| 2415 | have th0: "?d$0 \<noteq> 0" using a1 by (simp add: fps_compose_nth fps_deriv_nth) | |
| 2416 | from fps_inv_right[OF a0 a1] have "?d * ?dia = 1" | |
| 2417 | by (simp add: fps_compose_deriv[OF ia0, of a, symmetric] ) | |
| 2418 | hence "inverse ?d * ?d * ?dia = inverse ?d * 1" by simp | |
| 2419 | with inverse_mult_eq_1[OF th0] | |
| 2420 | show "?dia = inverse ?d" by simp | |
| 2421 | qed | |
| 2422 | ||
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2423 | lemma fps_inv_idempotent: | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2424 | assumes a0: "a$0 = 0" and a1: "a$1 \<noteq> 0" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2425 | shows "fps_inv (fps_inv a) = a" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2426 | proof- | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2427 | let ?r = "fps_inv" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2428 | have ra0: "?r a $ 0 = 0" by (simp add: fps_inv_def) | 
| 36350 | 2429 | from a1 have ra1: "?r a $ 1 \<noteq> 0" by (simp add: fps_inv_def field_simps) | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2430 | have X0: "X$0 = 0" by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2431 | from fps_inv[OF ra0 ra1] have "?r (?r a) oo ?r a = X" . | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2432 | then have "?r (?r a) oo ?r a oo a = X oo a" by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2433 | then have "?r (?r a) oo (?r a oo a) = a" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2434 | unfolding X_fps_compose_startby0[OF a0] | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2435 | unfolding fps_compose_assoc[OF a0 ra0, symmetric] . | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2436 | then show ?thesis unfolding fps_inv[OF a0 a1] by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2437 | qed | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2438 | |
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2439 | lemma fps_ginv_ginv: | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2440 | assumes a0: "a$0 = 0" and a1: "a$1 \<noteq> 0" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2441 | and c0: "c$0 = 0" and c1: "c$1 \<noteq> 0" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2442 | shows "fps_ginv b (fps_ginv c a) = b oo a oo fps_inv c" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2443 | proof- | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2444 | let ?r = "fps_ginv" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2445 | from c0 have rca0: "?r c a $0 = 0" by (simp add: fps_ginv_def) | 
| 36350 | 2446 | from a1 c1 have rca1: "?r c a $ 1 \<noteq> 0" by (simp add: fps_ginv_def field_simps) | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2447 | from fps_ginv[OF rca0 rca1] | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2448 | have "?r b (?r c a) oo ?r c a = b" . | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2449 | then have "?r b (?r c a) oo ?r c a oo a = b oo a" by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2450 | then have "?r b (?r c a) oo (?r c a oo a) = b oo a" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2451 | apply (subst fps_compose_assoc) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2452 | using a0 c0 by (auto simp add: fps_ginv_def) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2453 | then have "?r b (?r c a) oo c = b oo a" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2454 | unfolding fps_ginv[OF a0 a1] . | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2455 | then have "?r b (?r c a) oo c oo fps_inv c= b oo a oo fps_inv c" by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2456 | then have "?r b (?r c a) oo (c oo fps_inv c) = b oo a oo fps_inv c" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2457 | apply (subst fps_compose_assoc) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2458 | using a0 c0 by (auto simp add: fps_inv_def) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2459 | then show ?thesis unfolding fps_inv_right[OF c0 c1] by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2460 | qed | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2461 | |
| 32410 | 2462 | lemma fps_ginv_deriv: | 
| 2463 |   assumes a0:"a$0 = (0::'a::{field})" and a1: "a$1 \<noteq> 0"
 | |
| 2464 | shows "fps_deriv (fps_ginv b a) = (fps_deriv b / fps_deriv a) oo fps_ginv X a" | |
| 2465 | proof- | |
| 2466 | let ?ia = "fps_ginv b a" | |
| 2467 | let ?iXa = "fps_ginv X a" | |
| 2468 | let ?d = "fps_deriv" | |
| 2469 | let ?dia = "?d ?ia" | |
| 2470 | have iXa0: "?iXa $ 0 = 0" by (simp add: fps_ginv_def) | |
| 2471 | have da0: "?d a $ 0 \<noteq> 0" using a1 by simp | |
| 2472 | from fps_ginv[OF a0 a1, of b] have "?d (?ia oo a) = fps_deriv b" by simp | |
| 2473 | then have "(?d ?ia oo a) * ?d a = ?d b" unfolding fps_compose_deriv[OF a0] . | |
| 2474 | then have "(?d ?ia oo a) * ?d a * inverse (?d a) = ?d b * inverse (?d a)" by simp | |
| 2475 | then have "(?d ?ia oo a) * (inverse (?d a) * ?d a) = ?d b / ?d a" | |
| 2476 | by (simp add: fps_divide_def) | |
| 2477 | then have "(?d ?ia oo a) oo ?iXa = (?d b / ?d a) oo ?iXa " | |
| 2478 | unfolding inverse_mult_eq_1[OF da0] by simp | |
| 2479 | then have "?d ?ia oo (a oo ?iXa) = (?d b / ?d a) oo ?iXa" | |
| 2480 | unfolding fps_compose_assoc[OF iXa0 a0] . | |
| 2481 | then show ?thesis unfolding fps_inv_ginv[symmetric] | |
| 2482 | unfolding fps_inv_right[OF a0 a1] by simp | |
| 2483 | qed | |
| 2484 | ||
| 29906 | 2485 | subsection{* Elementary series *}
 | 
| 29687 | 2486 | |
| 29906 | 2487 | subsubsection{* Exponential series *}
 | 
| 30488 | 2488 | definition "E x = Abs_fps (\<lambda>n. x^n / of_nat (fact n))" | 
| 29687 | 2489 | |
| 31273 | 2490 | lemma E_deriv[simp]: "fps_deriv (E a) = fps_const (a::'a::field_char_0) * E a" (is "?l = ?r") | 
| 29687 | 2491 | proof- | 
| 2492 |   {fix n
 | |
| 2493 | have "?l$n = ?r $ n" | |
| 36350 | 2494 | apply (auto simp add: E_def field_simps power_Suc[symmetric]simp del: fact_Suc of_nat_Suc power_Suc) | 
| 2495 | by (simp add: of_nat_mult field_simps)} | |
| 29687 | 2496 | then show ?thesis by (simp add: fps_eq_iff) | 
| 2497 | qed | |
| 2498 | ||
| 30488 | 2499 | lemma E_unique_ODE: | 
| 31273 | 2500 | "fps_deriv a = fps_const c * a \<longleftrightarrow> a = fps_const (a$0) * E (c :: 'a::field_char_0)" | 
| 29687 | 2501 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 2502 | proof- | |
| 2503 |   {assume d: ?lhs
 | |
| 30488 | 2504 | from d have th: "\<And>n. a $ Suc n = c * a$n / of_nat (Suc n)" | 
| 36350 | 2505 | by (simp add: fps_deriv_def fps_eq_iff field_simps del: of_nat_Suc) | 
| 29687 | 2506 |   {fix n have "a$n = a$0 * c ^ n/ (of_nat (fact n))"
 | 
| 2507 | apply (induct n) | |
| 2508 | apply simp | |
| 30488 | 2509 | unfolding th | 
| 32042 | 2510 | using fact_gt_zero_nat | 
| 36350 | 2511 | apply (simp add: field_simps del: of_nat_Suc fact_Suc) | 
| 29687 | 2512 | apply (drule sym) | 
| 36350 | 2513 | by (simp add: field_simps of_nat_mult power_Suc)} | 
| 29687 | 2514 | note th' = this | 
| 30488 | 2515 | have ?rhs | 
| 29687 | 2516 | by (auto simp add: fps_eq_iff fps_const_mult_left E_def intro : th')} | 
| 2517 | moreover | |
| 2518 | {assume h: ?rhs
 | |
| 30488 | 2519 | have ?lhs | 
| 29687 | 2520 | apply (subst h) | 
| 2521 | apply simp | |
| 2522 | apply (simp only: h[symmetric]) | |
| 2523 | by simp} | |
| 2524 | ultimately show ?thesis by blast | |
| 2525 | qed | |
| 2526 | ||
| 31273 | 2527 | lemma E_add_mult: "E (a + b) = E (a::'a::field_char_0) * E b" (is "?l = ?r") | 
| 29687 | 2528 | proof- | 
| 2529 | have "fps_deriv (?r) = fps_const (a+b) * ?r" | |
| 36350 | 2530 | by (simp add: fps_const_add[symmetric] field_simps del: fps_const_add) | 
| 29687 | 2531 | then have "?r = ?l" apply (simp only: E_unique_ODE) | 
| 2532 | by (simp add: fps_mult_nth E_def) | |
| 2533 | then show ?thesis .. | |
| 2534 | qed | |
| 2535 | ||
| 2536 | lemma E_nth[simp]: "E a $ n = a^n / of_nat (fact n)" | |
| 2537 | by (simp add: E_def) | |
| 2538 | ||
| 31021 | 2539 | lemma E0[simp]: "E (0::'a::{field}) = 1"
 | 
| 29687 | 2540 | by (simp add: fps_eq_iff power_0_left) | 
| 2541 | ||
| 31273 | 2542 | lemma E_neg: "E (- a) = inverse (E (a::'a::field_char_0))" | 
| 29687 | 2543 | proof- | 
| 2544 | from E_add_mult[of a "- a"] have th0: "E a * E (- a) = 1" | |
| 2545 | by (simp ) | |
| 2546 | have th1: "E a $ 0 \<noteq> 0" by simp | |
| 2547 | from fps_inverse_unique[OF th1 th0] show ?thesis by simp | |
| 2548 | qed | |
| 2549 | ||
| 31273 | 2550 | lemma E_nth_deriv[simp]: "fps_nth_deriv n (E (a::'a::field_char_0)) = (fps_const a)^n * (E a)" | 
| 29687 | 2551 | by (induct n, auto simp add: power_Suc) | 
| 2552 | ||
| 31021 | 2553 | lemma X_compose_E[simp]: "X oo E (a::'a::{field}) = E a - 1"
 | 
| 29687 | 2554 | by (simp add: fps_eq_iff X_fps_compose) | 
| 2555 | ||
| 30488 | 2556 | lemma LE_compose: | 
| 2557 | assumes a: "a\<noteq>0" | |
| 29687 | 2558 | shows "fps_inv (E a - 1) oo (E a - 1) = X" | 
| 2559 | and "(E a - 1) oo fps_inv (E a - 1) = X" | |
| 2560 | proof- | |
| 2561 | let ?b = "E a - 1" | |
| 2562 | have b0: "?b $ 0 = 0" by simp | |
| 2563 | have b1: "?b $ 1 \<noteq> 0" by (simp add: a) | |
| 2564 | from fps_inv[OF b0 b1] show "fps_inv (E a - 1) oo (E a - 1) = X" . | |
| 2565 | from fps_inv_right[OF b0 b1] show "(E a - 1) oo fps_inv (E a - 1) = X" . | |
| 2566 | qed | |
| 2567 | ||
| 2568 | ||
| 30488 | 2569 | lemma fps_const_inverse: | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2570 | "a \<noteq> 0 \<Longrightarrow> inverse (fps_const (a::'a::field)) = fps_const (inverse a)" | 
| 29687 | 2571 | apply (auto simp add: fps_eq_iff fps_inverse_def) by (case_tac "n", auto) | 
| 2572 | ||
| 30488 | 2573 | lemma inverse_one_plus_X: | 
| 31021 | 2574 |   "inverse (1 + X) = Abs_fps (\<lambda>n. (- 1 ::'a::{field})^n)"
 | 
| 29687 | 2575 | (is "inverse ?l = ?r") | 
| 2576 | proof- | |
| 2577 | have th: "?l * ?r = 1" | |
| 36350 | 2578 | by (auto simp add: field_simps fps_eq_iff minus_one_power_iff) | 
| 29687 | 2579 | have th': "?l $ 0 \<noteq> 0" by (simp add: ) | 
| 2580 | from fps_inverse_unique[OF th' th] show ?thesis . | |
| 2581 | qed | |
| 2582 | ||
| 31273 | 2583 | lemma E_power_mult: "(E (c::'a::field_char_0))^n = E (of_nat n * c)" | 
| 36350 | 2584 | by (induct n, auto simp add: field_simps E_add_mult power_Suc) | 
| 29687 | 2585 | |
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2586 | lemma radical_E: | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2587 | assumes r: "r (Suc k) 1 = 1" | 
| 31370 | 2588 |   shows "fps_radical r (Suc k) (E (c::'a::{field_char_0})) = E (c / of_nat (Suc k))"
 | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2589 | proof- | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2590 | let ?ck = "(c / of_nat (Suc k))" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2591 | let ?r = "fps_radical r (Suc k)" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2592 | have eq0[simp]: "?ck * of_nat (Suc k) = c" "of_nat (Suc k) * ?ck = c" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2593 | by (simp_all del: of_nat_Suc) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2594 | have th0: "E ?ck ^ (Suc k) = E c" unfolding E_power_mult eq0 .. | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2595 | have th: "r (Suc k) (E c $0) ^ Suc k = E c $ 0" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2596 | "r (Suc k) (E c $ 0) = E ?ck $ 0" "E c $ 0 \<noteq> 0" using r by simp_all | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2597 | from th0 radical_unique[where r=r and k=k, OF th] | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2598 | show ?thesis by auto | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2599 | qed | 
| 29687 | 2600 | |
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2601 | lemma Ec_E1_eq: | 
| 31370 | 2602 |   "E (1::'a::{field_char_0}) oo (fps_const c * X) = E c"
 | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2603 | apply (auto simp add: fps_eq_iff E_def fps_compose_def power_mult_distrib) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2604 | by (simp add: cond_value_iff cond_application_beta setsum_delta' cong del: if_weak_cong) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2605 | |
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2606 | text{* The generalized binomial theorem as a  consequence of @{thm E_add_mult} *}
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2607 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2608 | lemma gbinomial_theorem: | 
| 36409 | 2609 |   "((a::'a::{field_char_0, field_inverse_zero})+b) ^ n = (\<Sum>k=0..n. of_nat (n choose k) * a^k * b^(n-k))"
 | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2610 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2611 | from E_add_mult[of a b] | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2612 | have "(E (a + b)) $ n = (E a * E b)$n" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2613 | then have "(a + b) ^ n = (\<Sum>i\<Colon>nat = 0\<Colon>nat..n. a ^ i * b ^ (n - i) * (of_nat (fact n) / of_nat (fact i * fact (n - i))))" | 
| 36350 | 2614 | by (simp add: field_simps fps_mult_nth of_nat_mult[symmetric] setsum_right_distrib) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2615 | then show ?thesis | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2616 | apply simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2617 | apply (rule setsum_cong2) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2618 | apply simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2619 | apply (frule binomial_fact[where ?'a = 'a, symmetric]) | 
| 36350 | 2620 | by (simp add: field_simps of_nat_mult) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2621 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2622 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2623 | text{* And the nat-form -- also available from Binomial.thy *}
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2624 | lemma binomial_theorem: "(a+b) ^ n = (\<Sum>k=0..n. (n choose k) * a^k * b^(n-k))" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2625 | using gbinomial_theorem[of "of_nat a" "of_nat b" n] | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2626 | unfolding of_nat_add[symmetric] of_nat_power[symmetric] of_nat_mult[symmetric] of_nat_setsum[symmetric] | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2627 | by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2628 | |
| 30488 | 2629 | subsubsection{* Logarithmic series *}
 | 
| 29687 | 2630 | |
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2631 | lemma Abs_fps_if_0: | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2632 | "Abs_fps(%n. if n=0 then (v::'a::ring_1) else f n) = fps_const v + X * Abs_fps (%n. f (Suc n))" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2633 | by (auto simp add: fps_eq_iff) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2634 | |
| 31370 | 2635 | definition L:: "'a::{field_char_0} \<Rightarrow> 'a fps" where 
 | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2636 | "L c \<equiv> fps_const (1/c) * Abs_fps (\<lambda>n. if n = 0 then 0 else (- 1) ^ (n - 1) / of_nat n)" | 
| 29687 | 2637 | |
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2638 | lemma fps_deriv_L: "fps_deriv (L c) = fps_const (1/c) * inverse (1 + X)" | 
| 29687 | 2639 | unfolding inverse_one_plus_X | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2640 | by (simp add: L_def fps_eq_iff del: of_nat_Suc) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2641 | |
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2642 | lemma L_nth: "L c $ n = (if n=0 then 0 else 1/c * ((- 1) ^ (n - 1) / of_nat n))" | 
| 36350 | 2643 | by (simp add: L_def field_simps) | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2644 | |
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2645 | lemma L_0[simp]: "L c $ 0 = 0" by (simp add: L_def) | 
| 29687 | 2646 | lemma L_E_inv: | 
| 31370 | 2647 |   assumes a: "a\<noteq> (0::'a::{field_char_0})"
 | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2648 | shows "L a = fps_inv (E a - 1)" (is "?l = ?r") | 
| 29687 | 2649 | proof- | 
| 2650 | let ?b = "E a - 1" | |
| 2651 | have b0: "?b $ 0 = 0" by simp | |
| 2652 | have b1: "?b $ 1 \<noteq> 0" by (simp add: a) | |
| 2653 | have "fps_deriv (E a - 1) oo fps_inv (E a - 1) = (fps_const a * (E a - 1) + fps_const a) oo fps_inv (E a - 1)" | |
| 36350 | 2654 | by (simp add: field_simps) | 
| 29687 | 2655 | also have "\<dots> = fps_const a * (X + 1)" apply (simp add: fps_compose_add_distrib fps_const_mult_apply_left[symmetric] fps_inv_right[OF b0 b1]) | 
| 36350 | 2656 | by (simp add: field_simps) | 
| 29687 | 2657 | finally have eq: "fps_deriv (E a - 1) oo fps_inv (E a - 1) = fps_const a * (X + 1)" . | 
| 2658 | from fps_inv_deriv[OF b0 b1, unfolded eq] | |
| 2659 | have "fps_deriv (fps_inv ?b) = fps_const (inverse a) / (X + 1)" | |
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2660 | using a | 
| 29687 | 2661 | by (simp add: fps_const_inverse eq fps_divide_def fps_inverse_mult) | 
| 30488 | 2662 | hence "fps_deriv ?l = fps_deriv ?r" | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2663 | by (simp add: fps_deriv_L add_commute fps_divide_def divide_inverse) | 
| 29687 | 2664 | then show ?thesis unfolding fps_deriv_eq_iff | 
| 2665 | by (simp add: L_nth fps_inv_def) | |
| 2666 | qed | |
| 2667 | ||
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2668 | lemma L_mult_add: | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2669 | assumes c0: "c\<noteq>0" and d0: "d\<noteq>0" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2670 | shows "L c + L d = fps_const (c+d) * L (c*d)" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2671 | (is "?r = ?l") | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2672 | proof- | 
| 36350 | 2673 | from c0 d0 have eq: "1/c + 1/d = (c+d)/(c*d)" by (simp add: field_simps) | 
| 31369 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2674 | have "fps_deriv ?r = fps_const (1/c + 1/d) * inverse (1 + X)" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2675 | by (simp add: fps_deriv_L fps_const_add[symmetric] algebra_simps del: fps_const_add) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2676 | also have "\<dots> = fps_deriv ?l" | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2677 | apply (simp add: fps_deriv_L) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2678 | by (simp add: fps_eq_iff eq) | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2679 | finally show ?thesis | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2680 | unfolding fps_deriv_eq_iff by simp | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2681 | qed | 
| 
8b460fd12100
Reverses idempotent; radical of E; generalized logarithm;
 chaieb parents: 
31199diff
changeset | 2682 | |
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2683 | subsubsection{* Binomial series *}
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2684 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2685 | definition "fps_binomial a = Abs_fps (\<lambda>n. a gchoose n)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2686 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2687 | lemma fps_binomial_nth[simp]: "fps_binomial a $ n = a gchoose n" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2688 | by (simp add: fps_binomial_def) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2689 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2690 | lemma fps_binomial_ODE_unique: | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2691 | fixes c :: "'a::field_char_0" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2692 | shows "fps_deriv a = (fps_const c * a) / (1 + X) \<longleftrightarrow> a = fps_const (a$0) * fps_binomial c" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2693 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2694 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2695 | let ?da = "fps_deriv a" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2696 | let ?x1 = "(1 + X):: 'a fps" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2697 | let ?l = "?x1 * ?da" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2698 | let ?r = "fps_const c * a" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2699 | have x10: "?x1 $ 0 \<noteq> 0" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2700 | have "?l = ?r \<longleftrightarrow> inverse ?x1 * ?l = inverse ?x1 * ?r" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2701 | also have "\<dots> \<longleftrightarrow> ?da = (fps_const c * a) / ?x1" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2702 | apply (simp only: fps_divide_def mult_assoc[symmetric] inverse_mult_eq_1[OF x10]) | 
| 36350 | 2703 | by (simp add: field_simps) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2704 | finally have eq: "?l = ?r \<longleftrightarrow> ?lhs" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2705 | moreover | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2706 |   {assume h: "?l = ?r" 
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2707 |     {fix n
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2708 | from h have lrn: "?l $ n = ?r$n" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2709 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2710 | from lrn | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2711 | have "a$ Suc n = ((c - of_nat n) / of_nat (Suc n)) * a $n" | 
| 36350 | 2712 | apply (simp add: field_simps del: of_nat_Suc) | 
| 2713 | by (cases n, simp_all add: field_simps del: of_nat_Suc) | |
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2714 | } | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2715 | note th0 = this | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2716 |     {fix n have "a$n = (c gchoose n) * a$0"
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2717 | proof(induct n) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2718 | case 0 thus ?case by simp | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2719 | next | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2720 | case (Suc m) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2721 | thus ?case unfolding th0 | 
| 36350 | 2722 | apply (simp add: field_simps del: of_nat_Suc) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2723 | unfolding mult_assoc[symmetric] gbinomial_mult_1 | 
| 36350 | 2724 | by (simp add: field_simps) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2725 | qed} | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2726 | note th1 = this | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2727 | have ?rhs | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2728 | apply (simp add: fps_eq_iff) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2729 | apply (subst th1) | 
| 36350 | 2730 | by (simp add: field_simps)} | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2731 | moreover | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2732 |   {assume h: ?rhs
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2733 | have th00:"\<And>x y. x * (a$0 * y) = a$0 * (x*y)" by (simp add: mult_commute) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2734 | have "?l = ?r" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2735 | apply (subst h) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2736 | apply (subst (2) h) | 
| 36350 | 2737 | apply (clarsimp simp add: fps_eq_iff field_simps) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2738 | unfolding mult_assoc[symmetric] th00 gbinomial_mult_1 | 
| 36350 | 2739 | by (simp add: field_simps gbinomial_mult_1)} | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2740 | ultimately show ?thesis by blast | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2741 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2742 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2743 | lemma fps_binomial_deriv: "fps_deriv (fps_binomial c) = fps_const c * fps_binomial c / (1 + X)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2744 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2745 | let ?a = "fps_binomial c" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2746 | have th0: "?a = fps_const (?a$0) * ?a" by (simp) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2747 | from iffD2[OF fps_binomial_ODE_unique, OF th0] show ?thesis . | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2748 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2749 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2750 | lemma fps_binomial_add_mult: "fps_binomial (c+d) = fps_binomial c * fps_binomial d" (is "?l = ?r") | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2751 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2752 | let ?P = "?r - ?l" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2753 | let ?b = "fps_binomial" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2754 | let ?db = "\<lambda>x. fps_deriv (?b x)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2755 | have "fps_deriv ?P = ?db c * ?b d + ?b c * ?db d - ?db (c + d)" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2756 | also have "\<dots> = inverse (1 + X) * (fps_const c * ?b c * ?b d + fps_const d * ?b c * ?b d - fps_const (c+d) * ?b (c + d))" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2757 | unfolding fps_binomial_deriv | 
| 36350 | 2758 | by (simp add: fps_divide_def field_simps) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2759 | also have "\<dots> = (fps_const (c + d)/ (1 + X)) * ?P" | 
| 36350 | 2760 | by (simp add: field_simps fps_divide_def fps_const_add[symmetric] del: fps_const_add) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2761 | finally have th0: "fps_deriv ?P = fps_const (c+d) * ?P / (1 + X)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2762 | by (simp add: fps_divide_def) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2763 | have "?P = fps_const (?P$0) * ?b (c + d)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2764 | unfolding fps_binomial_ODE_unique[symmetric] | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2765 | using th0 by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2766 | hence "?P = 0" by (simp add: fps_mult_nth) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2767 | then show ?thesis by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2768 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2769 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2770 | lemma fps_minomial_minus_one: "fps_binomial (- 1) = inverse (1 + X)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2771 | (is "?l = inverse ?r") | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2772 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2773 | have th: "?r$0 \<noteq> 0" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2774 | have th': "fps_deriv (inverse ?r) = fps_const (- 1) * inverse ?r / (1 + X)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2775 | by (simp add: fps_inverse_deriv[OF th] fps_divide_def power2_eq_square mult_commute fps_const_neg[symmetric] del: fps_const_neg) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2776 | have eq: "inverse ?r $ 0 = 1" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2777 | by (simp add: fps_inverse_def) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2778 | from iffD1[OF fps_binomial_ODE_unique[of "inverse (1 + X)" "- 1"] th'] eq | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2779 | show ?thesis by (simp add: fps_inverse_def) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2780 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2781 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2782 | text{* Vandermonde's Identity as a consequence *}
 | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2783 | lemma gbinomial_Vandermonde: "setsum (\<lambda>k. (a gchoose k) * (b gchoose (n - k))) {0..n} = (a + b) gchoose n"
 | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2784 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2785 | let ?ba = "fps_binomial a" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2786 | let ?bb = "fps_binomial b" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2787 | let ?bab = "fps_binomial (a + b)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2788 | from fps_binomial_add_mult[of a b] have "?bab $ n = (?ba * ?bb)$n" by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2789 | then show ?thesis by (simp add: fps_mult_nth) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2790 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2791 | |
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2792 | lemma binomial_Vandermonde: "setsum (\<lambda>k. (a choose k) * (b choose (n - k))) {0..n} = (a + b) choose n"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2793 | using gbinomial_Vandermonde[of "(of_nat a)" "of_nat b" n] | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2794 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2795 | apply (simp only: binomial_gbinomial[symmetric] of_nat_mult[symmetric] of_nat_setsum[symmetric] of_nat_add[symmetric]) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2796 | by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2797 | |
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2798 | lemma binomial_Vandermonde_same: "setsum (\<lambda>k. (n choose k)^2) {0..n} = (2*n) choose n"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2799 | using binomial_Vandermonde[of n n n,symmetric] | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2800 | unfolding nat_mult_2 apply (simp add: power2_eq_square) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2801 | apply (rule setsum_cong2) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2802 | by (auto intro: binomial_symmetric) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2803 | |
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2804 | lemma Vandermonde_pochhammer_lemma: | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2805 | fixes a :: "'a::field_char_0" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2806 |   assumes b: "\<forall> j\<in>{0 ..<n}. b \<noteq> of_nat j"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2807 |   shows "setsum (%k. (pochhammer (- a) k * pochhammer (- (of_nat n)) k) / (of_nat (fact k) * pochhammer (b - of_nat n + 1) k)) {0..n} = pochhammer (- (a+ b)) n / pochhammer (- b) n" (is "?l = ?r")
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2808 | proof- | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2809 | let ?m1 = "%m. (- 1 :: 'a) ^ m" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2810 | let ?f = "%m. of_nat (fact m)" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2811 | let ?p = "%(x::'a). pochhammer (- x)" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2812 | from b have bn0: "?p b n \<noteq> 0" unfolding pochhammer_eq_0_iff by simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2813 |   {fix k assume kn: "k \<in> {0..n}"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2814 |     {assume c:"pochhammer (b - of_nat n + 1) n = 0"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2815 | then obtain j where j: "j < n" "b - of_nat n + 1 = - of_nat j" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2816 | unfolding pochhammer_eq_0_iff by blast | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2817 | from j have "b = of_nat n - of_nat j - of_nat 1" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2818 | by (simp add: algebra_simps) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2819 | then have "b = of_nat (n - j - 1)" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2820 | using j kn by (simp add: of_nat_diff) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2821 | with b have False using j by auto} | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2822 | then have nz: "pochhammer (1 + b - of_nat n) n \<noteq> 0" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2823 | by (auto simp add: algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2824 | |
| 35175 | 2825 | from nz kn [simplified] have nz': "pochhammer (1 + b - of_nat n) k \<noteq> 0" | 
| 2826 | by (rule pochhammer_neq_0_mono) | |
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2827 |     {assume k0: "k = 0 \<or> n =0" 
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2828 | then have "b gchoose (n - k) = (?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k)" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2829 | using kn | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2830 | by (cases "k=0", simp_all add: gbinomial_pochhammer)} | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2831 | moreover | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2832 |     {assume n0: "n \<noteq> 0" and k0: "k \<noteq> 0" 
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2833 | then obtain m where m: "n = Suc m" by (cases n, auto) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2834 | from k0 obtain h where h: "k = Suc h" by (cases k, auto) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2835 |       {assume kn: "k = n"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2836 | then have "b gchoose (n - k) = (?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2837 | using kn pochhammer_minus'[where k=k and n=n and b=b] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2838 | apply (simp add: pochhammer_same) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2839 | using bn0 | 
| 36350 | 2840 | by (simp add: field_simps power_add[symmetric])} | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2841 | moreover | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2842 |       {assume nk: "k \<noteq> n"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2843 |         have m1nk: "?m1 n = setprod (%i. - 1) {0..m}" 
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2844 |           "?m1 k = setprod (%i. - 1) {0..h}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2845 | by (simp_all add: setprod_constant m h) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2846 | from kn nk have kn': "k < n" by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2847 | have bnz0: "pochhammer (b - of_nat n + 1) k \<noteq> 0" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2848 | using bn0 kn | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2849 | unfolding pochhammer_eq_0_iff | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2850 | apply auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2851 | apply (erule_tac x= "n - ka - 1" in allE) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2852 | by (auto simp add: algebra_simps of_nat_diff) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2853 |         have eq1: "setprod (%k. (1::'a) + of_nat m - of_nat k) {0 .. h} = setprod of_nat {Suc (m - h) .. Suc m}"        
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2854 | apply (rule strong_setprod_reindex_cong[where f="%k. Suc m - k "]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2855 | using kn' h m | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2856 | apply (auto simp add: inj_on_def image_def) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2857 | apply (rule_tac x="Suc m - x" in bexI) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2858 | apply (simp_all add: of_nat_diff) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2859 | done | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2860 | |
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2861 | have th1: "(?m1 k * ?p (of_nat n) k) / ?f n = 1 / of_nat(fact (n - k))" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2862 | unfolding m1nk | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2863 | |
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2864 | unfolding m h pochhammer_Suc_setprod | 
| 36350 | 2865 | apply (simp add: field_simps del: fact_Suc id_def) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2866 | unfolding fact_altdef_nat id_def | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2867 | unfolding of_nat_setprod | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2868 | unfolding setprod_timesf[symmetric] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2869 | apply auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2870 | unfolding eq1 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2871 | apply (subst setprod_Un_disjoint[symmetric]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2872 | apply (auto) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2873 | apply (rule setprod_cong) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2874 | apply auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2875 | done | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2876 |         have th20: "?m1 n * ?p b n = setprod (%i. b - of_nat i) {0..m}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2877 | unfolding m1nk | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2878 | unfolding m h pochhammer_Suc_setprod | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2879 | unfolding setprod_timesf[symmetric] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2880 | apply (rule setprod_cong) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2881 | apply auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2882 | done | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2883 |         have th21:"pochhammer (b - of_nat n + 1) k = setprod (%i. b - of_nat i) {n - k .. n - 1}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2884 | unfolding h m | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2885 | unfolding pochhammer_Suc_setprod | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2886 | apply (rule strong_setprod_reindex_cong[where f="%k. n - 1 - k"]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2887 | using kn | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2888 | apply (auto simp add: inj_on_def m h image_def) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2889 | apply (rule_tac x= "m - x" in bexI) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2890 | by (auto simp add: of_nat_diff) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2891 | |
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2892 |         have "?m1 n * ?p b n = pochhammer (b - of_nat n + 1) k * setprod (%i. b - of_nat i) {0.. n - k - 1}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2893 | unfolding th20 th21 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2894 | unfolding h m | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2895 | apply (subst setprod_Un_disjoint[symmetric]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2896 | using kn' h m | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2897 | apply auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2898 | apply (rule setprod_cong) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2899 | apply auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2900 | done | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2901 |         then have th2: "(?m1 n * ?p b n)/pochhammer (b - of_nat n + 1) k = setprod (%i. b - of_nat i) {0.. n - k - 1}" 
 | 
| 36350 | 2902 | using nz' by (simp add: field_simps) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2903 | have "(?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k) = ((?m1 k * ?p (of_nat n) k) / ?f n) * ((?m1 n * ?p b n)/pochhammer (b - of_nat n + 1) k)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2904 | using bnz0 | 
| 36350 | 2905 | by (simp add: field_simps) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2906 | also have "\<dots> = b gchoose (n - k)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2907 | unfolding th1 th2 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2908 | using kn' by (simp add: gbinomial_def) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2909 | finally have "b gchoose (n - k) = (?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k)" by simp} | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2910 | ultimately have "b gchoose (n - k) = (?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k)" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2911 | by (cases "k =n", auto)} | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2912 | ultimately have "b gchoose (n - k) = (?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k)" "pochhammer (1 + b - of_nat n) k \<noteq> 0 " | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2913 | using nz' | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2914 | apply (cases "n=0", auto) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2915 | by (cases "k", auto)} | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2916 | note th00 = this | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2917 | have "?r = ((a + b) gchoose n) * (of_nat (fact n)/ (?m1 n * pochhammer (- b) n))" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2918 | unfolding gbinomial_pochhammer | 
| 36350 | 2919 | using bn0 by (auto simp add: field_simps) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2920 | also have "\<dots> = ?l" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2921 | unfolding gbinomial_Vandermonde[symmetric] | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2922 | apply (simp add: th00) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2923 | unfolding gbinomial_pochhammer | 
| 36350 | 2924 | using bn0 apply (simp add: setsum_left_distrib setsum_right_distrib field_simps) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2925 | apply (rule setsum_cong2) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2926 | apply (drule th00(2)) | 
| 36350 | 2927 | by (simp add: field_simps power_add[symmetric]) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2928 | finally show ?thesis by simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2929 | qed | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2930 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2931 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2932 | lemma Vandermonde_pochhammer: | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2933 | fixes a :: "'a::field_char_0" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2934 |   assumes c: "ALL i : {0..< n}. c \<noteq> - of_nat i"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2935 |   shows "setsum (%k. (pochhammer a k * pochhammer (- (of_nat n)) k) / (of_nat (fact k) * pochhammer c k)) {0..n} = pochhammer (c - a) n / pochhammer c n"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2936 | proof- | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2937 | let ?a = "- a" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2938 | let ?b = "c + of_nat n - 1" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2939 |   have h: "\<forall> j \<in>{0..< n}. ?b \<noteq> of_nat j" using c
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2940 | apply (auto simp add: algebra_simps of_nat_diff) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2941 | apply (erule_tac x= "n - j - 1" in ballE) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2942 | by (auto simp add: of_nat_diff algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2943 | have th0: "pochhammer (- (?a + ?b)) n = (- 1)^n * pochhammer (c - a) n" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2944 | unfolding pochhammer_minus[OF le_refl] | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2945 | by (simp add: algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2946 | have th1: "pochhammer (- ?b) n = (- 1)^n * pochhammer c n" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2947 | unfolding pochhammer_minus[OF le_refl] | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2948 | by simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2949 | have nz: "pochhammer c n \<noteq> 0" using c | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2950 | by (simp add: pochhammer_eq_0_iff) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2951 | from Vandermonde_pochhammer_lemma[where a = "?a" and b="?b" and n=n, OF h, unfolded th0 th1] | 
| 36350 | 2952 | show ?thesis using nz by (simp add: field_simps setsum_right_distrib) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 2953 | qed | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 2954 | |
| 29906 | 2955 | subsubsection{* Formal trigonometric functions  *}
 | 
| 29687 | 2956 | |
| 31273 | 2957 | definition "fps_sin (c::'a::field_char_0) = | 
| 29687 | 2958 | Abs_fps (\<lambda>n. if even n then 0 else (- 1) ^((n - 1) div 2) * c^n /(of_nat (fact n)))" | 
| 2959 | ||
| 31273 | 2960 | definition "fps_cos (c::'a::field_char_0) = | 
| 2961 | Abs_fps (\<lambda>n. if even n then (- 1) ^ (n div 2) * c^n / (of_nat (fact n)) else 0)" | |
| 29687 | 2962 | |
| 30488 | 2963 | lemma fps_sin_deriv: | 
| 29687 | 2964 | "fps_deriv (fps_sin c) = fps_const c * fps_cos c" | 
| 2965 | (is "?lhs = ?rhs") | |
| 31273 | 2966 | proof (rule fps_ext) | 
| 2967 | fix n::nat | |
| 29687 | 2968 |     {assume en: "even n"
 | 
| 2969 | have "?lhs$n = of_nat (n+1) * (fps_sin c $ (n+1))" by simp | |
| 30488 | 2970 | also have "\<dots> = of_nat (n+1) * ((- 1)^(n div 2) * c^Suc n / of_nat (fact (Suc n)))" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2971 | using en by (simp add: fps_sin_def) | 
| 29687 | 2972 | also have "\<dots> = (- 1)^(n div 2) * c^Suc n * (of_nat (n+1) / (of_nat (Suc n) * of_nat (fact n)))" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2973 | unfolding fact_Suc of_nat_mult | 
| 36350 | 2974 | by (simp add: field_simps del: of_nat_add of_nat_Suc) | 
| 29687 | 2975 | also have "\<dots> = (- 1)^(n div 2) *c^Suc n / of_nat (fact n)" | 
| 36350 | 2976 | by (simp add: field_simps del: of_nat_add of_nat_Suc) | 
| 30488 | 2977 | finally have "?lhs $n = ?rhs$n" using en | 
| 36350 | 2978 | by (simp add: fps_cos_def field_simps power_Suc )} | 
| 31273 | 2979 | then show "?lhs $ n = ?rhs $ n" | 
| 2980 | by (cases "even n", simp_all add: fps_deriv_def fps_sin_def fps_cos_def) | |
| 29687 | 2981 | qed | 
| 2982 | ||
| 30488 | 2983 | lemma fps_cos_deriv: | 
| 29687 | 2984 | "fps_deriv (fps_cos c) = fps_const (- c)* (fps_sin c)" | 
| 2985 | (is "?lhs = ?rhs") | |
| 31273 | 2986 | proof (rule fps_ext) | 
| 29687 | 2987 | have th0: "\<And>n. - ((- 1::'a) ^ n) = (- 1)^Suc n" by (simp add: power_Suc) | 
| 31273 | 2988 | have th1: "\<And>n. odd n \<Longrightarrow> Suc ((n - 1) div 2) = Suc n div 2" | 
| 2989 | by (case_tac n, simp_all) | |
| 2990 | fix n::nat | |
| 29687 | 2991 |     {assume en: "odd n"
 | 
| 2992 | from en have n0: "n \<noteq>0 " by presburger | |
| 2993 | have "?lhs$n = of_nat (n+1) * (fps_cos c $ (n+1))" by simp | |
| 30488 | 2994 | also have "\<dots> = of_nat (n+1) * ((- 1)^((n + 1) div 2) * c^Suc n / of_nat (fact (Suc n)))" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2995 | using en by (simp add: fps_cos_def) | 
| 29687 | 2996 | also have "\<dots> = (- 1)^((n + 1) div 2)*c^Suc n * (of_nat (n+1) / (of_nat (Suc n) * of_nat (fact n)))" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 2997 | unfolding fact_Suc of_nat_mult | 
| 36350 | 2998 | by (simp add: field_simps del: of_nat_add of_nat_Suc) | 
| 29687 | 2999 | also have "\<dots> = (- 1)^((n + 1) div 2) * c^Suc n / of_nat (fact n)" | 
| 36350 | 3000 | by (simp add: field_simps del: of_nat_add of_nat_Suc) | 
| 29687 | 3001 | also have "\<dots> = (- ((- 1)^((n - 1) div 2))) * c^Suc n / of_nat (fact n)" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3002 | unfolding th0 unfolding th1[OF en] by simp | 
| 30488 | 3003 | finally have "?lhs $n = ?rhs$n" using en | 
| 36350 | 3004 | by (simp add: fps_sin_def field_simps power_Suc)} | 
| 31273 | 3005 | then show "?lhs $ n = ?rhs $ n" | 
| 30488 | 3006 | by (cases "even n", simp_all add: fps_deriv_def fps_sin_def | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3007 | fps_cos_def) | 
| 29687 | 3008 | qed | 
| 3009 | ||
| 3010 | lemma fps_sin_cos_sum_of_squares: | |
| 3011 | "fps_cos c ^ 2 + fps_sin c ^ 2 = 1" (is "?lhs = 1") | |
| 3012 | proof- | |
| 3013 | have "fps_deriv ?lhs = 0" | |
| 3014 | apply (simp add: fps_deriv_power fps_sin_deriv fps_cos_deriv power_Suc) | |
| 36350 | 3015 | by (simp add: field_simps fps_const_neg[symmetric] del: fps_const_neg) | 
| 29687 | 3016 | then have "?lhs = fps_const (?lhs $ 0)" | 
| 3017 | unfolding fps_deriv_eq_0_iff . | |
| 3018 | also have "\<dots> = 1" | |
| 30960 | 3019 | by (auto simp add: fps_eq_iff numeral_2_eq_2 fps_mult_nth fps_cos_def fps_sin_def) | 
| 29687 | 3020 | finally show ?thesis . | 
| 3021 | qed | |
| 3022 | ||
| 31274 | 3023 | lemma divide_eq_iff: "a \<noteq> (0::'a::field) \<Longrightarrow> x / a = y \<longleftrightarrow> x = y * a" | 
| 3024 | by auto | |
| 3025 | ||
| 3026 | lemma eq_divide_iff: "a \<noteq> (0::'a::field) \<Longrightarrow> x = y / a \<longleftrightarrow> x * a = y" | |
| 3027 | by auto | |
| 3028 | ||
| 3029 | lemma fps_sin_nth_0 [simp]: "fps_sin c $ 0 = 0" | |
| 3030 | unfolding fps_sin_def by simp | |
| 3031 | ||
| 3032 | lemma fps_sin_nth_1 [simp]: "fps_sin c $ 1 = c" | |
| 3033 | unfolding fps_sin_def by simp | |
| 3034 | ||
| 3035 | lemma fps_sin_nth_add_2: | |
| 3036 | "fps_sin c $ (n + 2) = - (c * c * fps_sin c $ n / (of_nat(n+1) * of_nat(n+2)))" | |
| 3037 | unfolding fps_sin_def | |
| 3038 | apply (cases n, simp) | |
| 3039 | apply (simp add: divide_eq_iff eq_divide_iff del: of_nat_Suc fact_Suc) | |
| 3040 | apply (simp add: of_nat_mult del: of_nat_Suc mult_Suc) | |
| 3041 | done | |
| 3042 | ||
| 3043 | lemma fps_cos_nth_0 [simp]: "fps_cos c $ 0 = 1" | |
| 3044 | unfolding fps_cos_def by simp | |
| 3045 | ||
| 3046 | lemma fps_cos_nth_1 [simp]: "fps_cos c $ 1 = 0" | |
| 3047 | unfolding fps_cos_def by simp | |
| 3048 | ||
| 3049 | lemma fps_cos_nth_add_2: | |
| 3050 | "fps_cos c $ (n + 2) = - (c * c * fps_cos c $ n / (of_nat(n+1) * of_nat(n+2)))" | |
| 3051 | unfolding fps_cos_def | |
| 3052 | apply (simp add: divide_eq_iff eq_divide_iff del: of_nat_Suc fact_Suc) | |
| 3053 | apply (simp add: of_nat_mult del: of_nat_Suc mult_Suc) | |
| 3054 | done | |
| 3055 | ||
| 3056 | lemma nat_induct2: | |
| 3057 | "\<lbrakk>P 0; P 1; \<And>n. P n \<Longrightarrow> P (n + 2)\<rbrakk> \<Longrightarrow> P (n::nat)" | |
| 3058 | unfolding One_nat_def numeral_2_eq_2 | |
| 3059 | apply (induct n rule: nat_less_induct) | |
| 3060 | apply (case_tac n, simp) | |
| 3061 | apply (rename_tac m, case_tac m, simp) | |
| 3062 | apply (rename_tac k, case_tac k, simp_all) | |
| 3063 | done | |
| 3064 | ||
| 3065 | lemma nat_add_1_add_1: "(n::nat) + 1 + 1 = n + 2" | |
| 3066 | by simp | |
| 3067 | ||
| 3068 | lemma eq_fps_sin: | |
| 3069 | assumes 0: "a $ 0 = 0" and 1: "a $ 1 = c" | |
| 3070 | and 2: "fps_deriv (fps_deriv a) = - (fps_const c * fps_const c * a)" | |
| 3071 | shows "a = fps_sin c" | |
| 3072 | apply (rule fps_ext) | |
| 3073 | apply (induct_tac n rule: nat_induct2) | |
| 3074 | apply (simp add: fps_sin_nth_0 0) | |
| 3075 | apply (simp add: fps_sin_nth_1 1 del: One_nat_def) | |
| 3076 | apply (rename_tac m, cut_tac f="\<lambda>a. a $ m" in arg_cong [OF 2]) | |
| 3077 | apply (simp add: nat_add_1_add_1 fps_sin_nth_add_2 | |
| 3078 | del: One_nat_def of_nat_Suc of_nat_add add_2_eq_Suc') | |
| 3079 | apply (subst minus_divide_left) | |
| 3080 | apply (subst eq_divide_iff) | |
| 3081 | apply (simp del: of_nat_add of_nat_Suc) | |
| 3082 | apply (simp only: mult_ac) | |
| 3083 | done | |
| 3084 | ||
| 3085 | lemma eq_fps_cos: | |
| 3086 | assumes 0: "a $ 0 = 1" and 1: "a $ 1 = 0" | |
| 3087 | and 2: "fps_deriv (fps_deriv a) = - (fps_const c * fps_const c * a)" | |
| 3088 | shows "a = fps_cos c" | |
| 3089 | apply (rule fps_ext) | |
| 3090 | apply (induct_tac n rule: nat_induct2) | |
| 3091 | apply (simp add: fps_cos_nth_0 0) | |
| 3092 | apply (simp add: fps_cos_nth_1 1 del: One_nat_def) | |
| 3093 | apply (rename_tac m, cut_tac f="\<lambda>a. a $ m" in arg_cong [OF 2]) | |
| 3094 | apply (simp add: nat_add_1_add_1 fps_cos_nth_add_2 | |
| 3095 | del: One_nat_def of_nat_Suc of_nat_add add_2_eq_Suc') | |
| 3096 | apply (subst minus_divide_left) | |
| 3097 | apply (subst eq_divide_iff) | |
| 3098 | apply (simp del: of_nat_add of_nat_Suc) | |
| 3099 | apply (simp only: mult_ac) | |
| 3100 | done | |
| 3101 | ||
| 3102 | lemma mult_nth_0 [simp]: "(a * b) $ 0 = a $ 0 * b $ 0" | |
| 3103 | by (simp add: fps_mult_nth) | |
| 3104 | ||
| 3105 | lemma mult_nth_1 [simp]: "(a * b) $ 1 = a $ 0 * b $ 1 + a $ 1 * b $ 0" | |
| 3106 | by (simp add: fps_mult_nth) | |
| 3107 | ||
| 3108 | lemma fps_sin_add: | |
| 3109 | "fps_sin (a + b) = fps_sin a * fps_cos b + fps_cos a * fps_sin b" | |
| 3110 | apply (rule eq_fps_sin [symmetric], simp, simp del: One_nat_def) | |
| 3111 | apply (simp del: fps_const_neg fps_const_add fps_const_mult | |
| 3112 | add: fps_const_add [symmetric] fps_const_neg [symmetric] | |
| 3113 | fps_sin_deriv fps_cos_deriv algebra_simps) | |
| 3114 | done | |
| 3115 | ||
| 3116 | lemma fps_cos_add: | |
| 3117 | "fps_cos (a + b) = fps_cos a * fps_cos b - fps_sin a * fps_sin b" | |
| 3118 | apply (rule eq_fps_cos [symmetric], simp, simp del: One_nat_def) | |
| 3119 | apply (simp del: fps_const_neg fps_const_add fps_const_mult | |
| 3120 | add: fps_const_add [symmetric] fps_const_neg [symmetric] | |
| 3121 | fps_sin_deriv fps_cos_deriv algebra_simps) | |
| 3122 | done | |
| 3123 | ||
| 31968 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 3124 | lemma fps_sin_even: "fps_sin (- c) = - fps_sin c" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 3125 | by (auto simp add: fps_eq_iff fps_sin_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 3126 | |
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 3127 | lemma fps_cos_odd: "fps_cos (- c) = fps_cos c" | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 3128 | by (auto simp add: fps_eq_iff fps_cos_def) | 
| 
0314441a53a6
FPS form a metric space, which justifies the infinte sum notation
 chaieb parents: 
31790diff
changeset | 3129 | |
| 29687 | 3130 | definition "fps_tan c = fps_sin c / fps_cos c" | 
| 3131 | ||
| 3132 | lemma fps_tan_deriv: "fps_deriv(fps_tan c) = fps_const c/ (fps_cos c ^ 2)" | |
| 3133 | proof- | |
| 3134 | have th0: "fps_cos c $ 0 \<noteq> 0" by (simp add: fps_cos_def) | |
| 30488 | 3135 | show ?thesis | 
| 29687 | 3136 | using fps_sin_cos_sum_of_squares[of c] | 
| 36350 | 3137 | apply (simp add: fps_tan_def fps_divide_deriv[OF th0] fps_sin_deriv fps_cos_deriv add: fps_const_neg[symmetric] field_simps power2_eq_square del: fps_const_neg) | 
| 29687 | 3138 | unfolding right_distrib[symmetric] | 
| 3139 | by simp | |
| 3140 | qed | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 3141 | |
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3142 | text {* Connection to E c over the complex numbers --- Euler and De Moivre*}
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3143 | lemma Eii_sin_cos: | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3144 | "E (ii * c) = fps_cos c + fps_const ii * fps_sin c " | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3145 | (is "?l = ?r") | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3146 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3147 |   {fix n::nat
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3148 |     {assume en: "even n"
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3149 | from en obtain m where m: "n = 2*m" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3150 | unfolding even_mult_two_ex by blast | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3151 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3152 | have "?l $n = ?r$n" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3153 | by (simp add: m fps_sin_def fps_cos_def power_mult_distrib | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3154 | power_mult power_minus)} | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3155 | moreover | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3156 |     {assume on: "odd n"
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3157 | from on obtain m where m: "n = 2*m + 1" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3158 | unfolding odd_nat_equiv_def2 by (auto simp add: nat_mult_2) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3159 | have "?l $n = ?r$n" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3160 | by (simp add: m fps_sin_def fps_cos_def power_mult_distrib | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 3161 | power_mult power_minus)} | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3162 | ultimately have "?l $n = ?r$n" by blast} | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3163 | then show ?thesis by (simp add: fps_eq_iff) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3164 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3165 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3166 | lemma E_minus_ii_sin_cos: "E (- (ii * c)) = fps_cos c - fps_const ii * fps_sin c " | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3167 | unfolding minus_mult_right Eii_sin_cos by (simp add: fps_sin_even fps_cos_odd) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3168 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3169 | lemma fps_const_minus: "fps_const (c::'a::group_add) - fps_const d = fps_const (c - d)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3170 | by (simp add: fps_eq_iff fps_const_def) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3171 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3172 | lemma fps_number_of_fps_const: "number_of i = fps_const (number_of i :: 'a:: {comm_ring_1, number_ring})"
 | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3173 | apply (subst (2) number_of_eq) | 
| 36811 
4ab4aa5bee1c
renamed former Int.int_induct to Int.int_of_nat_induct, former Presburger.int_induct to Int.int_induct: is more conservative and more natural than the intermediate solution
 haftmann parents: 
36808diff
changeset | 3174 | apply(rule int_induct [of _ 0]) | 
| 32157 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3175 | apply (simp_all add: number_of_fps_def) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3176 | by (simp_all add: fps_const_add[symmetric] fps_const_minus[symmetric]) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3177 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3178 | lemma fps_cos_Eii: | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3179 | "fps_cos c = (E (ii * c) + E (- ii * c)) / fps_const 2" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3180 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3181 | have th: "fps_cos c + fps_cos c = fps_cos c * fps_const 2" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3182 | by (simp add: fps_eq_iff fps_number_of_fps_const complex_number_of_def[symmetric]) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3183 | show ?thesis | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3184 | unfolding Eii_sin_cos minus_mult_commute | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3185 | by (simp add: fps_sin_even fps_cos_odd fps_number_of_fps_const | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3186 | fps_divide_def fps_const_inverse th complex_number_of_def[symmetric]) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3187 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3188 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3189 | lemma fps_sin_Eii: | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3190 | "fps_sin c = (E (ii * c) - E (- ii * c)) / fps_const (2*ii)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3191 | proof- | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3192 | have th: "fps_const \<i> * fps_sin c + fps_const \<i> * fps_sin c = fps_sin c * fps_const (2 * ii)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3193 | by (simp add: fps_eq_iff fps_number_of_fps_const complex_number_of_def[symmetric]) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3194 | show ?thesis | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3195 | unfolding Eii_sin_cos minus_mult_commute | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3196 | by (simp add: fps_sin_even fps_cos_odd fps_divide_def fps_const_inverse th) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3197 | qed | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3198 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3199 | lemma fps_tan_Eii: | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3200 | "fps_tan c = (E (ii * c) - E (- ii * c)) / (fps_const ii * (E (ii * c) + E (- ii * c)))" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3201 | unfolding fps_tan_def fps_sin_Eii fps_cos_Eii mult_minus_left E_neg | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3202 | apply (simp add: fps_divide_def fps_inverse_mult fps_const_mult[symmetric] fps_const_inverse del: fps_const_mult) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3203 | by simp | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3204 | |
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3205 | lemma fps_demoivre: "(fps_cos a + fps_const ii * fps_sin a)^n = fps_cos (of_nat n * a) + fps_const ii * fps_sin (of_nat n * a)" | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3206 | unfolding Eii_sin_cos[symmetric] E_power_mult | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3207 | by (simp add: mult_ac) | 
| 
adea7a729c7a
Moved important theorems from FPS_Examples to FPS --- they are not
 chaieb parents: 
31968diff
changeset | 3208 | |
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3209 | subsection {* Hypergeometric series *}
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3210 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3211 | |
| 36409 | 3212 | definition "F as bs (c::'a::{field_char_0, field_inverse_zero}) = Abs_fps (%n. (foldl (%r a. r* pochhammer a n) 1 as * c^n)/ (foldl (%r b. r * pochhammer b n) 1 bs * of_nat (fact n)))"
 | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3213 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3214 | lemma F_nth[simp]: "F as bs c $ n = (foldl (%r a. r* pochhammer a n) 1 as * c^n)/ (foldl (%r b. r * pochhammer b n) 1 bs * of_nat (fact n))" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3215 | by (simp add: F_def) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3216 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3217 | lemma foldl_mult_start: | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3218 | "foldl (%r x. r * f x) (v::'a::comm_ring_1) as * x = foldl (%r x. r * f x) (v * x) as " | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3219 | by (induct as arbitrary: x v, auto simp add: algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3220 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3221 | lemma foldr_mult_foldl: "foldr (%x r. r * f x) as v = foldl (%r x. r * f x) (v :: 'a::comm_ring_1) as" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3222 | by (induct as arbitrary: v, auto simp add: foldl_mult_start) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3223 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3224 | lemma F_nth_alt: "F as bs c $ n = foldr (\<lambda>a r. r * pochhammer a n) as (c ^ n) / | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3225 | foldr (\<lambda>b r. r * pochhammer b n) bs (of_nat (fact n))" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3226 | by (simp add: foldl_mult_start foldr_mult_foldl) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3227 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3228 | lemma F_E[simp]: "F [] [] c = E c" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3229 | by (simp add: fps_eq_iff) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3230 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3231 | lemma F_1_0[simp]: "F [1] [] c = 1/(1 - fps_const c * X)" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3232 | proof- | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3233 | let ?a = "(Abs_fps (\<lambda>n. 1)) oo (fps_const c * X)" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3234 | have th0: "(fps_const c * X) $ 0 = 0" by simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3235 | show ?thesis unfolding gp[OF th0, symmetric] | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3236 | by (auto simp add: fps_eq_iff pochhammer_fact[symmetric] fps_compose_nth power_mult_distrib cond_value_iff setsum_delta' cong del: if_weak_cong) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3237 | qed | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3238 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3239 | lemma F_B[simp]: "F [-a] [] (- 1) = fps_binomial a" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3240 | by (simp add: fps_eq_iff gbinomial_pochhammer algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3241 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3242 | lemma F_0[simp]: "F as bs c $0 = 1" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3243 | apply simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3244 | apply (subgoal_tac "ALL as. foldl (%(r::'a) (a::'a). r) 1 as = 1") | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3245 | apply auto | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3246 | apply (induct_tac as, auto) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3247 | done | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3248 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3249 | lemma foldl_prod_prod: "foldl (%(r::'b::comm_ring_1) (x::'a::comm_ring_1). r * f x) v as * foldl (%r x. r * g x) w as = foldl (%r x. r * f x * g x) (v*w) as" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3250 | by (induct as arbitrary: v w, auto simp add: algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3251 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3252 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3253 | lemma F_rec: "F as bs c $ Suc n = ((foldl (%r a. r* (a + of_nat n)) c as)/ (foldl (%r b. r * (b + of_nat n)) (of_nat (Suc n)) bs )) * F as bs c $ n" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3254 | apply (simp del: of_nat_Suc of_nat_add fact_Suc) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3255 | apply (simp add: foldl_mult_start del: fact_Suc of_nat_Suc) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3256 | unfolding foldl_prod_prod[unfolded foldl_mult_start] pochhammer_Suc | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3257 | by (simp add: algebra_simps of_nat_mult) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3258 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3259 | lemma XD_nth[simp]: "XD a $ n = (if n=0 then 0 else of_nat n * a$n)" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3260 | by (simp add: XD_def) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3261 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3262 | lemma XD_0th[simp]: "XD a $ 0 = 0" by simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3263 | lemma XD_Suc[simp]:" XD a $ Suc n = of_nat (Suc n) * a $ Suc n" by simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3264 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3265 | definition "XDp c a = XD a + fps_const c * a" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3266 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3267 | lemma XDp_nth[simp]: "XDp c a $ n = (c + of_nat n) * a$n" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3268 | by (simp add: XDp_def algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3269 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3270 | lemma XDp_commute: | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3271 | shows "XDp b o XDp (c::'a::comm_ring_1) = XDp c o XDp b" | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 3272 | by (auto simp add: XDp_def fun_eq_iff fps_eq_iff algebra_simps) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3273 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3274 | lemma XDp0[simp]: "XDp 0 = XD" | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 3275 | by (simp add: fun_eq_iff fps_eq_iff) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3276 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3277 | lemma XDp_fps_integral[simp]:"XDp 0 (fps_integral a c) = X * a" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3278 | by (simp add: fps_eq_iff fps_integral_def) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3279 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3280 | lemma F_minus_nat: | 
| 36409 | 3281 |   "F [- of_nat n] [- of_nat (n + m)] (c::'a::{field_char_0, field_inverse_zero}) $ k = (if k <= n then pochhammer (- of_nat n) k * c ^ k /
 | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3282 | (pochhammer (- of_nat (n + m)) k * of_nat (fact k)) else 0)" | 
| 36409 | 3283 |   "F [- of_nat m] [- of_nat (m + n)] (c::'a::{field_char_0, field_inverse_zero}) $ k = (if k <= m then pochhammer (- of_nat m) k * c ^ k /
 | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3284 | (pochhammer (- of_nat (m + n)) k * of_nat (fact k)) else 0)" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3285 | by (auto simp add: pochhammer_eq_0_iff) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3286 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3287 | lemma setsum_eq_if: "setsum f {(n::nat) .. m} = (if m < n then 0 else f n + setsum f {n+1 .. m})"
 | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3288 | apply simp | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3289 | apply (subst setsum_insert[symmetric]) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3290 | by (auto simp add: not_less setsum_head_Suc) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3291 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3292 | lemma pochhammer_rec_if: | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3293 | "pochhammer a n = (if n = 0 then 1 else a * pochhammer (a + 1) (n - 1))" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3294 | by (cases n, simp_all add: pochhammer_rec) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3295 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3296 | lemma XDp_foldr_nth[simp]: "foldr (%c r. XDp c o r) cs (%c. XDp c a) c0 $ n = | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3297 | foldr (%c r. (c + of_nat n) * r) cs (c0 + of_nat n) * a$n" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3298 | by (induct cs arbitrary: c0, auto simp add: algebra_simps) | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3299 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3300 | lemma genric_XDp_foldr_nth: | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3301 | assumes | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3302 | f: "ALL n c a. f c a $ n = (of_nat n + k c) * a$n" | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3303 | |
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3304 | shows "foldr (%c r. f c o r) cs (%c. g c a) c0 $ n = | 
| 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3305 | foldr (%c r. (k c + of_nat n) * r) cs (g c0 a $ n)" | 
| 36311 
ed3a87a7f977
epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
 haftmann parents: 
36309diff
changeset | 3306 | by (induct cs arbitrary: c0, auto simp add: algebra_simps f) | 
| 32160 
63686057cbe8
Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
 chaieb parents: 
32157diff
changeset | 3307 | |
| 29911 
c790a70a3d19
declare fps_nth as a typedef morphism; clean up instance proofs
 huffman parents: 
29906diff
changeset | 3308 | end |