src/HOL/Computational_Algebra/Formal_Power_Series.thy
author Manuel Eberl <eberlm@in.tum.de>
Sun, 20 Aug 2017 18:55:03 +0200
changeset 66466 aec5d9c88d69
parent 66373 56f8bfe1211c
child 66480 4b8d1df8933b
permissions -rw-r--r--
More lemmas for HOL-Analysis
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
65435
378175f44328 tuned headers;
wenzelm
parents: 65417
diff changeset
     1
(*  Title:      HOL/Computational_Algebra/Formal_Power_Series.thy
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
     2
    Author:     Amine Chaieb, University of Cambridge
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
     3
*)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
     4
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
     5
section \<open>A formalization of formal power series\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
     6
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
     7
theory Formal_Power_Series
65417
fc41a5650fb1 session containing computational algebra
haftmann
parents: 65398
diff changeset
     8
imports
fc41a5650fb1 session containing computational algebra
haftmann
parents: 65398
diff changeset
     9
  Complex_Main
fc41a5650fb1 session containing computational algebra
haftmann
parents: 65398
diff changeset
    10
  Euclidean_Algorithm
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    11
begin
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    12
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    13
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
    14
subsection \<open>The type of formal power series\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    15
49834
b27bbb021df1 discontinued obsolete typedef (open) syntax;
wenzelm
parents: 48757
diff changeset
    16
typedef 'a fps = "{f :: nat \<Rightarrow> 'a. True}"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    17
  morphisms fps_nth Abs_fps
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    18
  by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    19
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    20
notation fps_nth (infixl "$" 75)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    21
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    22
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: 39198
diff changeset
    23
  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: 29906
diff changeset
    24
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    25
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: 29906
diff changeset
    26
  by (simp add: expand_fps_eq)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    27
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    28
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: 29906
diff changeset
    29
  by (simp add: Abs_fps_inverse)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    30
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    31
text \<open>Definition of the basic elements 0 and 1 and the basic operations of addition,
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    32
  negation and multiplication.\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    33
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36350
diff changeset
    34
instantiation fps :: (zero) zero
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    35
begin
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    36
  definition fps_zero_def: "0 = Abs_fps (\<lambda>n. 0)"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    37
  instance ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    38
end
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    39
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    40
lemma fps_zero_nth [simp]: "0 $ n = 0"
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    41
  unfolding fps_zero_def by simp
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    42
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36350
diff changeset
    43
instantiation fps :: ("{one, zero}") one
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    44
begin
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    45
  definition fps_one_def: "1 = Abs_fps (\<lambda>n. if n = 0 then 1 else 0)"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    46
  instance ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    47
end
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    48
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
    49
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: 29906
diff changeset
    50
  unfolding fps_one_def by simp
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    51
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
    52
instantiation fps :: (plus) plus
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    53
begin
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    54
  definition fps_plus_def: "op + = (\<lambda>f g. Abs_fps (\<lambda>n. f $ n + g $ n))"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    55
  instance ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    56
end
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    57
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    58
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: 29906
diff changeset
    59
  unfolding fps_plus_def by simp
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    60
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    61
instantiation fps :: (minus) minus
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    62
begin
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    63
  definition fps_minus_def: "op - = (\<lambda>f g. Abs_fps (\<lambda>n. f $ n - g $ n))"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    64
  instance ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    65
end
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    66
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    67
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: 29906
diff changeset
    68
  unfolding fps_minus_def by simp
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    69
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    70
instantiation fps :: (uminus) uminus
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    71
begin
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    72
  definition fps_uminus_def: "uminus = (\<lambda>f. Abs_fps (\<lambda>n. - (f $ n)))"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    73
  instance ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    74
end
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    75
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    76
lemma fps_neg_nth [simp]: "(- f) $ n = - (f $ n)"
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    77
  unfolding fps_uminus_def by simp
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    78
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
    79
instantiation fps :: ("{comm_monoid_add, times}") times
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    80
begin
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    81
  definition fps_times_def: "op * = (\<lambda>f g. Abs_fps (\<lambda>n. \<Sum>i=0..n. f $ i * g $ (n - i)))"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
    82
  instance ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    83
end
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    84
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
    85
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: 29906
diff changeset
    86
  unfolding fps_times_def by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    87
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
    88
lemma fps_mult_nth_0 [simp]: "(f * g) $ 0 = f $ 0 * g $ 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
    89
  unfolding fps_times_def by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
    90
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
    91
declare atLeastAtMost_iff [presburger]
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
    92
declare Bex_def [presburger]
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
    93
declare Ball_def [presburger]
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
    94
29913
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
    95
lemma mult_delta_left:
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
    96
  fixes x y :: "'a::mult_zero"
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
    97
  shows "(if b then x else 0) * y = (if b then x * y else 0)"
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
    98
  by simp
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
    99
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
   100
lemma mult_delta_right:
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
   101
  fixes x y :: "'a::mult_zero"
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
   102
  shows "x * (if b then y else 0) = (if b then x * y else 0)"
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
   103
  by simp
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
   104
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   105
lemma cond_value_iff: "f (if b then x else y) = (if b then f x else f y)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   106
  by auto
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   107
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   108
lemma cond_application_beta: "(if b then f else g) x = (if b then f x else g x)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   109
  by auto
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   110
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   111
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   112
subsection \<open>Formal power series form a commutative ring with unity, if the range of sequences
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
   113
  they represent is a commutative ring with unity\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   114
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   115
instance fps :: (semigroup_add) semigroup_add
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   116
proof
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   117
  fix a b c :: "'a fps"
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   118
  show "a + b + c = a + (b + c)"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   119
    by (simp add: fps_ext add.assoc)
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   120
qed
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   121
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   122
instance fps :: (ab_semigroup_add) ab_semigroup_add
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   123
proof
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   124
  fix a b :: "'a fps"
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   125
  show "a + b = b + a"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   126
    by (simp add: fps_ext add.commute)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   127
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   128
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   129
lemma fps_mult_assoc_lemma:
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   130
  fixes k :: nat
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   131
    and f :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> 'a::comm_monoid_add"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   132
  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: 29906
diff changeset
   133
         (\<Sum>j=0..k. \<Sum>i=0..k - j. f j i (n - j - i))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   134
  by (induct k) (simp_all add: Suc_diff_le sum.distrib add.assoc)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   135
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   136
instance fps :: (semiring_0) semigroup_mult
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   137
proof
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   138
  fix a b c :: "'a fps"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   139
  show "(a * b) * c = a * (b * c)"
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   140
  proof (rule fps_ext)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   141
    fix n :: nat
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   142
    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: 29906
diff changeset
   143
          (\<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: 29906
diff changeset
   144
      by (rule fps_mult_assoc_lemma)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   145
    then show "((a * b) * c) $ n = (a * (b * c)) $ n"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   146
      by (simp add: fps_mult_nth sum_distrib_left sum_distrib_right mult.assoc)
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   147
  qed
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   148
qed
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   149
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   150
lemma fps_mult_commute_lemma:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
   151
  fixes n :: nat
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
   152
    and f :: "nat \<Rightarrow> nat \<Rightarrow> 'a::comm_monoid_add"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   153
  shows "(\<Sum>i=0..n. f i (n - i)) = (\<Sum>i=0..n. f (n - i) i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   154
  by (rule sum.reindex_bij_witness[where i="op - n" and j="op - n"]) auto
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   155
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   156
instance fps :: (comm_semiring_0) ab_semigroup_mult
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   157
proof
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   158
  fix a b :: "'a fps"
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   159
  show "a * b = b * a"
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   160
  proof (rule fps_ext)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   161
    fix n :: nat
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   162
    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: 29906
diff changeset
   163
      by (rule fps_mult_commute_lemma)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   164
    then show "(a * b) $ n = (b * a) $ n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   165
      by (simp add: fps_mult_nth mult.commute)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   166
  qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   167
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   168
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   169
instance fps :: (monoid_add) monoid_add
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   170
proof
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   171
  fix a :: "'a fps"
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   172
  show "0 + a = a" by (simp add: fps_ext)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   173
  show "a + 0 = a" by (simp add: fps_ext)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   174
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   175
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   176
instance fps :: (comm_monoid_add) comm_monoid_add
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   177
proof
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   178
  fix a :: "'a fps"
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   179
  show "0 + a = a" by (simp add: fps_ext)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   180
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   181
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   182
instance fps :: (semiring_1) monoid_mult
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   183
proof
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   184
  fix a :: "'a fps"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   185
  show "1 * a = a"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   186
    by (simp add: fps_ext fps_mult_nth mult_delta_left sum.delta)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   187
  show "a * 1 = a"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   188
    by (simp add: fps_ext fps_mult_nth mult_delta_right sum.delta')
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   189
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   190
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   191
instance fps :: (cancel_semigroup_add) cancel_semigroup_add
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   192
proof
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   193
  fix a b c :: "'a fps"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   194
  show "b = c" if "a + b = a + c"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   195
    using that by (simp add: expand_fps_eq)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   196
  show "b = c" if "b + a = c + a"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   197
    using that by (simp add: expand_fps_eq)
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   198
qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   199
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   200
instance fps :: (cancel_ab_semigroup_add) cancel_ab_semigroup_add
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   201
proof
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   202
  fix a b c :: "'a fps"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   203
  show "a + b - a = b"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   204
    by (simp add: expand_fps_eq)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   205
  show "a - b - c = a - (b + c)"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   206
    by (simp add: expand_fps_eq diff_diff_eq)
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   207
qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   208
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   209
instance fps :: (cancel_comm_monoid_add) cancel_comm_monoid_add ..
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   210
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   211
instance fps :: (group_add) group_add
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   212
proof
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   213
  fix a b :: "'a fps"
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   214
  show "- a + a = 0" by (simp add: fps_ext)
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53374
diff changeset
   215
  show "a + - b = a - b" by (simp add: fps_ext)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   216
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   217
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   218
instance fps :: (ab_group_add) ab_group_add
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   219
proof
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   220
  fix a b :: "'a fps"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   221
  show "- a + a = 0" by (simp add: fps_ext)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   222
  show "a - b = a + - b" by (simp add: fps_ext)
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   223
qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   224
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   225
instance fps :: (zero_neq_one) zero_neq_one
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 60567
diff changeset
   226
  by standard (simp add: expand_fps_eq)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   227
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   228
instance fps :: (semiring_0) semiring
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   229
proof
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   230
  fix a b c :: "'a fps"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   231
  show "(a + b) * c = a * c + b * c"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   232
    by (simp add: expand_fps_eq fps_mult_nth distrib_right sum.distrib)
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   233
  show "a * (b + c) = a * b + a * c"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   234
    by (simp add: expand_fps_eq fps_mult_nth distrib_left sum.distrib)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   235
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   236
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   237
instance fps :: (semiring_0) semiring_0
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   238
proof
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   239
  fix a :: "'a fps"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   240
  show "0 * a = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   241
    by (simp add: fps_ext fps_mult_nth)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   242
  show "a * 0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   243
    by (simp add: fps_ext fps_mult_nth)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   244
qed
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   245
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   246
instance fps :: (semiring_0_cancel) semiring_0_cancel ..
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   247
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
   248
instance fps :: (semiring_1) semiring_1 ..
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
   249
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   250
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
   251
subsection \<open>Selection of the nth power of the implicit variable in the infinite sum\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   252
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   253
lemma fps_square_nth: "(f^2) $ n = (\<Sum>k\<le>n. f $ k * f $ (n - k))"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   254
  by (simp add: power2_eq_square fps_mult_nth atLeast0AtMost)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   255
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   256
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: 29906
diff changeset
   257
  by (simp add: expand_fps_eq)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   258
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
   259
lemma fps_nonzero_nth_minimal: "f \<noteq> 0 \<longleftrightarrow> (\<exists>n. f $ n \<noteq> 0 \<and> (\<forall>m < n. f $ m = 0))"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   260
  (is "?lhs \<longleftrightarrow> ?rhs")
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   261
proof
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   262
  let ?n = "LEAST n. f $ n \<noteq> 0"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   263
  show ?rhs if ?lhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   264
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   265
    from that have "\<exists>n. f $ n \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   266
      by (simp add: fps_nonzero_nth)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   267
    then have "f $ ?n \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   268
      by (rule LeastI_ex)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   269
    moreover have "\<forall>m<?n. f $ m = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   270
      by (auto dest: not_less_Least)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   271
    ultimately have "f $ ?n \<noteq> 0 \<and> (\<forall>m<?n. f $ m = 0)" ..
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   272
    then show ?thesis ..
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   273
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   274
  show ?lhs if ?rhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   275
    using that by (auto simp add: expand_fps_eq)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   276
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   277
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   278
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: 29906
diff changeset
   279
  by (rule expand_fps_eq)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   280
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   281
lemma fps_sum_nth: "sum f S $ n = sum (\<lambda>k. (f k) $ n) S"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   282
proof (cases "finite S")
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   283
  case True
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   284
  then show ?thesis by (induct set: finite) auto
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   285
next
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   286
  case False
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   287
  then show ?thesis by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   288
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   289
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   290
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   291
subsection \<open>Injection of the basic ring elements and multiplication by scalars\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   292
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   293
definition "fps_const c = Abs_fps (\<lambda>n. if n = 0 then c else 0)"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   294
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   295
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: 29906
diff changeset
   296
  unfolding fps_const_def by simp
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   297
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   298
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: 29906
diff changeset
   299
  by (simp add: fps_ext)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   300
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   301
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: 29906
diff changeset
   302
  by (simp add: fps_ext)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   303
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   304
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: 29906
diff changeset
   305
  by (simp add: fps_ext)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   306
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   307
lemma fps_const_add [simp]: "fps_const (c::'a::monoid_add) + fps_const d = fps_const (c + d)"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   308
  by (simp add: fps_ext)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   309
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   310
lemma fps_const_sub [simp]: "fps_const (c::'a::group_add) - fps_const d = fps_const (c - d)"
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
   311
  by (simp add: fps_ext)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   312
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   313
lemma fps_const_mult[simp]: "fps_const (c::'a::ring) * fps_const d = fps_const (c * d)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   314
  by (simp add: fps_eq_iff fps_mult_nth sum.neutral)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   315
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   316
lemma fps_const_add_left: "fps_const (c::'a::monoid_add) + f =
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   317
    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: 29906
diff changeset
   318
  by (simp add: fps_ext)
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   319
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   320
lemma fps_const_add_right: "f + fps_const (c::'a::monoid_add) =
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   321
    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: 29906
diff changeset
   322
  by (simp add: fps_ext)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   323
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   324
lemma fps_const_mult_left: "fps_const (c::'a::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: 29906
diff changeset
   325
  unfolding fps_eq_iff fps_mult_nth
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   326
  by (simp add: fps_const_def mult_delta_left sum.delta)
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   327
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   328
lemma fps_const_mult_right: "f * fps_const (c::'a::semiring_0) = Abs_fps (\<lambda>n. f$n * c)"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   329
  unfolding fps_eq_iff fps_mult_nth
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   330
  by (simp add: fps_const_def mult_delta_right sum.delta')
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   331
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   332
lemma fps_mult_left_const_nth [simp]: "(fps_const (c::'a::semiring_1) * f)$n = c* f$n"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   333
  by (simp add: fps_mult_nth mult_delta_left sum.delta)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   334
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   335
lemma fps_mult_right_const_nth [simp]: "(f * fps_const (c::'a::semiring_1))$n = f$n * c"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   336
  by (simp add: fps_mult_nth mult_delta_right sum.delta')
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   337
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   338
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
   339
subsection \<open>Formal power series form an integral domain\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   340
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   341
instance fps :: (ring) ring ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   342
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   343
instance fps :: (ring_1) ring_1
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53374
diff changeset
   344
  by (intro_classes, auto simp add: distrib_right)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   345
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   346
instance fps :: (comm_ring_1) comm_ring_1
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53374
diff changeset
   347
  by (intro_classes, auto simp add: distrib_right)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   348
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   349
instance fps :: (ring_no_zero_divisors) ring_no_zero_divisors
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   350
proof
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   351
  fix a b :: "'a fps"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   352
  assume "a \<noteq> 0" and "b \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   353
  then obtain i j where i: "a $ i \<noteq> 0" "\<forall>k<i. a $ k = 0" and j: "b $ j \<noteq> 0" "\<forall>k<j. b $ k =0"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   354
    unfolding fps_nonzero_nth_minimal
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   355
    by blast+
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   356
  have "(a * b) $ (i + j) = (\<Sum>k=0..i+j. a $ k * b $ (i + j - k))"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   357
    by (rule fps_mult_nth)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   358
  also have "\<dots> = (a $ i * b $ (i + j - i)) + (\<Sum>k\<in>{0..i+j} - {i}. a $ k * b $ (i + j - k))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   359
    by (rule sum.remove) simp_all
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   360
  also have "(\<Sum>k\<in>{0..i+j}-{i}. a $ k * b $ (i + j - k)) = 0"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   361
  proof (rule sum.neutral [rule_format])
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   362
    fix k assume "k \<in> {0..i+j} - {i}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   363
    then have "k < i \<or> i+j-k < j"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   364
      by auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   365
    then show "a $ k * b $ (i + j - k) = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   366
      using i j by auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   367
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   368
  also have "a $ i * b $ (i + j - i) + 0 = a $ i * b $ j"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   369
    by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   370
  also have "a $ i * b $ j \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   371
    using i j by simp
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   372
  finally have "(a*b) $ (i+j) \<noteq> 0" .
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   373
  then show "a * b \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   374
    unfolding fps_nonzero_nth by blast
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   375
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   376
36311
ed3a87a7f977 epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
haftmann
parents: 36309
diff changeset
   377
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: 36309
diff changeset
   378
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   379
instance fps :: (idom) idom ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   380
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
   381
lemma numeral_fps_const: "numeral k = fps_const (numeral k)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   382
  by (induct k) (simp_all only: numeral.simps fps_const_1_eq_1
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
   383
    fps_const_add [symmetric])
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
   384
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
   385
lemma neg_numeral_fps_const:
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
   386
  "(- numeral k :: 'a :: ring_1 fps) = fps_const (- numeral k)"
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
   387
  by (simp add: numeral_fps_const)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
   388
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   389
lemma fps_numeral_nth: "numeral n $ i = (if i = 0 then numeral n else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   390
  by (simp add: numeral_fps_const)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   391
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   392
lemma fps_numeral_nth_0 [simp]: "numeral n $ 0 = numeral n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   393
  by (simp add: numeral_fps_const)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   394
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   395
lemma fps_of_nat: "fps_const (of_nat c) = of_nat c"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   396
  by (induction c) (simp_all add: fps_const_add [symmetric] del: fps_const_add)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   397
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
   398
lemma numeral_neq_fps_zero [simp]: "(numeral f :: 'a :: field_char_0 fps) \<noteq> 0"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
   399
proof
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
   400
  assume "numeral f = (0 :: 'a fps)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
   401
  from arg_cong[of _ _ "\<lambda>F. F $ 0", OF this] show False by simp
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
   402
qed 
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   403
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   404
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   405
subsection \<open>The eXtractor series X\<close>
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   406
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   407
lemma minus_one_power_iff: "(- (1::'a::comm_ring_1)) ^ n = (if even n then 1 else - 1)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   408
  by (induct n) auto
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   409
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   410
definition "X = Abs_fps (\<lambda>n. if n = 1 then 1 else 0)"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   411
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   412
lemma X_mult_nth [simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   413
  "(X * (f :: 'a::semiring_1 fps)) $n = (if n = 0 then 0 else f $ (n - 1))"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   414
proof (cases "n = 0")
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   415
  case False
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   416
  have "(X * f) $n = (\<Sum>i = 0..n. X $ i * f $ (n - i))"
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   417
    by (simp add: fps_mult_nth)
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   418
  also have "\<dots> = f $ (n - 1)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   419
    using False by (simp add: X_def mult_delta_left sum.delta)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   420
  finally show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   421
    using False by simp
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   422
next
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
   423
  case True
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   424
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   425
    by (simp add: fps_mult_nth X_def)
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   426
qed
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   427
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   428
lemma X_mult_right_nth[simp]:
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   429
  "((a::'a::semiring_1 fps) * X) $ n = (if n = 0 then 0 else a $ (n - 1))"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   430
proof -
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   431
  have "(a * X) $ n = (\<Sum>i = 0..n. a $ i * (if n - i = Suc 0 then 1 else 0))"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   432
    by (simp add: fps_times_def X_def)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   433
  also have "\<dots> = (\<Sum>i = 0..n. if i = n - 1 then if n = 0 then 0 else a $ i else 0)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   434
    by (intro sum.cong) auto
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   435
  also have "\<dots> = (if n = 0 then 0 else a $ (n - 1))" by (simp add: sum.delta)
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   436
  finally show ?thesis .
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   437
qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   438
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   439
lemma fps_mult_X_commute: "X * (a :: 'a :: semiring_1 fps) = a * X" 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
   440
  by (simp add: fps_eq_iff)
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   441
66466
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
   442
lemma X_power_iff: "X ^ n = Abs_fps (\<lambda>m. if m = n then 1 else 0)"
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
   443
  by (induction n) (auto simp: fps_eq_iff)
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   444
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   445
lemma X_nth[simp]: "X$n = (if n = 1 then 1 else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   446
  by (simp add: X_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   447
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   448
lemma X_power_nth[simp]: "(X^k) $n = (if n = k then 1 else 0::'a::comm_ring_1)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   449
  by (simp add: X_power_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   450
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   451
lemma X_power_mult_nth: "(X^k * (f :: 'a::comm_ring_1 fps)) $n = (if n < k then 0 else f $ (n - k))"
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   452
  apply (induct k arbitrary: n)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   453
  apply simp
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   454
  unfolding power_Suc mult.assoc
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   455
  apply (case_tac n)
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   456
  apply auto
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   457
  done
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   458
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   459
lemma X_power_mult_right_nth:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   460
    "((f :: 'a::comm_ring_1 fps) * X^k) $n = (if n < k then 0 else f $ (n - k))"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   461
  by (metis X_power_mult_nth mult.commute)
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   462
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   463
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   464
lemma X_neq_fps_const [simp]: "(X :: 'a :: zero_neq_one fps) \<noteq> fps_const c"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   465
proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   466
  assume "(X::'a fps) = fps_const (c::'a)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   467
  hence "X$1 = (fps_const (c::'a))$1" by (simp only:)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   468
  thus False by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   469
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   470
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   471
lemma X_neq_zero [simp]: "(X :: 'a :: zero_neq_one fps) \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   472
  by (simp only: fps_const_0_eq_0[symmetric] X_neq_fps_const) simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   473
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   474
lemma X_neq_one [simp]: "(X :: 'a :: zero_neq_one fps) \<noteq> 1"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   475
  by (simp only: fps_const_1_eq_1[symmetric] X_neq_fps_const) simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   476
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   477
lemma X_neq_numeral [simp]: "(X :: 'a :: {semiring_1,zero_neq_one} fps) \<noteq> numeral c"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   478
  by (simp only: numeral_fps_const X_neq_fps_const) simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   479
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   480
lemma X_pow_eq_X_pow_iff [simp]:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   481
  "(X :: ('a :: {comm_ring_1}) fps) ^ m = X ^ n \<longleftrightarrow> m = n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   482
proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   483
  assume "(X :: 'a fps) ^ m = X ^ n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   484
  hence "(X :: 'a fps) ^ m $ m = X ^ n $ m" by (simp only:)
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
   485
  thus "m = n" by (simp split: if_split_asm)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   486
qed simp_all
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   487
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   488
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   489
subsection \<open>Subdegrees\<close>
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   490
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   491
definition subdegree :: "('a::zero) fps \<Rightarrow> nat" where
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   492
  "subdegree f = (if f = 0 then 0 else LEAST n. f$n \<noteq> 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   493
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   494
lemma subdegreeI:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   495
  assumes "f $ d \<noteq> 0" and "\<And>i. i < d \<Longrightarrow> f $ i = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   496
  shows   "subdegree f = d"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   497
proof-
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   498
  from assms(1) have "f \<noteq> 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   499
  moreover from assms(1) have "(LEAST i. f $ i \<noteq> 0) = d"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   500
  proof (rule Least_equality)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   501
    fix e assume "f $ e \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   502
    with assms(2) have "\<not>(e < d)" by blast
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   503
    thus "e \<ge> d" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   504
  qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   505
  ultimately show ?thesis unfolding subdegree_def by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   506
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   507
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   508
lemma nth_subdegree_nonzero [simp,intro]: "f \<noteq> 0 \<Longrightarrow> f $ subdegree f \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   509
proof-
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   510
  assume "f \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   511
  hence "subdegree f = (LEAST n. f $ n \<noteq> 0)" by (simp add: subdegree_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   512
  also from \<open>f \<noteq> 0\<close> have "\<exists>n. f$n \<noteq> 0" using fps_nonzero_nth by blast
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   513
  from LeastI_ex[OF this] have "f $ (LEAST n. f $ n \<noteq> 0) \<noteq> 0" .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   514
  finally show ?thesis .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   515
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   516
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   517
lemma nth_less_subdegree_zero [dest]: "n < subdegree f \<Longrightarrow> f $ n = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   518
proof (cases "f = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   519
  assume "f \<noteq> 0" and less: "n < subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   520
  note less
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   521
  also from \<open>f \<noteq> 0\<close> have "subdegree f = (LEAST n. f $ n \<noteq> 0)" by (simp add: subdegree_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   522
  finally show "f $ n = 0" using not_less_Least by blast
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   523
qed simp_all
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   524
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   525
lemma subdegree_geI:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   526
  assumes "f \<noteq> 0" "\<And>i. i < n \<Longrightarrow> f$i = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   527
  shows   "subdegree f \<ge> n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   528
proof (rule ccontr)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   529
  assume "\<not>(subdegree f \<ge> n)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   530
  with assms(2) have "f $ subdegree f = 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   531
  moreover from assms(1) have "f $ subdegree f \<noteq> 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   532
  ultimately show False by contradiction
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   533
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   534
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   535
lemma subdegree_greaterI:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   536
  assumes "f \<noteq> 0" "\<And>i. i \<le> n \<Longrightarrow> f$i = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   537
  shows   "subdegree f > n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   538
proof (rule ccontr)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   539
  assume "\<not>(subdegree f > n)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   540
  with assms(2) have "f $ subdegree f = 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   541
  moreover from assms(1) have "f $ subdegree f \<noteq> 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   542
  ultimately show False by contradiction
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   543
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   544
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   545
lemma subdegree_leI:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   546
  "f $ n \<noteq> 0 \<Longrightarrow> subdegree f \<le> n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   547
  by (rule leI) auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   548
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   549
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   550
lemma subdegree_0 [simp]: "subdegree 0 = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   551
  by (simp add: subdegree_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   552
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   553
lemma subdegree_1 [simp]: "subdegree (1 :: ('a :: zero_neq_one) fps) = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   554
  by (auto intro!: subdegreeI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   555
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   556
lemma subdegree_X [simp]: "subdegree (X :: ('a :: zero_neq_one) fps) = 1"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   557
  by (auto intro!: subdegreeI simp: X_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   558
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   559
lemma subdegree_fps_const [simp]: "subdegree (fps_const c) = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   560
  by (cases "c = 0") (auto intro!: subdegreeI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   561
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   562
lemma subdegree_numeral [simp]: "subdegree (numeral n) = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   563
  by (simp add: numeral_fps_const)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   564
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   565
lemma subdegree_eq_0_iff: "subdegree f = 0 \<longleftrightarrow> f = 0 \<or> f $ 0 \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   566
proof (cases "f = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   567
  assume "f \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   568
  thus ?thesis
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   569
    using nth_subdegree_nonzero[OF \<open>f \<noteq> 0\<close>] by (fastforce intro!: subdegreeI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   570
qed simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   571
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   572
lemma subdegree_eq_0 [simp]: "f $ 0 \<noteq> 0 \<Longrightarrow> subdegree f = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   573
  by (simp add: subdegree_eq_0_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   574
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   575
lemma nth_subdegree_mult [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   576
  fixes f g :: "('a :: {mult_zero,comm_monoid_add}) fps"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   577
  shows "(f * g) $ (subdegree f + subdegree g) = f $ subdegree f * g $ subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   578
proof-
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   579
  let ?n = "subdegree f + subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   580
  have "(f * g) $ ?n = (\<Sum>i=0..?n. f$i * g$(?n-i))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   581
    by (simp add: fps_mult_nth)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   582
  also have "... = (\<Sum>i=0..?n. if i = subdegree f then f$i * g$(?n-i) else 0)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   583
  proof (intro sum.cong)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   584
    fix x assume x: "x \<in> {0..?n}"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   585
    hence "x = subdegree f \<or> x < subdegree f \<or> ?n - x < subdegree g" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   586
    thus "f $ x * g $ (?n - x) = (if x = subdegree f then f $ x * g $ (?n - x) else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   587
      by (elim disjE conjE) auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   588
  qed auto
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   589
  also have "... = f $ subdegree f * g $ subdegree g" by (simp add: sum.delta)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   590
  finally show ?thesis .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   591
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   592
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   593
lemma subdegree_mult [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   594
  assumes "f \<noteq> 0" "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   595
  shows "subdegree ((f :: ('a :: {ring_no_zero_divisors}) fps) * g) = subdegree f + subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   596
proof (rule subdegreeI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   597
  let ?n = "subdegree f + subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   598
  have "(f * g) $ ?n = (\<Sum>i=0..?n. f$i * g$(?n-i))" by (simp add: fps_mult_nth)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   599
  also have "... = (\<Sum>i=0..?n. if i = subdegree f then f$i * g$(?n-i) else 0)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   600
  proof (intro sum.cong)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   601
    fix x assume x: "x \<in> {0..?n}"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   602
    hence "x = subdegree f \<or> x < subdegree f \<or> ?n - x < subdegree g" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   603
    thus "f $ x * g $ (?n - x) = (if x = subdegree f then f $ x * g $ (?n - x) else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   604
      by (elim disjE conjE) auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   605
  qed auto
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   606
  also have "... = f $ subdegree f * g $ subdegree g" by (simp add: sum.delta)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   607
  also from assms have "... \<noteq> 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   608
  finally show "(f * g) $ (subdegree f + subdegree g) \<noteq> 0" .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   609
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   610
  fix m assume m: "m < subdegree f + subdegree g"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   611
  have "(f * g) $ m = (\<Sum>i=0..m. f$i * g$(m-i))" by (simp add: fps_mult_nth)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   612
  also have "... = (\<Sum>i=0..m. 0)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   613
  proof (rule sum.cong)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   614
    fix i assume "i \<in> {0..m}"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   615
    with m have "i < subdegree f \<or> m - i < subdegree g" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   616
    thus "f$i * g$(m-i) = 0" by (elim disjE) auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   617
  qed auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   618
  finally show "(f * g) $ m = 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   619
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   620
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   621
lemma subdegree_power [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   622
  "subdegree ((f :: ('a :: ring_1_no_zero_divisors) fps) ^ n) = n * subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   623
  by (cases "f = 0"; induction n) simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   624
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   625
lemma subdegree_uminus [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   626
  "subdegree (-(f::('a::group_add) fps)) = subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   627
  by (simp add: subdegree_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   628
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   629
lemma subdegree_minus_commute [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   630
  "subdegree (f-(g::('a::group_add) fps)) = subdegree (g - f)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   631
proof -
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   632
  have "f - g = -(g - f)" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   633
  also have "subdegree ... = subdegree (g - f)" by (simp only: subdegree_uminus)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   634
  finally show ?thesis .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   635
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   636
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   637
lemma subdegree_add_ge:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   638
  assumes "f \<noteq> -(g :: ('a :: {group_add}) fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   639
  shows   "subdegree (f + g) \<ge> min (subdegree f) (subdegree g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   640
proof (rule subdegree_geI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   641
  from assms show "f + g \<noteq> 0" by (subst (asm) eq_neg_iff_add_eq_0)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   642
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   643
  fix i assume "i < min (subdegree f) (subdegree g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   644
  hence "f $ i = 0" and "g $ i = 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   645
  thus "(f + g) $ i = 0" by force
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   646
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   647
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   648
lemma subdegree_add_eq1:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   649
  assumes "f \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   650
  assumes "subdegree f < subdegree (g :: ('a :: {group_add}) fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   651
  shows   "subdegree (f + g) = subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   652
proof (rule antisym[OF subdegree_leI])
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   653
  from assms show "subdegree (f + g) \<ge> subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   654
    by (intro order.trans[OF min.boundedI subdegree_add_ge]) auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   655
  from assms have "f $ subdegree f \<noteq> 0" "g $ subdegree f = 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   656
  thus "(f + g) $ subdegree f \<noteq> 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   657
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   658
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   659
lemma subdegree_add_eq2:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   660
  assumes "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   661
  assumes "subdegree g < subdegree (f :: ('a :: {ab_group_add}) fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   662
  shows   "subdegree (f + g) = subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   663
  using subdegree_add_eq1[OF assms] by (simp add: add.commute)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   664
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   665
lemma subdegree_diff_eq1:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   666
  assumes "f \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   667
  assumes "subdegree f < subdegree (g :: ('a :: {ab_group_add}) fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   668
  shows   "subdegree (f - g) = subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   669
  using subdegree_add_eq1[of f "-g"] assms by (simp add: add.commute)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   670
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   671
lemma subdegree_diff_eq2:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   672
  assumes "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   673
  assumes "subdegree g < subdegree (f :: ('a :: {ab_group_add}) fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   674
  shows   "subdegree (f - g) = subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   675
  using subdegree_add_eq2[of "-g" f] assms by (simp add: add.commute)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   676
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   677
lemma subdegree_diff_ge [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   678
  assumes "f \<noteq> (g :: ('a :: {group_add}) fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   679
  shows   "subdegree (f - g) \<ge> min (subdegree f) (subdegree g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   680
  using assms subdegree_add_ge[of f "-g"] by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   681
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   682
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   683
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   684
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   685
subsection \<open>Shifting and slicing\<close>
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   686
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   687
definition fps_shift :: "nat \<Rightarrow> 'a fps \<Rightarrow> 'a fps" where
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   688
  "fps_shift n f = Abs_fps (\<lambda>i. f $ (i + n))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   689
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   690
lemma fps_shift_nth [simp]: "fps_shift n f $ i = f $ (i + n)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   691
  by (simp add: fps_shift_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   692
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   693
lemma fps_shift_0 [simp]: "fps_shift 0 f = f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   694
  by (intro fps_ext) (simp add: fps_shift_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   695
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   696
lemma fps_shift_zero [simp]: "fps_shift n 0 = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   697
  by (intro fps_ext) (simp add: fps_shift_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   698
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   699
lemma fps_shift_one: "fps_shift n 1 = (if n = 0 then 1 else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   700
  by (intro fps_ext) (simp add: fps_shift_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   701
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   702
lemma fps_shift_fps_const: "fps_shift n (fps_const c) = (if n = 0 then fps_const c else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   703
  by (intro fps_ext) (simp add: fps_shift_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   704
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   705
lemma fps_shift_numeral: "fps_shift n (numeral c) = (if n = 0 then numeral c else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   706
  by (simp add: numeral_fps_const fps_shift_fps_const)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   707
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   708
lemma fps_shift_X_power [simp]:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   709
  "n \<le> m \<Longrightarrow> fps_shift n (X ^ m) = (X ^ (m - n) ::'a::comm_ring_1 fps)"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   710
  by (intro fps_ext) (auto simp: fps_shift_def )
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   711
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   712
lemma fps_shift_times_X_power:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   713
  "n \<le> subdegree f \<Longrightarrow> fps_shift n f * X ^ n = (f :: 'a :: comm_ring_1 fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   714
  by (intro fps_ext) (auto simp: X_power_mult_right_nth nth_less_subdegree_zero)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   715
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   716
lemma fps_shift_times_X_power' [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   717
  "fps_shift n (f * X^n) = (f :: 'a :: comm_ring_1 fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   718
  by (intro fps_ext) (auto simp: X_power_mult_right_nth nth_less_subdegree_zero)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   719
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   720
lemma fps_shift_times_X_power'':
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   721
  "m \<le> n \<Longrightarrow> fps_shift n (f * X^m) = fps_shift (n - m) (f :: 'a :: comm_ring_1 fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   722
  by (intro fps_ext) (auto simp: X_power_mult_right_nth nth_less_subdegree_zero)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   723
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   724
lemma fps_shift_subdegree [simp]:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   725
  "n \<le> subdegree f \<Longrightarrow> subdegree (fps_shift n f) = subdegree (f :: 'a :: comm_ring_1 fps) - n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   726
  by (cases "f = 0") (force intro: nth_less_subdegree_zero subdegreeI)+
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   727
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   728
lemma subdegree_decompose:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   729
  "f = fps_shift (subdegree f) f * X ^ subdegree (f :: ('a :: comm_ring_1) fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   730
  by (rule fps_ext) (auto simp: X_power_mult_right_nth)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   731
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   732
lemma subdegree_decompose':
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   733
  "n \<le> subdegree (f :: ('a :: comm_ring_1) fps) \<Longrightarrow> f = fps_shift n f * X^n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   734
  by (rule fps_ext) (auto simp: X_power_mult_right_nth intro!: nth_less_subdegree_zero)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   735
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   736
lemma fps_shift_fps_shift:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   737
  "fps_shift (m + n) f = fps_shift m (fps_shift n f)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   738
  by (rule fps_ext) (simp add: add_ac)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   739
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   740
lemma fps_shift_add:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   741
  "fps_shift n (f + g) = fps_shift n f + fps_shift n g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   742
  by (simp add: fps_eq_iff)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   743
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   744
lemma fps_shift_mult:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   745
  assumes "n \<le> subdegree (g :: 'b :: {comm_ring_1} fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   746
  shows   "fps_shift n (h*g) = h * fps_shift n g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   747
proof -
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   748
  from assms have "g = fps_shift n g * X^n" by (rule subdegree_decompose')
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   749
  also have "h * ... = (h * fps_shift n g) * X^n" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   750
  also have "fps_shift n ... = h * fps_shift n g" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   751
  finally show ?thesis .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   752
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   753
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   754
lemma fps_shift_mult_right:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   755
  assumes "n \<le> subdegree (g :: 'b :: {comm_ring_1} fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   756
  shows   "fps_shift n (g*h) = h * fps_shift n g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   757
  by (subst mult.commute, subst fps_shift_mult) (simp_all add: assms)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   758
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   759
lemma nth_subdegree_zero_iff [simp]: "f $ subdegree f = 0 \<longleftrightarrow> f = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   760
  by (cases "f = 0") auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   761
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   762
lemma fps_shift_subdegree_zero_iff [simp]:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   763
  "fps_shift (subdegree f) f = 0 \<longleftrightarrow> f = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   764
  by (subst (1) nth_subdegree_zero_iff[symmetric], cases "f = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   765
     (simp_all del: nth_subdegree_zero_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   766
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   767
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   768
definition "fps_cutoff n f = Abs_fps (\<lambda>i. if i < n then f$i else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   769
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   770
lemma fps_cutoff_nth [simp]: "fps_cutoff n f $ i = (if i < n then f$i else 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   771
  unfolding fps_cutoff_def by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   772
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   773
lemma fps_cutoff_zero_iff: "fps_cutoff n f = 0 \<longleftrightarrow> (f = 0 \<or> n \<le> subdegree f)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   774
proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   775
  assume A: "fps_cutoff n f = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   776
  thus "f = 0 \<or> n \<le> subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   777
  proof (cases "f = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   778
    assume "f \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   779
    with A have "n \<le> subdegree f"
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
   780
      by (intro subdegree_geI) (auto simp: fps_eq_iff split: if_split_asm)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   781
    thus ?thesis ..
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   782
  qed simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   783
qed (auto simp: fps_eq_iff intro: nth_less_subdegree_zero)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   784
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   785
lemma fps_cutoff_0 [simp]: "fps_cutoff 0 f = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   786
  by (simp add: fps_eq_iff)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   787
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   788
lemma fps_cutoff_zero [simp]: "fps_cutoff n 0 = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   789
  by (simp add: fps_eq_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   790
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   791
lemma fps_cutoff_one: "fps_cutoff n 1 = (if n = 0 then 0 else 1)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   792
  by (simp add: fps_eq_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   793
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   794
lemma fps_cutoff_fps_const: "fps_cutoff n (fps_const c) = (if n = 0 then 0 else fps_const c)"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   795
  by (simp add: fps_eq_iff)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   796
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   797
lemma fps_cutoff_numeral: "fps_cutoff n (numeral c) = (if n = 0 then 0 else numeral c)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   798
  by (simp add: numeral_fps_const fps_cutoff_fps_const)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   799
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   800
lemma fps_shift_cutoff:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   801
  "fps_shift n (f :: ('a :: comm_ring_1) fps) * X^n + fps_cutoff n f = f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   802
  by (simp add: fps_eq_iff X_power_mult_right_nth)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   803
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   804
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   805
subsection \<open>Formal Power series form a metric space\<close>
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   806
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   807
instantiation fps :: (comm_ring_1) dist
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   808
begin
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   809
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   810
definition
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   811
  dist_fps_def: "dist (a :: 'a fps) b = (if a = b then 0 else inverse (2 ^ subdegree (a - b)))"
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   812
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   813
lemma dist_fps_ge0: "dist (a :: 'a fps) b \<ge> 0"
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   814
  by (simp add: dist_fps_def)
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   815
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   816
lemma dist_fps_sym: "dist (a :: 'a fps) b = dist b a"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   817
  by (simp add: dist_fps_def)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   818
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   819
instance ..
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
   820
30746
d6915b738bd9 fps made instance of number_ring
chaieb
parents: 30488
diff changeset
   821
end
d6915b738bd9 fps made instance of number_ring
chaieb
parents: 30488
diff changeset
   822
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   823
instantiation fps :: (comm_ring_1) metric_space
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   824
begin
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   825
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61969
diff changeset
   826
definition uniformity_fps_def [code del]:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61969
diff changeset
   827
  "(uniformity :: ('a fps \<times> 'a fps) filter) = (INF e:{0 <..}. principal {(x, y). dist x y < e})"
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61969
diff changeset
   828
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61969
diff changeset
   829
definition open_fps_def' [code del]:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61969
diff changeset
   830
  "open (U :: 'a fps set) \<longleftrightarrow> (\<forall>x\<in>U. eventually (\<lambda>(x', y). x' = x \<longrightarrow> y \<in> U) uniformity)"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   831
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   832
instance
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   833
proof
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   834
  show th: "dist a b = 0 \<longleftrightarrow> a = b" for a b :: "'a fps"
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
   835
    by (simp add: dist_fps_def split: if_split_asm)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   836
  then have th'[simp]: "dist a a = 0" for a :: "'a fps" by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   837
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   838
  fix a b c :: "'a fps"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   839
  consider "a = b" | "c = a \<or> c = b" | "a \<noteq> b" "a \<noteq> c" "b \<noteq> c" by blast
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   840
  then show "dist a b \<le> dist a c + dist b c"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   841
  proof cases
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   842
    case 1
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   843
    then show ?thesis by (simp add: dist_fps_def)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   844
  next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   845
    case 2
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   846
    then show ?thesis
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   847
      by (cases "c = a") (simp_all add: th dist_fps_sym)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   848
  next
60567
19c277ea65ae tuned proofs -- less digits;
wenzelm
parents: 60558
diff changeset
   849
    case neq: 3
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   850
    have False if "dist a b > dist a c + dist b c"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   851
    proof -
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   852
      let ?n = "subdegree (a - b)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   853
      from neq have "dist a b > 0" "dist b c > 0" and "dist a c > 0" by (simp_all add: dist_fps_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   854
      with that have "dist a b > dist a c" and "dist a b > dist b c" by simp_all
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   855
      with neq have "?n < subdegree (a - c)" and "?n < subdegree (b - c)"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   856
        by (simp_all add: dist_fps_def field_simps)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   857
      hence "(a - c) $ ?n = 0" and "(b - c) $ ?n = 0"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   858
        by (simp_all only: nth_less_subdegree_zero)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   859
      hence "(a - b) $ ?n = 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   860
      moreover from neq have "(a - b) $ ?n \<noteq> 0" by (intro nth_subdegree_nonzero) simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   861
      ultimately show False by contradiction
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   862
    qed
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   863
    thus ?thesis by (auto simp add: not_le[symmetric])
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   864
  qed
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61969
diff changeset
   865
qed (rule open_fps_def' uniformity_fps_def)+
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   866
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   867
end
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   868
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   869
declare uniformity_Abort[where 'a="'a :: comm_ring_1 fps", code]
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   870
66373
56f8bfe1211c Removed unnecessary constant 'ball' from Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 66311
diff changeset
   871
lemma open_fps_def: "open (S :: 'a::comm_ring_1 fps set) = (\<forall>a \<in> S. \<exists>r. r >0 \<and> {y. dist y a < r} \<subseteq> S)"
56f8bfe1211c Removed unnecessary constant 'ball' from Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 66311
diff changeset
   872
  unfolding open_dist subset_eq by simp
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   873
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   874
text \<open>The infinite sums and justification of the notation in textbooks.\<close>
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   875
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   876
lemma reals_power_lt_ex:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   877
  fixes x y :: real
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   878
  assumes xp: "x > 0"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   879
    and y1: "y > 1"
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   880
  shows "\<exists>k>0. (1/y)^k < x"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   881
proof -
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   882
  have yp: "y > 0"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   883
    using y1 by simp
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   884
  from reals_Archimedean2[of "max 0 (- log y x) + 1"]
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   885
  obtain k :: nat where k: "real k > max 0 (- log y x) + 1"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   886
    by blast
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   887
  from k have kp: "k > 0"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   888
    by simp
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   889
  from k have "real k > - log y x"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   890
    by simp
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   891
  then have "ln y * real k > - ln x"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   892
    unfolding log_def
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   893
    using ln_gt_zero_iff[OF yp] y1
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   894
    by (simp add: minus_divide_left field_simps del: minus_divide_left[symmetric])
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   895
  then have "ln y * real k + ln x > 0"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   896
    by simp
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   897
  then have "exp (real k * ln y + ln x) > exp 0"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   898
    by (simp add: ac_simps)
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   899
  then have "y ^ k * x > 1"
65578
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65435
diff changeset
   900
    unfolding exp_zero exp_add exp_of_nat_mult exp_ln [OF xp] exp_ln [OF yp]
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   901
    by simp
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   902
  then have "x > (1 / y)^k" using yp
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
   903
    by (simp add: field_simps)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   904
  then show ?thesis
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   905
    using kp by blast
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   906
qed
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   907
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   908
lemma fps_sum_rep_nth: "(sum (\<lambda>i. fps_const(a$i)*X^i) {0..m})$n =
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   909
    (if n \<le> m then a$n else 0::'a::comm_ring_1)"
66089
def95e0bc529 Some new material. SIMPRULE STATUS for sum/prod.delta rules!
paulson <lp15@cam.ac.uk>
parents: 65578
diff changeset
   910
  by (auto simp add: fps_sum_nth cond_value_iff cong del: if_weak_cong)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   911
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   912
lemma fps_notation: "(\<lambda>n. sum (\<lambda>i. fps_const(a$i) * X^i) {0..n}) \<longlonglongrightarrow> a"
61969
e01015e49041 more symbols;
wenzelm
parents: 61943
diff changeset
   913
  (is "?s \<longlonglongrightarrow> a")
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   914
proof -
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   915
  have "\<exists>n0. \<forall>n \<ge> n0. dist (?s n) a < r" if "r > 0" for r
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   916
  proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   917
    obtain n0 where n0: "(1/2)^n0 < r" "n0 > 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   918
      using reals_power_lt_ex[OF \<open>r > 0\<close>, of 2] by auto
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   919
    show ?thesis
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   920
    proof -
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   921
      have "dist (?s n) a < r" if nn0: "n \<ge> n0" for n
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   922
      proof -
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   923
        from that have thnn0: "(1/2)^n \<le> (1/2 :: real)^n0"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   924
          by (simp add: divide_simps)
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   925
        show ?thesis
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   926
        proof (cases "?s n = a")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   927
          case True
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   928
          then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   929
            unfolding dist_eq_0_iff[of "?s n" a, symmetric]
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   930
            using \<open>r > 0\<close> by (simp del: dist_eq_0_iff)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   931
        next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   932
          case False
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   933
          from False have dth: "dist (?s n) a = (1/2)^subdegree (?s n - a)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   934
            by (simp add: dist_fps_def field_simps)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   935
          from False have kn: "subdegree (?s n - a) > n"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   936
            by (intro subdegree_greaterI) (simp_all add: fps_sum_rep_nth)
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   937
          then have "dist (?s n) a < (1/2)^n"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   938
            by (simp add: field_simps dist_fps_def)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   939
          also have "\<dots> \<le> (1/2)^n0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   940
            using nn0 by (simp add: divide_simps)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   941
          also have "\<dots> < r"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   942
            using n0 by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   943
          finally show ?thesis .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   944
        qed
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   945
      qed
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   946
      then show ?thesis by blast
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   947
    qed
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   948
  qed
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   949
  then show ?thesis
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   950
    unfolding lim_sequentially by blast
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   951
qed
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
   952
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   953
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   954
subsection \<open>Inverses of formal power series\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   955
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   956
declare sum.cong[fundef_cong]
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   957
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
   958
instantiation fps :: ("{comm_monoid_add,inverse,times,uminus}") inverse
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   959
begin
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   960
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   961
fun natfun_inverse:: "'a fps \<Rightarrow> nat \<Rightarrow> 'a"
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   962
where
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   963
  "natfun_inverse f 0 = inverse (f$0)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
   964
| "natfun_inverse f n = - inverse (f$0) * sum (\<lambda>i. f$i * natfun_inverse f (n - i)) {1..n}"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   965
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   966
definition fps_inverse_def: "inverse f = (if f $ 0 = 0 then 0 else Abs_fps (natfun_inverse f))"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   967
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   968
definition fps_divide_def:
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   969
  "f div g = (if g = 0 then 0 else
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   970
     let n = subdegree g; h = fps_shift n g
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
   971
     in  fps_shift n (f * inverse h))"
36311
ed3a87a7f977 epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
haftmann
parents: 36309
diff changeset
   972
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   973
instance ..
36311
ed3a87a7f977 epheremal replacement of field_simps by field_eq_simps; dropped old division_by_zero instance
haftmann
parents: 36309
diff changeset
   974
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   975
end
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   976
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   977
lemma fps_inverse_zero [simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   978
  "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: 29906
diff changeset
   979
  by (simp add: fps_ext fps_inverse_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   980
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   981
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: 29906
diff changeset
   982
  apply (auto simp add: expand_fps_eq fps_inverse_def)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   983
  apply (case_tac n)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   984
  apply auto
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   985
  done
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   986
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   987
lemma inverse_mult_eq_1 [intro]:
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   988
  assumes f0: "f$0 \<noteq> (0::'a::field)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   989
  shows "inverse f * f = 1"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
   990
proof -
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   991
  have c: "inverse f * f = f * inverse f"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   992
    by (simp add: mult.commute)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
   993
  from f0 have ifn: "\<And>n. inverse f $ n = natfun_inverse f n"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   994
    by (simp add: fps_inverse_def)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
   995
  from f0 have th0: "(inverse f * f) $ 0 = 1"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
   996
    by (simp add: fps_mult_nth fps_inverse_def)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   997
  have "(inverse f * f)$n = 0" if np: "n > 0" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
   998
  proof -
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
   999
    from np have eq: "{0..n} = {0} \<union> {1 .. n}"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1000
      by auto
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1001
    have d: "{0} \<inter> {1 .. n} = {}"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1002
      by auto
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1003
    from f0 np have th0: "- (inverse f $ n) =
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1004
      (sum (\<lambda>i. f$i * natfun_inverse f (n - i)) {1..n}) / (f$0)"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1005
      by (cases n) (simp_all add: divide_inverse fps_inverse_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1006
    from th0[symmetric, unfolded nonzero_divide_eq_eq[OF f0]]
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1007
    have th1: "sum (\<lambda>i. f$i * natfun_inverse f (n - i)) {1..n} = - (f$0) * (inverse f)$n"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  1008
      by (simp add: field_simps)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1009
    have "(f * inverse f) $ n = (\<Sum>i = 0..n. f $i * natfun_inverse f (n - i))"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1010
      unfolding fps_mult_nth ifn ..
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1011
    also have "\<dots> = f$0 * natfun_inverse f n + (\<Sum>i = 1..n. f$i * natfun_inverse f (n-i))"
46757
ad878aff9c15 removing finiteness goals
bulwahn
parents: 46131
diff changeset
  1012
      by (simp add: eq)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1013
    also have "\<dots> = 0"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1014
      unfolding th1 ifn by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1015
    finally show ?thesis unfolding c .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1016
  qed
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1017
  with th0 show ?thesis
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1018
    by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1019
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1020
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1021
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: 29906
diff changeset
  1022
  by (simp add: fps_inverse_def nonzero_imp_inverse_nonzero)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1023
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1024
lemma fps_inverse_nth_0 [simp]: "inverse f $ 0 = inverse (f $ 0 :: 'a :: division_ring)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1025
  by (simp add: fps_inverse_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1026
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1027
lemma fps_inverse_eq_0_iff[simp]: "inverse f = (0:: ('a::division_ring) fps) \<longleftrightarrow> f $ 0 = 0"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1028
proof
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1029
  assume A: "inverse f = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1030
  have "0 = inverse f $ 0" by (subst A) simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1031
  thus "f $ 0 = 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1032
qed (simp add: fps_inverse_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1033
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1034
lemma fps_inverse_idempotent[intro, simp]:
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1035
  assumes f0: "f$0 \<noteq> (0::'a::field)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1036
  shows "inverse (inverse f) = f"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1037
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1038
  from f0 have if0: "inverse f $ 0 \<noteq> 0" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1039
  from inverse_mult_eq_1[OF f0] inverse_mult_eq_1[OF if0]
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1040
  have "inverse f * f = inverse f * inverse (inverse f)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1041
    by (simp add: ac_simps)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1042
  then show ?thesis
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1043
    using f0 unfolding mult_cancel_left by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1044
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1045
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1046
lemma fps_inverse_unique:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1047
  assumes fg: "(f :: 'a :: field fps) * g = 1"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1048
  shows   "inverse f = g"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1049
proof -
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1050
  have f0: "f $ 0 \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1051
  proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1052
    assume "f $ 0 = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1053
    hence "0 = (f * g) $ 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1054
    also from fg have "(f * g) $ 0 = 1" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1055
    finally show False by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1056
  qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1057
  from inverse_mult_eq_1[OF this] fg
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1058
  have th0: "inverse f * f = g * f"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1059
    by (simp add: ac_simps)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1060
  then show ?thesis
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1061
    using f0
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1062
    unfolding mult_cancel_right
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
  1063
    by (auto simp add: expand_fps_eq)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1064
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1065
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1066
lemma fps_inverse_eq_0: "f$0 = 0 \<Longrightarrow> inverse (f :: 'a :: division_ring fps) = 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1067
  by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1068
  
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1069
lemma sum_zero_lemma:
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1070
  fixes n::nat
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1071
  assumes "0 < n"
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1072
  shows "(\<Sum>i = 0..n. if n = i then 1 else if n - i = 1 then - 1 else 0) = (0::'a::field)"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1073
proof -
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1074
  let ?f = "\<lambda>i. if n = i then 1 else if n - i = 1 then - 1 else 0"
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1075
  let ?g = "\<lambda>i. if i = n then 1 else if i = n - 1 then - 1 else 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1076
  let ?h = "\<lambda>i. if i=n - 1 then - 1 else 0"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1077
  have th1: "sum ?f {0..n} = sum ?g {0..n}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1078
    by (rule sum.cong) auto
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1079
  have th2: "sum ?g {0..n - 1} = sum ?h {0..n - 1}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1080
    apply (rule sum.cong)
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1081
    using assms
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1082
    apply auto
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1083
    done
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1084
  have eq: "{0 .. n} = {0.. n - 1} \<union> {n}"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1085
    by auto
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1086
  from assms have d: "{0.. n - 1} \<inter> {n} = {}"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1087
    by auto
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1088
  have f: "finite {0.. n - 1}" "finite {n}"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1089
    by auto
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1090
  show ?thesis
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1091
    unfolding th1
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1092
    apply (simp add: sum.union_disjoint[OF f d, unfolded eq[symmetric]] del: One_nat_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1093
    unfolding th2
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1094
    apply (simp add: sum.delta)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1095
    done
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1096
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1097
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1098
lemma fps_inverse_mult: "inverse (f * g :: 'a::field fps) = inverse f * inverse g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1099
proof (cases "f$0 = 0 \<or> g$0 = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1100
  assume "\<not>(f$0 = 0 \<or> g$0 = 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1101
  hence [simp]: "f$0 \<noteq> 0" "g$0 \<noteq> 0" by simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1102
  show ?thesis
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1103
  proof (rule fps_inverse_unique)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1104
    have "f * g * (inverse f * inverse g) = (inverse f * f) * (inverse g * g)" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1105
    also have "... = 1" by (subst (1 2) inverse_mult_eq_1) simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1106
    finally show "f * g * (inverse f * inverse g) = 1" .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1107
  qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1108
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1109
  assume A: "f$0 = 0 \<or> g$0 = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1110
  hence "inverse (f * g) = 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1111
  also from A have "... = inverse f * inverse g" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1112
  finally show "inverse (f * g) = inverse f * inverse g" .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1113
qed
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1114
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1115
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1116
lemma fps_inverse_gp: "inverse (Abs_fps(\<lambda>n. (1::'a::field))) =
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1117
    Abs_fps (\<lambda>n. if n= 0 then 1 else if n=1 then - 1 else 0)"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1118
  apply (rule fps_inverse_unique)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1119
  apply (simp_all add: fps_eq_iff fps_mult_nth sum_zero_lemma)
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1120
  done
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  1121
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1122
lemma subdegree_inverse [simp]: "subdegree (inverse (f::'a::field fps)) = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1123
proof (cases "f$0 = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1124
  assume nz: "f$0 \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1125
  hence "subdegree (inverse f) + subdegree f = subdegree (inverse f * f)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1126
    by (subst subdegree_mult) auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1127
  also from nz have "subdegree f = 0" by (simp add: subdegree_eq_0_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1128
  also from nz have "inverse f * f = 1" by (rule inverse_mult_eq_1)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1129
  finally show "subdegree (inverse f) = 0" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1130
qed (simp_all add: fps_inverse_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1131
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1132
lemma fps_is_unit_iff [simp]: "(f :: 'a :: field fps) dvd 1 \<longleftrightarrow> f $ 0 \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1133
proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1134
  assume "f dvd 1"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1135
  then obtain g where "1 = f * g" by (elim dvdE)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1136
  from this[symmetric] have "(f*g) $ 0 = 1" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1137
  thus "f $ 0 \<noteq> 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1138
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1139
  assume A: "f $ 0 \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1140
  thus "f dvd 1" by (simp add: inverse_mult_eq_1[OF A, symmetric])
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1141
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1142
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1143
lemma subdegree_eq_0' [simp]: "(f :: 'a :: field fps) dvd 1 \<Longrightarrow> subdegree f = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1144
  by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1145
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1146
lemma fps_unit_dvd [simp]: "(f $ 0 :: 'a :: field) \<noteq> 0 \<Longrightarrow> f dvd g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1147
  by (rule dvd_trans, subst fps_is_unit_iff) simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1148
64592
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1149
instantiation fps :: (field) normalization_semidom
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1150
begin
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1151
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1152
definition fps_unit_factor_def [simp]:
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1153
  "unit_factor f = fps_shift (subdegree f) f"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1154
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1155
definition fps_normalize_def [simp]:
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1156
  "normalize f = (if f = 0 then 0 else X ^ subdegree f)"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1157
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1158
instance proof
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1159
  fix f :: "'a fps"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1160
  show "unit_factor f * normalize f = f"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1161
    by (simp add: fps_shift_times_X_power)
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1162
next
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1163
  fix f g :: "'a fps"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1164
  show "unit_factor (f * g) = unit_factor f * unit_factor g"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1165
  proof (cases "f = 0 \<or> g = 0")
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1166
    assume "\<not>(f = 0 \<or> g = 0)"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1167
    thus "unit_factor (f * g) = unit_factor f * unit_factor g"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1168
    unfolding fps_unit_factor_def
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1169
      by (auto simp: fps_shift_fps_shift fps_shift_mult fps_shift_mult_right)
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1170
  qed auto
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1171
next
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1172
  fix f g :: "'a fps"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1173
  assume "g \<noteq> 0"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1174
  then have "f * (fps_shift (subdegree g) g * inverse (fps_shift (subdegree g) g)) = f"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1175
    by (metis add_cancel_right_left fps_shift_nth inverse_mult_eq_1 mult.commute mult_cancel_left2 nth_subdegree_nonzero)
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1176
  then have "fps_shift (subdegree g) (g * (f * inverse (fps_shift (subdegree g) g))) = f"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1177
    by (simp add: fps_shift_mult_right mult.commute)
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1178
  with \<open>g \<noteq> 0\<close> show "f * g / g = f"
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1179
    by (simp add: fps_divide_def Let_def ac_simps)
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1180
qed (auto simp add: fps_divide_def Let_def)
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1181
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1182
end
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1183
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1184
instantiation fps :: (field) ring_div
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1185
begin
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1186
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1187
definition fps_mod_def:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1188
  "f mod g = (if g = 0 then f else
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1189
     let n = subdegree g; h = fps_shift n g
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1190
     in  fps_cutoff n (f * inverse h) * h)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1191
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1192
lemma fps_mod_eq_zero:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1193
  assumes "g \<noteq> 0" and "subdegree f \<ge> subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1194
  shows   "f mod g = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1195
  using assms by (cases "f = 0") (auto simp: fps_cutoff_zero_iff fps_mod_def Let_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1196
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1197
lemma fps_times_divide_eq:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1198
  assumes "g \<noteq> 0" and "subdegree f \<ge> subdegree (g :: 'a fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1199
  shows   "f div g * g = f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1200
proof (cases "f = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1201
  assume nz: "f \<noteq> 0"
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1202
  define n where "n = subdegree g"
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1203
  define h where "h = fps_shift n g"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1204
  from assms have [simp]: "h $ 0 \<noteq> 0" unfolding h_def by (simp add: n_def)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1205
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1206
  from assms nz have "f div g * g = fps_shift n (f * inverse h) * g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1207
    by (simp add: fps_divide_def Let_def h_def n_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1208
  also have "... = fps_shift n (f * inverse h) * X^n * h" unfolding h_def n_def
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1209
    by (subst subdegree_decompose[of g]) simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1210
  also have "fps_shift n (f * inverse h) * X^n = f * inverse h"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1211
    by (rule fps_shift_times_X_power) (simp_all add: nz assms n_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1212
  also have "... * h = f * (inverse h * h)" by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1213
  also have "inverse h * h = 1" by (rule inverse_mult_eq_1) simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1214
  finally show ?thesis by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1215
qed (simp_all add: fps_divide_def Let_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1216
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1217
lemma
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1218
  assumes "g$0 \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1219
  shows   fps_divide_unit: "f div g = f * inverse g" and fps_mod_unit [simp]: "f mod g = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1220
proof -
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1221
  from assms have [simp]: "subdegree g = 0" by (simp add: subdegree_eq_0_iff)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1222
  from assms show "f div g = f * inverse g"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1223
    by (auto simp: fps_divide_def Let_def subdegree_eq_0_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1224
  from assms show "f mod g = 0" by (intro fps_mod_eq_zero) auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1225
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1226
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1227
context
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1228
begin
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1229
private lemma fps_divide_cancel_aux1:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1230
  assumes "h$0 \<noteq> (0 :: 'a :: field)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1231
  shows   "(h * f) div (h * g) = f div g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1232
proof (cases "g = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1233
  assume "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1234
  from assms have "h \<noteq> 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1235
  note nz [simp] = \<open>g \<noteq> 0\<close> \<open>h \<noteq> 0\<close>
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1236
  from assms have [simp]: "subdegree h = 0" by (simp add: subdegree_eq_0_iff)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1237
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1238
  have "(h * f) div (h * g) =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1239
          fps_shift (subdegree g) (h * f * inverse (fps_shift (subdegree g) (h*g)))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1240
    by (simp add: fps_divide_def Let_def)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1241
  also have "h * f * inverse (fps_shift (subdegree g) (h*g)) =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1242
               (inverse h * h) * f * inverse (fps_shift (subdegree g) g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1243
    by (subst fps_shift_mult) (simp_all add: algebra_simps fps_inverse_mult)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1244
  also from assms have "inverse h * h = 1" by (rule inverse_mult_eq_1)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1245
  finally show "(h * f) div (h * g) = f div g" by (simp_all add: fps_divide_def Let_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1246
qed (simp_all add: fps_divide_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1247
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1248
private lemma fps_divide_cancel_aux2:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1249
  "(f * X^m) div (g * X^m) = f div (g :: 'a :: field fps)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1250
proof (cases "g = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1251
  assume [simp]: "g \<noteq> 0"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1252
  have "(f * X^m) div (g * X^m) =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1253
          fps_shift (subdegree g + m) (f*inverse (fps_shift (subdegree g + m) (g*X^m))*X^m)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1254
    by (simp add: fps_divide_def Let_def algebra_simps)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1255
  also have "... = f div g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1256
    by (simp add: fps_shift_times_X_power'' fps_divide_def Let_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1257
  finally show ?thesis .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1258
qed (simp_all add: fps_divide_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1259
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1260
instance proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1261
  fix f g :: "'a fps"
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1262
  define n where "n = subdegree g"
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1263
  define h where "h = fps_shift n g"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1264
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1265
  show "f div g * g + f mod g = f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1266
  proof (cases "g = 0 \<or> f = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1267
    assume "\<not>(g = 0 \<or> f = 0)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1268
    hence nz [simp]: "f \<noteq> 0" "g \<noteq> 0" by simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1269
    show ?thesis
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1270
    proof (rule disjE[OF le_less_linear])
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1271
      assume "subdegree f \<ge> subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1272
      with nz show ?thesis by (simp add: fps_mod_eq_zero fps_times_divide_eq)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1273
    next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1274
      assume "subdegree f < subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1275
      have g_decomp: "g = h * X^n" unfolding h_def n_def by (rule subdegree_decompose)
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1276
      have "f div g * g + f mod g =
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1277
              fps_shift n (f * inverse h) * g + fps_cutoff n (f * inverse h) * h"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1278
        by (simp add: fps_mod_def fps_divide_def Let_def n_def h_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1279
      also have "... = h * (fps_shift n (f * inverse h) * X^n + fps_cutoff n (f * inverse h))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1280
        by (subst g_decomp) (simp add: algebra_simps)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1281
      also have "... = f * (inverse h * h)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1282
        by (subst fps_shift_cutoff) simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1283
      also have "inverse h * h = 1" by (rule inverse_mult_eq_1) (simp add: h_def n_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1284
      finally show ?thesis by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1285
    qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1286
  qed (auto simp: fps_mod_def fps_divide_def Let_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1287
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1288
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1289
  fix f g h :: "'a fps"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1290
  assume "h \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1291
  show "(h * f) div (h * g) = f div g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1292
  proof -
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1293
    define m where "m = subdegree h"
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1294
    define h' where "h' = fps_shift m h"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1295
    have h_decomp: "h = h' * X ^ m" unfolding h'_def m_def by (rule subdegree_decompose)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1296
    from \<open>h \<noteq> 0\<close> have [simp]: "h'$0 \<noteq> 0" by (simp add: h'_def m_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1297
    have "(h * f) div (h * g) = (h' * f * X^m) div (h' * g * X^m)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1298
      by (simp add: h_decomp algebra_simps)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1299
    also have "... = f div g" by (simp add: fps_divide_cancel_aux1 fps_divide_cancel_aux2)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1300
    finally show ?thesis .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1301
  qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1302
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1303
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1304
  fix f g h :: "'a fps"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1305
  assume [simp]: "h \<noteq> 0"
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
  1306
  define n h' where dfs: "n = subdegree h" "h' = fps_shift n h"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1307
  have "(f + g * h) div h = fps_shift n (f * inverse h') + fps_shift n (g * (h * inverse h'))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1308
    by (simp add: fps_divide_def Let_def dfs[symmetric] algebra_simps fps_shift_add)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1309
  also have "h * inverse h' = (inverse h' * h') * X^n"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1310
    by (subst subdegree_decompose) (simp_all add: dfs)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1311
  also have "... = X^n" by (subst inverse_mult_eq_1) (simp_all add: dfs)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1312
  also have "fps_shift n (g * X^n) = g" by simp
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1313
  also have "fps_shift n (f * inverse h') = f div h"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1314
    by (simp add: fps_divide_def Let_def dfs)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1315
  finally show "(f + g * h) div h = g + f div h" by simp
64592
7759f1766189 more fine-grained type class hierarchy for div and mod
haftmann
parents: 64272
diff changeset
  1316
qed
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1317
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1318
end
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1319
end
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1320
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1321
lemma subdegree_mod:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1322
  assumes "f \<noteq> 0" "subdegree f < subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1323
  shows   "subdegree (f mod g) = subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1324
proof (cases "f div g * g = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1325
  assume "f div g * g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1326
  hence [simp]: "f div g \<noteq> 0" "g \<noteq> 0" by auto
64242
93c6f0da5c70 more standardized theorem names for facts involving the div and mod identity
haftmann
parents: 64240
diff changeset
  1327
  from div_mult_mod_eq[of f g] have "f mod g = f - f div g * g" by (simp add: algebra_simps)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1328
  also from assms have "subdegree ... = subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1329
    by (intro subdegree_diff_eq1) simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1330
  finally show ?thesis .
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1331
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1332
  assume zero: "f div g * g = 0"
64242
93c6f0da5c70 more standardized theorem names for facts involving the div and mod identity
haftmann
parents: 64240
diff changeset
  1333
  from div_mult_mod_eq[of f g] have "f mod g = f - f div g * g" by (simp add: algebra_simps)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1334
  also note zero
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1335
  finally show ?thesis by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1336
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1337
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1338
lemma fps_divide_nth_0 [simp]: "g $ 0 \<noteq> 0 \<Longrightarrow> (f div g) $ 0 = f $ 0 / (g $ 0 :: _ :: field)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1339
  by (simp add: fps_divide_unit divide_inverse)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1340
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1341
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1342
lemma dvd_imp_subdegree_le:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1343
  "(f :: 'a :: idom fps) dvd g \<Longrightarrow> g \<noteq> 0 \<Longrightarrow> subdegree f \<le> subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1344
  by (auto elim: dvdE)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1345
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1346
lemma fps_dvd_iff:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1347
  assumes "(f :: 'a :: field fps) \<noteq> 0" "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1348
  shows   "f dvd g \<longleftrightarrow> subdegree f \<le> subdegree g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1349
proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1350
  assume "subdegree f \<le> subdegree g"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1351
  with assms have "g mod f = 0"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1352
    by (simp add: fps_mod_def Let_def fps_cutoff_zero_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1353
  thus "f dvd g" by (simp add: dvd_eq_mod_eq_0)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1354
qed (simp add: assms dvd_imp_subdegree_le)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1355
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1356
lemma fps_shift_altdef:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1357
  "fps_shift n f = (f :: 'a :: field fps) div X^n"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1358
  by (simp add: fps_divide_def)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1359
  
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1360
lemma fps_div_X_power_nth: "((f :: 'a :: field fps) div X^n) $ k = f $ (k + n)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1361
  by (simp add: fps_shift_altdef [symmetric])
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1362
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1363
lemma fps_div_X_nth: "((f :: 'a :: field fps) div X) $ k = f $ Suc k"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1364
  using fps_div_X_power_nth[of f 1] by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1365
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1366
lemma fps_const_inverse: "inverse (fps_const (a::'a::field)) = fps_const (inverse a)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1367
  by (cases "a \<noteq> 0", rule fps_inverse_unique) (auto simp: fps_eq_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1368
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1369
lemma fps_const_divide: "fps_const (x :: _ :: field) / fps_const y = fps_const (x / y)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1370
  by (cases "y = 0") (simp_all add: fps_divide_unit fps_const_inverse divide_inverse)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1371
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1372
lemma inverse_fps_numeral:
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1373
  "inverse (numeral n :: ('a :: field_char_0) fps) = fps_const (inverse (numeral n))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1374
  by (intro fps_inverse_unique fps_ext) (simp_all add: fps_numeral_nth)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1375
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1376
lemma fps_numeral_divide_divide:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1377
  "x / numeral b / numeral c = (x / numeral (b * c) :: 'a :: field fps)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1378
  by (cases "numeral b = (0::'a)"; cases "numeral c = (0::'a)")
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1379
      (simp_all add: fps_divide_unit fps_inverse_mult [symmetric] numeral_fps_const numeral_mult 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1380
                del: numeral_mult [symmetric])
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1381
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1382
lemma fps_numeral_mult_divide:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1383
  "numeral b * x / numeral c = (numeral b / numeral c * x :: 'a :: field fps)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1384
  by (cases "numeral c = (0::'a)") (simp_all add: fps_divide_unit numeral_fps_const)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1385
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1386
lemmas fps_numeral_simps = 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1387
  fps_numeral_divide_divide fps_numeral_mult_divide inverse_fps_numeral neg_numeral_fps_const
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1388
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1389
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1390
subsection \<open>Formal power series form a Euclidean ring\<close>
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1391
64784
5cb5e7ecb284 reshaped euclidean semiring into hierarchy of euclidean semirings culminating in uniquely determined euclidean divion
haftmann
parents: 64592
diff changeset
  1392
instantiation fps :: (field) euclidean_ring_cancel
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1393
begin
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1394
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1395
definition fps_euclidean_size_def:
62422
4aa35fd6c152 Tuned Euclidean rings
eberlm
parents: 62390
diff changeset
  1396
  "euclidean_size f = (if f = 0 then 0 else 2 ^ subdegree f)"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1397
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1398
instance proof
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1399
  fix f g :: "'a fps" assume [simp]: "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1400
  show "euclidean_size f \<le> euclidean_size (f * g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1401
    by (cases "f = 0") (auto simp: fps_euclidean_size_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1402
  show "euclidean_size (f mod g) < euclidean_size g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1403
    apply (cases "f = 0", simp add: fps_euclidean_size_def)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1404
    apply (rule disjE[OF le_less_linear[of "subdegree g" "subdegree f"]])
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1405
    apply (simp_all add: fps_mod_eq_zero fps_euclidean_size_def subdegree_mod)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1406
    done
62422
4aa35fd6c152 Tuned Euclidean rings
eberlm
parents: 62390
diff changeset
  1407
qed (simp_all add: fps_euclidean_size_def)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1408
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1409
end
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1410
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1411
instantiation fps :: (field) euclidean_ring_gcd
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1412
begin
64786
340db65fd2c1 reworked to provide auxiliary operations Euclidean_Algorithm.* to instantiate gcd etc. for euclidean rings
haftmann
parents: 64784
diff changeset
  1413
definition fps_gcd_def: "(gcd :: 'a fps \<Rightarrow> _) = Euclidean_Algorithm.gcd"
340db65fd2c1 reworked to provide auxiliary operations Euclidean_Algorithm.* to instantiate gcd etc. for euclidean rings
haftmann
parents: 64784
diff changeset
  1414
definition fps_lcm_def: "(lcm :: 'a fps \<Rightarrow> _) = Euclidean_Algorithm.lcm"
340db65fd2c1 reworked to provide auxiliary operations Euclidean_Algorithm.* to instantiate gcd etc. for euclidean rings
haftmann
parents: 64784
diff changeset
  1415
definition fps_Gcd_def: "(Gcd :: 'a fps set \<Rightarrow> _) = Euclidean_Algorithm.Gcd"
340db65fd2c1 reworked to provide auxiliary operations Euclidean_Algorithm.* to instantiate gcd etc. for euclidean rings
haftmann
parents: 64784
diff changeset
  1416
definition fps_Lcm_def: "(Lcm :: 'a fps set \<Rightarrow> _) = Euclidean_Algorithm.Lcm"
62422
4aa35fd6c152 Tuned Euclidean rings
eberlm
parents: 62390
diff changeset
  1417
instance by standard (simp_all add: fps_gcd_def fps_lcm_def fps_Gcd_def fps_Lcm_def)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1418
end
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1419
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1420
lemma fps_gcd:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1421
  assumes [simp]: "f \<noteq> 0" "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1422
  shows   "gcd f g = X ^ min (subdegree f) (subdegree g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1423
proof -
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1424
  let ?m = "min (subdegree f) (subdegree g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1425
  show "gcd f g = X ^ ?m"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1426
  proof (rule sym, rule gcdI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1427
    fix d assume "d dvd f" "d dvd g"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1428
    thus "d dvd X ^ ?m" by (cases "d = 0") (auto simp: fps_dvd_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1429
  qed (simp_all add: fps_dvd_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1430
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1431
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1432
lemma fps_gcd_altdef: "gcd (f :: 'a :: field fps) g =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1433
  (if f = 0 \<and> g = 0 then 0 else
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1434
   if f = 0 then X ^ subdegree g else
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1435
   if g = 0 then X ^ subdegree f else
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1436
     X ^ min (subdegree f) (subdegree g))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1437
  by (simp add: fps_gcd)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1438
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1439
lemma fps_lcm:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1440
  assumes [simp]: "f \<noteq> 0" "g \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1441
  shows   "lcm f g = X ^ max (subdegree f) (subdegree g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1442
proof -
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1443
  let ?m = "max (subdegree f) (subdegree g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1444
  show "lcm f g = X ^ ?m"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1445
  proof (rule sym, rule lcmI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1446
    fix d assume "f dvd d" "g dvd d"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1447
    thus "X ^ ?m dvd d" by (cases "d = 0") (auto simp: fps_dvd_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1448
  qed (simp_all add: fps_dvd_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1449
qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1450
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1451
lemma fps_lcm_altdef: "lcm (f :: 'a :: field fps) g =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1452
  (if f = 0 \<or> g = 0 then 0 else X ^ max (subdegree f) (subdegree g))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1453
  by (simp add: fps_lcm)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1454
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1455
lemma fps_Gcd:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1456
  assumes "A - {0} \<noteq> {}"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1457
  shows   "Gcd A = X ^ (INF f:A-{0}. subdegree f)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1458
proof (rule sym, rule GcdI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1459
  fix f assume "f \<in> A"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1460
  thus "X ^ (INF f:A - {0}. subdegree f) dvd f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1461
    by (cases "f = 0") (auto simp: fps_dvd_iff intro!: cINF_lower)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1462
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1463
  fix d assume d: "\<And>f. f \<in> A \<Longrightarrow> d dvd f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1464
  from assms obtain f where "f \<in> A - {0}" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1465
  with d[of f] have [simp]: "d \<noteq> 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1466
  from d assms have "subdegree d \<le> (INF f:A-{0}. subdegree f)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1467
    by (intro cINF_greatest) (auto simp: fps_dvd_iff[symmetric])
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1468
  with d assms show "d dvd X ^ (INF f:A-{0}. subdegree f)" by (simp add: fps_dvd_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1469
qed simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1470
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1471
lemma fps_Gcd_altdef: "Gcd (A :: 'a :: field fps set) =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1472
  (if A \<subseteq> {0} then 0 else X ^ (INF f:A-{0}. subdegree f))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1473
  using fps_Gcd by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1474
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1475
lemma fps_Lcm:
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1476
  assumes "A \<noteq> {}" "0 \<notin> A" "bdd_above (subdegree`A)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1477
  shows   "Lcm A = X ^ (SUP f:A. subdegree f)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1478
proof (rule sym, rule LcmI)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1479
  fix f assume "f \<in> A"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1480
  moreover from assms(3) have "bdd_above (subdegree ` A)" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1481
  ultimately show "f dvd X ^ (SUP f:A. subdegree f)" using assms(2)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1482
    by (cases "f = 0") (auto simp: fps_dvd_iff intro!: cSUP_upper)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1483
next
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1484
  fix d assume d: "\<And>f. f \<in> A \<Longrightarrow> f dvd d"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1485
  from assms obtain f where f: "f \<in> A" "f \<noteq> 0" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1486
  show "X ^ (SUP f:A. subdegree f) dvd d"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1487
  proof (cases "d = 0")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1488
    assume "d \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1489
    moreover from d have "\<And>f. f \<in> A \<Longrightarrow> f \<noteq> 0 \<Longrightarrow> f dvd d" by blast
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1490
    ultimately have "subdegree d \<ge> (SUP f:A. subdegree f)" using assms
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1491
      by (intro cSUP_least) (auto simp: fps_dvd_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1492
    with \<open>d \<noteq> 0\<close> show ?thesis by (simp add: fps_dvd_iff)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1493
  qed simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1494
qed simp_all
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1495
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1496
lemma fps_Lcm_altdef:
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  1497
  "Lcm (A :: 'a :: field fps set) =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1498
     (if 0 \<in> A \<or> \<not>bdd_above (subdegree`A) then 0 else
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1499
      if A = {} then 1 else X ^ (SUP f:A. subdegree f))"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1500
proof (cases "bdd_above (subdegree`A)")
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1501
  assume unbounded: "\<not>bdd_above (subdegree`A)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1502
  have "Lcm A = 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1503
  proof (rule ccontr)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1504
    assume "Lcm A \<noteq> 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1505
    from unbounded obtain f where f: "f \<in> A" "subdegree (Lcm A) < subdegree f"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1506
      unfolding bdd_above_def by (auto simp: not_le)
63539
70d4d9e5707b tuned proofs -- avoid improper use of "this";
wenzelm
parents: 63417
diff changeset
  1507
    moreover from f and \<open>Lcm A \<noteq> 0\<close> have "subdegree f \<le> subdegree (Lcm A)"
62422
4aa35fd6c152 Tuned Euclidean rings
eberlm
parents: 62390
diff changeset
  1508
      by (intro dvd_imp_subdegree_le dvd_Lcm) simp_all
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1509
    ultimately show False by simp
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1510
  qed
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1511
  with unbounded show ?thesis by simp
62422
4aa35fd6c152 Tuned Euclidean rings
eberlm
parents: 62390
diff changeset
  1512
qed (simp_all add: fps_Lcm Lcm_eq_0_I)
4aa35fd6c152 Tuned Euclidean rings
eberlm
parents: 62390
diff changeset
  1513
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1514
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1515
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  1516
subsection \<open>Formal Derivatives, and the MacLaurin theorem around 0\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1517
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1518
definition "fps_deriv f = Abs_fps (\<lambda>n. of_nat (n + 1) * f $ (n + 1))"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1519
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1520
lemma fps_deriv_nth[simp]: "fps_deriv f $ n = of_nat (n +1) * f $ (n + 1)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1521
  by (simp add: fps_deriv_def)
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1522
65398
eberlm <eberlm@in.tum.de>
parents: 65396
diff changeset
  1523
lemma fps_0th_higher_deriv: 
eberlm <eberlm@in.tum.de>
parents: 65396
diff changeset
  1524
  "(fps_deriv ^^ n) f $ 0 = (fact n * f $ n :: 'a :: {comm_ring_1, semiring_char_0})"
eberlm <eberlm@in.tum.de>
parents: 65396
diff changeset
  1525
  by (induction n arbitrary: f) (simp_all del: funpow.simps add: funpow_Suc_right algebra_simps)
eberlm <eberlm@in.tum.de>
parents: 65396
diff changeset
  1526
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1527
lemma fps_deriv_linear[simp]:
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1528
  "fps_deriv (fps_const (a::'a::comm_semiring_1) * f + fps_const b * g) =
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1529
    fps_const a * fps_deriv f + fps_const b * fps_deriv g"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  1530
  unfolding fps_eq_iff fps_add_nth  fps_const_mult_left fps_deriv_nth by (simp add: field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1531
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1532
lemma fps_deriv_mult[simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1533
  fixes f :: "'a::comm_ring_1 fps"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1534
  shows "fps_deriv (f * g) = f * fps_deriv g + fps_deriv f * g"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1535
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1536
  let ?D = "fps_deriv"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  1537
  have "(f * ?D g + ?D f * g) $ n = ?D (f*g) $ n" for n
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  1538
  proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1539
    let ?Zn = "{0 ..n}"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1540
    let ?Zn1 = "{0 .. n + 1}"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1541
    let ?g = "\<lambda>i. of_nat (i+1) * g $ (i+1) * f $ (n - i) +
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1542
        of_nat (i+1)* f $ (i+1) * g $ (n - i)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1543
    let ?h = "\<lambda>i. of_nat i * g $ i * f $ ((n+1) - i) +
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1544
        of_nat i* f $ i * g $ ((n + 1) - i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1545
    have s0: "sum (\<lambda>i. of_nat i * f $ i * g $ (n + 1 - i)) ?Zn1 =
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1546
      sum (\<lambda>i. of_nat (n + 1 - i) * f $ (n + 1 - i) * g $ i) ?Zn1"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1547
       by (rule sum.reindex_bij_witness[where i="op - (n + 1)" and j="op - (n + 1)"]) auto
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1548
    have s1: "sum (\<lambda>i. f $ i * g $ (n + 1 - i)) ?Zn1 =
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1549
      sum (\<lambda>i. f $ (n + 1 - i) * g $ i) ?Zn1"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1550
       by (rule sum.reindex_bij_witness[where i="op - (n + 1)" and j="op - (n + 1)"]) auto
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1551
    have "(f * ?D g + ?D f * g)$n = (?D g * f + ?D f * g)$n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  1552
      by (simp only: mult.commute)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1553
    also have "\<dots> = (\<Sum>i = 0..n. ?g i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1554
      by (simp add: fps_mult_nth sum.distrib[symmetric])
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1555
    also have "\<dots> = sum ?h {0..n+1}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1556
      by (rule sum.reindex_bij_witness_not_neutral
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56480
diff changeset
  1557
            [where S'="{}" and T'="{0}" and j="Suc" and i="\<lambda>i. i - 1"]) auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1558
    also have "\<dots> = (fps_deriv (f * g)) $ n"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1559
      apply (simp only: fps_deriv_nth fps_mult_nth sum.distrib)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1560
      unfolding s0 s1
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1561
      unfolding sum.distrib[symmetric] sum_distrib_left
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1562
      apply (rule sum.cong)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1563
      apply (auto simp add: of_nat_diff field_simps)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1564
      done
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  1565
    finally show ?thesis .
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  1566
  qed
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  1567
  then show ?thesis
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  1568
    unfolding fps_eq_iff by auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1569
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1570
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
  1571
lemma fps_deriv_X[simp]: "fps_deriv X = 1"
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
  1572
  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: 31790
diff changeset
  1573
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1574
lemma fps_deriv_neg[simp]:
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1575
  "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: 29906
diff changeset
  1576
  by (simp add: fps_eq_iff fps_deriv_def)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1577
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1578
lemma fps_deriv_add[simp]:
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1579
  "fps_deriv ((f:: 'a::comm_ring_1 fps) + g) = fps_deriv f + fps_deriv g"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1580
  using fps_deriv_linear[of 1 f 1 g] by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1581
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1582
lemma fps_deriv_sub[simp]:
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1583
  "fps_deriv ((f:: 'a::comm_ring_1 fps) - g) = fps_deriv f - fps_deriv g"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53374
diff changeset
  1584
  using fps_deriv_add [of f "- g"] by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1585
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1586
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: 29906
diff changeset
  1587
  by (simp add: fps_ext fps_deriv_def fps_const_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1588
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  1589
lemma fps_deriv_of_nat [simp]: "fps_deriv (of_nat n) = 0"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  1590
  by (simp add: fps_of_nat [symmetric])
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  1591
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  1592
lemma fps_deriv_numeral [simp]: "fps_deriv (numeral n) = 0"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  1593
  by (simp add: numeral_fps_const)    
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  1594
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1595
lemma fps_deriv_mult_const_left[simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1596
  "fps_deriv (fps_const (c::'a::comm_ring_1) * f) = fps_const c * fps_deriv f"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1597
  by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1598
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1599
lemma fps_deriv_0[simp]: "fps_deriv 0 = 0"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1600
  by (simp add: fps_deriv_def fps_eq_iff)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1601
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1602
lemma fps_deriv_1[simp]: "fps_deriv 1 = 0"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1603
  by (simp add: fps_deriv_def fps_eq_iff )
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1604
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1605
lemma fps_deriv_mult_const_right[simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1606
  "fps_deriv (f * fps_const (c::'a::comm_ring_1)) = fps_deriv f * fps_const c"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1607
  by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1608
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1609
lemma fps_deriv_sum:
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1610
  "fps_deriv (sum f S) = sum (\<lambda>i. fps_deriv (f i :: 'a::comm_ring_1 fps)) S"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1611
proof (cases "finite S")
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1612
  case False
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1613
  then show ?thesis by simp
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1614
next
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1615
  case True
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1616
  show ?thesis by (induct rule: finite_induct [OF True]) simp_all
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1617
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1618
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1619
lemma fps_deriv_eq_0_iff [simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1620
  "fps_deriv f = 0 \<longleftrightarrow> f = fps_const (f$0 :: 'a::{idom,semiring_char_0})"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1621
  (is "?lhs \<longleftrightarrow> ?rhs")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1622
proof
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1623
  show ?lhs if ?rhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1624
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1625
    from that have "fps_deriv f = fps_deriv (fps_const (f$0))"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1626
      by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1627
    then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1628
      by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1629
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1630
  show ?rhs if ?lhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1631
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1632
    from that have "\<forall>n. (fps_deriv f)$n = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1633
      by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1634
    then have "\<forall>n. f$(n+1) = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1635
      by (simp del: of_nat_Suc of_nat_add One_nat_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1636
    then show ?thesis
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1637
      apply (clarsimp simp add: fps_eq_iff fps_const_def)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1638
      apply (erule_tac x="n - 1" in allE)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1639
      apply simp
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1640
      done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1641
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1642
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1643
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1644
lemma fps_deriv_eq_iff:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1645
  fixes f :: "'a::{idom,semiring_char_0} fps"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1646
  shows "fps_deriv f = fps_deriv g \<longleftrightarrow> (f = fps_const(f$0 - g$0) + g)"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1647
proof -
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1648
  have "fps_deriv f = fps_deriv g \<longleftrightarrow> fps_deriv (f - g) = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1649
    by simp
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1650
  also have "\<dots> \<longleftrightarrow> f - g = fps_const ((f - g) $ 0)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1651
    unfolding fps_deriv_eq_0_iff ..
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1652
  finally show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1653
    by (simp add: field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1654
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1655
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1656
lemma fps_deriv_eq_iff_ex:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1657
  "(fps_deriv f = fps_deriv g) \<longleftrightarrow> (\<exists>c::'a::{idom,semiring_char_0}. f = fps_const c + g)"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1658
  by (auto simp: fps_deriv_eq_iff)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1659
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1660
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1661
fun fps_nth_deriv :: "nat \<Rightarrow> 'a::semiring_1 fps \<Rightarrow> 'a fps"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1662
where
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1663
  "fps_nth_deriv 0 f = f"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1664
| "fps_nth_deriv (Suc n) f = fps_nth_deriv n (fps_deriv f)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1665
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1666
lemma fps_nth_deriv_commute: "fps_nth_deriv (Suc n) f = fps_deriv (fps_nth_deriv n f)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1667
  by (induct n arbitrary: f) auto
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1668
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1669
lemma fps_nth_deriv_linear[simp]:
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1670
  "fps_nth_deriv n (fps_const (a::'a::comm_semiring_1) * f + fps_const b * g) =
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1671
    fps_const a * fps_nth_deriv n f + fps_const b * fps_nth_deriv n g"
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1672
  by (induct n arbitrary: f g) (auto simp add: fps_nth_deriv_commute)
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1673
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1674
lemma fps_nth_deriv_neg[simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1675
  "fps_nth_deriv n (- (f :: 'a::comm_ring_1 fps)) = - (fps_nth_deriv n f)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1676
  by (induct n arbitrary: f) simp_all
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1677
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1678
lemma fps_nth_deriv_add[simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1679
  "fps_nth_deriv n ((f :: 'a::comm_ring_1 fps) + g) = fps_nth_deriv n f + fps_nth_deriv n g"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1680
  using fps_nth_deriv_linear[of n 1 f 1 g] by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1681
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1682
lemma fps_nth_deriv_sub[simp]:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1683
  "fps_nth_deriv n ((f :: 'a::comm_ring_1 fps) - g) = fps_nth_deriv n f - fps_nth_deriv n g"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53374
diff changeset
  1684
  using fps_nth_deriv_add [of n f "- g"] by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1685
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1686
lemma fps_nth_deriv_0[simp]: "fps_nth_deriv n 0 = 0"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1687
  by (induct n) simp_all
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1688
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1689
lemma fps_nth_deriv_1[simp]: "fps_nth_deriv n 1 = (if n = 0 then 1 else 0)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1690
  by (induct n) simp_all
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1691
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1692
lemma fps_nth_deriv_const[simp]:
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1693
  "fps_nth_deriv n (fps_const c) = (if n = 0 then fps_const c else 0)"
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1694
  by (cases n) simp_all
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1695
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1696
lemma fps_nth_deriv_mult_const_left[simp]:
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1697
  "fps_nth_deriv n (fps_const (c::'a::comm_ring_1) * f) = fps_const c * fps_nth_deriv n f"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1698
  using fps_nth_deriv_linear[of n "c" f 0 0 ] by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1699
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1700
lemma fps_nth_deriv_mult_const_right[simp]:
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1701
  "fps_nth_deriv n (f * fps_const (c::'a::comm_ring_1)) = fps_nth_deriv n f * fps_const c"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  1702
  using fps_nth_deriv_linear[of n "c" f 0 0] by (simp add: mult.commute)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1703
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1704
lemma fps_nth_deriv_sum:
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1705
  "fps_nth_deriv n (sum f S) = sum (\<lambda>i. fps_nth_deriv n (f i :: 'a::comm_ring_1 fps)) S"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1706
proof (cases "finite S")
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1707
  case True
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1708
  show ?thesis by (induct rule: finite_induct [OF True]) simp_all
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1709
next
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1710
  case False
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1711
  then show ?thesis by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1712
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1713
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1714
lemma fps_deriv_maclauren_0:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1715
  "(fps_nth_deriv k (f :: 'a::comm_semiring_1 fps)) $ 0 = of_nat (fact k) * f $ k"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  1716
  by (induct k arbitrary: f) (auto simp add: field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1717
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1718
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  1719
subsection \<open>Powers\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1720
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1721
lemma fps_power_zeroth_eq_one: "a$0 =1 \<Longrightarrow> a^n $ 0 = (1::'a::semiring_1)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1722
  by (induct n) (auto simp add: expand_fps_eq fps_mult_nth)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1723
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1724
lemma fps_power_first_eq: "(a :: 'a::comm_ring_1 fps) $ 0 =1 \<Longrightarrow> a^n $ 1 = of_nat n * a$1"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1725
proof (induct n)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1726
  case 0
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1727
  then show ?case by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1728
next
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1729
  case (Suc n)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1730
  show ?case unfolding power_Suc fps_mult_nth
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1731
    using Suc.hyps[OF \<open>a$0 = 1\<close>] \<open>a$0 = 1\<close> fps_power_zeroth_eq_one[OF \<open>a$0=1\<close>]
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1732
    by (simp add: field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1733
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1734
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1735
lemma startsby_one_power:"a $ 0 = (1::'a::comm_ring_1) \<Longrightarrow> a^n $ 0 = 1"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1736
  by (induct n) (auto simp add: fps_mult_nth)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1737
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1738
lemma startsby_zero_power:"a $0 = (0::'a::comm_ring_1) \<Longrightarrow> n > 0 \<Longrightarrow> a^n $0 = 0"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1739
  by (induct n) (auto simp add: fps_mult_nth)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1740
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1741
lemma startsby_power:"a $0 = (v::'a::comm_ring_1) \<Longrightarrow> a^n $0 = v^n"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1742
  by (induct n) (auto simp add: fps_mult_nth)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1743
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1744
lemma startsby_zero_power_iff[simp]: "a^n $0 = (0::'a::idom) \<longleftrightarrow> n \<noteq> 0 \<and> a$0 = 0"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1745
  apply (rule iffI)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1746
  apply (induct n)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1747
  apply (auto simp add: fps_mult_nth)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1748
  apply (rule startsby_zero_power, simp_all)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1749
  done
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1750
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1751
lemma startsby_zero_power_prefix:
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1752
  assumes a0: "a $ 0 = (0::'a::idom)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1753
  shows "\<forall>n < k. a ^ k $ n = 0"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1754
  using a0
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1755
proof (induct k rule: nat_less_induct)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1756
  fix k
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1757
  assume H: "\<forall>m<k. a $0 =  0 \<longrightarrow> (\<forall>n<m. a ^ m $ n = 0)" and a0: "a $ 0 = 0"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1758
  show "\<forall>m<k. a ^ k $ m = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1759
  proof (cases k)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1760
    case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1761
    then show ?thesis by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1762
  next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1763
    case (Suc l)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1764
    have "a^k $ m = 0" if mk: "m < k" for m
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1765
    proof (cases "m = 0")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1766
      case True
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1767
      then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1768
        using startsby_zero_power[of a k] Suc a0 by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1769
    next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1770
      case False
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1771
      have "a ^k $ m = (a^l * a) $m"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1772
        by (simp add: Suc mult.commute)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1773
      also have "\<dots> = (\<Sum>i = 0..m. a ^ l $ i * a $ (m - i))"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1774
        by (simp add: fps_mult_nth)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1775
      also have "\<dots> = 0"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1776
        apply (rule sum.neutral)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1777
        apply auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1778
        apply (case_tac "x = m")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1779
        using a0 apply simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1780
        apply (rule H[rule_format])
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1781
        using a0 Suc mk apply auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1782
        done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1783
      finally show ?thesis .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1784
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1785
    then show ?thesis by blast
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1786
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1787
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1788
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1789
lemma startsby_zero_sum_depends:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1790
  assumes a0: "a $0 = (0::'a::idom)"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1791
    and kn: "n \<ge> k"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1792
  shows "sum (\<lambda>i. (a ^ i)$k) {0 .. n} = sum (\<lambda>i. (a ^ i)$k) {0 .. k}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1793
  apply (rule sum.mono_neutral_right)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1794
  using kn
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1795
  apply auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1796
  apply (rule startsby_zero_power_prefix[rule_format, OF a0])
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1797
  apply arith
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1798
  done
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1799
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1800
lemma startsby_zero_power_nth_same:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1801
  assumes a0: "a$0 = (0::'a::idom)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1802
  shows "a^n $ n = (a$1) ^ n"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1803
proof (induct n)
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1804
  case 0
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1805
  then show ?case by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1806
next
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1807
  case (Suc n)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1808
  have "a ^ Suc n $ (Suc n) = (a^n * a)$(Suc n)"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1809
    by (simp add: field_simps)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1810
  also have "\<dots> = sum (\<lambda>i. a^n$i * a $ (Suc n - i)) {0.. Suc n}"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1811
    by (simp add: fps_mult_nth)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1812
  also have "\<dots> = sum (\<lambda>i. a^n$i * a $ (Suc n - i)) {n .. Suc n}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1813
    apply (rule sum.mono_neutral_right)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1814
    apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1815
    apply clarsimp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1816
    apply clarsimp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1817
    apply (rule startsby_zero_power_prefix[rule_format, OF a0])
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1818
    apply arith
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1819
    done
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1820
  also have "\<dots> = a^n $ n * a$1"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1821
    using a0 by simp
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1822
  finally show ?case
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1823
    using Suc.hyps by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1824
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1825
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1826
lemma fps_inverse_power:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1827
  fixes a :: "'a::field fps"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1828
  shows "inverse (a^n) = inverse a ^ n"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1829
  by (induction n) (simp_all add: fps_inverse_mult)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1830
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1831
lemma fps_deriv_power:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1832
  "fps_deriv (a ^ n) = fps_const (of_nat n :: 'a::comm_ring_1) * fps_deriv a * a ^ (n - 1)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1833
  apply (induct n)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1834
  apply (auto simp add: field_simps fps_const_add[symmetric] simp del: fps_const_add)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1835
  apply (case_tac n)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  1836
  apply (auto simp add: field_simps)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1837
  done
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1838
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1839
lemma fps_inverse_deriv:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1840
  fixes a :: "'a::field fps"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1841
  assumes a0: "a$0 \<noteq> 0"
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  1842
  shows "fps_deriv (inverse a) = - fps_deriv a * (inverse a)\<^sup>2"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1843
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1844
  from inverse_mult_eq_1[OF a0]
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1845
  have "fps_deriv (inverse a * a) = 0" by simp
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  1846
  then have "inverse a * fps_deriv a + fps_deriv (inverse a) * a = 0"
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  1847
    by simp
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  1848
  then have "inverse a * (inverse a * fps_deriv a + fps_deriv (inverse a) * a) = 0"
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  1849
    by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1850
  with inverse_mult_eq_1[OF a0]
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  1851
  have "(inverse a)\<^sup>2 * fps_deriv a + fps_deriv (inverse a) = 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1852
    unfolding power2_eq_square
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  1853
    apply (simp add: field_simps)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  1854
    apply (simp add: mult.assoc[symmetric])
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1855
    done
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  1856
  then have "(inverse a)\<^sup>2 * fps_deriv a + fps_deriv (inverse a) - fps_deriv a * (inverse a)\<^sup>2 =
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  1857
      0 - fps_deriv a * (inverse a)\<^sup>2"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1858
    by simp
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  1859
  then show "fps_deriv (inverse a) = - fps_deriv a * (inverse a)\<^sup>2"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1860
    by (simp add: field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1861
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1862
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1863
lemma fps_inverse_deriv':
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1864
  fixes a :: "'a::field fps"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1865
  assumes a0: "a $ 0 \<noteq> 0"
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  1866
  shows "fps_deriv (inverse a) = - fps_deriv a / a\<^sup>2"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1867
  using fps_inverse_deriv[OF a0] a0
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1868
  by (simp add: fps_divide_unit power2_eq_square fps_inverse_mult)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1869
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1870
lemma inverse_mult_eq_1':
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1871
  assumes f0: "f$0 \<noteq> (0::'a::field)"
60567
19c277ea65ae tuned proofs -- less digits;
wenzelm
parents: 60558
diff changeset
  1872
  shows "f * inverse f = 1"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  1873
  by (metis mult.commute inverse_mult_eq_1 f0)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1874
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1875
lemma fps_inverse_minus [simp]: "inverse (-f) = -inverse (f :: 'a :: field fps)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1876
  by (cases "f$0 = 0") (auto intro: fps_inverse_unique simp: inverse_mult_eq_1' fps_inverse_eq_0)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1877
  
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1878
lemma divide_fps_const [simp]: "f / fps_const (c :: 'a :: field) = fps_const (inverse c) * f"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1879
  by (cases "c = 0") (simp_all add: fps_divide_unit fps_const_inverse)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1880
61804
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1881
(* FIXME: The last part of this proof should go through by simp once we have a proper
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1882
   theorem collection for simplifying division on rings *)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1883
lemma fps_divide_deriv:
61804
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1884
  assumes "b dvd (a :: 'a :: field fps)"
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1885
  shows   "fps_deriv (a / b) = (fps_deriv a * b - a * fps_deriv b) / b^2"
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1886
proof -
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1887
  have eq_divide_imp: "c \<noteq> 0 \<Longrightarrow> a * c = b \<Longrightarrow> a = b div c" for a b c :: "'a :: field fps"
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1888
    by (drule sym) (simp add: mult.assoc)
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1889
  from assms have "a = a / b * b" by simp
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1890
  also have "fps_deriv (a / b * b) = fps_deriv (a / b) * b + a / b * fps_deriv b" by simp
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1891
  finally have "fps_deriv (a / b) * b^2 = fps_deriv a * b - a * fps_deriv b" using assms
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1892
    by (simp add: power2_eq_square algebra_simps)
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1893
  thus ?thesis by (cases "b = 0") (auto simp: eq_divide_imp)
67381557cee8 Generalised derivative rule for division on formal power series
eberlm
parents: 61799
diff changeset
  1894
qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1895
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1896
lemma fps_inverse_gp': "inverse (Abs_fps (\<lambda>n. 1::'a::field)) = 1 - X"
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
  1897
  by (simp add: fps_inverse_gp fps_eq_iff X_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1898
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1899
lemma fps_one_over_one_minus_X_squared:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1900
  "inverse ((1 - X)^2 :: 'a :: field fps) = Abs_fps (\<lambda>n. of_nat (n+1))"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1901
proof -
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1902
  have "inverse ((1 - X)^2 :: 'a fps) = fps_deriv (inverse (1 - X))"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1903
    by (subst fps_inverse_deriv) (simp_all add: fps_inverse_power)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1904
  also have "inverse (1 - X :: 'a fps) = Abs_fps (\<lambda>_. 1)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1905
    by (subst fps_inverse_gp' [symmetric]) simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1906
  also have "fps_deriv \<dots> = Abs_fps (\<lambda>n. of_nat (n + 1))"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1907
    by (simp add: fps_deriv_def)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1908
  finally show ?thesis .
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1909
qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  1910
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1911
lemma fps_nth_deriv_X[simp]: "fps_nth_deriv n X = (if n = 0 then X else if n=1 then 1 else 0)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1912
  by (cases n) simp_all
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1913
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1914
lemma fps_inverse_X_plus1: "inverse (1 + X) = Abs_fps (\<lambda>n. (- (1::'a::field)) ^ n)"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1915
  (is "_ = ?r")
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1916
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1917
  have eq: "(1 + X) * ?r = 1"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1918
    unfolding minus_one_power_iff
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  1919
    by (auto simp add: field_simps fps_eq_iff)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1920
  show ?thesis
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1921
    by (auto simp add: eq intro: fps_inverse_unique)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1922
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1923
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1924
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1925
subsection \<open>Integration\<close>
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1926
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1927
definition fps_integral :: "'a::field_char_0 fps \<Rightarrow> 'a \<Rightarrow> 'a fps"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  1928
  where "fps_integral a a0 = Abs_fps (\<lambda>n. if n = 0 then a0 else (a$(n - 1) / of_nat n))"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1929
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1930
lemma fps_deriv_fps_integral: "fps_deriv (fps_integral a a0) = a"
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1931
  unfolding fps_integral_def fps_deriv_def
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1932
  by (simp add: fps_eq_iff del: of_nat_Suc)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1933
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1934
lemma fps_integral_linear:
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1935
  "fps_integral (fps_const a * f + fps_const b * g) (a*a0 + b*b0) =
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1936
    fps_const a * fps_integral f a0 + fps_const b * fps_integral g b0"
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  1937
  (is "?l = ?r")
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1938
proof -
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1939
  have "fps_deriv ?l = fps_deriv ?r"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1940
    by (simp add: fps_deriv_fps_integral)
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1941
  moreover have "?l$0 = ?r$0"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1942
    by (simp add: fps_integral_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1943
  ultimately show ?thesis
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1944
    unfolding fps_deriv_eq_iff by auto
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1945
qed
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1946
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1947
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  1948
subsection \<open>Composition of FPSs\<close>
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  1949
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1950
definition fps_compose :: "'a::semiring_1 fps \<Rightarrow> 'a fps \<Rightarrow> 'a fps"  (infixl "oo" 55)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1951
  where "a oo b = Abs_fps (\<lambda>n. sum (\<lambda>i. a$i * (b^i$n)) {0..n})"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1952
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1953
lemma fps_compose_nth: "(a oo b)$n = sum (\<lambda>i. a$i * (b^i$n)) {0..n}"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  1954
  by (simp add: fps_compose_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1955
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1956
lemma fps_compose_nth_0 [simp]: "(f oo g) $ 0 = f $ 0"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1957
  by (simp add: fps_compose_nth)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  1958
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1959
lemma fps_compose_X[simp]: "a oo X = (a :: 'a::comm_ring_1 fps)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1960
  by (simp add: fps_ext fps_compose_def mult_delta_right sum.delta')
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1961
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1962
lemma fps_const_compose[simp]: "fps_const (a::'a::comm_ring_1) oo b = fps_const a"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1963
  by (simp add: fps_eq_iff fps_compose_nth mult_delta_left sum.delta)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1964
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1965
lemma numeral_compose[simp]: "(numeral k :: 'a::comm_ring_1 fps) oo b = numeral k"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
  1966
  unfolding numeral_fps_const by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
  1967
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1968
lemma neg_numeral_compose[simp]: "(- numeral k :: 'a::comm_ring_1 fps) oo b = - numeral k"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
  1969
  unfolding neg_numeral_fps_const by simp
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  1970
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  1971
lemma X_fps_compose_startby0[simp]: "a$0 = 0 \<Longrightarrow> X oo a = (a :: 'a::comm_ring_1 fps)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1972
  by (simp add: fps_eq_iff fps_compose_def mult_delta_left sum.delta not_le)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1973
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1974
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  1975
subsection \<open>Rules from Herbert Wilf's Generatingfunctionology\<close>
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  1976
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  1977
subsubsection \<open>Rule 1\<close>
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1978
  (* {a_{n+k}}_0^infty Corresponds to (f - sum (\<lambda>i. a_i * x^i))/x^h, for h>0*)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1979
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1980
lemma fps_power_mult_eq_shift:
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1981
  "X^Suc k * Abs_fps (\<lambda>n. a (n + Suc k)) =
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1982
    Abs_fps a - sum (\<lambda>i. fps_const (a i :: 'a::comm_ring_1) * X^i) {0 .. k}"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1983
  (is "?lhs = ?rhs")
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1984
proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1985
  have "?lhs $ n = ?rhs $ n" for n :: nat
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1986
  proof -
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  1987
    have "?lhs $ n = (if n < Suc k then 0 else a n)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1988
      unfolding X_power_mult_nth by auto
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1989
    also have "\<dots> = ?rhs $ n"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1990
    proof (induct k)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1991
      case 0
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  1992
      then show ?case
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1993
        by (simp add: fps_sum_nth)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1994
    next
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  1995
      case (Suc k)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1996
      have "(Abs_fps a - sum (\<lambda>i. fps_const (a i :: 'a) * X^i) {0 .. Suc k})$n =
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  1997
        (Abs_fps a - sum (\<lambda>i. fps_const (a i :: 'a) * X^i) {0 .. k} -
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  1998
          fps_const (a (Suc k)) * X^ Suc k) $ n"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  1999
        by (simp add: field_simps)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2000
      also have "\<dots> = (if n < Suc k then 0 else a n) - (fps_const (a (Suc k)) * X^ Suc k)$n"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2001
        using Suc.hyps[symmetric] unfolding fps_sub_nth by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2002
      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: 32456
diff changeset
  2003
        unfolding X_power_mult_right_nth
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2004
        apply (auto simp add: not_less fps_const_def)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2005
        apply (rule cong[of a a, OF refl])
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2006
        apply arith
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2007
        done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2008
      finally show ?case
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2009
        by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2010
    qed
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2011
    finally show ?thesis .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2012
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2013
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2014
    by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2015
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2016
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2017
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  2018
subsubsection \<open>Rule 2\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2019
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2020
  (* We can not reach the form of Wilf, but still near to it using rewrite rules*)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2021
  (* If f reprents {a_n} and P is a polynomial, then
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2022
        P(xD) f represents {P(n) a_n}*)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2023
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2024
definition "XD = op * X \<circ> fps_deriv"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2025
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2026
lemma XD_add[simp]:"XD (a + b) = XD a + XD (b :: 'a::comm_ring_1 fps)"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  2027
  by (simp add: XD_def field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2028
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2029
lemma XD_mult_const[simp]:"XD (fps_const (c::'a::comm_ring_1) * a) = fps_const c * XD a"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  2030
  by (simp add: XD_def field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2031
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2032
lemma XD_linear[simp]: "XD (fps_const c * a + fps_const d * b) =
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2033
    fps_const c * XD a + fps_const d * XD (b :: 'a::comm_ring_1 fps)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2034
  by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2035
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 30837
diff changeset
  2036
lemma XDN_linear:
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2037
  "(XD ^^ n) (fps_const c * a + fps_const d * b) =
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2038
    fps_const c * (XD ^^ n) a + fps_const d * (XD ^^ n) (b :: 'a::comm_ring_1 fps)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2039
  by (induct n) simp_all
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2040
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2041
lemma fps_mult_X_deriv_shift: "X* fps_deriv a = Abs_fps (\<lambda>n. of_nat n* a$n)"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2042
  by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2043
30952
7ab2716dd93b power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents: 30837
diff changeset
  2044
lemma fps_mult_XD_shift:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2045
  "(XD ^^ k) (a :: 'a::comm_ring_1 fps) = Abs_fps (\<lambda>n. (of_nat n ^ k) * a$n)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2046
  by (induct k arbitrary: a) (simp_all add: XD_def fps_eq_iff field_simps del: One_nat_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2047
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2048
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2049
subsubsection \<open>Rule 3\<close>
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2050
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61552
diff changeset
  2051
text \<open>Rule 3 is trivial and is given by \<open>fps_times_def\<close>.\<close>
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2052
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  2053
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  2054
subsubsection \<open>Rule 5 --- summation and "division" by (1 - X)\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2055
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2056
lemma fps_divide_X_minus1_sum_lemma:
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2057
  "a = ((1::'a::comm_ring_1 fps) - X) * Abs_fps (\<lambda>n. sum (\<lambda>i. a $ i) {0..n})"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2058
proof -
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2059
  let ?sa = "Abs_fps (\<lambda>n. sum (\<lambda>i. a $ i) {0..n})"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2060
  have th0: "\<And>i. (1 - (X::'a fps)) $ i = (if i = 0 then 1 else if i = 1 then - 1 else 0)"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2061
    by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2062
  have "a$n = ((1 - X) * ?sa) $ n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2063
  proof (cases "n = 0")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2064
    case True
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2065
    then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2066
      by (simp add: fps_mult_nth)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2067
  next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2068
    case False
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2069
    then have u: "{0} \<union> ({1} \<union> {2..n}) = {0..n}" "{1} \<union> {2..n} = {1..n}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2070
      "{0..n - 1} \<union> {n} = {0..n}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2071
      by (auto simp: set_eq_iff)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2072
    have d: "{0} \<inter> ({1} \<union> {2..n}) = {}" "{1} \<inter> {2..n} = {}" "{0..n - 1} \<inter> {n} = {}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2073
      using False by simp_all
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2074
    have f: "finite {0}" "finite {1}" "finite {2 .. n}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2075
      "finite {0 .. n - 1}" "finite {n}" by simp_all
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2076
    have "((1 - X) * ?sa) $ n = sum (\<lambda>i. (1 - X)$ i * ?sa $ (n - i)) {0 .. n}"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2077
      by (simp add: fps_mult_nth)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2078
    also have "\<dots> = a$n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2079
      unfolding th0
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2080
      unfolding sum.union_disjoint[OF f(1) finite_UnI[OF f(2,3)] d(1), unfolded u(1)]
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2081
      unfolding sum.union_disjoint[OF f(2) f(3) d(2)]
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2082
      apply (simp)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2083
      unfolding sum.union_disjoint[OF f(4,5) d(3), unfolded u(3)]
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2084
      apply simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2085
      done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2086
    finally show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2087
      by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2088
  qed
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2089
  then show ?thesis
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2090
    unfolding fps_eq_iff by blast
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2091
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2092
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2093
lemma fps_divide_X_minus1_sum:
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2094
  "a /((1::'a::field fps) - X) = Abs_fps (\<lambda>n. sum (\<lambda>i. a $ i) {0..n})"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2095
proof -
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2096
  let ?X = "1 - (X::'a fps)"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2097
  have th0: "?X $ 0 \<noteq> 0"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2098
    by simp
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2099
  have "a /?X = ?X *  Abs_fps (\<lambda>n::nat. sum (op $ a) {0..n}) * inverse ?X"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2100
    using fps_divide_X_minus1_sum_lemma[of a, symmetric] th0
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  2101
    by (simp add: fps_divide_def mult.assoc)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2102
  also have "\<dots> = (inverse ?X * ?X) * Abs_fps (\<lambda>n::nat. sum (op $ a) {0..n}) "
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  2103
    by (simp add: ac_simps)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2104
  finally show ?thesis
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2105
    by (simp add: inverse_mult_eq_1[OF th0])
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2106
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2107
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2108
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2109
subsubsection \<open>Rule 4 in its more general form: generalizes Rule 3 for an arbitrary
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  2110
  finite product of FPS, also the relvant instance of powers of a FPS\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2111
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2112
definition "natpermute n k = {l :: nat list. length l = k \<and> sum_list l = n}"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2113
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2114
lemma natlist_trivial_1: "natpermute n 1 = {[n]}"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2115
  apply (auto simp add: natpermute_def)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2116
  apply (case_tac x)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2117
  apply auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2118
  done
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2119
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2120
lemma append_natpermute_less_eq:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2121
  assumes "xs @ ys \<in> natpermute n k"
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2122
  shows "sum_list xs \<le> n"
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2123
    and "sum_list ys \<le> n"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2124
proof -
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2125
  from assms have "sum_list (xs @ ys) = n"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2126
    by (simp add: natpermute_def)
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2127
  then have "sum_list xs + sum_list ys = n"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2128
    by simp
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2129
  then show "sum_list xs \<le> n" and "sum_list ys \<le> n"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2130
    by simp_all
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2131
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2132
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2133
lemma natpermute_split:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2134
  assumes "h \<le> k"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2135
  shows "natpermute n k =
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2136
    (\<Union>m \<in>{0..n}. {l1 @ l2 |l1 l2. l1 \<in> natpermute m h \<and> l2 \<in> natpermute (n - m) (k - h)})"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2137
  (is "?L = ?R" is "_ = (\<Union>m \<in>{0..n}. ?S m)")
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2138
proof
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2139
  show "?R \<subseteq> ?L"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2140
  proof
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2141
    fix l
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2142
    assume l: "l \<in> ?R"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2143
    from l obtain m xs ys where h: "m \<in> {0..n}"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2144
      and xs: "xs \<in> natpermute m h"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2145
      and ys: "ys \<in> natpermute (n - m) (k - h)"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2146
      and leq: "l = xs@ys" by blast
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2147
    from xs have xs': "sum_list xs = m"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2148
      by (simp add: natpermute_def)
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2149
    from ys have ys': "sum_list ys = n - m"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2150
      by (simp add: natpermute_def)
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2151
    show "l \<in> ?L" using leq xs ys h
46131
ab07a3ef821c prefer listsum over foldl plus 0
haftmann
parents: 44174
diff changeset
  2152
      apply (clarsimp simp add: natpermute_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2153
      unfolding xs' ys'
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2154
      using assms xs ys
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2155
      unfolding natpermute_def
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2156
      apply simp
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2157
      done
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2158
  qed
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2159
  show "?L \<subseteq> ?R"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2160
  proof
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2161
    fix l
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2162
    assume l: "l \<in> natpermute n k"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2163
    let ?xs = "take h l"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2164
    let ?ys = "drop h l"
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2165
    let ?m = "sum_list ?xs"
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2166
    from l have ls: "sum_list (?xs @ ?ys) = n"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2167
      by (simp add: natpermute_def)
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2168
    have xs: "?xs \<in> natpermute ?m h" using l assms
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2169
      by (simp add: natpermute_def)
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2170
    have l_take_drop: "sum_list l = sum_list (take h l @ drop h l)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2171
      by simp
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2172
    then have ys: "?ys \<in> natpermute (n - ?m) (k - h)"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2173
      using l assms ls by (auto simp add: natpermute_def simp del: append_take_drop_id)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2174
    from ls have m: "?m \<in> {0..n}"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2175
      by (simp add: l_take_drop del: append_take_drop_id)
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2176
    from xs ys ls show "l \<in> ?R"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2177
      apply auto
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2178
      apply (rule bexI [where x = "?m"])
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2179
      apply (rule exI [where x = "?xs"])
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2180
      apply (rule exI [where x = "?ys"])
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  2181
      using ls l
46131
ab07a3ef821c prefer listsum over foldl plus 0
haftmann
parents: 44174
diff changeset
  2182
      apply (auto simp add: natpermute_def l_take_drop simp del: append_take_drop_id)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2183
      apply simp
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2184
      done
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2185
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2186
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2187
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2188
lemma natpermute_0: "natpermute n 0 = (if n = 0 then {[]} else {})"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2189
  by (auto simp add: natpermute_def)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2190
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2191
lemma natpermute_0'[simp]: "natpermute 0 k = (if k = 0 then {[]} else {replicate k 0})"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2192
  apply (auto simp add: set_replicate_conv_if natpermute_def)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2193
  apply (rule nth_equalityI)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2194
  apply simp_all
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2195
  done
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2196
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2197
lemma natpermute_finite: "finite (natpermute n k)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2198
proof (induct k arbitrary: n)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2199
  case 0
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2200
  then show ?case
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2201
    apply (subst natpermute_split[of 0 0, simplified])
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2202
    apply (simp add: natpermute_0)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2203
    done
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2204
next
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2205
  case (Suc k)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2206
  then show ?case unfolding natpermute_split [of k "Suc k", simplified]
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2207
    apply -
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2208
    apply (rule finite_UN_I)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2209
    apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2210
    unfolding One_nat_def[symmetric] natlist_trivial_1
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2211
    apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2212
    done
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2213
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2214
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2215
lemma natpermute_contain_maximal:
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2216
  "{xs \<in> natpermute n (k + 1). n \<in> set xs} = (\<Union>i\<in>{0 .. k}. {(replicate (k + 1) 0) [i:=n]})"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2217
  (is "?A = ?B")
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2218
proof
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2219
  show "?A \<subseteq> ?B"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2220
  proof
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2221
    fix xs
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2222
    assume "xs \<in> ?A"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2223
    then have H: "xs \<in> natpermute n (k + 1)" and n: "n \<in> set xs"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2224
      by blast+
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2225
    then obtain i where i: "i \<in> {0.. k}" "xs!i = n"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2226
      unfolding in_set_conv_nth by (auto simp add: less_Suc_eq_le natpermute_def)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2227
    have eqs: "({0..k} - {i}) \<union> {i} = {0..k}"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2228
      using i by auto
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2229
    have f: "finite({0..k} - {i})" "finite {i}"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2230
      by auto
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2231
    have d: "({0..k} - {i}) \<inter> {i} = {}"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2232
      using i by auto
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2233
    from H have "n = sum (nth xs) {0..k}"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2234
      apply (simp add: natpermute_def)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2235
      apply (auto simp add: atLeastLessThanSuc_atLeastAtMost sum_list_sum_nth)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2236
      done
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2237
    also have "\<dots> = n + sum (nth xs) ({0..k} - {i})"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2238
      unfolding sum.union_disjoint[OF f d, unfolded eqs] using i by simp
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2239
    finally have zxs: "\<forall> j\<in> {0..k} - {i}. xs!j = 0"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2240
      by auto
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2241
    from H have xsl: "length xs = k+1"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2242
      by (simp add: natpermute_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2243
    from i have i': "i < length (replicate (k+1) 0)"   "i < k+1"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2244
      unfolding length_replicate by presburger+
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2245
    have "xs = replicate (k+1) 0 [i := n]"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2246
      apply (rule nth_equalityI)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2247
      unfolding xsl length_list_update length_replicate
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2248
      apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2249
      apply clarify
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2250
      unfolding nth_list_update[OF i'(1)]
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2251
      using i zxs
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2252
      apply (case_tac "ia = i")
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2253
      apply (auto simp del: replicate.simps)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2254
      done
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2255
    then show "xs \<in> ?B" using i by blast
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2256
  qed
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2257
  show "?B \<subseteq> ?A"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2258
  proof
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2259
    fix xs
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2260
    assume "xs \<in> ?B"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2261
    then obtain i where i: "i \<in> {0..k}" and xs: "xs = replicate (k + 1) 0 [i:=n]"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2262
      by auto
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2263
    have nxs: "n \<in> set xs"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2264
      unfolding xs
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2265
      apply (rule set_update_memI)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2266
      using i apply simp
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2267
      done
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2268
    have xsl: "length xs = k + 1"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2269
      by (simp only: xs length_replicate length_list_update)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2270
    have "sum_list xs = sum (nth xs) {0..<k+1}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2271
      unfolding sum_list_sum_nth xsl ..
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2272
    also have "\<dots> = sum (\<lambda>j. if j = i then n else 0) {0..< k+1}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2273
      by (rule sum.cong) (simp_all add: xs del: replicate.simps)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2274
    also have "\<dots> = n" using i by (simp add: sum.delta)
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2275
    finally have "xs \<in> natpermute n (k + 1)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2276
      using xsl unfolding natpermute_def mem_Collect_eq by blast
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2277
    then show "xs \<in> ?A"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2278
      using nxs by blast
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2279
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2280
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2281
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2282
text \<open>The general form.\<close>
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2283
lemma fps_prod_nth:
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2284
  fixes m :: nat
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2285
    and a :: "nat \<Rightarrow> 'a::comm_ring_1 fps"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2286
  shows "(prod a {0 .. m}) $ n =
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2287
    sum (\<lambda>v. prod (\<lambda>j. (a j) $ (v!j)) {0..m}) (natpermute n (m+1))"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2288
  (is "?P m n")
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2289
proof (induct m arbitrary: n rule: nat_less_induct)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2290
  fix m n assume H: "\<forall>m' < m. \<forall>n. ?P m' n"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2291
  show "?P m n"
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2292
  proof (cases m)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2293
    case 0
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2294
    then show ?thesis
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2295
      apply simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2296
      unfolding natlist_trivial_1[where n = n, unfolded One_nat_def]
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2297
      apply simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2298
      done
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2299
  next
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2300
    case (Suc k)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2301
    then have km: "k < m" by arith
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2302
    have u0: "{0 .. k} \<union> {m} = {0..m}"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2303
      using Suc by (simp add: set_eq_iff) presburger
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2304
    have f0: "finite {0 .. k}" "finite {m}" by auto
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2305
    have d0: "{0 .. k} \<inter> {m} = {}" using Suc by auto
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2306
    have "(prod a {0 .. m}) $ n = (prod a {0 .. k} * a m) $ n"
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2307
      unfolding prod.union_disjoint[OF f0 d0, unfolded u0] by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2308
    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))"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2309
      unfolding fps_mult_nth H[rule_format, OF km] ..
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2310
    also have "\<dots> = (\<Sum>v\<in>natpermute n (m + 1). \<Prod>j\<in>{0..m}. a j $ v ! j)"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2311
      apply (simp add: Suc)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2312
      unfolding natpermute_split[of m "m + 1", simplified, of n,
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2313
        unfolded natlist_trivial_1[unfolded One_nat_def] Suc]
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2314
      apply (subst sum.UNION_disjoint)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2315
      apply simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2316
      apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2317
      unfolding image_Collect[symmetric]
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2318
      apply clarsimp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2319
      apply (rule finite_imageI)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2320
      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: 39198
diff changeset
  2321
      apply (clarsimp simp add: set_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2322
      apply auto
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2323
      apply (rule sum.cong)
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57129
diff changeset
  2324
      apply (rule refl)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2325
      unfolding sum_distrib_right
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2326
      apply (rule sym)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2327
      apply (rule_tac l = "\<lambda>xs. xs @ [n - x]" in sum.reindex_cong)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2328
      apply (simp add: inj_on_def)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2329
      apply auto
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2330
      unfolding prod.union_disjoint[OF f0 d0, unfolded u0, unfolded Suc]
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2331
      apply (clarsimp simp add: natpermute_def nth_append)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2332
      done
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2333
    finally show ?thesis .
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2334
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2335
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2336
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2337
text \<open>The special form for powers.\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2338
lemma fps_power_nth_Suc:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2339
  fixes m :: nat
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2340
    and a :: "'a::comm_ring_1 fps"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2341
  shows "(a ^ Suc m)$n = sum (\<lambda>v. prod (\<lambda>j. a $ (v!j)) {0..m}) (natpermute n (m+1))"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2342
proof -
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2343
  have th0: "a^Suc m = prod (\<lambda>i. a) {0..m}"
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2344
    by (simp add: prod_constant)
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2345
  show ?thesis unfolding th0 fps_prod_nth ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2346
qed
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2347
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2348
lemma fps_power_nth:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2349
  fixes m :: nat
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2350
    and a :: "'a::comm_ring_1 fps"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2351
  shows "(a ^m)$n =
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2352
    (if m=0 then 1$n else sum (\<lambda>v. prod (\<lambda>j. a $ (v!j)) {0..m - 1}) (natpermute n m))"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2353
  by (cases m) (simp_all add: fps_power_nth_Suc del: power_Suc)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2354
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2355
lemma fps_nth_power_0:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2356
  fixes m :: nat
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2357
    and a :: "'a::comm_ring_1 fps"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2358
  shows "(a ^m)$0 = (a$0) ^ m"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2359
proof (cases m)
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2360
  case 0
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2361
  then show ?thesis by simp
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2362
next
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2363
  case (Suc n)
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2364
  then have c: "m = card {0..n}" by simp
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2365
  have "(a ^m)$0 = prod (\<lambda>i. a$0) {0..n}"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2366
    by (simp add: Suc fps_power_nth del: replicate.simps power_Suc)
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2367
  also have "\<dots> = (a$0) ^ m"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2368
   unfolding c by (rule prod_constant)
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  2369
 finally show ?thesis .
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2370
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2371
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2372
lemma natpermute_max_card:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2373
  assumes n0: "n \<noteq> 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2374
  shows "card {xs \<in> natpermute n (k + 1). n \<in> set xs} = k + 1"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2375
  unfolding natpermute_contain_maximal
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2376
proof -
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2377
  let ?A = "\<lambda>i. {replicate (k + 1) 0[i := n]}"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2378
  let ?K = "{0 ..k}"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2379
  have fK: "finite ?K"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2380
    by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2381
  have fAK: "\<forall>i\<in>?K. finite (?A i)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2382
    by auto
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2383
  have d: "\<forall>i\<in> ?K. \<forall>j\<in> ?K. i \<noteq> j \<longrightarrow>
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2384
    {replicate (k + 1) 0[i := n]} \<inter> {replicate (k + 1) 0[j := n]} = {}"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2385
  proof clarify
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2386
    fix i j
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2387
    assume i: "i \<in> ?K" and j: "j \<in> ?K" and ij: "i \<noteq> j"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2388
    have False if eq: "replicate (k+1) 0 [i:=n] = replicate (k+1) 0 [j:= n]"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2389
    proof -
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2390
      have "(replicate (k+1) 0 [i:=n] ! i) = n"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2391
        using i by (simp del: replicate.simps)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2392
      moreover
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2393
      have "(replicate (k+1) 0 [j:=n] ! i) = 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2394
        using i ij by (simp del: replicate.simps)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2395
      ultimately show ?thesis
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2396
        using eq n0 by (simp del: replicate.simps)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2397
    qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2398
    then show "{replicate (k + 1) 0[i := n]} \<inter> {replicate (k + 1) 0[j := n]} = {}"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2399
      by auto
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2400
  qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2401
  from card_UN_disjoint[OF fK fAK d]
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2402
  show "card (\<Union>i\<in>{0..k}. {replicate (k + 1) 0[i := n]}) = k + 1"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2403
    by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2404
qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2405
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2406
lemma fps_power_Suc_nth:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2407
  fixes f :: "'a :: comm_ring_1 fps"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2408
  assumes k: "k > 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2409
  shows "(f ^ Suc m) $ k = 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2410
           of_nat (Suc m) * (f $ k * (f $ 0) ^ m) +
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2411
           (\<Sum>v\<in>{v\<in>natpermute k (m+1). k \<notin> set v}. \<Prod>j = 0..m. f $ v ! j)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2412
proof -
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2413
  define A B 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2414
    where "A = {v\<in>natpermute k (m+1). k \<in> set v}" 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2415
      and  "B = {v\<in>natpermute k (m+1). k \<notin> set v}"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2416
  have [simp]: "finite A" "finite B" "A \<inter> B = {}" by (auto simp: A_def B_def natpermute_finite)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2417
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2418
  from natpermute_max_card[of k m] k have card_A: "card A = m + 1" by (simp add: A_def)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2419
  {
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2420
    fix v assume v: "v \<in> A"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2421
    from v have [simp]: "length v = Suc m" by (simp add: A_def natpermute_def)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2422
    from v have "\<exists>j. j \<le> m \<and> v ! j = k" 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2423
      by (auto simp: set_conv_nth A_def natpermute_def less_Suc_eq_le)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2424
    then guess j by (elim exE conjE) note j = this
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2425
    
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2426
    from v have "k = sum_list v" by (simp add: A_def natpermute_def)
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2427
    also have "\<dots> = (\<Sum>i=0..m. v ! i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2428
      by (simp add: sum_list_sum_nth atLeastLessThanSuc_atLeastAtMost del: sum_op_ivl_Suc)
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2429
    also from j have "{0..m} = insert j ({0..m}-{j})" by auto
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2430
    also from j have "(\<Sum>i\<in>\<dots>. v ! i) = k + (\<Sum>i\<in>{0..m}-{j}. v ! i)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2431
      by (subst sum.insert) simp_all
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2432
    finally have "(\<Sum>i\<in>{0..m}-{j}. v ! i) = 0" by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2433
    hence zero: "v ! i = 0" if "i \<in> {0..m}-{j}" for i using that
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2434
      by (subst (asm) sum_eq_0_iff) auto
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2435
      
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2436
    from j have "{0..m} = insert j ({0..m} - {j})" by auto
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2437
    also from j have "(\<Prod>i\<in>\<dots>. f $ (v ! i)) = f $ k * (\<Prod>i\<in>{0..m} - {j}. f $ (v ! i))"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2438
      by (subst prod.insert) auto
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2439
    also have "(\<Prod>i\<in>{0..m} - {j}. f $ (v ! i)) = (\<Prod>i\<in>{0..m} - {j}. f $ 0)"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2440
      by (intro prod.cong) (simp_all add: zero)
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2441
    also from j have "\<dots> = (f $ 0) ^ m" by (subst prod_constant) simp_all
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2442
    finally have "(\<Prod>j = 0..m. f $ (v ! j)) = f $ k * (f $ 0) ^ m" .
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2443
  } note A = this
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2444
  
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2445
  have "(f ^ Suc m) $ k = (\<Sum>v\<in>natpermute k (m + 1). \<Prod>j = 0..m. f $ v ! j)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2446
    by (rule fps_power_nth_Suc)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2447
  also have "natpermute k (m+1) = A \<union> B" unfolding A_def B_def by blast
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2448
  also have "(\<Sum>v\<in>\<dots>. \<Prod>j = 0..m. f $ (v ! j)) = 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2449
               (\<Sum>v\<in>A. \<Prod>j = 0..m. f $ (v ! j)) + (\<Sum>v\<in>B. \<Prod>j = 0..m. f $ (v ! j))"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2450
    by (intro sum.union_disjoint) simp_all   
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2451
  also have "(\<Sum>v\<in>A. \<Prod>j = 0..m. f $ (v ! j)) = of_nat (Suc m) * (f $ k * (f $ 0) ^ m)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2452
    by (simp add: A card_A)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2453
  finally show ?thesis by (simp add: B_def)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2454
qed 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2455
  
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2456
lemma fps_power_Suc_eqD:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2457
  fixes f g :: "'a :: {idom,semiring_char_0} fps"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2458
  assumes "f ^ Suc m = g ^ Suc m" "f $ 0 = g $ 0" "f $ 0 \<noteq> 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2459
  shows   "f = g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2460
proof (rule fps_ext)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2461
  fix k :: nat
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2462
  show "f $ k = g $ k"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2463
  proof (induction k rule: less_induct)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2464
    case (less k)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2465
    show ?case
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2466
    proof (cases "k = 0")
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2467
      case False
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2468
      let ?h = "\<lambda>f. (\<Sum>v | v \<in> natpermute k (m + 1) \<and> k \<notin> set v. \<Prod>j = 0..m. f $ v ! j)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2469
      from False fps_power_Suc_nth[of k f m] fps_power_Suc_nth[of k g m]
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2470
        have "f $ k * (of_nat (Suc m) * (f $ 0) ^ m) + ?h f =
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2471
                g $ k * (of_nat (Suc m) * (f $ 0) ^ m) + ?h g" using assms 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2472
        by (simp add: mult_ac del: power_Suc of_nat_Suc)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2473
      also have "v ! i < k" if "v \<in> {v\<in>natpermute k (m+1). k \<notin> set v}" "i \<le> m" for v i
66311
037aaa0b6daf added lemmas
nipkow
parents: 66089
diff changeset
  2474
        using that elem_le_sum_list[of i v] unfolding natpermute_def
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2475
        by (auto simp: set_conv_nth dest!: spec[of _ i])
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2476
      hence "?h f = ?h g"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2477
        by (intro sum.cong refl prod.cong less lessI) (auto simp: natpermute_def)
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2478
      finally have "f $ k * (of_nat (Suc m) * (f $ 0) ^ m) = g $ k * (of_nat (Suc m) * (f $ 0) ^ m)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2479
        by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2480
      with assms show "f $ k = g $ k" 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2481
        by (subst (asm) mult_right_cancel) (auto simp del: of_nat_Suc)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2482
    qed (simp_all add: assms)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2483
  qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2484
qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2485
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2486
lemma fps_power_Suc_eqD':
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2487
  fixes f g :: "'a :: {idom,semiring_char_0} fps"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2488
  assumes "f ^ Suc m = g ^ Suc m" "f $ subdegree f = g $ subdegree g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2489
  shows   "f = g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2490
proof (cases "f = 0")
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2491
  case False
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2492
  have "Suc m * subdegree f = subdegree (f ^ Suc m)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2493
    by (rule subdegree_power [symmetric])
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2494
  also have "f ^ Suc m = g ^ Suc m" by fact
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2495
  also have "subdegree \<dots> = Suc m * subdegree g" by (rule subdegree_power)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2496
  finally have [simp]: "subdegree f = subdegree g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2497
    by (subst (asm) Suc_mult_cancel1)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2498
  have "fps_shift (subdegree f) f * X ^ subdegree f = f"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2499
    by (rule subdegree_decompose [symmetric])
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2500
  also have "\<dots> ^ Suc m = g ^ Suc m" by fact
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2501
  also have "g = fps_shift (subdegree g) g * X ^ subdegree g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2502
    by (rule subdegree_decompose)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2503
  also have "subdegree f = subdegree g" by fact
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2504
  finally have "fps_shift (subdegree g) f ^ Suc m = fps_shift (subdegree g) g ^ Suc m"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2505
    by (simp add: algebra_simps power_mult_distrib del: power_Suc)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2506
  hence "fps_shift (subdegree g) f = fps_shift (subdegree g) g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2507
    by (rule fps_power_Suc_eqD) (insert assms False, auto)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2508
  with subdegree_decompose[of f] subdegree_decompose[of g] show ?thesis by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2509
qed (insert assms, simp_all)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2510
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2511
lemma fps_power_eqD':
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2512
  fixes f g :: "'a :: {idom,semiring_char_0} fps"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2513
  assumes "f ^ m = g ^ m" "f $ subdegree f = g $ subdegree g" "m > 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2514
  shows   "f = g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2515
  using fps_power_Suc_eqD'[of f "m-1" g] assms by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2516
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2517
lemma fps_power_eqD:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2518
  fixes f g :: "'a :: {idom,semiring_char_0} fps"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2519
  assumes "f ^ m = g ^ m" "f $ 0 = g $ 0" "f $ 0 \<noteq> 0" "m > 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2520
  shows   "f = g"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2521
  by (rule fps_power_eqD'[of f m g]) (insert assms, simp_all)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  2522
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2523
lemma fps_compose_inj_right:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2524
  assumes a0: "a$0 = (0::'a::idom)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2525
    and a1: "a$1 \<noteq> 0"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2526
  shows "(b oo a = c oo a) \<longleftrightarrow> b = c"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2527
  (is "?lhs \<longleftrightarrow>?rhs")
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2528
proof
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2529
  show ?lhs if ?rhs using that by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2530
  show ?rhs if ?lhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2531
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2532
    have "b$n = c$n" for n
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2533
    proof (induct n rule: nat_less_induct)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2534
      fix n
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2535
      assume H: "\<forall>m<n. b$m = c$m"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2536
      show "b$n = c$n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2537
      proof (cases n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2538
        case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2539
        from \<open>?lhs\<close> have "(b oo a)$n = (c oo a)$n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2540
          by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2541
        then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2542
          using 0 by (simp add: fps_compose_nth)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2543
      next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2544
        case (Suc n1)
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2545
        have f: "finite {0 .. n1}" "finite {n}" by simp_all
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2546
        have eq: "{0 .. n1} \<union> {n} = {0 .. n}" using Suc by auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2547
        have d: "{0 .. n1} \<inter> {n} = {}" using Suc by auto
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2548
        have seq: "(\<Sum>i = 0..n1. b $ i * a ^ i $ n) = (\<Sum>i = 0..n1. c $ i * a ^ i $ n)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2549
          apply (rule sum.cong)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2550
          using H Suc
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2551
          apply auto
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2552
          done
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2553
        have th0: "(b oo a) $n = (\<Sum>i = 0..n1. c $ i * a ^ i $ n) + b$n * (a$1)^n"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2554
          unfolding fps_compose_nth sum.union_disjoint[OF f d, unfolded eq] seq
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2555
          using startsby_zero_power_nth_same[OF a0]
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2556
          by simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2557
        have th1: "(c oo a) $n = (\<Sum>i = 0..n1. c $ i * a ^ i $ n) + c$n * (a$1)^n"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2558
          unfolding fps_compose_nth sum.union_disjoint[OF f d, unfolded eq]
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2559
          using startsby_zero_power_nth_same[OF a0]
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2560
          by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2561
        from \<open>?lhs\<close>[unfolded fps_eq_iff, rule_format, of n] th0 th1 a1
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2562
        show ?thesis by auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2563
      qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2564
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2565
    then show ?rhs by (simp add: fps_eq_iff)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2566
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2567
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2568
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2569
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  2570
subsection \<open>Radicals\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2571
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2572
declare prod.cong [fundef_cong]
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2573
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2574
function radical :: "(nat \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> nat \<Rightarrow> 'a::field fps \<Rightarrow> nat \<Rightarrow> 'a"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2575
where
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2576
  "radical r 0 a 0 = 1"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2577
| "radical r 0 a (Suc n) = 0"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2578
| "radical r (Suc k) a 0 = r (Suc k) (a$0)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2579
| "radical r (Suc k) a (Suc n) =
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2580
    (a$ Suc n - sum (\<lambda>xs. prod (\<lambda>j. radical r (Suc k) a (xs ! j)) {0..k})
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2581
      {xs. xs \<in> natpermute (Suc n) (Suc k) \<and> Suc n \<notin> set xs}) /
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2582
    (of_nat (Suc k) * (radical r (Suc k) a 0)^k)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2583
  by pat_completeness auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2584
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2585
termination radical
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2586
proof
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2587
  let ?R = "measure (\<lambda>(r, k, a, n). n)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2588
  {
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2589
    show "wf ?R" by auto
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2590
  next
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2591
    fix r k a n xs i
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2592
    assume xs: "xs \<in> {xs \<in> natpermute (Suc n) (Suc k). Suc n \<notin> set xs}" and i: "i \<in> {0..k}"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2593
    have False if c: "Suc n \<le> xs ! i"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2594
    proof -
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2595
      from xs i have "xs !i \<noteq> Suc n"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2596
        by (auto simp add: in_set_conv_nth natpermute_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2597
      with c have c': "Suc n < xs!i" by arith
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2598
      have fths: "finite {0 ..< i}" "finite {i}" "finite {i+1..<Suc k}"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2599
        by simp_all
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2600
      have d: "{0 ..< i} \<inter> ({i} \<union> {i+1 ..< Suc k}) = {}" "{i} \<inter> {i+1..< Suc k} = {}"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2601
        by auto
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2602
      have eqs: "{0..<Suc k} = {0 ..< i} \<union> ({i} \<union> {i+1 ..< Suc k})"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2603
        using i by auto
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2604
      from xs have "Suc n = sum_list xs"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2605
        by (simp add: natpermute_def)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2606
      also have "\<dots> = sum (nth xs) {0..<Suc k}" using xs
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2607
        by (simp add: natpermute_def sum_list_sum_nth)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2608
      also have "\<dots> = xs!i + sum (nth xs) {0..<i} + sum (nth xs) {i+1..<Suc k}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2609
        unfolding eqs  sum.union_disjoint[OF fths(1) finite_UnI[OF fths(2,3)] d(1)]
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2610
        unfolding sum.union_disjoint[OF fths(2) fths(3) d(2)]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2611
        by simp
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2612
      finally show ?thesis using c' by simp
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2613
    qed
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2614
    then show "((r, Suc k, a, xs!i), r, Suc k, a, Suc n) \<in> ?R"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2615
      apply auto
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2616
      apply (metis not_less)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2617
      done
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2618
  next
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2619
    fix r k a n
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2620
    show "((r, Suc k, a, 0), r, Suc k, a, Suc n) \<in> ?R" by simp
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2621
  }
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2622
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2623
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2624
definition "fps_radical r n a = Abs_fps (radical r n a)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2625
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2626
lemma fps_radical0[simp]: "fps_radical r 0 a = 1"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2627
  apply (auto simp add: fps_eq_iff fps_radical_def)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2628
  apply (case_tac n)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2629
  apply auto
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2630
  done
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2631
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2632
lemma fps_radical_nth_0[simp]: "fps_radical r n a $ 0 = (if n = 0 then 1 else r n (a$0))"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2633
  by (cases n) (simp_all add: fps_radical_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2634
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2635
lemma fps_radical_power_nth[simp]:
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2636
  assumes r: "(r k (a$0)) ^ k = a$0"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2637
  shows "fps_radical r k a ^ k $ 0 = (if k = 0 then 1 else a$0)"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2638
proof (cases k)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2639
  case 0
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2640
  then show ?thesis by simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2641
next
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2642
  case (Suc h)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2643
  have eq1: "fps_radical r k a ^ k $ 0 = (\<Prod>j\<in>{0..h}. fps_radical r k a $ (replicate k 0) ! j)"
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2644
    unfolding fps_power_nth Suc by simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2645
  also have "\<dots> = (\<Prod>j\<in>{0..h}. r k (a$0))"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2646
    apply (rule prod.cong)
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2647
    apply simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2648
    using Suc
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2649
    apply (subgoal_tac "replicate k 0 ! x = 0")
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2650
    apply (auto intro: nth_replicate simp del: replicate.simps)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2651
    done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2652
  also have "\<dots> = a$0"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2653
    using r Suc by (simp add: prod_constant)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2654
  finally show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2655
    using Suc by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2656
qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2657
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2658
lemma power_radical:
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  2659
  fixes a:: "'a::field_char_0 fps"
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2660
  assumes a0: "a$0 \<noteq> 0"
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2661
  shows "(r (Suc k) (a$0)) ^ Suc k = a$0 \<longleftrightarrow> (fps_radical r (Suc k) a) ^ (Suc k) = a"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2662
    (is "?lhs \<longleftrightarrow> ?rhs")
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2663
proof
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2664
  let ?r = "fps_radical r (Suc k) a"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2665
  show ?rhs if r0: ?lhs
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2666
  proof -
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2667
    from a0 r0 have r00: "r (Suc k) (a$0) \<noteq> 0" by auto
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2668
    have "?r ^ Suc k $ z = a$z" for z
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2669
    proof (induct z rule: nat_less_induct)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2670
      fix n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2671
      assume H: "\<forall>m<n. ?r ^ Suc k $ m = a$m"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2672
      show "?r ^ Suc k $ n = a $n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2673
      proof (cases n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2674
        case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2675
        then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2676
          using fps_radical_power_nth[of r "Suc k" a, OF r0] by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2677
      next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2678
        case (Suc n1)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2679
        then have "n \<noteq> 0" by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2680
        let ?Pnk = "natpermute n (k + 1)"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2681
        let ?Pnkn = "{xs \<in> ?Pnk. n \<in> set xs}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2682
        let ?Pnknn = "{xs \<in> ?Pnk. n \<notin> set xs}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2683
        have eq: "?Pnkn \<union> ?Pnknn = ?Pnk" by blast
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2684
        have d: "?Pnkn \<inter> ?Pnknn = {}" by blast
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2685
        have f: "finite ?Pnkn" "finite ?Pnknn"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2686
          using finite_Un[of ?Pnkn ?Pnknn, unfolded eq]
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2687
          by (metis natpermute_finite)+
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2688
        let ?f = "\<lambda>v. \<Prod>j\<in>{0..k}. ?r $ v ! j"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2689
        have "sum ?f ?Pnkn = sum (\<lambda>v. ?r $ n * r (Suc k) (a $ 0) ^ k) ?Pnkn"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2690
        proof (rule sum.cong)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2691
          fix v assume v: "v \<in> {xs \<in> natpermute n (k + 1). n \<in> set xs}"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2692
          let ?ths = "(\<Prod>j\<in>{0..k}. fps_radical r (Suc k) a $ v ! j) =
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2693
            fps_radical r (Suc k) a $ n * r (Suc k) (a $ 0) ^ k"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2694
          from v obtain i where i: "i \<in> {0..k}" "v = replicate (k+1) 0 [i:= n]"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2695
            unfolding natpermute_contain_maximal by auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2696
          have "(\<Prod>j\<in>{0..k}. fps_radical r (Suc k) a $ v ! j) =
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2697
              (\<Prod>j\<in>{0..k}. if j = i then fps_radical r (Suc k) a $ n else r (Suc k) (a$0))"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2698
            apply (rule prod.cong, simp)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2699
            using i r0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2700
            apply (simp del: replicate.simps)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2701
            done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2702
          also have "\<dots> = (fps_radical r (Suc k) a $ n) * r (Suc k) (a$0) ^ k"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2703
            using i r0 by (simp add: prod_gen_delta)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2704
          finally show ?ths .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2705
        qed rule
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2706
        then have "sum ?f ?Pnkn = of_nat (k+1) * ?r $ n * r (Suc k) (a $ 0) ^ k"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2707
          by (simp add: natpermute_max_card[OF \<open>n \<noteq> 0\<close>, simplified])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2708
        also have "\<dots> = a$n - sum ?f ?Pnknn"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2709
          unfolding Suc using r00 a0 by (simp add: field_simps fps_radical_def del: of_nat_Suc)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2710
        finally have fn: "sum ?f ?Pnkn = a$n - sum ?f ?Pnknn" .
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2711
        have "(?r ^ Suc k)$n = sum ?f ?Pnkn + sum ?f ?Pnknn"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2712
          unfolding fps_power_nth_Suc sum.union_disjoint[OF f d, unfolded eq] ..
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2713
        also have "\<dots> = a$n" unfolding fn by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2714
        finally show ?thesis .
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2715
      qed
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2716
    qed
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2717
    then show ?thesis using r0 by (simp add: fps_eq_iff)
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2718
  qed
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2719
  show ?lhs if ?rhs
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2720
  proof -
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2721
    from that have "((fps_radical r (Suc k) a) ^ (Suc k))$0 = a$0"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2722
      by simp
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2723
    then show ?thesis
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2724
      unfolding fps_power_nth_Suc
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2725
      by (simp add: prod_constant del: replicate.simps)
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2726
  qed
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2727
qed
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2728
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2729
(*
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2730
lemma power_radical:
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  2731
  fixes a:: "'a::field_char_0 fps"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2732
  assumes r0: "(r (Suc k) (a$0)) ^ Suc k = a$0" and a0: "a$0 \<noteq> 0"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2733
  shows "(fps_radical r (Suc k) a) ^ (Suc k) = a"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2734
proof-
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2735
  let ?r = "fps_radical r (Suc k) a"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2736
  from a0 r0 have r00: "r (Suc k) (a$0) \<noteq> 0" by auto
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2737
  {fix z have "?r ^ Suc k $ z = a$z"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2738
    proof(induct z rule: nat_less_induct)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2739
      fix n assume H: "\<forall>m<n. ?r ^ Suc k $ m = a$m"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2740
      {assume "n = 0" then have "?r ^ Suc k $ n = a $n"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2741
          using fps_radical_power_nth[of r "Suc k" a, OF r0] by simp}
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2742
      moreover
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2743
      {fix n1 assume n1: "n = Suc n1"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2744
        have fK: "finite {0..k}" by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2745
        have nz: "n \<noteq> 0" using n1 by arith
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2746
        let ?Pnk = "natpermute n (k + 1)"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2747
        let ?Pnkn = "{xs \<in> ?Pnk. n \<in> set xs}"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2748
        let ?Pnknn = "{xs \<in> ?Pnk. n \<notin> set xs}"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2749
        have eq: "?Pnkn \<union> ?Pnknn = ?Pnk" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2750
        have d: "?Pnkn \<inter> ?Pnknn = {}" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2751
        have f: "finite ?Pnkn" "finite ?Pnknn"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2752
          using finite_Un[of ?Pnkn ?Pnknn, unfolded eq]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2753
          by (metis natpermute_finite)+
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2754
        let ?f = "\<lambda>v. \<Prod>j\<in>{0..k}. ?r $ v ! j"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2755
        have "sum ?f ?Pnkn = sum (\<lambda>v. ?r $ n * r (Suc k) (a $ 0) ^ k) ?Pnkn"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2756
        proof(rule sum.cong2)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2757
          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: 32456
diff changeset
  2758
          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: 32456
diff changeset
  2759
          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: 32456
diff changeset
  2760
            unfolding natpermute_contain_maximal by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2761
          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))"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2762
            apply (rule prod.cong, simp)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2763
            using i r0 by (simp del: replicate.simps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2764
          also have "\<dots> = (fps_radical r (Suc k) a $ n) * r (Suc k) (a$0) ^ k"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2765
            unfolding prod_gen_delta[OF fK] using i r0 by simp
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2766
          finally show ?ths .
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2767
        qed
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2768
        then have "sum ?f ?Pnkn = of_nat (k+1) * ?r $ n * r (Suc k) (a $ 0) ^ k"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2769
          by (simp add: natpermute_max_card[OF nz, simplified])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2770
        also have "\<dots> = a$n - sum ?f ?Pnknn"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2771
          unfolding n1 using r00 a0 by (simp add: field_simps fps_radical_def del: of_nat_Suc )
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2772
        finally have fn: "sum ?f ?Pnkn = a$n - sum ?f ?Pnknn" .
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2773
        have "(?r ^ Suc k)$n = sum ?f ?Pnkn + sum ?f ?Pnknn"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2774
          unfolding fps_power_nth_Suc sum.union_disjoint[OF f d, unfolded eq] ..
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2775
        also have "\<dots> = a$n" unfolding fn by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2776
        finally have "?r ^ Suc k $ n = a $n" .}
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2777
      ultimately  show "?r ^ Suc k $ n = a $n" by (cases n, auto)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2778
  qed }
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2779
  then show ?thesis by (simp add: fps_eq_iff)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2780
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2781
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2782
*)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2783
lemma eq_divide_imp':
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2784
  fixes c :: "'a::field"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2785
  shows "c \<noteq> 0 \<Longrightarrow> a * c = b \<Longrightarrow> a = b / c"
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
  2786
  by (simp add: field_simps)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2787
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2788
lemma radical_unique:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2789
  assumes r0: "(r (Suc k) (b$0)) ^ Suc k = b$0"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2790
    and a0: "r (Suc k) (b$0 ::'a::field_char_0) = a$0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2791
    and b0: "b$0 \<noteq> 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2792
  shows "a^(Suc k) = b \<longleftrightarrow> a = fps_radical r (Suc k) b"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2793
    (is "?lhs \<longleftrightarrow> ?rhs" is "_ \<longleftrightarrow> a = ?r")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2794
proof
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2795
  show ?lhs if ?rhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2796
    using that using power_radical[OF b0, of r k, unfolded r0] by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2797
  show ?rhs if ?lhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2798
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2799
    have r00: "r (Suc k) (b$0) \<noteq> 0" using b0 r0 by auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2800
    have ceq: "card {0..k} = Suc k" by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2801
    from a0 have a0r0: "a$0 = ?r$0" by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2802
    have "a $ n = ?r $ n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2803
    proof (induct n rule: nat_less_induct)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2804
      fix n
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2805
      assume h: "\<forall>m<n. a$m = ?r $m"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2806
      show "a$n = ?r $ n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2807
      proof (cases n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2808
        case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2809
        then show ?thesis using a0 by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2810
      next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2811
        case (Suc n1)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2812
        have fK: "finite {0..k}" by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2813
        have nz: "n \<noteq> 0" using Suc by simp
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2814
        let ?Pnk = "natpermute n (Suc k)"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2815
        let ?Pnkn = "{xs \<in> ?Pnk. n \<in> set xs}"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2816
        let ?Pnknn = "{xs \<in> ?Pnk. n \<notin> set xs}"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2817
        have eq: "?Pnkn \<union> ?Pnknn = ?Pnk" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2818
        have d: "?Pnkn \<inter> ?Pnknn = {}" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2819
        have f: "finite ?Pnkn" "finite ?Pnknn"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2820
          using finite_Un[of ?Pnkn ?Pnknn, unfolded eq]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2821
          by (metis natpermute_finite)+
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2822
        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: 32456
diff changeset
  2823
        let ?g = "\<lambda>v. \<Prod>j\<in>{0..k}. a $ v ! j"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2824
        have "sum ?g ?Pnkn = sum (\<lambda>v. a $ n * (?r$0)^k) ?Pnkn"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2825
        proof (rule sum.cong)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2826
          fix v
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2827
          assume v: "v \<in> {xs \<in> natpermute n (Suc k). n \<in> set xs}"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2828
          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: 32456
diff changeset
  2829
          from v obtain i where i: "i \<in> {0..k}" "v = replicate (k+1) 0 [i:= n]"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2830
            unfolding Suc_eq_plus1 natpermute_contain_maximal
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2831
            by (auto simp del: replicate.simps)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2832
          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))"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2833
            apply (rule prod.cong, simp)
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2834
            using i a0
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2835
            apply (simp del: replicate.simps)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2836
            done
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2837
          also have "\<dots> = a $ n * (?r $ 0)^k"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2838
            using i by (simp add: prod_gen_delta)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2839
          finally show ?ths .
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57129
diff changeset
  2840
        qed rule
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2841
        then have th0: "sum ?g ?Pnkn = of_nat (k+1) * a $ n * (?r $ 0)^k"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2842
          by (simp add: natpermute_max_card[OF nz, simplified])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2843
        have th1: "sum ?g ?Pnknn = sum ?f ?Pnknn"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  2844
        proof (rule sum.cong, rule refl, rule prod.cong, simp)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2845
          fix xs i
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2846
          assume xs: "xs \<in> ?Pnknn" and i: "i \<in> {0..k}"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2847
          have False if c: "n \<le> xs ! i"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2848
          proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2849
            from xs i have "xs ! i \<noteq> n"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2850
              by (auto simp add: in_set_conv_nth natpermute_def)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2851
            with c have c': "n < xs!i" by arith
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2852
            have fths: "finite {0 ..< i}" "finite {i}" "finite {i+1..<Suc k}"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2853
              by simp_all
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2854
            have d: "{0 ..< i} \<inter> ({i} \<union> {i+1 ..< Suc k}) = {}" "{i} \<inter> {i+1..< Suc k} = {}"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2855
              by auto
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2856
            have eqs: "{0..<Suc k} = {0 ..< i} \<union> ({i} \<union> {i+1 ..< Suc k})"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2857
              using i by auto
63882
018998c00003 renamed listsum -> sum_list, listprod ~> prod_list
nipkow
parents: 63589
diff changeset
  2858
            from xs have "n = sum_list xs"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2859
              by (simp add: natpermute_def)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2860
            also have "\<dots> = sum (nth xs) {0..<Suc k}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2861
              using xs by (simp add: natpermute_def sum_list_sum_nth)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2862
            also have "\<dots> = xs!i + sum (nth xs) {0..<i} + sum (nth xs) {i+1..<Suc k}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2863
              unfolding eqs  sum.union_disjoint[OF fths(1) finite_UnI[OF fths(2,3)] d(1)]
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2864
              unfolding sum.union_disjoint[OF fths(2) fths(3) d(2)]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2865
              by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2866
            finally show ?thesis using c' by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2867
          qed
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  2868
          then have thn: "xs!i < n" by presburger
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2869
          from h[rule_format, OF thn] show "a$(xs !i) = ?r$(xs!i)" .
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2870
        qed
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2871
        have th00: "\<And>x::'a. of_nat (Suc k) * (x * inverse (of_nat (Suc k))) = x"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  2872
          by (simp add: field_simps del: of_nat_Suc)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2873
        from \<open>?lhs\<close> have "b$n = a^Suc k $ n"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2874
          by (simp add: fps_eq_iff)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2875
        also have "a ^ Suc k$n = sum ?g ?Pnkn + sum ?g ?Pnknn"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2876
          unfolding fps_power_nth_Suc
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2877
          using sum.union_disjoint[OF f d, unfolded Suc_eq_plus1[symmetric],
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2878
            unfolded eq, of ?g] by simp
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2879
        also have "\<dots> = of_nat (k+1) * a $ n * (?r $ 0)^k + sum ?f ?Pnknn"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2880
          unfolding th0 th1 ..
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2881
        finally have "of_nat (k+1) * a $ n * (?r $ 0)^k = b$n - sum ?f ?Pnknn"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2882
          by simp
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  2883
        then have "a$n = (b$n - sum ?f ?Pnknn) / (of_nat (k+1) * (?r $ 0)^k)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2884
          apply -
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2885
          apply (rule eq_divide_imp')
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2886
          using r00
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2887
          apply (simp del: of_nat_Suc)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  2888
          apply (simp add: ac_simps)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2889
          done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2890
        then show ?thesis
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  2891
          apply (simp del: of_nat_Suc)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2892
          unfolding fps_radical_def Suc
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2893
          apply (simp add: field_simps Suc th00 del: of_nat_Suc)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2894
          done
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2895
      qed
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2896
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2897
    then show ?rhs by (simp add: fps_eq_iff)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2898
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2899
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2900
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2901
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2902
lemma radical_power:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2903
  assumes r0: "r (Suc k) ((a$0) ^ Suc k) = a$0"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2904
    and a0: "(a$0 :: 'a::field_char_0) \<noteq> 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2905
  shows "(fps_radical r (Suc k) (a ^ Suc k)) = a"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2906
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2907
  let ?ak = "a^ Suc k"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2908
  have ak0: "?ak $ 0 = (a$0) ^ Suc k"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2909
    by (simp add: fps_nth_power_0 del: power_Suc)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2910
  from r0 have th0: "r (Suc k) (a ^ Suc k $ 0) ^ Suc k = a ^ Suc k $ 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2911
    using ak0 by auto
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2912
  from r0 ak0 have th1: "r (Suc k) (a ^ Suc k $ 0) = a $ 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2913
    by auto
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2914
  from ak0 a0 have ak00: "?ak $ 0 \<noteq>0 "
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2915
    by auto
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2916
  from radical_unique[of r k ?ak a, OF th0 th1 ak00] show ?thesis
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2917
    by metis
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2918
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2919
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2920
lemma fps_deriv_radical:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2921
  fixes a :: "'a::field_char_0 fps"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2922
  assumes r0: "(r (Suc k) (a$0)) ^ Suc k = a$0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2923
    and a0: "a$0 \<noteq> 0"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2924
  shows "fps_deriv (fps_radical r (Suc k) a) =
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  2925
    fps_deriv a / (fps_const (of_nat (Suc k)) * (fps_radical r (Suc k) a) ^ k)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2926
proof -
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2927
  let ?r = "fps_radical r (Suc k) a"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2928
  let ?w = "(fps_const (of_nat (Suc k)) * ?r ^ k)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2929
  from a0 r0 have r0': "r (Suc k) (a$0) \<noteq> 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2930
    by auto
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2931
  from r0' have w0: "?w $ 0 \<noteq> 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2932
    by (simp del: of_nat_Suc)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2933
  note th0 = inverse_mult_eq_1[OF w0]
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2934
  let ?iw = "inverse ?w"
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2935
  from iffD1[OF power_radical[of a r], OF a0 r0]
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2936
  have "fps_deriv (?r ^ Suc k) = fps_deriv a"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2937
    by simp
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2938
  then have "fps_deriv ?r * ?w = fps_deriv a"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  2939
    by (simp add: fps_deriv_power ac_simps del: power_Suc)
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  2940
  then have "?iw * fps_deriv ?r * ?w = ?iw * fps_deriv a"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2941
    by simp
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  2942
  with a0 r0 have "fps_deriv ?r * (?iw * ?w) = fps_deriv a / ?w"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  2943
    by (subst fps_divide_unit) (auto simp del: of_nat_Suc)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2944
  then show ?thesis unfolding th0 by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2945
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2946
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  2947
lemma radical_mult_distrib:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  2948
  fixes a :: "'a::field_char_0 fps"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2949
  assumes k: "k > 0"
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2950
    and ra0: "r k (a $ 0) ^ k = a $ 0"
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2951
    and rb0: "r k (b $ 0) ^ k = b $ 0"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2952
    and a0: "a $ 0 \<noteq> 0"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2953
    and b0: "b $ 0 \<noteq> 0"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  2954
  shows "r k ((a * b) $ 0) = r k (a $ 0) * r k (b $ 0) \<longleftrightarrow>
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2955
    fps_radical r k (a * b) = fps_radical r k a * fps_radical r k b"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2956
    (is "?lhs \<longleftrightarrow> ?rhs")
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2957
proof
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2958
  show ?rhs if r0': ?lhs
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2959
  proof -
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2960
    from r0' have r0: "(r k ((a * b) $ 0)) ^ k = (a * b) $ 0"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2961
      by (simp add: fps_mult_nth ra0 rb0 power_mult_distrib)
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2962
    show ?thesis
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2963
    proof (cases k)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2964
      case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2965
      then show ?thesis using r0' by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2966
    next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2967
      case (Suc h)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2968
      let ?ra = "fps_radical r (Suc h) a"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2969
      let ?rb = "fps_radical r (Suc h) b"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2970
      have th0: "r (Suc h) ((a * b) $ 0) = (fps_radical r (Suc h) a * fps_radical r (Suc h) b) $ 0"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2971
        using r0' Suc by (simp add: fps_mult_nth)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2972
      have ab0: "(a*b) $ 0 \<noteq> 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2973
        using a0 b0 by (simp add: fps_mult_nth)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2974
      from radical_unique[of r h "a*b" "fps_radical r (Suc h) a * fps_radical r (Suc h) b", OF r0[unfolded Suc] th0 ab0, symmetric]
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2975
        iffD1[OF power_radical[of _ r], OF a0 ra0[unfolded Suc]] iffD1[OF power_radical[of _ r], OF b0 rb0[unfolded Suc]] Suc r0'
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2976
      show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2977
        by (auto simp add: power_mult_distrib simp del: power_Suc)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  2978
    qed
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2979
  qed
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2980
  show ?lhs if ?rhs
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2981
  proof -
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2982
    from that have "(fps_radical r k (a * b)) $ 0 = (fps_radical r k a * fps_radical r k b) $ 0"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2983
      by simp
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2984
    then show ?thesis
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  2985
      using k by (simp add: fps_mult_nth)
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  2986
  qed
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2987
qed
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2988
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2989
(*
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2990
lemma radical_mult_distrib:
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  2991
  fixes a:: "'a::field_char_0 fps"
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2992
  assumes
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2993
  ra0: "r k (a $ 0) ^ k = a $ 0"
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2994
  and rb0: "r k (b $ 0) ^ k = b $ 0"
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  2995
  and r0': "r k ((a * b) $ 0) = r k (a $ 0) * r k (b $ 0)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2996
  and a0: "a$0 \<noteq> 0"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2997
  and b0: "b$0 \<noteq> 0"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2998
  shows "fps_radical r (k) (a*b) = fps_radical r (k) a * fps_radical r (k) (b)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  2999
proof-
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3000
  from r0' have r0: "(r (k) ((a*b)$0)) ^ k = (a*b)$0"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3001
    by (simp add: fps_mult_nth ra0 rb0 power_mult_distrib)
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3002
  {assume "k=0" then have ?thesis by simp}
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3003
  moreover
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3004
  {fix h assume k: "k = Suc h"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3005
  let ?ra = "fps_radical r (Suc h) a"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3006
  let ?rb = "fps_radical r (Suc h) b"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3007
  have th0: "r (Suc h) ((a * b) $ 0) = (fps_radical r (Suc h) a * fps_radical r (Suc h) b) $ 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3008
    using r0' k by (simp add: fps_mult_nth)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3009
  have ab0: "(a*b) $ 0 \<noteq> 0" using a0 b0 by (simp add: fps_mult_nth)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3010
  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
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3011
    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: 29915
diff changeset
  3012
  have ?thesis by (auto simp add: power_mult_distrib simp del: power_Suc)}
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3013
ultimately show ?thesis by (cases k, auto)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3014
qed
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3015
*)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3016
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3017
lemma fps_divide_1 [simp]: "(a :: 'a::field fps) / 1 = a"
64240
eabf80376aab more standardized names
haftmann
parents: 63918
diff changeset
  3018
  by (fact div_by_1)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3019
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3020
lemma radical_divide:
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  3021
  fixes a :: "'a::field_char_0 fps"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3022
  assumes kp: "k > 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3023
    and ra0: "(r k (a $ 0)) ^ k = a $ 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3024
    and rb0: "(r k (b $ 0)) ^ k = b $ 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3025
    and a0: "a$0 \<noteq> 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3026
    and b0: "b$0 \<noteq> 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3027
  shows "r k ((a $ 0) / (b$0)) = r k (a$0) / r k (b $ 0) \<longleftrightarrow>
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3028
    fps_radical r k (a/b) = fps_radical r k a / fps_radical r k b"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3029
  (is "?lhs = ?rhs")
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3030
proof
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3031
  let ?r = "fps_radical r k"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  3032
  from kp obtain h where k: "k = Suc h"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  3033
    by (cases k) auto
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3034
  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: 31021
diff changeset
  3035
  have rb0': "r k (b$0) \<noteq> 0" using b0 rb0 k by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3036
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3037
  show ?lhs if ?rhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3038
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3039
    from that have "?r (a/b) $ 0 = (?r a / ?r b)$0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3040
      by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3041
    then show ?thesis
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3042
      using k a0 b0 rb0' by (simp add: fps_divide_unit fps_mult_nth fps_inverse_def divide_inverse)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3043
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3044
  show ?rhs if ?lhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3045
  proof -
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3046
    from a0 b0 have ab0[simp]: "(a/b)$0 = a$0 / b$0"
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3047
      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: 31021
diff changeset
  3048
    have th0: "r k ((a/b)$0) ^ k = (a/b)$0"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
  3049
      by (simp add: \<open>?lhs\<close> power_divide ra0 rb0)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3050
    from a0 b0 ra0' rb0' kp \<open>?lhs\<close>
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3051
    have th1: "r k ((a / b) $ 0) = (fps_radical r k a / fps_radical r k b) $ 0"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3052
      by (simp add: fps_divide_unit fps_mult_nth fps_inverse_def divide_inverse)
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3053
    from a0 b0 ra0' rb0' kp have ab0': "(a / b) $ 0 \<noteq> 0"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3054
      by (simp add: fps_divide_unit fps_mult_nth fps_inverse_def nonzero_imp_inverse_nonzero)
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3055
    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: 31021
diff changeset
  3056
    note thb[simp] = iffD1[OF power_radical[where r=r and k=h], OF b0 rb0[unfolded k], unfolded k[symmetric]]
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3057
    from b0 rb0' have th2: "(?r a / ?r b)^k = a/b"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3058
      by (simp add: fps_divide_unit power_mult_distrib fps_inverse_power[symmetric])
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  3059
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  3060
    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]
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3061
    show ?thesis .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3062
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3063
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3064
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3065
lemma radical_inverse:
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  3066
  fixes a :: "'a::field_char_0 fps"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3067
  assumes k: "k > 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3068
    and ra0: "r k (a $ 0) ^ k = a $ 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3069
    and r1: "(r k 1)^k = 1"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3070
    and a0: "a$0 \<noteq> 0"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3071
  shows "r k (inverse (a $ 0)) = r k 1 / (r k (a $ 0)) \<longleftrightarrow>
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3072
    fps_radical r k (inverse a) = fps_radical r k 1 / fps_radical r k a"
31073
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3073
  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: 31021
diff changeset
  3074
  by (simp add: divide_inverse fps_divide_def)
4b44c4d08aa6 Generalized distributivity theorems of radicals over multiplication, division and inverses
chaieb
parents: 31021
diff changeset
  3075
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3076
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3077
subsection \<open>Derivative of composition\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3078
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3079
lemma fps_compose_deriv:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3080
  fixes a :: "'a::idom fps"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3081
  assumes b0: "b$0 = 0"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3082
  shows "fps_deriv (a oo b) = ((fps_deriv a) oo b) * fps_deriv b"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3083
proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3084
  have "(fps_deriv (a oo b))$n = (((fps_deriv a) oo b) * (fps_deriv b)) $n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3085
  proof -
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3086
    have "(fps_deriv (a oo b))$n = sum (\<lambda>i. a $ i * (fps_deriv (b^i))$n) {0.. Suc n}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3087
      by (simp add: fps_compose_def field_simps sum_distrib_left del: of_nat_Suc)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3088
    also have "\<dots> = sum (\<lambda>i. a$i * ((fps_const (of_nat i)) * (fps_deriv b * (b^(i - 1))))$n) {0.. Suc n}"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  3089
      by (simp add: field_simps fps_deriv_power del: fps_mult_left_const_nth of_nat_Suc)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3090
    also have "\<dots> = sum (\<lambda>i. of_nat i * a$i * (((b^(i - 1)) * fps_deriv b))$n) {0.. Suc n}"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3091
      unfolding fps_mult_left_const_nth  by (simp add: field_simps)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3092
    also have "\<dots> = sum (\<lambda>i. of_nat i * a$i * (sum (\<lambda>j. (b^ (i - 1))$j * (fps_deriv b)$(n - j)) {0..n})) {0.. Suc n}"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3093
      unfolding fps_mult_nth ..
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3094
    also have "\<dots> = sum (\<lambda>i. of_nat i * a$i * (sum (\<lambda>j. (b^ (i - 1))$j * (fps_deriv b)$(n - j)) {0..n})) {1.. Suc n}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3095
      apply (rule sum.mono_neutral_right)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3096
      apply (auto simp add: mult_delta_left sum.delta not_le)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3097
      done
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3098
    also have "\<dots> = sum (\<lambda>i. of_nat (i + 1) * a$(i+1) * (sum (\<lambda>j. (b^ i)$j * of_nat (n - j + 1) * b$(n - j + 1)) {0..n})) {0.. n}"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3099
      unfolding fps_deriv_nth
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3100
      by (rule sum.reindex_cong [of Suc]) (auto simp add: mult.assoc)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3101
    finally have th0: "(fps_deriv (a oo b))$n =
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3102
      sum (\<lambda>i. of_nat (i + 1) * a$(i+1) * (sum (\<lambda>j. (b^ i)$j * of_nat (n - j + 1) * b$(n - j + 1)) {0..n})) {0.. n}" .
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3103
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3104
    have "(((fps_deriv a) oo b) * (fps_deriv b))$n = sum (\<lambda>i. (fps_deriv b)$ (n - i) * ((fps_deriv a) oo b)$i) {0..n}"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  3105
      unfolding fps_mult_nth by (simp add: ac_simps)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3106
    also have "\<dots> = sum (\<lambda>i. sum (\<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}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3107
      unfolding fps_deriv_nth fps_compose_nth sum_distrib_left mult.assoc
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3108
      apply (rule sum.cong)
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57129
diff changeset
  3109
      apply (rule refl)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3110
      apply (rule sum.mono_neutral_left)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3111
      apply (simp_all add: subset_eq)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3112
      apply clarify
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3113
      apply (subgoal_tac "b^i$x = 0")
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3114
      apply simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3115
      apply (rule startsby_zero_power_prefix[OF b0, rule_format])
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3116
      apply simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3117
      done
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3118
    also have "\<dots> = sum (\<lambda>i. of_nat (i + 1) * a$(i+1) * (sum (\<lambda>j. (b^ i)$j * of_nat (n - j + 1) * b$(n - j + 1)) {0..n})) {0.. n}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3119
      unfolding sum_distrib_left
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3120
      apply (subst sum.commute)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3121
      apply (rule sum.cong, rule refl)+
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3122
      apply simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3123
      done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3124
    finally show ?thesis
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3125
      unfolding th0 by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3126
  qed
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3127
  then show ?thesis by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3128
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3129
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3130
lemma fps_mult_X_plus_1_nth:
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3131
  "((1+X)*a) $n = (if n = 0 then (a$n :: 'a::comm_ring_1) else a$n + a$(n - 1))"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3132
proof (cases n)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3133
  case 0
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3134
  then show ?thesis
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3135
    by (simp add: fps_mult_nth)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3136
next
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3137
  case (Suc m)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3138
  have "((1 + X)*a) $ n = sum (\<lambda>i. (1 + X) $ i * a $ (n - i)) {0..n}"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3139
    by (simp add: fps_mult_nth)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3140
  also have "\<dots> = sum (\<lambda>i. (1+X)$i * a$(n-i)) {0.. 1}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3141
    unfolding Suc by (rule sum.mono_neutral_right) auto
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3142
  also have "\<dots> = (if n = 0 then (a$n :: 'a::comm_ring_1) else a$n + a$(n - 1))"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3143
    by (simp add: Suc)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3144
  finally show ?thesis .
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3145
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3146
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3147
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  3148
subsection \<open>Finite FPS (i.e. polynomials) and X\<close>
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3149
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3150
lemma fps_poly_sum_X:
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3151
  assumes "\<forall>i > n. a$i = (0::'a::comm_ring_1)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3152
  shows "a = sum (\<lambda>i. fps_const (a$i) * X^i) {0..n}" (is "a = ?r")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3153
proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3154
  have "a$i = ?r$i" for i
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3155
    unfolding fps_sum_nth fps_mult_left_const_nth X_power_nth
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3156
    by (simp add: mult_delta_right sum.delta' assms)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3157
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3158
    unfolding fps_eq_iff by blast
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3159
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3160
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3161
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3162
subsection \<open>Compositional inverses\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3163
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3164
fun compinv :: "'a fps \<Rightarrow> nat \<Rightarrow> 'a::field"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3165
where
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3166
  "compinv a 0 = X$0"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3167
| "compinv a (Suc n) =
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3168
    (X$ Suc n - sum (\<lambda>i. (compinv a i) * (a^i)$Suc n) {0 .. n}) / (a$1) ^ Suc n"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3169
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3170
definition "fps_inv a = Abs_fps (compinv a)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3171
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3172
lemma fps_inv:
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3173
  assumes a0: "a$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3174
    and a1: "a$1 \<noteq> 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3175
  shows "fps_inv a oo a = X"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3176
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3177
  let ?i = "fps_inv a oo a"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3178
  have "?i $n = X$n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3179
  proof (induct n rule: nat_less_induct)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3180
    fix n
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3181
    assume h: "\<forall>m<n. ?i$m = X$m"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3182
    show "?i $ n = X$n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3183
    proof (cases n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3184
      case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3185
      then show ?thesis using a0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3186
        by (simp add: fps_compose_nth fps_inv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3187
    next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3188
      case (Suc n1)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3189
      have "?i $ n = sum (\<lambda>i. (fps_inv a $ i) * (a^i)$n) {0 .. n1} + fps_inv a $ Suc n1 * (a $ 1)^ Suc n1"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3190
        by (simp only: fps_compose_nth) (simp add: Suc startsby_zero_power_nth_same [OF a0] del: power_Suc)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3191
      also have "\<dots> = sum (\<lambda>i. (fps_inv a $ i) * (a^i)$n) {0 .. n1} +
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3192
        (X$ Suc n1 - sum (\<lambda>i. (fps_inv a $ i) * (a^i)$n) {0 .. n1})"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3193
        using a0 a1 Suc by (simp add: fps_inv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3194
      also have "\<dots> = X$n" using Suc by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3195
      finally show ?thesis .
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3196
    qed
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3197
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3198
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3199
    by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3200
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3201
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3202
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3203
fun gcompinv :: "'a fps \<Rightarrow> 'a fps \<Rightarrow> nat \<Rightarrow> 'a::field"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3204
where
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3205
  "gcompinv b a 0 = b$0"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3206
| "gcompinv b a (Suc n) =
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3207
    (b$ Suc n - sum (\<lambda>i. (gcompinv b a i) * (a^i)$Suc n) {0 .. n}) / (a$1) ^ Suc n"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3208
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3209
definition "fps_ginv b a = Abs_fps (gcompinv b a)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3210
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3211
lemma fps_ginv:
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3212
  assumes a0: "a$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3213
    and a1: "a$1 \<noteq> 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3214
  shows "fps_ginv b a oo a = b"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3215
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3216
  let ?i = "fps_ginv b a oo a"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3217
  have "?i $n = b$n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3218
  proof (induct n rule: nat_less_induct)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3219
    fix n
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3220
    assume h: "\<forall>m<n. ?i$m = b$m"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3221
    show "?i $ n = b$n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3222
    proof (cases n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3223
      case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3224
      then show ?thesis using a0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3225
        by (simp add: fps_compose_nth fps_ginv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3226
    next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3227
      case (Suc n1)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3228
      have "?i $ n = sum (\<lambda>i. (fps_ginv b a $ i) * (a^i)$n) {0 .. n1} + fps_ginv b a $ Suc n1 * (a $ 1)^ Suc n1"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3229
        by (simp only: fps_compose_nth) (simp add: Suc startsby_zero_power_nth_same [OF a0] del: power_Suc)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3230
      also have "\<dots> = sum (\<lambda>i. (fps_ginv b a $ i) * (a^i)$n) {0 .. n1} +
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3231
        (b$ Suc n1 - sum (\<lambda>i. (fps_ginv b a $ i) * (a^i)$n) {0 .. n1})"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3232
        using a0 a1 Suc by (simp add: fps_ginv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3233
      also have "\<dots> = b$n" using Suc by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3234
      finally show ?thesis .
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3235
    qed
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3236
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3237
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3238
    by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3239
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3240
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3241
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: 39198
diff changeset
  3242
  apply (auto simp add: fun_eq_iff fps_eq_iff fps_inv_def fps_ginv_def)
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  3243
  apply (induct_tac n rule: nat_less_induct)
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  3244
  apply auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3245
  apply (case_tac na)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3246
  apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3247
  apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3248
  done
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3249
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3250
lemma fps_compose_1[simp]: "1 oo a = 1"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3251
  by (simp add: fps_eq_iff fps_compose_nth mult_delta_left sum.delta)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3252
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3253
lemma fps_compose_0[simp]: "0 oo a = 0"
29913
89eadbe71e97 add mult_delta lemmas; simplify some proofs
huffman
parents: 29912
diff changeset
  3254
  by (simp add: fps_eq_iff fps_compose_nth)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3255
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60679
diff changeset
  3256
lemma fps_compose_0_right[simp]: "a oo 0 = fps_const (a $ 0)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3257
  by (auto simp add: fps_eq_iff fps_compose_nth power_0_left sum.neutral)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3258
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3259
lemma fps_compose_add_distrib: "(a + b) oo c = (a oo c) + (b oo c)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3260
  by (simp add: fps_eq_iff fps_compose_nth field_simps sum.distrib)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3261
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3262
lemma fps_compose_sum_distrib: "(sum f S) oo a = sum (\<lambda>i. f i oo a) S"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3263
proof (cases "finite S")
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3264
  case True
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3265
  show ?thesis
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3266
  proof (rule finite_induct[OF True])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3267
    show "sum f {} oo a = (\<Sum>i\<in>{}. f i oo a)"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3268
      by simp
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3269
  next
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3270
    fix x F
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3271
    assume fF: "finite F"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3272
      and xF: "x \<notin> F"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3273
      and h: "sum f F oo a = sum (\<lambda>i. f i oo a) F"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3274
    show "sum f (insert x F) oo a  = sum (\<lambda>i. f i oo a) (insert x F)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3275
      using fF xF h by (simp add: fps_compose_add_distrib)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3276
  qed
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3277
next
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3278
  case False
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3279
  then show ?thesis by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3280
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3281
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3282
lemma convolution_eq:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3283
  "sum (\<lambda>i. a (i :: nat) * b (n - i)) {0 .. n} =
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3284
    sum (\<lambda>(i,j). a i * b j) {(i,j). i \<le> n \<and> j \<le> n \<and> i + j = n}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3285
  by (rule sum.reindex_bij_witness[where i=fst and j="\<lambda>i. (i, n - i)"]) auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3286
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3287
lemma product_composition_lemma:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3288
  assumes c0: "c$0 = (0::'a::idom)"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3289
    and d0: "d$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3290
  shows "((a oo c) * (b oo d))$n =
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3291
    sum (\<lambda>(k,m). a$k * b$m * (c^k * d^m) $ n) {(k,m). k + m \<le> n}"  (is "?l = ?r")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3292
proof -
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3293
  let ?S = "{(k::nat, m::nat). k + m \<le> n}"
61943
7fba644ed827 discontinued ASCII replacement syntax <*>;
wenzelm
parents: 61804
diff changeset
  3294
  have s: "?S \<subseteq> {0..n} \<times> {0..n}" by (auto simp add: subset_eq)
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3295
  have f: "finite {(k::nat, m::nat). k + m \<le> n}"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3296
    apply (rule finite_subset[OF s])
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3297
    apply auto
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3298
    done
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3299
  have "?r =  sum (\<lambda>i. sum (\<lambda>(k,m). a$k * (c^k)$i * b$m * (d^m) $ (n - i)) {(k,m). k + m \<le> n}) {0..n}"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3300
    apply (simp add: fps_mult_nth sum_distrib_left)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3301
    apply (subst sum.commute)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3302
    apply (rule sum.cong)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3303
    apply (auto simp add: field_simps)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3304
    done
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3305
  also have "\<dots> = ?l"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3306
    apply (simp add: fps_mult_nth fps_compose_nth sum_product)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3307
    apply (rule sum.cong)
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57129
diff changeset
  3308
    apply (rule refl)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3309
    apply (simp add: sum.cartesian_product mult.assoc)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3310
    apply (rule sum.mono_neutral_right[OF f])
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3311
    apply (simp add: subset_eq)
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3312
    apply presburger
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3313
    apply clarsimp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3314
    apply (rule ccontr)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3315
    apply (clarsimp simp add: not_le)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3316
    apply (case_tac "x < aa")
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3317
    apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3318
    apply (frule_tac startsby_zero_power_prefix[rule_format, OF c0])
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3319
    apply blast
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3320
    apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3321
    apply (frule_tac startsby_zero_power_prefix[rule_format, OF d0])
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3322
    apply blast
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3323
    done
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3324
  finally show ?thesis by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3325
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3326
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3327
lemma product_composition_lemma':
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3328
  assumes c0: "c$0 = (0::'a::idom)"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3329
    and d0: "d$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3330
  shows "((a oo c) * (b oo d))$n =
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3331
    sum (\<lambda>k. sum (\<lambda>m. a$k * b$m * (c^k * d^m) $ n) {0..n}) {0..n}"  (is "?l = ?r")
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3332
  unfolding product_composition_lemma[OF c0 d0]
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3333
  unfolding sum.cartesian_product
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3334
  apply (rule sum.mono_neutral_left)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3335
  apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3336
  apply (clarsimp simp add: subset_eq)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3337
  apply clarsimp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3338
  apply (rule ccontr)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3339
  apply (subgoal_tac "(c^aa * d^ba) $ n = 0")
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3340
  apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3341
  unfolding fps_mult_nth
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3342
  apply (rule sum.neutral)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3343
  apply (clarsimp simp add: not_le)
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51107
diff changeset
  3344
  apply (case_tac "x < aa")
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3345
  apply (rule startsby_zero_power_prefix[OF c0, rule_format])
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3346
  apply simp
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51107
diff changeset
  3347
  apply (subgoal_tac "n - x < ba")
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3348
  apply (frule_tac k = "ba" in startsby_zero_power_prefix[OF d0, rule_format])
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3349
  apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3350
  apply arith
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3351
  done
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3352
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3353
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3354
lemma sum_pair_less_iff:
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3355
  "sum (\<lambda>((k::nat),m). a k * b m * c (k + m)) {(k,m). k + m \<le> n} =
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3356
    sum (\<lambda>s. sum (\<lambda>i. a i * b (s - i) * c s) {0..s}) {0..n}"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3357
  (is "?l = ?r")
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3358
proof -
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3359
  let ?KM = "{(k,m). k + m \<le> n}"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3360
  let ?f = "\<lambda>s. UNION {(0::nat)..s} (\<lambda>i. {(i,s - i)})"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3361
  have th0: "?KM = UNION {0..n} ?f"
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62102
diff changeset
  3362
    by auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3363
  show "?l = ?r "
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3364
    unfolding th0
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3365
    apply (subst sum.UNION_disjoint)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3366
    apply auto
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3367
    apply (subst sum.UNION_disjoint)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3368
    apply auto
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3369
    done
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3370
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3371
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3372
lemma fps_compose_mult_distrib_lemma:
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3373
  assumes c0: "c$0 = (0::'a::idom)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3374
  shows "((a oo c) * (b oo c))$n = sum (\<lambda>s. sum (\<lambda>i. a$i * b$(s - i) * (c^s) $ n) {0..s}) {0..n}"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3375
  unfolding product_composition_lemma[OF c0 c0] power_add[symmetric]
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3376
  unfolding sum_pair_less_iff[where a = "\<lambda>k. a$k" and b="\<lambda>m. b$m" and c="\<lambda>s. (c ^ s)$n" and n = n] ..
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3377
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3378
lemma fps_compose_mult_distrib:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54452
diff changeset
  3379
  assumes c0: "c $ 0 = (0::'a::idom)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54452
diff changeset
  3380
  shows "(a * b) oo c = (a oo c) * (b oo c)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54452
diff changeset
  3381
  apply (simp add: fps_eq_iff fps_compose_mult_distrib_lemma [OF c0])
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3382
  apply (simp add: fps_compose_nth fps_mult_nth sum_distrib_right)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3383
  done
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3384
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  3385
lemma fps_compose_prod_distrib:
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3386
  assumes c0: "c$0 = (0::'a::idom)"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  3387
  shows "prod a S oo c = prod (\<lambda>k. a k oo c) S"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3388
  apply (cases "finite S")
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3389
  apply simp_all
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3390
  apply (induct S rule: finite_induct)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3391
  apply simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3392
  apply (simp add: fps_compose_mult_distrib[OF c0])
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3393
  done
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3394
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3395
lemma fps_compose_divide:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3396
  assumes [simp]: "g dvd f" "h $ 0 = 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3397
  shows   "fps_compose f h = fps_compose (f / g :: 'a :: field fps) h * fps_compose g h"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3398
proof -
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3399
  have "f = (f / g) * g" by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3400
  also have "fps_compose \<dots> h = fps_compose (f / g) h * fps_compose g h"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3401
    by (subst fps_compose_mult_distrib) simp_all
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3402
  finally show ?thesis .
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3403
qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3404
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3405
lemma fps_compose_divide_distrib:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3406
  assumes "g dvd f" "h $ 0 = 0" "fps_compose g h \<noteq> 0"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3407
  shows   "fps_compose (f / g :: 'a :: field fps) h = fps_compose f h / fps_compose g h"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3408
  using fps_compose_divide[OF assms(1,2)] assms(3) by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3409
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3410
lemma fps_compose_power:
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3411
  assumes c0: "c$0 = (0::'a::idom)"
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3412
  shows "(a oo c)^n = a^n oo c"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3413
proof (cases n)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3414
  case 0
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3415
  then show ?thesis by simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3416
next
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3417
  case (Suc m)
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  3418
  have th0: "a^n = prod (\<lambda>k. a) {0..m}" "(a oo c) ^ n = prod (\<lambda>k. a oo c) {0..m}"
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  3419
    by (simp_all add: prod_constant Suc)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3420
  then show ?thesis
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  3421
    by (simp add: fps_compose_prod_distrib[OF c0])
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3422
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3423
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3424
lemma fps_compose_uminus: "- (a::'a::ring_1 fps) oo c = - (a oo c)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3425
  by (simp add: fps_eq_iff fps_compose_nth field_simps sum_negf[symmetric])
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3426
    
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3427
lemma fps_compose_sub_distrib: "(a - b) oo (c::'a::ring_1 fps) = (a oo c) - (b oo c)"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53374
diff changeset
  3428
  using fps_compose_add_distrib [of a "- b" c] by (simp add: fps_compose_uminus)
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3429
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3430
lemma X_fps_compose: "X oo a = Abs_fps (\<lambda>n. if n = 0 then (0::'a::comm_ring_1) else a$n)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3431
  by (simp add: fps_eq_iff fps_compose_nth mult_delta_left sum.delta)
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3432
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3433
lemma fps_inverse_compose:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3434
  assumes b0: "(b$0 :: 'a::field) = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3435
    and a0: "a$0 \<noteq> 0"
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3436
  shows "inverse a oo b = inverse (a oo b)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3437
proof -
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3438
  let ?ia = "inverse a"
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3439
  let ?ab = "a oo b"
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3440
  let ?iab = "inverse ?ab"
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3441
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3442
  from a0 have ia0: "?ia $ 0 \<noteq> 0" by simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3443
  from a0 have ab0: "?ab $ 0 \<noteq> 0" by (simp add: fps_compose_def)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3444
  have "(?ia oo b) *  (a oo b) = 1"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3445
    unfolding fps_compose_mult_distrib[OF b0, symmetric]
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3446
    unfolding inverse_mult_eq_1[OF a0]
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3447
    fps_compose_1 ..
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3448
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3449
  then have "(?ia oo b) *  (a oo b) * ?iab  = 1 * ?iab" by simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3450
  then have "(?ia oo b) *  (?iab * (a oo b))  = ?iab" by simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3451
  then show ?thesis unfolding inverse_mult_eq_1[OF ab0] by simp
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3452
qed
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3453
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3454
lemma fps_divide_compose:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3455
  assumes c0: "(c$0 :: 'a::field) = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3456
    and b0: "b$0 \<noteq> 0"
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3457
  shows "(a/b) oo c = (a oo c) / (b oo c)"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3458
    using b0 c0 by (simp add: fps_divide_unit fps_inverse_compose fps_compose_mult_distrib)
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3459
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3460
lemma gp:
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3461
  assumes a0: "a$0 = (0::'a::field)"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3462
  shows "(Abs_fps (\<lambda>n. 1)) oo a = 1/(1 - a)"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3463
    (is "?one oo a = _")
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3464
proof -
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3465
  have o0: "?one $ 0 \<noteq> 0" by simp
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3466
  have th0: "(1 - X) $ 0 \<noteq> (0::'a)" by simp
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3467
  from fps_inverse_gp[where ?'a = 'a]
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3468
  have "inverse ?one = 1 - X" by (simp add: fps_eq_iff)
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3469
  then have "inverse (inverse ?one) = inverse (1 - X)" by simp
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3470
  then have th: "?one = 1/(1 - X)" unfolding fps_inverse_idempotent[OF o0]
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3471
    by (simp add: fps_divide_def)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3472
  show ?thesis
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3473
    unfolding th
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3474
    unfolding fps_divide_compose[OF a0 th0]
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3475
    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: 31148
diff changeset
  3476
qed
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3477
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3478
lemma fps_const_power [simp]: "fps_const (c::'a::ring_1) ^ n = fps_const (c^n)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  3479
  by (induct n) auto
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3480
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3481
lemma fps_compose_radical:
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  3482
  assumes b0: "b$0 = (0::'a::field_char_0)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3483
    and ra0: "r (Suc k) (a$0) ^ Suc k = a$0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3484
    and a0: "a$0 \<noteq> 0"
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3485
  shows "fps_radical r (Suc k)  a oo b = fps_radical r (Suc k) (a oo b)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3486
proof -
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3487
  let ?r = "fps_radical r (Suc k)"
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3488
  let ?ab = "a oo b"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3489
  have ab0: "?ab $ 0 = a$0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3490
    by (simp add: fps_compose_def)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3491
  from ab0 a0 ra0 have rab0: "?ab $ 0 \<noteq> 0" "r (Suc k) (?ab $ 0) ^ Suc k = ?ab $ 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3492
    by simp_all
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3493
  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: 31148
diff changeset
  3494
    by (simp add: ab0 fps_compose_def)
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3495
  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: 31148
diff changeset
  3496
    unfolding fps_compose_power[OF b0]
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3497
    unfolding iffD1[OF power_radical[of a r k], OF a0 ra0]  ..
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3498
  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]
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3499
  show ?thesis  .
31199
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3500
qed
10d413b08fa7 FPS composition distributes over inverses, division and arbitrary nth roots. General geometric series theorem
chaieb
parents: 31148
diff changeset
  3501
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3502
lemma fps_const_mult_apply_left: "fps_const c * (a oo b) = (fps_const c * a) oo b"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3503
  by (simp add: fps_eq_iff fps_compose_nth sum_distrib_left mult.assoc)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3504
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3505
lemma fps_const_mult_apply_right:
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3506
  "(a oo b) * fps_const (c::'a::comm_semiring_1) = (fps_const c * a) oo b"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  3507
  by (auto simp add: fps_const_mult_apply_left mult.commute)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3508
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  3509
lemma fps_compose_assoc:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3510
  assumes c0: "c$0 = (0::'a::idom)"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3511
    and b0: "b$0 = 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3512
  shows "a oo (b oo c) = a oo b oo c" (is "?l = ?r")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3513
proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3514
  have "?l$n = ?r$n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3515
  proof -
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3516
    have "?l$n = (sum (\<lambda>i. (fps_const (a$i) * b^i) oo c) {0..n})$n"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3517
      by (simp add: fps_compose_nth fps_compose_power[OF c0] fps_const_mult_apply_left
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3518
        sum_distrib_left mult.assoc fps_sum_nth)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3519
    also have "\<dots> = ((sum (\<lambda>i. fps_const (a$i) * b^i) {0..n}) oo c)$n"
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3520
      by (simp add: fps_compose_sum_distrib)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3521
    also have "\<dots> = ?r$n"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3522
      apply (simp add: fps_compose_nth fps_sum_nth sum_distrib_right mult.assoc)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3523
      apply (rule sum.cong)
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 57129
diff changeset
  3524
      apply (rule refl)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3525
      apply (rule sum.mono_neutral_right)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3526
      apply (auto simp add: not_le)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3527
      apply (erule startsby_zero_power_prefix[OF b0, rule_format])
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3528
      done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3529
    finally show ?thesis .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3530
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3531
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3532
    by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3533
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3534
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3535
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3536
lemma fps_X_power_compose:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3537
  assumes a0: "a$0=0"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3538
  shows "X^k oo a = (a::'a::idom fps)^k"
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3539
  (is "?l = ?r")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3540
proof (cases k)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3541
  case 0
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3542
  then show ?thesis by simp
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3543
next
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3544
  case (Suc h)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3545
  have "?l $ n = ?r $n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3546
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3547
    consider "k > n" | "k \<le> n" by arith
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3548
    then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3549
    proof cases
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3550
      case 1
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3551
      then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3552
        using a0 startsby_zero_power_prefix[OF a0] Suc
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3553
        by (simp add: fps_compose_nth del: power_Suc)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3554
    next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3555
      case 2
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3556
      then show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3557
        by (simp add: fps_compose_nth mult_delta_left sum.delta)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3558
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3559
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3560
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3561
    unfolding fps_eq_iff by blast
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3562
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3563
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3564
lemma fps_inv_right:
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3565
  assumes a0: "a$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3566
    and a1: "a$1 \<noteq> 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3567
  shows "a oo fps_inv a = X"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3568
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3569
  let ?ia = "fps_inv a"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3570
  let ?iaa = "a oo fps_inv a"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3571
  have th0: "?ia $ 0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3572
    by (simp add: fps_inv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3573
  have th1: "?iaa $ 0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3574
    using a0 a1 by (simp add: fps_inv_def fps_compose_nth)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3575
  have th2: "X$0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3576
    by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3577
  from fps_inv[OF a0 a1] have "a oo (fps_inv a oo a) = a oo X"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3578
    by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3579
  then have "(a oo fps_inv a) oo a = X oo a"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3580
    by (simp add: fps_compose_assoc[OF a0 th0] X_fps_compose_startby0[OF a0])
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3581
  with fps_compose_inj_right[OF a0 a1] show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3582
    by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3583
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3584
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3585
lemma fps_inv_deriv:
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3586
  assumes a0: "a$0 = (0::'a::field)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3587
    and a1: "a$1 \<noteq> 0"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3588
  shows "fps_deriv (fps_inv a) = inverse (fps_deriv a oo fps_inv a)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3589
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3590
  let ?ia = "fps_inv a"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3591
  let ?d = "fps_deriv a oo ?ia"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3592
  let ?dia = "fps_deriv ?ia"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3593
  have ia0: "?ia$0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3594
    by (simp add: fps_inv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3595
  have th0: "?d$0 \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3596
    using a1 by (simp add: fps_compose_nth)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3597
  from fps_inv_right[OF a0 a1] have "?d * ?dia = 1"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3598
    by (simp add: fps_compose_deriv[OF ia0, of a, symmetric] )
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3599
  then have "inverse ?d * ?d * ?dia = inverse ?d * 1"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3600
    by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3601
  with inverse_mult_eq_1 [OF th0] show "?dia = inverse ?d"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3602
    by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3603
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3604
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3605
lemma fps_inv_idempotent:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3606
  assumes a0: "a$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3607
    and a1: "a$1 \<noteq> 0"
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3608
  shows "fps_inv (fps_inv a) = a"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3609
proof -
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3610
  let ?r = "fps_inv"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3611
  have ra0: "?r a $ 0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3612
    by (simp add: fps_inv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3613
  from a1 have ra1: "?r a $ 1 \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3614
    by (simp add: fps_inv_def field_simps)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3615
  have X0: "X$0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3616
    by simp
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3617
  from fps_inv[OF ra0 ra1] have "?r (?r a) oo ?r a = X" .
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3618
  then have "?r (?r a) oo ?r a oo a = X oo a"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3619
    by simp
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3620
  then have "?r (?r a) oo (?r a oo a) = a"
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3621
    unfolding X_fps_compose_startby0[OF a0]
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3622
    unfolding fps_compose_assoc[OF a0 ra0, symmetric] .
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3623
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3624
    unfolding fps_inv[OF a0 a1] by simp
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3625
qed
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3626
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3627
lemma fps_ginv_ginv:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3628
  assumes a0: "a$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3629
    and a1: "a$1 \<noteq> 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3630
    and c0: "c$0 = 0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3631
    and  c1: "c$1 \<noteq> 0"
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3632
  shows "fps_ginv b (fps_ginv c a) = b oo a oo fps_inv c"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3633
proof -
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3634
  let ?r = "fps_ginv"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3635
  from c0 have rca0: "?r c a $0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3636
    by (simp add: fps_ginv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3637
  from a1 c1 have rca1: "?r c a $ 1 \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3638
    by (simp add: fps_ginv_def field_simps)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3639
  from fps_ginv[OF rca0 rca1]
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3640
  have "?r b (?r c a) oo ?r c a = b" .
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3641
  then have "?r b (?r c a) oo ?r c a oo a = b oo a"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3642
    by simp
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3643
  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: 31199
diff changeset
  3644
    apply (subst fps_compose_assoc)
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3645
    using a0 c0
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3646
    apply (auto simp add: fps_ginv_def)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3647
    done
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3648
  then have "?r b (?r c a) oo c = b oo a"
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3649
    unfolding fps_ginv[OF a0 a1] .
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3650
  then have "?r b (?r c a) oo c oo fps_inv c= b oo a oo fps_inv c"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3651
    by simp
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3652
  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: 31199
diff changeset
  3653
    apply (subst fps_compose_assoc)
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3654
    using a0 c0
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3655
    apply (auto simp add: fps_inv_def)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3656
    done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3657
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3658
    unfolding fps_inv_right[OF c0 c1] by simp
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3659
qed
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3660
32410
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3661
lemma fps_ginv_deriv:
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  3662
  assumes a0:"a$0 = (0::'a::field)"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3663
    and a1: "a$1 \<noteq> 0"
32410
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3664
  shows "fps_deriv (fps_ginv b a) = (fps_deriv b / fps_deriv a) oo fps_ginv X a"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3665
proof -
32410
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3666
  let ?ia = "fps_ginv b a"
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3667
  let ?iXa = "fps_ginv X a"
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3668
  let ?d = "fps_deriv"
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3669
  let ?dia = "?d ?ia"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3670
  have iXa0: "?iXa $ 0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3671
    by (simp add: fps_ginv_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3672
  have da0: "?d a $ 0 \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3673
    using a1 by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3674
  from fps_ginv[OF a0 a1, of b] have "?d (?ia oo a) = fps_deriv b"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3675
    by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3676
  then have "(?d ?ia oo a) * ?d a = ?d b"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3677
    unfolding fps_compose_deriv[OF a0] .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3678
  then have "(?d ?ia oo a) * ?d a * inverse (?d a) = ?d b * inverse (?d a)"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3679
    by simp
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3680
  with a1 have "(?d ?ia oo a) * (inverse (?d a) * ?d a) = ?d b / ?d a"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3681
    by (simp add: fps_divide_unit)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3682
  then have "(?d ?ia oo a) oo ?iXa =  (?d b / ?d a) oo ?iXa"
32410
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3683
    unfolding inverse_mult_eq_1[OF da0] by simp
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3684
  then have "?d ?ia oo (a oo ?iXa) =  (?d b / ?d a) oo ?iXa"
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3685
    unfolding fps_compose_assoc[OF iXa0 a0] .
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3686
  then show ?thesis unfolding fps_inv_ginv[symmetric]
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3687
    unfolding fps_inv_right[OF a0 a1] by simp
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3688
qed
624bd2ea7c1e Derivative of general reverses
chaieb
parents: 31075
diff changeset
  3689
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3690
lemma fps_compose_linear:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3691
  "fps_compose (f :: 'a :: comm_ring_1 fps) (fps_const c * X) = Abs_fps (\<lambda>n. c^n * f $ n)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3692
  by (simp add: fps_eq_iff fps_compose_def power_mult_distrib
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  3693
                if_distrib sum.delta' cong: if_cong)
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3694
              
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3695
lemma fps_compose_uminus': 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3696
  "fps_compose f (-X :: 'a :: comm_ring_1 fps) = Abs_fps (\<lambda>n. (-1)^n * f $ n)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3697
  using fps_compose_linear[of f "-1"] 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3698
  by (simp only: fps_const_neg [symmetric] fps_const_1_eq_1) simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3699
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3700
subsection \<open>Elementary series\<close>
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3701
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3702
subsubsection \<open>Exponential series\<close>
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3703
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3704
definition "fps_exp x = Abs_fps (\<lambda>n. x^n / of_nat (fact n))"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3705
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3706
lemma fps_exp_deriv[simp]: "fps_deriv (fps_exp a) = fps_const (a::'a::field_char_0) * fps_exp a" 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3707
  (is "?l = ?r")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3708
proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3709
  have "?l$n = ?r $ n" for n
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3710
    apply (auto simp add: fps_exp_def field_simps power_Suc[symmetric]
63367
6c731c8b7f03 simplified definitions of combinatorial functions
haftmann
parents: 63317
diff changeset
  3711
      simp del: fact_Suc of_nat_Suc power_Suc)
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  3712
    apply (simp add: field_simps)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3713
    done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3714
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3715
    by (simp add: fps_eq_iff)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3716
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3717
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3718
lemma fps_exp_unique_ODE:
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3719
  "fps_deriv a = fps_const c * a \<longleftrightarrow> a = fps_const (a$0) * fps_exp (c::'a::field_char_0)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3720
  (is "?lhs \<longleftrightarrow> ?rhs")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3721
proof
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3722
  show ?rhs if ?lhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3723
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3724
    from that have th: "\<And>n. a $ Suc n = c * a$n / of_nat (Suc n)"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3725
      by (simp add: fps_deriv_def fps_eq_iff field_simps del: of_nat_Suc)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3726
    have th': "a$n = a$0 * c ^ n/ (fact n)" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3727
    proof (induct n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3728
      case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3729
      then show ?case by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3730
    next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3731
      case Suc
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3732
      then show ?case
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3733
        unfolding th
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3734
        using fact_gt_zero
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3735
        apply (simp add: field_simps del: of_nat_Suc fact_Suc)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3736
        apply simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3737
        done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3738
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3739
    show ?thesis
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3740
      by (auto simp add: fps_eq_iff fps_const_mult_left fps_exp_def intro: th')
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3741
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3742
  show ?lhs if ?rhs
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3743
    using that by (metis fps_exp_deriv fps_deriv_mult_const_left mult.left_commute)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3744
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3745
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3746
lemma fps_exp_add_mult: "fps_exp (a + b) = fps_exp (a::'a::field_char_0) * fps_exp b" (is "?l = ?r")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3747
proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3748
  have "fps_deriv ?r = fps_const (a + b) * ?r"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  3749
    by (simp add: fps_const_add[symmetric] field_simps del: fps_const_add)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3750
  then have "?r = ?l"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3751
    by (simp only: fps_exp_unique_ODE) (simp add: fps_mult_nth fps_exp_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3752
  then show ?thesis ..
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3753
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3754
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3755
lemma fps_exp_nth[simp]: "fps_exp a $ n = a^n / of_nat (fact n)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3756
  by (simp add: fps_exp_def)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3757
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3758
lemma fps_exp_0[simp]: "fps_exp (0::'a::field) = 1"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3759
  by (simp add: fps_eq_iff power_0_left)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3760
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3761
lemma fps_exp_neg: "fps_exp (- a) = inverse (fps_exp (a::'a::field_char_0))"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3762
proof -
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3763
  from fps_exp_add_mult[of a "- a"] have th0: "fps_exp a * fps_exp (- a) = 1" by simp
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  3764
  from fps_inverse_unique[OF th0] show ?thesis by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3765
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3766
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3767
lemma fps_exp_nth_deriv[simp]: 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3768
  "fps_nth_deriv n (fps_exp (a::'a::field_char_0)) = (fps_const a)^n * (fps_exp a)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  3769
  by (induct n) auto
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3770
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3771
lemma X_compose_fps_exp[simp]: "X oo fps_exp (a::'a::field) = fps_exp a - 1"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3772
  by (simp add: fps_eq_iff X_fps_compose)
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3773
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3774
lemma fps_inv_fps_exp_compose:
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3775
  assumes a: "a \<noteq> 0"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3776
  shows "fps_inv (fps_exp a - 1) oo (fps_exp a - 1) = X"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3777
    and "(fps_exp a - 1) oo fps_inv (fps_exp a - 1) = X"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3778
proof -
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3779
  let ?b = "fps_exp a - 1"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3780
  have b0: "?b $ 0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3781
    by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3782
  have b1: "?b $ 1 \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3783
    by (simp add: a)
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3784
  from fps_inv[OF b0 b1] show "fps_inv (fps_exp a - 1) oo (fps_exp a - 1) = X" .
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3785
  from fps_inv_right[OF b0 b1] show "(fps_exp a - 1) oo fps_inv (fps_exp a - 1) = X" .
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3786
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3787
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3788
lemma fps_exp_power_mult: "(fps_exp (c::'a::field_char_0))^n = fps_exp (of_nat n * c)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3789
  by (induct n) (auto simp add: field_simps fps_exp_add_mult)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3790
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3791
lemma radical_fps_exp:
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3792
  assumes r: "r (Suc k) 1 = 1"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3793
  shows "fps_radical r (Suc k) (fps_exp (c::'a::field_char_0)) = fps_exp (c / of_nat (Suc k))"
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3794
proof -
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3795
  let ?ck = "(c / of_nat (Suc k))"
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3796
  let ?r = "fps_radical r (Suc k)"
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3797
  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: 31199
diff changeset
  3798
    by (simp_all del: of_nat_Suc)
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3799
  have th0: "fps_exp ?ck ^ (Suc k) = fps_exp c" unfolding fps_exp_power_mult eq0 ..
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3800
  have th: "r (Suc k) (fps_exp c $0) ^ Suc k = fps_exp c $ 0"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3801
    "r (Suc k) (fps_exp c $ 0) = fps_exp ?ck $ 0" "fps_exp c $ 0 \<noteq> 0" using r by simp_all
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3802
  from th0 radical_unique[where r=r and k=k, OF th] show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3803
    by auto
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3804
qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3805
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3806
lemma fps_exp_compose_linear [simp]: 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3807
  "fps_exp (d::'a::field_char_0) oo (fps_const c * X) = fps_exp (c * d)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3808
  by (simp add: fps_compose_linear fps_exp_def fps_eq_iff power_mult_distrib)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3809
  
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3810
lemma fps_fps_exp_compose_minus [simp]: 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3811
  "fps_compose (fps_exp c) (-X) = fps_exp (-c :: 'a :: field_char_0)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3812
  using fps_exp_compose_linear[of c "-1 :: 'a"] 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3813
  unfolding fps_const_neg [symmetric] fps_const_1_eq_1 by simp
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3814
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3815
lemma fps_exp_eq_iff [simp]: "fps_exp c = fps_exp d \<longleftrightarrow> c = (d :: 'a :: field_char_0)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3816
proof
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3817
  assume "fps_exp c = fps_exp d"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3818
  from arg_cong[of _ _ "\<lambda>F. F $ 1", OF this] show "c = d" by simp
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3819
qed simp_all
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3820
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3821
lemma fps_exp_eq_fps_const_iff [simp]: 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3822
  "fps_exp (c :: 'a :: field_char_0) = fps_const c' \<longleftrightarrow> c = 0 \<and> c' = 1"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3823
proof
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3824
  assume "c = 0 \<and> c' = 1"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3825
  thus "fps_exp c = fps_const c'" by (auto simp: fps_eq_iff)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3826
next
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3827
  assume "fps_exp c = fps_const c'"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3828
  from arg_cong[of _ _ "\<lambda>F. F $ 1", OF this] arg_cong[of _ _ "\<lambda>F. F $ 0", OF this] 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3829
    show "c = 0 \<and> c' = 1" by simp_all
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3830
qed
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3831
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3832
lemma fps_exp_neq_0 [simp]: "\<not>fps_exp (c :: 'a :: field_char_0) = 0"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3833
  unfolding fps_const_0_eq_0 [symmetric] fps_exp_eq_fps_const_iff by simp  
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3834
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3835
lemma fps_exp_eq_1_iff [simp]: "fps_exp (c :: 'a :: field_char_0) = 1 \<longleftrightarrow> c = 0"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3836
  unfolding fps_const_1_eq_1 [symmetric] fps_exp_eq_fps_const_iff by simp
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3837
    
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3838
lemma fps_exp_neq_numeral_iff [simp]: 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3839
  "fps_exp (c :: 'a :: field_char_0) = numeral n \<longleftrightarrow> c = 0 \<and> n = Num.One"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3840
  unfolding numeral_fps_const fps_exp_eq_fps_const_iff by simp
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3841
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  3842
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3843
subsubsection \<open>Logarithmic series\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3844
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3845
lemma Abs_fps_if_0:
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3846
  "Abs_fps (\<lambda>n. if n = 0 then (v::'a::ring_1) else f n) =
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3847
    fps_const v + X * Abs_fps (\<lambda>n. f (Suc n))"
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3848
  by (auto simp add: fps_eq_iff)
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3849
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3850
definition fps_ln :: "'a::field_char_0 \<Rightarrow> 'a fps"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3851
  where "fps_ln c = fps_const (1/c) * Abs_fps (\<lambda>n. if n = 0 then 0 else (- 1) ^ (n - 1) / of_nat n)"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3852
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3853
lemma fps_ln_deriv: "fps_deriv (fps_ln c) = fps_const (1/c) * inverse (1 + X)"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  3854
  unfolding fps_inverse_X_plus1
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3855
  by (simp add: fps_ln_def fps_eq_iff del: of_nat_Suc)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3856
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3857
lemma fps_ln_nth: "fps_ln c $ n = (if n = 0 then 0 else 1/c * ((- 1) ^ (n - 1) / of_nat n))"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3858
  by (simp add: fps_ln_def field_simps)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3859
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3860
lemma fps_ln_0 [simp]: "fps_ln c $ 0 = 0" by (simp add: fps_ln_def)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3861
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3862
lemma fps_ln_fps_exp_inv:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3863
  fixes a :: "'a::field_char_0"
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3864
  assumes a: "a \<noteq> 0"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3865
  shows "fps_ln a = fps_inv (fps_exp a - 1)"  (is "?l = ?r")
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3866
proof -
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3867
  let ?b = "fps_exp a - 1"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3868
  have b0: "?b $ 0 = 0" by simp
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3869
  have b1: "?b $ 1 \<noteq> 0" by (simp add: a)
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3870
  have "fps_deriv (fps_exp a - 1) oo fps_inv (fps_exp a - 1) =
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3871
    (fps_const a * (fps_exp a - 1) + fps_const a) oo fps_inv (fps_exp a - 1)"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  3872
    by (simp add: field_simps)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3873
  also have "\<dots> = fps_const a * (X + 1)"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3874
    apply (simp add: fps_compose_add_distrib fps_const_mult_apply_left[symmetric] fps_inv_right[OF b0 b1])
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3875
    apply (simp add: field_simps)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3876
    done
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3877
  finally have eq: "fps_deriv (fps_exp a - 1) oo fps_inv (fps_exp a - 1) = fps_const a * (X + 1)" .
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3878
  from fps_inv_deriv[OF b0 b1, unfolded eq]
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3879
  have "fps_deriv (fps_inv ?b) = fps_const (inverse a) / (X + 1)"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3880
    using a by (simp add: fps_const_inverse eq fps_divide_def fps_inverse_mult)
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  3881
  then have "fps_deriv ?l = fps_deriv ?r"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3882
    by (simp add: fps_ln_deriv add.commute fps_divide_def divide_inverse)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3883
  then show ?thesis unfolding fps_deriv_eq_iff
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3884
    by (simp add: fps_ln_nth fps_inv_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3885
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  3886
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3887
lemma fps_ln_mult_add:
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3888
  assumes c0: "c\<noteq>0"
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3889
    and d0: "d\<noteq>0"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3890
  shows "fps_ln c + fps_ln d = fps_const (c+d) * fps_ln (c*d)"
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3891
  (is "?r = ?l")
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3892
proof-
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  3893
  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: 31199
diff changeset
  3894
  have "fps_deriv ?r = fps_const (1/c + 1/d) * inverse (1 + X)"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3895
    by (simp add: fps_ln_deriv fps_const_add[symmetric] algebra_simps del: fps_const_add)
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3896
  also have "\<dots> = fps_deriv ?l"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3897
    apply (simp add: fps_ln_deriv)
52903
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3898
    apply (simp add: fps_eq_iff eq)
6c89225ddeba tuned proofs;
wenzelm
parents: 52902
diff changeset
  3899
    done
31369
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3900
  finally show ?thesis
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3901
    unfolding fps_deriv_eq_iff by simp
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3902
qed
8b460fd12100 Reverses idempotent; radical of E; generalized logarithm;
chaieb
parents: 31199
diff changeset
  3903
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3904
lemma X_dvd_fps_ln [simp]: "X dvd fps_ln c"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3905
proof -
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3906
  have "fps_ln c = X * Abs_fps (\<lambda>n. (-1) ^ n / (of_nat (Suc n) * c))"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3907
    by (intro fps_ext) (auto simp: fps_ln_def of_nat_diff)
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3908
  thus ?thesis by simp
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3909
qed
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  3910
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3911
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3912
subsubsection \<open>Binomial series\<close>
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3913
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3914
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: 31968
diff changeset
  3915
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3916
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: 31968
diff changeset
  3917
  by (simp add: fps_binomial_def)
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3918
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3919
lemma fps_binomial_ODE_unique:
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3920
  fixes c :: "'a::field_char_0"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3921
  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: 31968
diff changeset
  3922
  (is "?lhs \<longleftrightarrow> ?rhs")
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3923
proof
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3924
  let ?da = "fps_deriv a"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3925
  let ?x1 = "(1 + X):: 'a fps"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3926
  let ?l = "?x1 * ?da"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3927
  let ?r = "fps_const c * a"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3928
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3929
  have eq: "?l = ?r \<longleftrightarrow> ?lhs"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3930
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3931
    have x10: "?x1 $ 0 \<noteq> 0" by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3932
    have "?l = ?r \<longleftrightarrow> inverse ?x1 * ?l = inverse ?x1 * ?r" by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3933
    also have "\<dots> \<longleftrightarrow> ?da = (fps_const c * a) / ?x1"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3934
      apply (simp only: fps_divide_def  mult.assoc[symmetric] inverse_mult_eq_1[OF x10])
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3935
      apply (simp add: field_simps)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3936
      done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3937
    finally show ?thesis .
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3938
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3939
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3940
  show ?rhs if ?lhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3941
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3942
    from eq that have h: "?l = ?r" ..
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3943
    have th0: "a$ Suc n = ((c - of_nat n) / of_nat (Suc n)) * a $n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3944
    proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3945
      from h have "?l $ n = ?r $ n" by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3946
      then show ?thesis
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  3947
        apply (simp add: field_simps del: of_nat_Suc)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3948
        apply (cases n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3949
        apply (simp_all add: field_simps del: of_nat_Suc)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3950
        done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3951
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3952
    have th1: "a $ n = (c gchoose n) * a $ 0" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3953
    proof (induct n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3954
      case 0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3955
      then show ?case by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3956
    next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3957
      case (Suc m)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3958
      then show ?case
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3959
        unfolding th0
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3960
        apply (simp add: field_simps del: of_nat_Suc)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3961
        unfolding mult.assoc[symmetric] gbinomial_mult_1
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3962
        apply (simp add: field_simps)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3963
        done
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3964
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3965
    show ?thesis
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3966
      apply (simp add: fps_eq_iff)
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3967
      apply (subst th1)
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3968
      apply (simp add: field_simps)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3969
      done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3970
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3971
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3972
  show ?lhs if ?rhs
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3973
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3974
    have th00: "x * (a $ 0 * y) = a $ 0 * (x * y)" for x y
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  3975
      by (simp add: mult.commute)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  3976
    have "?l = ?r"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3977
      apply (subst \<open>?rhs\<close>)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3978
      apply (subst (2) \<open>?rhs\<close>)
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  3979
      apply (clarsimp simp add: fps_eq_iff field_simps)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  3980
      unfolding mult.assoc[symmetric] th00 gbinomial_mult_1
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3981
      apply (simp add: field_simps gbinomial_mult_1)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3982
      done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3983
    with eq show ?thesis ..
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  3984
  qed
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3985
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3986
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3987
lemma fps_binomial_ODE_unique':
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3988
  "(fps_deriv a = fps_const c * a / (1 + X) \<and> a $ 0 = 1) \<longleftrightarrow> (a = fps_binomial c)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3989
  by (subst fps_binomial_ODE_unique) auto
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  3990
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3991
lemma fps_binomial_deriv: "fps_deriv (fps_binomial c) = fps_const c * fps_binomial c / (1 + X)"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3992
proof -
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3993
  let ?a = "fps_binomial c"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3994
  have th0: "?a = fps_const (?a$0) * ?a" by (simp)
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3995
  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: 31968
diff changeset
  3996
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3997
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  3998
lemma fps_binomial_add_mult: "fps_binomial (c+d) = fps_binomial c * fps_binomial d" (is "?l = ?r")
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  3999
proof -
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4000
  let ?P = "?r - ?l"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4001
  let ?b = "fps_binomial"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4002
  let ?db = "\<lambda>x. fps_deriv (?b x)"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4003
  have "fps_deriv ?P = ?db c * ?b d + ?b c * ?db d - ?db (c + d)"  by simp
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4004
  also have "\<dots> = inverse (1 + X) *
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4005
      (fps_const c * ?b c * ?b d + fps_const d * ?b c * ?b d - fps_const (c+d) * ?b (c + d))"
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4006
    unfolding fps_binomial_deriv
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  4007
    by (simp add: fps_divide_def field_simps)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4008
  also have "\<dots> = (fps_const (c + d)/ (1 + X)) * ?P"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4009
    by (simp add: field_simps fps_divide_unit fps_const_add[symmetric] del: fps_const_add)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4010
  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: 31968
diff changeset
  4011
    by (simp add: fps_divide_def)
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4012
  have "?P = fps_const (?P$0) * ?b (c + d)"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4013
    unfolding fps_binomial_ODE_unique[symmetric]
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4014
    using th0 by simp
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4015
  then have "?P = 0" by (simp add: fps_mult_nth)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4016
  then show ?thesis by simp
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4017
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4018
61552
980dd46a03fb Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents: 60867
diff changeset
  4019
lemma fps_binomial_minus_one: "fps_binomial (- 1) = inverse (1 + X)"
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4020
  (is "?l = inverse ?r")
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4021
proof-
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4022
  have th: "?r$0 \<noteq> 0" by simp
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4023
  have th': "fps_deriv (inverse ?r) = fps_const (- 1) * inverse ?r / (1 + X)"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4024
    by (simp add: fps_inverse_deriv[OF th] fps_divide_def
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
  4025
      power2_eq_square mult.commute fps_const_neg[symmetric] del: fps_const_neg)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4026
  have eq: "inverse ?r $ 0 = 1"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4027
    by (simp add: fps_inverse_def)
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4028
  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: 31968
diff changeset
  4029
  show ?thesis by (simp add: fps_inverse_def)
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4030
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4031
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4032
lemma fps_binomial_of_nat: "fps_binomial (of_nat n) = (1 + X :: 'a :: field_char_0 fps) ^ n"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4033
proof (cases "n = 0")
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4034
  case [simp]: True
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4035
  have "fps_deriv ((1 + X) ^ n :: 'a fps) = 0" by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4036
  also have "\<dots> = fps_const (of_nat n) * (1 + X) ^ n / (1 + X)" by (simp add: fps_binomial_def)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4037
  finally show ?thesis by (subst sym, subst fps_binomial_ODE_unique' [symmetric]) simp_all
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4038
next
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4039
  case False
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4040
  have "fps_deriv ((1 + X) ^ n :: 'a fps) = fps_const (of_nat n) * (1 + X) ^ (n - 1)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4041
    by (simp add: fps_deriv_power)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4042
  also have "(1 + X :: 'a fps) $ 0 \<noteq> 0" by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4043
  hence "(1 + X :: 'a fps) \<noteq> 0" by (intro notI) (simp only: , simp)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4044
  with False have "(1 + X :: 'a fps) ^ (n - 1) = (1 + X) ^ n / (1 + X)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4045
    by (cases n) (simp_all )
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4046
  also have "fps_const (of_nat n :: 'a) * ((1 + X) ^ n / (1 + X)) =
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4047
               fps_const (of_nat n) * (1 + X) ^ n / (1 + X)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4048
    by (simp add: unit_div_mult_swap)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4049
  finally show ?thesis
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4050
    by (subst sym, subst fps_binomial_ODE_unique' [symmetric]) (simp_all add: fps_power_nth)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4051
qed
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4052
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4053
lemma fps_binomial_0 [simp]: "fps_binomial 0 = 1"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4054
  using fps_binomial_of_nat[of 0] by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4055
  
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4056
lemma fps_binomial_power: "fps_binomial a ^ n = fps_binomial (of_nat n * a)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4057
  by (induction n) (simp_all add: fps_binomial_add_mult ring_distribs)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4058
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4059
lemma fps_binomial_1: "fps_binomial 1 = 1 + X"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4060
  using fps_binomial_of_nat[of 1] by simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4061
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4062
lemma fps_binomial_minus_of_nat:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4063
  "fps_binomial (- of_nat n) = inverse ((1 + X :: 'a :: field_char_0 fps) ^ n)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4064
  by (rule sym, rule fps_inverse_unique)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4065
     (simp add: fps_binomial_of_nat [symmetric] fps_binomial_add_mult [symmetric])
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4066
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4067
lemma one_minus_const_X_power:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4068
  "c \<noteq> 0 \<Longrightarrow> (1 - fps_const c * X) ^ n =
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4069
     fps_compose (fps_binomial (of_nat n)) (-fps_const c * X)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4070
  by (subst fps_binomial_of_nat)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4071
     (simp add: fps_compose_power [symmetric] fps_compose_add_distrib fps_const_neg [symmetric] 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4072
           del: fps_const_neg)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4073
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4074
lemma one_minus_X_const_neg_power:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4075
  "inverse ((1 - fps_const c * X) ^ n) = 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4076
       fps_compose (fps_binomial (-of_nat n)) (-fps_const c * X)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4077
proof (cases "c = 0")
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4078
  case False
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4079
  thus ?thesis
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4080
  by (subst fps_binomial_minus_of_nat)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4081
     (simp add: fps_compose_power [symmetric] fps_inverse_compose fps_compose_add_distrib
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4082
                fps_const_neg [symmetric] del: fps_const_neg)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4083
qed simp
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4084
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4085
lemma X_plus_const_power:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4086
  "c \<noteq> 0 \<Longrightarrow> (X + fps_const c) ^ n =
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4087
     fps_const (c^n) * fps_compose (fps_binomial (of_nat n)) (fps_const (inverse c) * X)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4088
  by (subst fps_binomial_of_nat)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4089
     (simp add: fps_compose_power [symmetric] fps_binomial_of_nat fps_compose_add_distrib
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4090
                fps_const_power [symmetric] power_mult_distrib [symmetric] 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4091
                algebra_simps inverse_mult_eq_1' del: fps_const_power)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4092
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4093
lemma X_plus_const_neg_power:
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4094
  "c \<noteq> 0 \<Longrightarrow> inverse ((X + fps_const c) ^ n) =
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4095
     fps_const (inverse c^n) * fps_compose (fps_binomial (-of_nat n)) (fps_const (inverse c) * X)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4096
  by (subst fps_binomial_minus_of_nat)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4097
     (simp add: fps_compose_power [symmetric] fps_binomial_of_nat fps_compose_add_distrib
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4098
                fps_const_power [symmetric] power_mult_distrib [symmetric] fps_inverse_compose 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4099
                algebra_simps fps_const_inverse [symmetric] fps_inverse_mult [symmetric]
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4100
                fps_inverse_power [symmetric] inverse_mult_eq_1'
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4101
           del: fps_const_power)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4102
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4103
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4104
lemma one_minus_const_X_neg_power':
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4105
  "n > 0 \<Longrightarrow> inverse ((1 - fps_const (c :: 'a :: field_char_0) * X) ^ n) =
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4106
       Abs_fps (\<lambda>k. of_nat ((n + k - 1) choose k) * c^k)"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4107
  apply (rule fps_ext)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4108
  apply (subst one_minus_X_const_neg_power, subst fps_const_neg, subst fps_compose_linear)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4109
  apply (simp add: power_mult_distrib [symmetric] mult.assoc [symmetric] 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4110
                   gbinomial_minus binomial_gbinomial of_nat_diff)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4111
  done
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4112
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4113
text \<open>Vandermonde's Identity as a consequence.\<close>
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4114
lemma gbinomial_Vandermonde:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4115
  "sum (\<lambda>k. (a gchoose k) * (b gchoose (n - k))) {0..n} = (a + b) gchoose n"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4116
proof -
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4117
  let ?ba = "fps_binomial a"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4118
  let ?bb = "fps_binomial b"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4119
  let ?bab = "fps_binomial (a + b)"
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4120
  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: 31968
diff changeset
  4121
  then show ?thesis by (simp add: fps_mult_nth)
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4122
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4123
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4124
lemma binomial_Vandermonde:
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4125
  "sum (\<lambda>k. (a choose k) * (b choose (n - k))) {0..n} = (a + b) choose n"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4126
  using gbinomial_Vandermonde[of "(of_nat a)" "of_nat b" n]
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61610
diff changeset
  4127
  by (simp only: binomial_gbinomial[symmetric] of_nat_mult[symmetric]
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4128
                 of_nat_sum[symmetric] of_nat_add[symmetric] of_nat_eq_iff)
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4129
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4130
lemma binomial_Vandermonde_same: "sum (\<lambda>k. (n choose k)\<^sup>2) {0..n} = (2 * n) choose n"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4131
  using binomial_Vandermonde[of n n n, symmetric]
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4132
  unfolding mult_2
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4133
  apply (simp add: power2_eq_square)
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4134
  apply (rule sum.cong)
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4135
  apply (auto intro:  binomial_symmetric)
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4136
  done
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4137
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4138
lemma Vandermonde_pochhammer_lemma:
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4139
  fixes a :: "'a::field_char_0"
60504
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4140
  assumes b: "\<forall>j\<in>{0 ..<n}. b \<noteq> of_nat j"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4141
  shows "sum (\<lambda>k. (pochhammer (- a) k * pochhammer (- (of_nat n)) k) /
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4142
      (of_nat (fact k) * pochhammer (b - of_nat n + 1) k)) {0..n} =
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4143
    pochhammer (- (a + b)) n / pochhammer (- b) n"
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4144
  (is "?l = ?r")
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4145
proof -
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4146
  let ?m1 = "\<lambda>m. (- 1 :: 'a) ^ m"
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4147
  let ?f = "\<lambda>m. of_nat (fact m)"
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4148
  let ?p = "\<lambda>(x::'a). pochhammer (- x)"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4149
  from b have bn0: "?p b n \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4150
    unfolding pochhammer_eq_0_iff by simp
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4151
  have th00:
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4152
    "b gchoose (n - k) =
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4153
        (?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k)"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4154
      (is ?gchoose)
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4155
    "pochhammer (1 + b - of_nat n) k \<noteq> 0"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4156
      (is ?pochhammer)
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4157
    if kn: "k \<in> {0..n}" for k
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4158
  proof -
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4159
    from kn have "k \<le> n" by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4160
    have nz: "pochhammer (1 + b - of_nat n) n \<noteq> 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4161
    proof
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4162
      assume "pochhammer (1 + b - of_nat n) n = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4163
      then have c: "pochhammer (b - of_nat n + 1) n = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4164
        by (simp add: algebra_simps)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4165
      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: 32456
diff changeset
  4166
        unfolding pochhammer_eq_0_iff by blast
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4167
      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: 32456
diff changeset
  4168
        by (simp add: algebra_simps)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4169
      then have "b = of_nat (n - j - 1)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4170
        using j kn by (simp add: of_nat_diff)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4171
      with b show False using j by auto
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4172
    qed
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4173
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4174
    from nz kn [simplified] have nz': "pochhammer (1 + b - of_nat n) k \<noteq> 0"
35175
61255c81da01 fix more looping simp rules
huffman
parents: 32960
diff changeset
  4175
      by (rule pochhammer_neq_0_mono)
60504
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4176
60567
19c277ea65ae tuned proofs -- less digits;
wenzelm
parents: 60558
diff changeset
  4177
    consider "k = 0 \<or> n = 0" | "k \<noteq> 0" "n \<noteq> 0"
19c277ea65ae tuned proofs -- less digits;
wenzelm
parents: 60558
diff changeset
  4178
      by blast
60504
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4179
    then have "b gchoose (n - k) =
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4180
      (?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k)"
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4181
    proof cases
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4182
      case 1
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4183
      then show ?thesis
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4184
        using kn by (cases "k = 0") (simp_all add: gbinomial_pochhammer)
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4185
    next
60567
19c277ea65ae tuned proofs -- less digits;
wenzelm
parents: 60558
diff changeset
  4186
      case neq: 2
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4187
      then obtain m where m: "n = Suc m"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4188
        by (cases n) auto
60567
19c277ea65ae tuned proofs -- less digits;
wenzelm
parents: 60558
diff changeset
  4189
      from neq(1) obtain h where h: "k = Suc h"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4190
        by (cases k) auto
60504
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4191
      show ?thesis
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4192
      proof (cases "k = n")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4193
        case True
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4194
        then show ?thesis
59862
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59815
diff changeset
  4195
          using pochhammer_minus'[where k=k and b=b]
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59815
diff changeset
  4196
          apply (simp add: pochhammer_same)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4197
          using bn0
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4198
          apply (simp add: field_simps power_add[symmetric])
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4199
          done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4200
      next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4201
        case False
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4202
        with kn have kn': "k < n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4203
          by simp
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4204
        have m1nk: "?m1 n = prod (\<lambda>i. - 1) {..m}" "?m1 k = prod (\<lambda>i. - 1) {0..h}"
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4205
          by (simp_all add: prod_constant m h)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4206
        have bnz0: "pochhammer (b - of_nat n + 1) k \<noteq> 0"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4207
          using bn0 kn
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4208
          unfolding pochhammer_eq_0_iff
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4209
          apply auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4210
          apply (erule_tac x= "n - ka - 1" in allE)
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4211
          apply (auto simp add: algebra_simps of_nat_diff)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4212
          done
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4213
        have eq1: "prod (\<lambda>k. (1::'a) + of_nat m - of_nat k) {..h} =
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4214
          prod of_nat {Suc (m - h) .. Suc m}"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4215
          using kn' h m
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4216
          by (intro prod.reindex_bij_witness[where i="\<lambda>k. Suc m - k" and j="\<lambda>k. Suc m - k"])
57129
7edb7550663e introduce more powerful reindexing rules for big operators
hoelzl
parents: 56480
diff changeset
  4217
             (auto simp: of_nat_diff)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4218
        have th1: "(?m1 k * ?p (of_nat n) k) / ?f n = 1 / of_nat(fact (n - k))"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4219
          apply (simp add: pochhammer_minus field_simps)
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4220
          using \<open>k \<le> n\<close> apply (simp add: fact_split [of k n])
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4221
          apply (simp add: pochhammer_prod)
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4222
          using prod.atLeast_lessThan_shift_bounds [where ?'a = 'a, of "\<lambda>i. 1 + of_nat i" 0 "n - k" k]
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4223
          apply (auto simp add: of_nat_diff field_simps)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4224
          done
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4225
        have th20: "?m1 n * ?p b n = prod (\<lambda>i. b - of_nat i) {0..m}"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4226
          apply (simp add: pochhammer_minus field_simps m)
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4227
          apply (auto simp add: pochhammer_prod_rev of_nat_diff prod.atLeast_Suc_atMost_Suc_shift)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4228
          done
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4229
        have th21:"pochhammer (b - of_nat n + 1) k = prod (\<lambda>i. b - of_nat i) {n - k .. n - 1}"
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4230
          using kn apply (simp add: pochhammer_prod_rev m h prod.atLeast_Suc_atMost_Suc_shift)
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4231
          using prod.atLeast_atMost_shift_0 [of "m - h" m, where ?'a = 'a]
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4232
          apply (auto simp add: of_nat_diff field_simps)
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4233
          done
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4234
        have "?m1 n * ?p b n =
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4235
          prod (\<lambda>i. b - of_nat i) {0.. n - k - 1} * pochhammer (b - of_nat n + 1) k"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4236
          using kn' m h unfolding th20 th21 apply simp
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4237
          apply (subst prod.union_disjoint [symmetric])
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4238
          apply auto
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4239
          apply (rule prod.cong)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4240
          apply auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4241
          done
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4242
        then have th2: "(?m1 n * ?p b n)/pochhammer (b - of_nat n + 1) k =
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4243
          prod (\<lambda>i. b - of_nat i) {0.. n - k - 1}"
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  4244
          using nz' by (simp add: field_simps)
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4245
        have "(?m1 n * ?p b n * ?m1 k * ?p (of_nat n) k) / (?f n * pochhammer (b - of_nat n + 1) k) =
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4246
          ((?m1 k * ?p (of_nat n) k) / ?f n) * ((?m1 n * ?p b n)/pochhammer (b - of_nat n + 1) k)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4247
          using bnz0
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  4248
          by (simp add: field_simps)
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4249
        also have "\<dots> = b gchoose (n - k)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
  4250
          unfolding th1 th2
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4251
          using kn' m h
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4252
          apply (simp add: field_simps gbinomial_mult_fact)
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4253
          apply (rule prod.cong)
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4254
          apply auto
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4255
          done
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4256
        finally show ?thesis by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4257
      qed
60504
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4258
    qed
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4259
    then show ?gchoose and ?pochhammer
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4260
      apply (cases "n = 0")
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4261
      using nz'
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4262
      apply auto
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4263
      done
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4264
  qed
60504
17741c71a731 tuned proofs;
wenzelm
parents: 60501
diff changeset
  4265
  have "?r = ((a + b) gchoose n) * (of_nat (fact n) / (?m1 n * pochhammer (- b) n))"
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4266
    unfolding gbinomial_pochhammer
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 36311
diff changeset
  4267
    using bn0 by (auto simp add: field_simps)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4268
  also have "\<dots> = ?l"
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4269
    unfolding gbinomial_Vandermonde[symmetric]
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4270
    apply (simp add: th00)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4271
    unfolding gbinomial_pochhammer
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4272
    using bn0
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4273
    apply (simp add: sum_distrib_right sum_distrib_left field_simps)
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4274
    done
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4275
  finally show ?thesis by simp
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4276
qed
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4277
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4278
lemma Vandermonde_pochhammer:
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4279
  fixes a :: "'a::field_char_0"
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4280
  assumes c: "\<forall>i \<in> {0..< n}. c \<noteq> - of_nat i"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4281
  shows "sum (\<lambda>k. (pochhammer a k * pochhammer (- (of_nat n)) k) /
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4282
    (of_nat (fact k) * pochhammer c k)) {0..n} = pochhammer (c - a) n / pochhammer c n"
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4283
proof -
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4284
  let ?a = "- a"
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4285
  let ?b = "c + of_nat n - 1"
60558
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4286
  have h: "\<forall> j \<in>{0..< n}. ?b \<noteq> of_nat j"
4fcc6861e64f tuned proofs;
wenzelm
parents: 60504
diff changeset
  4287
    using c
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4288
    apply (auto simp add: algebra_simps of_nat_diff)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4289
    apply (erule_tac x = "n - j - 1" in ballE)
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4290
    apply (auto simp add: of_nat_diff algebra_simps)
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4291
    done
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4292
  have th0: "pochhammer (- (?a + ?b)) n = (- 1)^n * pochhammer (c - a) n"
59862
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59815
diff changeset
  4293
    unfolding pochhammer_minus
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4294
    by (simp add: algebra_simps)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4295
  have th1: "pochhammer (- ?b) n = (- 1)^n * pochhammer c n"
59862
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59815
diff changeset
  4296
    unfolding pochhammer_minus
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4297
    by simp
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4298
  have nz: "pochhammer c n \<noteq> 0" using c
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4299
    by (simp add: pochhammer_eq_0_iff)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4300
  from Vandermonde_pochhammer_lemma[where a = "?a" and b="?b" and n=n, OF h, unfolded th0 th1]
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4301
  show ?thesis
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4302
    using nz by (simp add: field_simps sum_distrib_left)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4303
qed
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4304
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4305
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4306
subsubsection \<open>Formal trigonometric functions\<close>
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4307
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  4308
definition "fps_sin (c::'a::field_char_0) =
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4309
  Abs_fps (\<lambda>n. if even n then 0 else (- 1) ^((n - 1) div 2) * c^n /(of_nat (fact n)))"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4310
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  4311
definition "fps_cos (c::'a::field_char_0) =
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  4312
  Abs_fps (\<lambda>n. if even n then (- 1) ^ (n div 2) * c^n / (of_nat (fact n)) else 0)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4313
66466
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4314
lemma fps_sin_0 [simp]: "fps_sin 0 = 0"
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4315
  by (intro fps_ext) (auto simp: fps_sin_def elim!: oddE)
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4316
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4317
lemma fps_cos_0 [simp]: "fps_cos 0 = 1"
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4318
  by (intro fps_ext) (auto simp: fps_cos_def)
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4319
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30273
diff changeset
  4320
lemma fps_sin_deriv:
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4321
  "fps_deriv (fps_sin c) = fps_const c * fps_cos c"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4322
  (is "?lhs = ?rhs")
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  4323
proof (rule fps_ext)
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4324
  fix n :: nat
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4325
  show "?lhs $ n = ?rhs $ n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4326
  proof (cases "even n")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4327
    case True
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4328
    have "?lhs$n = of_nat (n+1) * (fps_sin c $ (n+1))" by simp
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4329
    also have "\<dots> = of_nat (n+1) * ((- 1)^(n div 2) * c^Suc n / of_nat (fact (Suc n)))"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4330
      using True by (simp add: fps_sin_def)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4331
    also have "\<dots> = (- 1)^(n div 2) * c^Suc n * (of_nat (n+1) / (of_nat (Suc n) * of_nat (fact n)))"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4332
      unfolding fact_Suc of_nat_mult
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4333
      by (simp add: field_simps del: of_nat_add of_nat_Suc)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4334
    also have "\<dots> = (- 1)^(n div 2) *c^Suc n / of_nat (fact n)"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4335
      by (simp add: field_simps del: of_nat_add of_nat_Suc)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4336
    finally show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4337
      using True by (simp add: fps_cos_def field_simps)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4338
  next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4339
    case False
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4340
    then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4341
      by (simp_all add: fps_deriv_def fps_sin_def fps_cos_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4342
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4343
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4344
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4345
lemma fps_cos_deriv: "fps_deriv (fps_cos c) = fps_const (- c)* (fps_sin c)"
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4346
  (is "?lhs = ?rhs")
31273
da95bc889ad2 use class field_char_0 for fps definitions
huffman
parents: 31199
diff changeset
  4347
proof (rule fps_ext)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4348
  have th0: "- ((- 1::'a) ^ n) = (- 1)^Suc n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4349
    by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4350
  show "?lhs $ n = ?rhs $ n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4351
  proof (cases "even n")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4352
    case False
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4353
    then have n0: "n \<noteq> 0" by presburger
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4354
    from False have th1: "Suc ((n - 1) div 2) = Suc n div 2"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4355
      by (cases n) simp_all
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4356
    have "?lhs$n = of_nat (n+1) * (fps_cos c $ (n+1))" by simp
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4357
    also have "\<dots> = of_nat (n+1) * ((- 1)^((n + 1) div 2) * c^Suc n / of_nat (fact (Suc n)))"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4358
      using False by (simp add: fps_cos_def)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4359
    also have "\<dots> = (- 1)^((n + 1) div 2)*c^Suc n * (of_nat (n+1) / (of_nat (Suc n) * of_nat (fact n)))"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4360
      unfolding fact_Suc of_nat_mult
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4361
      by (simp add: field_simps del: of_nat_add of_nat_Suc)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4362
    also have "\<dots> = (- 1)^((n + 1) div 2) * c^Suc n / of_nat (fact n)"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4363
      by (simp add: field_simps del: of_nat_add of_nat_Suc)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4364
    also have "\<dots> = (- ((- 1)^((n - 1) div 2))) * c^Suc n / of_nat (fact n)"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4365
      unfolding th0 unfolding th1 by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4366
    finally show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4367
      using False by (simp add: fps_sin_def field_simps)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4368
  next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4369
    case True
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4370
    then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4371
      by (simp_all add: fps_deriv_def fps_sin_def fps_cos_def)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4372
  qed
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4373
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4374
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4375
lemma fps_sin_cos_sum_of_squares: "(fps_cos c)\<^sup>2 + (fps_sin c)\<^sup>2 = 1"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4376
  (is "?lhs = _")
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  4377
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4378
  have "fps_deriv ?lhs = 0"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4379
    apply (simp add:  fps_deriv_power fps_sin_deriv fps_cos_deriv)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4380
    apply (simp add: field_simps fps_const_neg[symmetric] del: fps_const_neg)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4381
    done
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4382
  then have "?lhs = fps_const (?lhs $ 0)"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4383
    unfolding fps_deriv_eq_0_iff .
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4384
  also have "\<dots> = 1"
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30952
diff changeset
  4385
    by (auto simp add: fps_eq_iff numeral_2_eq_2 fps_mult_nth fps_cos_def fps_sin_def)
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4386
  finally show ?thesis .
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4387
qed
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4388
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4389
lemma fps_sin_nth_0 [simp]: "fps_sin c $ 0 = 0"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4390
  unfolding fps_sin_def by simp
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4391
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4392
lemma fps_sin_nth_1 [simp]: "fps_sin c $ 1 = c"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4393
  unfolding fps_sin_def by simp
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4394
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4395
lemma fps_sin_nth_add_2:
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4396
    "fps_sin c $ (n + 2) = - (c * c * fps_sin c $ n / (of_nat (n + 1) * of_nat (n + 2)))"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4397
  unfolding fps_sin_def
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4398
  apply (cases n)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4399
  apply simp
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  4400
  apply (simp add: nonzero_divide_eq_eq nonzero_eq_divide_eq del: of_nat_Suc fact_Suc)
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4401
  apply simp
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4402
  done
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4403
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4404
lemma fps_cos_nth_0 [simp]: "fps_cos c $ 0 = 1"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4405
  unfolding fps_cos_def by simp
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4406
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4407
lemma fps_cos_nth_1 [simp]: "fps_cos c $ 1 = 0"
53195
e4b18828a817 tuned proofs;
wenzelm
parents: 53077
diff changeset
  4408
  unfolding fps_cos_def by simp
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4409
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4410
lemma fps_cos_nth_add_2:
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4411
  "fps_cos c $ (n + 2) = - (c * c * fps_cos c $ n / (of_nat (n + 1) * of_nat (n + 2)))"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4412
  unfolding fps_cos_def
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  4413
  apply (simp add: nonzero_divide_eq_eq nonzero_eq_divide_eq del: of_nat_Suc fact_Suc)
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4414
  apply simp
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4415
  done
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4416
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4417
lemma nat_induct2: "P 0 \<Longrightarrow> P 1 \<Longrightarrow> (\<And>n. P n \<Longrightarrow> P (n + 2)) \<Longrightarrow> P (n::nat)"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4418
  unfolding One_nat_def numeral_2_eq_2
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4419
  apply (induct n rule: nat_less_induct)
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4420
  apply (case_tac n)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4421
  apply simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4422
  apply (rename_tac m)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4423
  apply (case_tac m)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4424
  apply simp
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4425
  apply (rename_tac k)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4426
  apply (case_tac k)
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4427
  apply simp_all
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4428
  done
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4429
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4430
lemma nat_add_1_add_1: "(n::nat) + 1 + 1 = n + 2"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4431
  by simp
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4432
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4433
lemma eq_fps_sin:
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4434
  assumes 0: "a $ 0 = 0"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4435
    and 1: "a $ 1 = c"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4436
    and 2: "fps_deriv (fps_deriv a) = - (fps_const c * fps_const c * a)"
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4437
  shows "a = fps_sin c"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4438
  apply (rule fps_ext)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4439
  apply (induct_tac n rule: nat_induct2)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4440
  apply (simp add: 0)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4441
  apply (simp add: 1 del: One_nat_def)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4442
  apply (rename_tac m, cut_tac f="\<lambda>a. a $ m" in arg_cong [OF 2])
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4443
  apply (simp add: nat_add_1_add_1 fps_sin_nth_add_2
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4444
              del: One_nat_def of_nat_Suc of_nat_add add_2_eq_Suc')
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4445
  apply (subst minus_divide_left)
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  4446
  apply (subst nonzero_eq_divide_eq)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4447
  apply (simp del: of_nat_add of_nat_Suc)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  4448
  apply (simp only: ac_simps)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4449
  done
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4450
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4451
lemma eq_fps_cos:
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4452
  assumes 0: "a $ 0 = 1"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4453
    and 1: "a $ 1 = 0"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4454
    and 2: "fps_deriv (fps_deriv a) = - (fps_const c * fps_const c * a)"
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4455
  shows "a = fps_cos c"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4456
  apply (rule fps_ext)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4457
  apply (induct_tac n rule: nat_induct2)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4458
  apply (simp add: 0)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4459
  apply (simp add: 1 del: One_nat_def)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4460
  apply (rename_tac m, cut_tac f="\<lambda>a. a $ m" in arg_cong [OF 2])
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4461
  apply (simp add: nat_add_1_add_1 fps_cos_nth_add_2
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4462
              del: One_nat_def of_nat_Suc of_nat_add add_2_eq_Suc')
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4463
  apply (subst minus_divide_left)
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 60017
diff changeset
  4464
  apply (subst nonzero_eq_divide_eq)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4465
  apply (simp del: of_nat_add of_nat_Suc)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  4466
  apply (simp only: ac_simps)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4467
  done
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4468
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4469
lemma mult_nth_0 [simp]: "(a * b) $ 0 = a $ 0 * b $ 0"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4470
  by (simp add: fps_mult_nth)
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4471
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4472
lemma mult_nth_1 [simp]: "(a * b) $ 1 = a $ 0 * b $ 1 + a $ 1 * b $ 0"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4473
  by (simp add: fps_mult_nth)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4474
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4475
lemma fps_sin_add: "fps_sin (a + b) = fps_sin a * fps_cos b + fps_cos a * fps_sin b"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4476
  apply (rule eq_fps_sin [symmetric], simp, simp del: One_nat_def)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4477
  apply (simp del: fps_const_neg fps_const_add fps_const_mult
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4478
              add: fps_const_add [symmetric] fps_const_neg [symmetric]
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4479
                   fps_sin_deriv fps_cos_deriv algebra_simps)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4480
  done
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4481
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4482
lemma fps_cos_add: "fps_cos (a + b) = fps_cos a * fps_cos b - fps_sin a * fps_sin b"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4483
  apply (rule eq_fps_cos [symmetric], simp, simp del: One_nat_def)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4484
  apply (simp del: fps_const_neg fps_const_add fps_const_mult
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4485
              add: fps_const_add [symmetric] fps_const_neg [symmetric]
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4486
                   fps_sin_deriv fps_cos_deriv algebra_simps)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4487
  done
31274
d2b5c6b07988 addition formulas for fps_sin, fps_cos
huffman
parents: 31273
diff changeset
  4488
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
  4489
lemma fps_sin_even: "fps_sin (- c) = - fps_sin c"
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56410
diff changeset
  4490
  by (auto simp add: fps_eq_iff fps_sin_def)
31968
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
  4491
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
  4492
lemma fps_cos_odd: "fps_cos (- c) = fps_cos c"
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
  4493
  by (auto simp add: fps_eq_iff fps_cos_def)
0314441a53a6 FPS form a metric space, which justifies the infinte sum notation
chaieb
parents: 31790
diff changeset
  4494
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4495
definition "fps_tan c = fps_sin c / fps_cos c"
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4496
66466
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4497
lemma fps_tan_0 [simp]: "fps_tan 0 = 0"
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4498
  by (simp add: fps_tan_def)
aec5d9c88d69 More lemmas for HOL-Analysis
Manuel Eberl <eberlm@in.tum.de>
parents: 66373
diff changeset
  4499
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52903
diff changeset
  4500
lemma fps_tan_deriv: "fps_deriv (fps_tan c) = fps_const c / (fps_cos c)\<^sup>2"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4501
proof -
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4502
  have th0: "fps_cos c $ 0 \<noteq> 0" by (simp add: fps_cos_def)
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4503
  from this have "fps_cos c \<noteq> 0" by (intro notI) simp
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  4504
  hence "fps_deriv (fps_tan c) =
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4505
           fps_const c * (fps_cos c^2 + fps_sin c^2) / (fps_cos c^2)"
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
  4506
    by (simp add: fps_tan_def fps_divide_deriv power2_eq_square algebra_simps
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4507
                  fps_sin_deriv fps_cos_deriv fps_const_neg[symmetric] div_mult_swap
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4508
             del: fps_const_neg)
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4509
  also note fps_sin_cos_sum_of_squares
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4510
  finally show ?thesis by simp
29687
4d934a895d11 A formalization of formal power series
chaieb
parents:
diff changeset
  4511
qed
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
  4512
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4513
text \<open>Connection to @{const "fps_exp"} over the complex numbers --- Euler and de Moivre.\<close>
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4514
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4515
lemma fps_exp_ii_sin_cos: "fps_exp (\<i> * c) = fps_cos c + fps_const \<i> * fps_sin c"
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4516
  (is "?l = ?r")
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4517
proof -
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4518
  have "?l $ n = ?r $ n" for n
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4519
  proof (cases "even n")
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4520
    case True
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4521
    then obtain m where m: "n = 2 * m" ..
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4522
    show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4523
      by (simp add: m fps_sin_def fps_cos_def power_mult_distrib power_mult power_minus [of "c ^ 2"])
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4524
  next
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4525
    case False
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4526
    then obtain m where m: "n = 2 * m + 1" ..
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4527
    show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4528
      by (simp add: m fps_sin_def fps_cos_def power_mult_distrib
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4529
        power_mult power_minus [of "c ^ 2"])
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4530
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4531
  then show ?thesis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4532
    by (simp add: fps_eq_iff)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4533
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4534
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4535
lemma fps_exp_minus_ii_sin_cos: "fps_exp (- (\<i> * c)) = fps_cos c - fps_const \<i> * fps_sin c"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4536
  unfolding minus_mult_right fps_exp_ii_sin_cos by (simp add: fps_sin_even fps_cos_odd)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4537
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4538
lemma fps_const_minus: "fps_const (c::'a::group_add) - fps_const d = fps_const (c - d)"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4539
  by (fact fps_const_sub)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4540
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4541
lemma fps_of_int: "fps_const (of_int c) = of_int c"
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4542
  by (induction c) (simp_all add: fps_const_minus [symmetric] fps_of_nat fps_const_neg [symmetric] 
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4543
                             del: fps_const_minus fps_const_neg)
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63040
diff changeset
  4544
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4545
lemma fps_deriv_of_int [simp]: "fps_deriv (of_int n) = 0"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4546
  by (simp add: fps_of_int [symmetric])
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4547
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  4548
lemma fps_numeral_fps_const: "numeral i = fps_const (numeral i :: 'a::comm_ring_1)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
  4549
  by (fact numeral_fps_const) (* FIXME: duplicate *)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4550
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4551
lemma fps_cos_fps_exp_ii: "fps_cos c = (fps_exp (\<i> * c) + fps_exp (- \<i> * c)) / fps_const 2"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4552
proof -
52891
b8dede3a4f1d tuned proofs;
wenzelm
parents: 51542
diff changeset
  4553
  have th: "fps_cos c + fps_cos c = fps_cos c * fps_const 2"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
  4554
    by (simp add: numeral_fps_const)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4555
  show ?thesis
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4556
    unfolding fps_exp_ii_sin_cos minus_mult_commute
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4557
    by (simp add: fps_sin_even fps_cos_odd numeral_fps_const fps_divide_unit fps_const_inverse th)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4558
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4559
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4560
lemma fps_sin_fps_exp_ii: "fps_sin c = (fps_exp (\<i> * c) - fps_exp (- \<i> * c)) / fps_const (2*\<i>)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4561
proof -
63589
58aab4745e85 more symbols;
wenzelm
parents: 63539
diff changeset
  4562
  have th: "fps_const \<i> * fps_sin c + fps_const \<i> * fps_sin c = fps_sin c * fps_const (2 * \<i>)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46757
diff changeset
  4563
    by (simp add: fps_eq_iff numeral_fps_const)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4564
  show ?thesis
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4565
    unfolding fps_exp_ii_sin_cos minus_mult_commute
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4566
    by (simp add: fps_sin_even fps_cos_odd fps_divide_unit fps_const_inverse th)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4567
qed
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4568
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4569
lemma fps_tan_fps_exp_ii:
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4570
  "fps_tan c = (fps_exp (\<i> * c) - fps_exp (- \<i> * c)) / 
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4571
      (fps_const \<i> * (fps_exp (\<i> * c) + fps_exp (- \<i> * c)))"
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4572
  unfolding fps_tan_def fps_sin_fps_exp_ii fps_cos_fps_exp_ii mult_minus_left fps_exp_neg
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4573
  apply (simp add: fps_divide_unit fps_inverse_mult fps_const_mult[symmetric] fps_const_inverse del: fps_const_mult)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4574
  apply simp
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4575
  done
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4576
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4577
lemma fps_demoivre:
63589
58aab4745e85 more symbols;
wenzelm
parents: 63539
diff changeset
  4578
  "(fps_cos a + fps_const \<i> * fps_sin a)^n =
58aab4745e85 more symbols;
wenzelm
parents: 63539
diff changeset
  4579
    fps_cos (of_nat n * a) + fps_const \<i> * fps_sin (of_nat n * a)"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4580
  unfolding fps_exp_ii_sin_cos[symmetric] fps_exp_power_mult
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  4581
  by (simp add: ac_simps)
32157
adea7a729c7a Moved important theorems from FPS_Examples to FPS --- they are not
chaieb
parents: 31968
diff changeset
  4582
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4583
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  4584
subsection \<open>Hypergeometric series\<close>
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4585
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4586
definition "fps_hypergeo as bs (c::'a::{field_char_0,field}) =
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4587
  Abs_fps (\<lambda>n. (foldl (\<lambda>r a. r* pochhammer a n) 1 as * c^n) /
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4588
    (foldl (\<lambda>r b. r * pochhammer b n) 1 bs * of_nat (fact n)))"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4589
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4590
lemma fps_hypergeo_nth[simp]: "fps_hypergeo as bs c $ n =
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4591
  (foldl (\<lambda>r a. r* pochhammer a n) 1 as * c^n) /
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4592
    (foldl (\<lambda>r b. r * pochhammer b n) 1 bs * of_nat (fact n))"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4593
  by (simp add: fps_hypergeo_def)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4594
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4595
lemma foldl_mult_start:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4596
  fixes v :: "'a::comm_ring_1"
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4597
  shows "foldl (\<lambda>r x. r * f x) v as * x = foldl (\<lambda>r x. r * f x) (v * x) as "
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  4598
  by (induct as arbitrary: x v) (auto simp add: algebra_simps)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4599
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4600
lemma foldr_mult_foldl:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4601
  fixes v :: "'a::comm_ring_1"
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4602
  shows "foldr (\<lambda>x r. r * f x) as v = foldl (\<lambda>r x. r * f x) v as"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  4603
  by (induct as arbitrary: v) (auto simp add: foldl_mult_start)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4604
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4605
lemma fps_hypergeo_nth_alt:
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4606
  "fps_hypergeo as bs c $ n = foldr (\<lambda>a r. r * pochhammer a n) as (c ^ n) /
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4607
    foldr (\<lambda>b r. r * pochhammer b n) bs (of_nat (fact n))"
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4608
  by (simp add: foldl_mult_start foldr_mult_foldl)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4609
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4610
lemma fps_hypergeo_fps_exp[simp]: "fps_hypergeo [] [] c = fps_exp c"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4611
  by (simp add: fps_eq_iff)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4612
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4613
lemma fps_hypergeo_1_0[simp]: "fps_hypergeo [1] [] c = 1/(1 - fps_const c * X)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4614
proof -
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4615
  let ?a = "(Abs_fps (\<lambda>n. 1)) oo (fps_const c * X)"
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4616
  have th0: "(fps_const c * X) $ 0 = 0" by simp
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4617
  show ?thesis unfolding gp[OF th0, symmetric]
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4618
    by (auto simp add: fps_eq_iff pochhammer_fact[symmetric]
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4619
      fps_compose_nth power_mult_distrib cond_value_iff sum.delta' cong del: if_weak_cong)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4620
qed
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4621
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4622
lemma fps_hypergeo_B[simp]: "fps_hypergeo [-a] [] (- 1) = fps_binomial a"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4623
  by (simp add: fps_eq_iff gbinomial_pochhammer algebra_simps)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4624
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4625
lemma fps_hypergeo_0[simp]: "fps_hypergeo as bs c $ 0 = 1"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4626
  apply simp
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4627
  apply (subgoal_tac "\<forall>as. foldl (\<lambda>(r::'a) (a::'a). r) 1 as = 1")
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4628
  apply auto
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  4629
  apply (induct_tac as)
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  4630
  apply auto
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4631
  done
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4632
53196
942a1b48bb31 tuned proofs;
wenzelm
parents: 53195
diff changeset
  4633
lemma foldl_prod_prod:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4634
  "foldl (\<lambda>(r::'b::comm_ring_1) (x::'a::comm_ring_1). r * f x) v as * foldl (\<lambda>r x. r * g x) w as =
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4635
    foldl (\<lambda>r x. r * f x * g x) (v * w) as"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  4636
  by (induct as arbitrary: v w) (auto simp add: algebra_simps)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4637
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4638
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4639
lemma fps_hypergeo_rec:
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4640
  "fps_hypergeo as bs c $ Suc n = ((foldl (\<lambda>r a. r* (a + of_nat n)) c as) /
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4641
    (foldl (\<lambda>r b. r * (b + of_nat n)) (of_nat (Suc n)) bs )) * fps_hypergeo as bs c $ n"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4642
  apply (simp del: of_nat_Suc of_nat_add fact_Suc)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4643
  apply (simp add: foldl_mult_start del: fact_Suc of_nat_Suc)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4644
  unfolding foldl_prod_prod[unfolded foldl_mult_start] pochhammer_Suc
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63367
diff changeset
  4645
  apply (simp add: algebra_simps)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4646
  done
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4647
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4648
lemma XD_nth[simp]: "XD a $ n = (if n = 0 then 0 else of_nat n * a$n)"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4649
  by (simp add: XD_def)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4650
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4651
lemma XD_0th[simp]: "XD a $ 0 = 0"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4652
  by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4653
lemma XD_Suc[simp]:" XD a $ Suc n = of_nat (Suc n) * a $ Suc n"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4654
  by simp
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4655
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4656
definition "XDp c a = XD a + fps_const c * a"
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4657
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4658
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: 32157
diff changeset
  4659
  by (simp add: XDp_def algebra_simps)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4660
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  4661
lemma XDp_commute: "XDp b \<circ> XDp (c::'a::comm_ring_1) = XDp c \<circ> XDp b"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
  4662
  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: 32157
diff changeset
  4663
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4664
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: 39198
diff changeset
  4665
  by (simp add: fun_eq_iff fps_eq_iff)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4666
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4667
lemma XDp_fps_integral [simp]: "XDp 0 (fps_integral a c) = X * a"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4668
  by (simp add: fps_eq_iff fps_integral_def)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4669
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4670
lemma fps_hypergeo_minus_nat:
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4671
  "fps_hypergeo [- of_nat n] [- of_nat (n + m)] (c::'a::{field_char_0,field}) $ k =
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4672
    (if k \<le> n then
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4673
      pochhammer (- of_nat n) k * c ^ k / (pochhammer (- of_nat (n + m)) k * of_nat (fact k))
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4674
     else 0)"
65396
b42167902f57 moved AFP material to Formal_Power_Series; renamed E/L/F in Formal_Power_Series
eberlm <eberlm@in.tum.de>
parents: 64786
diff changeset
  4675
  "fps_hypergeo [- of_nat m] [- of_nat (m + n)] (c::'a::{field_char_0,field}) $ k =
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4676
    (if k \<le> m then
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4677
      pochhammer (- of_nat m) k * c ^ k / (pochhammer (- of_nat (m + n)) k * of_nat (fact k))
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4678
     else 0)"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4679
  by (auto simp add: pochhammer_eq_0_iff)
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4680
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4681
lemma sum_eq_if: "sum f {(n::nat) .. m} = (if m < n then 0 else f n + sum f {n+1 .. m})"
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4682
  apply simp
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4683
  apply (subst sum.insert[symmetric])
b9a1486e79be setsum -> sum
nipkow
parents: 64242
diff changeset
  4684
  apply (auto simp add: not_less sum_head_Suc)
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4685
  done
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4686
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4687
lemma pochhammer_rec_if: "pochhammer a n = (if n = 0 then 1 else a * pochhammer (a + 1) (n - 1))"
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4688
  by (cases n) (simp_all add: pochhammer_rec)
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4689
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  4690
lemma XDp_foldr_nth [simp]: "foldr (\<lambda>c r. XDp c \<circ> r) cs (\<lambda>c. XDp c a) c0 $ n =
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4691
    foldr (\<lambda>c r. (c + of_nat n) * r) cs (c0 + of_nat n) * a$n"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  4692
  by (induct cs arbitrary: c0) (auto simp add: algebra_simps)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4693
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4694
lemma genric_XDp_foldr_nth:
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4695
  assumes f: "\<forall>n c a. f c a $ n = (of_nat n + k c) * a$n"
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  4696
  shows "foldr (\<lambda>c r. f c \<circ> r) cs (\<lambda>c. g c a) c0 $ n =
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4697
    foldr (\<lambda>c r. (k c + of_nat n) * r) cs (g c0 a $ n)"
48757
1232760e208e tuned proofs;
wenzelm
parents: 47217
diff changeset
  4698
  by (induct cs arbitrary: c0) (auto simp add: algebra_simps f)
32160
63686057cbe8 Vandermonde vs Pochhammer; Hypergeometric series - very basic facts
chaieb
parents: 32157
diff changeset
  4699
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4700
lemma dist_less_imp_nth_equal:
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4701
  assumes "dist f g < inverse (2 ^ i)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4702
    and"j \<le> i"
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4703
  shows "f $ j = g $ j"
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  4704
proof (rule ccontr)
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  4705
  assume "f $ j \<noteq> g $ j"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4706
  hence "f \<noteq> g" by auto
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4707
  with assms have "i < subdegree (f - g)"
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
  4708
    by (simp add: if_split_asm dist_fps_def)
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
  4709
  also have "\<dots> \<le> j"
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4710
    using \<open>f $ j \<noteq> g $ j\<close> by (intro subdegree_leI) simp_all
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  4711
  finally show False using \<open>j \<le> i\<close> by simp
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4712
qed
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4713
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4714
lemma nth_equal_imp_dist_less:
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4715
  assumes "\<And>j. j \<le> i \<Longrightarrow> f $ j = g $ j"
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4716
  shows "dist f g < inverse (2 ^ i)"
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4717
proof (cases "f = g")
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4718
  case True
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4719
  then show ?thesis by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4720
next
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4721
  case False
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4722
  with assms have "dist f g = inverse (2 ^ subdegree (f - g))"
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
  4723
    by (simp add: if_split_asm dist_fps_def)
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4724
  moreover
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4725
  from assms and False have "i < subdegree (f - g)"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4726
    by (intro subdegree_greaterI) simp_all
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4727
  ultimately show ?thesis by simp
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4728
qed
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4729
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4730
lemma dist_less_eq_nth_equal: "dist f g < inverse (2 ^ i) \<longleftrightarrow> (\<forall>j \<le> i. f $ j = g $ j)"
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4731
  using dist_less_imp_nth_equal nth_equal_imp_dist_less by blast
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4732
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4733
instance fps :: (comm_ring_1) complete_space
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4734
proof
54681
8a8e6db7f391 tuned proofs;
wenzelm
parents: 54489
diff changeset
  4735
  fix X :: "nat \<Rightarrow> 'a fps"
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4736
  assume "Cauchy X"
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4737
  obtain M where M: "\<forall>i. \<forall>m \<ge> M i. \<forall>j \<le> i. X (M i) $ j = X m $ j"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4738
  proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4739
    have "\<exists>M. \<forall>m \<ge> M. \<forall>j\<le>i. X M $ j = X m $ j" for i
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4740
    proof -
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4741
      have "0 < inverse ((2::real)^i)" by simp
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4742
      from metric_CauchyD[OF \<open>Cauchy X\<close> this] dist_less_imp_nth_equal
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4743
      show ?thesis by blast
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4744
    qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4745
    then show ?thesis using that by metis
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4746
  qed
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4747
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4748
  show "convergent X"
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4749
  proof (rule convergentI)
61969
e01015e49041 more symbols;
wenzelm
parents: 61943
diff changeset
  4750
    show "X \<longlonglongrightarrow> Abs_fps (\<lambda>i. X (M i) $ i)"
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4751
      unfolding tendsto_iff
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4752
    proof safe
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4753
      fix e::real assume e: "0 < e"
61969
e01015e49041 more symbols;
wenzelm
parents: 61943
diff changeset
  4754
      have "(\<lambda>n. inverse (2 ^ n) :: real) \<longlonglongrightarrow> 0" by (rule LIMSEQ_inverse_realpow_zero) simp_all
61608
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4755
      from this and e have "eventually (\<lambda>i. inverse (2 ^ i) < e) sequentially"
a0487caabb4a subdegree/shift/cutoff and Euclidean ring instance for formal power series
eberlm
parents: 61585
diff changeset
  4756
        by (rule order_tendstoD)
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4757
      then obtain i where "inverse (2 ^ i) < e"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4758
        by (auto simp: eventually_sequentially)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4759
      have "eventually (\<lambda>x. M i \<le> x) sequentially"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4760
        by (auto simp: eventually_sequentially)
54452
f3090621446e tuned proofs;
wenzelm
parents: 54263
diff changeset
  4761
      then show "eventually (\<lambda>x. dist (X x) (Abs_fps (\<lambda>i. X (M i) $ i)) < e) sequentially"
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4762
      proof eventually_elim
52902
7196e1ce1cd8 tuned proofs;
wenzelm
parents: 52891
diff changeset
  4763
        fix x
60501
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4764
        assume x: "M i \<le> x"
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4765
        have "X (M i) $ j = X (M j) $ j" if "j \<le> i" for j
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4766
          using M that by (metis nat_le_linear)
839169c70e92 tuned proofs;
wenzelm
parents: 60500
diff changeset
  4767
        with x have "dist (X x) (Abs_fps (\<lambda>j. X (M j) $ j)) < inverse (2 ^ i)"
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4768
          using M by (force simp: dist_less_eq_nth_equal)
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60162
diff changeset
  4769
        also note \<open>inverse (2 ^ i) < e\<close>
51107
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4770
        finally show "dist (X x) (Abs_fps (\<lambda>j. X (M j) $ j)) < e" .
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4771
      qed
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4772
    qed
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4773
  qed
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4774
qed
3f9dbd2cc475 complete metric for formal power series
immler
parents: 49962
diff changeset
  4775
29911
c790a70a3d19 declare fps_nth as a typedef morphism; clean up instance proofs
huffman
parents: 29906
diff changeset
  4776
end