src/HOL/Algebra/UnivPoly.thy
author wenzelm
Thu, 06 May 2004 14:14:18 +0200
changeset 14706 71590b7733b7
parent 14666 65f8680c3f16
child 14963 d584e32f7d46
permissions -rw-r--r--
tuned document;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
     1
(*
14706
71590b7733b7 tuned document;
wenzelm
parents: 14666
diff changeset
     2
  Title:     HOL/Algebra/UnivPoly.thy
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
     3
  Id:        $Id$
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
     4
  Author:    Clemens Ballarin, started 9 December 1996
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
     5
  Copyright: Clemens Ballarin
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
     6
*)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
     7
14577
dbb95b825244 tuned document;
wenzelm
parents: 14553
diff changeset
     8
header {* Univariate Polynomials *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
     9
14577
dbb95b825244 tuned document;
wenzelm
parents: 14553
diff changeset
    10
theory UnivPoly = Module:
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    11
14553
4740fc2da7bb Added brief intro text.
ballarin
parents: 14399
diff changeset
    12
text {*
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    13
  Polynomials are formalised as modules with additional operations for
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    14
  extracting coefficients from polynomials and for obtaining monomials
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    15
  from coefficients and exponents (record @{text "up_ring"}).  The
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    16
  carrier set is a set of bounded functions from Nat to the
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    17
  coefficient domain.  Bounded means that these functions return zero
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    18
  above a certain bound (the degree).  There is a chapter on the
14706
71590b7733b7 tuned document;
wenzelm
parents: 14666
diff changeset
    19
  formalisation of polynomials in the PhD thesis \cite{Ballarin:1999},
71590b7733b7 tuned document;
wenzelm
parents: 14666
diff changeset
    20
  which was implemented with axiomatic type classes.  This was later
71590b7733b7 tuned document;
wenzelm
parents: 14666
diff changeset
    21
  ported to Locales.
14553
4740fc2da7bb Added brief intro text.
ballarin
parents: 14399
diff changeset
    22
*}
4740fc2da7bb Added brief intro text.
ballarin
parents: 14399
diff changeset
    23
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    24
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
    25
subsection {* The Constructor for Univariate Polynomials *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    26
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    27
locale bound =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    28
  fixes z :: 'a
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    29
    and n :: nat
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    30
    and f :: "nat => 'a"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    31
  assumes bound: "!!m. n < m \<Longrightarrow> f m = z"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    32
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    33
declare bound.intro [intro!]
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    34
  and bound.bound [dest]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    35
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    36
lemma bound_below:
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    37
  assumes bound: "bound z m f" and nonzero: "f n \<noteq> z" shows "n \<le> m"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    38
proof (rule classical)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    39
  assume "~ ?thesis"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    40
  then have "m < n" by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    41
  with bound have "f n = z" ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    42
  with nonzero show ?thesis by contradiction
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    43
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    44
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    45
record ('a, 'p) up_ring = "('a, 'p) module" +
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    46
  monom :: "['a, nat] => 'p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    47
  coeff :: "['p, nat] => 'a"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    48
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    49
constdefs (structure R)
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    50
  up :: "_ => (nat => 'a) set"
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    51
  "up R == {f. f \<in> UNIV -> carrier R & (EX n. bound \<zero> n f)}"
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    52
  UP :: "_ => ('a, nat => 'a) up_ring"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    53
  "UP R == (|
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    54
    carrier = up R,
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    55
    mult = (%p:up R. %q:up R. %n. \<Oplus>i \<in> {..n}. p i \<otimes> q (n-i)),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    56
    one = (%i. if i=0 then \<one> else \<zero>),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    57
    zero = (%i. \<zero>),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    58
    add = (%p:up R. %q:up R. %i. p i \<oplus> q i),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    59
    smult = (%a:carrier R. %p:up R. %i. a \<otimes> p i),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    60
    monom = (%a:carrier R. %n i. if i=n then a else \<zero>),
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    61
    coeff = (%p:up R. %n. p n) |)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    62
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    63
text {*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    64
  Properties of the set of polynomials @{term up}.
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    65
*}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    66
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    67
lemma mem_upI [intro]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    68
  "[| !!n. f n \<in> carrier R; EX n. bound (zero R) n f |] ==> f \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    69
  by (simp add: up_def Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    70
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    71
lemma mem_upD [dest]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    72
  "f \<in> up R ==> f n \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    73
  by (simp add: up_def Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    74
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    75
lemma (in cring) bound_upD [dest]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    76
  "f \<in> up R ==> EX n. bound \<zero> n f"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    77
  by (simp add: up_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    78
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    79
lemma (in cring) up_one_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    80
   "(%n. if n = 0 then \<one> else \<zero>) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    81
  using up_def by force
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    82
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    83
lemma (in cring) up_smult_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    84
  "[| a \<in> carrier R; p \<in> up R |] ==> (%i. a \<otimes> p i) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    85
  by force
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    86
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    87
lemma (in cring) up_add_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    88
  "[| p \<in> up R; q \<in> up R |] ==> (%i. p i \<oplus> q i) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    89
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    90
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    91
  assume "p \<in> up R" and "q \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    92
  then show "p n \<oplus> q n \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    93
    by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    94
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    95
  assume UP: "p \<in> up R" "q \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    96
  show "EX n. bound \<zero> n (%i. p i \<oplus> q i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    97
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    98
    from UP obtain n where boundn: "bound \<zero> n p" by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    99
    from UP obtain m where boundm: "bound \<zero> m q" by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   100
    have "bound \<zero> (max n m) (%i. p i \<oplus> q i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   101
    proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   102
      fix i
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   103
      assume "max n m < i"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   104
      with boundn and boundm and UP show "p i \<oplus> q i = \<zero>" by fastsimp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   105
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   106
    then show ?thesis ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   107
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   108
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   109
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   110
lemma (in cring) up_a_inv_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   111
  "p \<in> up R ==> (%i. \<ominus> (p i)) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   112
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   113
  assume R: "p \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   114
  then obtain n where "bound \<zero> n p" by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   115
  then have "bound \<zero> n (%i. \<ominus> p i)" by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   116
  then show "EX n. bound \<zero> n (%i. \<ominus> p i)" by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   117
qed auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   118
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   119
lemma (in cring) up_mult_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   120
  "[| p \<in> up R; q \<in> up R |] ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   121
  (%n. \<Oplus>i \<in> {..n}. p i \<otimes> q (n-i)) \<in> up R"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   122
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   123
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   124
  assume "p \<in> up R" "q \<in> up R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   125
  then show "(\<Oplus>i \<in> {..n}. p i \<otimes> q (n-i)) \<in> carrier R"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   126
    by (simp add: mem_upD  funcsetI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   127
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   128
  assume UP: "p \<in> up R" "q \<in> up R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   129
  show "EX n. bound \<zero> n (%n. \<Oplus>i \<in> {..n}. p i \<otimes> q (n-i))"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   130
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   131
    from UP obtain n where boundn: "bound \<zero> n p" by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   132
    from UP obtain m where boundm: "bound \<zero> m q" by fast
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   133
    have "bound \<zero> (n + m) (%n. \<Oplus>i \<in> {..n}. p i \<otimes> q (n - i))"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   134
    proof
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   135
      fix k assume bound: "n + m < k"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   136
      {
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   137
        fix i
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   138
        have "p i \<otimes> q (k-i) = \<zero>"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   139
        proof (cases "n < i")
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   140
          case True
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   141
          with boundn have "p i = \<zero>" by auto
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   142
          moreover from UP have "q (k-i) \<in> carrier R" by auto
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   143
          ultimately show ?thesis by simp
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   144
        next
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   145
          case False
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   146
          with bound have "m < k-i" by arith
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   147
          with boundm have "q (k-i) = \<zero>" by auto
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   148
          moreover from UP have "p i \<in> carrier R" by auto
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   149
          ultimately show ?thesis by simp
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   150
        qed
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   151
      }
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   152
      then show "(\<Oplus>i \<in> {..k}. p i \<otimes> q (k-i)) = \<zero>"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   153
        by (simp add: Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   154
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   155
    then show ?thesis by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   156
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   157
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   158
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   159
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   160
subsection {* Effect of operations on coefficients *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   161
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   162
locale UP = struct R + struct P +
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   163
  defines P_def: "P == UP R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   164
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   165
locale UP_cring = UP + cring R
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   166
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   167
locale UP_domain = UP_cring + "domain" R
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   168
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   169
text {*
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
   170
  Temporarily declare @{text UP.P_def} as simp rule.
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
   171
*}  (* TODO: use antiquotation once text (in locale) is supported. *)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   172
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   173
declare (in UP) P_def [simp]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   174
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   175
lemma (in UP_cring) coeff_monom [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   176
  "a \<in> carrier R ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   177
  coeff P (monom P a m) n = (if m=n then a else \<zero>)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   178
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   179
  assume R: "a \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   180
  then have "(%n. if n = m then a else \<zero>) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   181
    using up_def by force
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   182
  with R show ?thesis by (simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   183
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   184
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   185
lemma (in UP_cring) coeff_zero [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   186
  "coeff P \<zero>\<^sub>2 n = \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   187
  by (auto simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   188
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   189
lemma (in UP_cring) coeff_one [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   190
  "coeff P \<one>\<^sub>2 n = (if n=0 then \<one> else \<zero>)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   191
  using up_one_closed by (simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   192
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   193
lemma (in UP_cring) coeff_smult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   194
  "[| a \<in> carrier R; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   195
  coeff P (a \<odot>\<^sub>2 p) n = a \<otimes> coeff P p n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   196
  by (simp add: UP_def up_smult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   197
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   198
lemma (in UP_cring) coeff_add [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   199
  "[| p \<in> carrier P; q \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   200
  coeff P (p \<oplus>\<^sub>2 q) n = coeff P p n \<oplus> coeff P q n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   201
  by (simp add: UP_def up_add_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   202
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   203
lemma (in UP_cring) coeff_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   204
  "[| p \<in> carrier P; q \<in> carrier P |] ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   205
  coeff P (p \<otimes>\<^sub>2 q) n = (\<Oplus>i \<in> {..n}. coeff P p i \<otimes> coeff P q (n-i))"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   206
  by (simp add: UP_def up_mult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   207
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   208
lemma (in UP) up_eqI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   209
  assumes prem: "!!n. coeff P p n = coeff P q n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   210
    and R: "p \<in> carrier P" "q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   211
  shows "p = q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   212
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   213
  fix x
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   214
  from prem and R show "p x = q x" by (simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   215
qed
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   216
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   217
subsection {* Polynomials form a commutative ring. *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   218
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   219
text {* Operations are closed over @{term P}. *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   220
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   221
lemma (in UP_cring) UP_mult_closed [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   222
  "[| p \<in> carrier P; q \<in> carrier P |] ==> p \<otimes>\<^sub>2 q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   223
  by (simp add: UP_def up_mult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   224
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   225
lemma (in UP_cring) UP_one_closed [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   226
  "\<one>\<^sub>2 \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   227
  by (simp add: UP_def up_one_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   228
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   229
lemma (in UP_cring) UP_zero_closed [intro, simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   230
  "\<zero>\<^sub>2 \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   231
  by (auto simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   232
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   233
lemma (in UP_cring) UP_a_closed [intro, simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   234
  "[| p \<in> carrier P; q \<in> carrier P |] ==> p \<oplus>\<^sub>2 q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   235
  by (simp add: UP_def up_add_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   236
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   237
lemma (in UP_cring) monom_closed [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   238
  "a \<in> carrier R ==> monom P a n \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   239
  by (auto simp add: UP_def up_def Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   240
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   241
lemma (in UP_cring) UP_smult_closed [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   242
  "[| a \<in> carrier R; p \<in> carrier P |] ==> a \<odot>\<^sub>2 p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   243
  by (simp add: UP_def up_smult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   244
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   245
lemma (in UP) coeff_closed [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   246
  "p \<in> carrier P ==> coeff P p n \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   247
  by (auto simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   248
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   249
declare (in UP) P_def [simp del]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   250
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   251
text {* Algebraic ring properties *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   252
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   253
lemma (in UP_cring) UP_a_assoc:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   254
  assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   255
  shows "(p \<oplus>\<^sub>2 q) \<oplus>\<^sub>2 r = p \<oplus>\<^sub>2 (q \<oplus>\<^sub>2 r)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   256
  by (rule up_eqI, simp add: a_assoc R, simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   257
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   258
lemma (in UP_cring) UP_l_zero [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   259
  assumes R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   260
  shows "\<zero>\<^sub>2 \<oplus>\<^sub>2 p = p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   261
  by (rule up_eqI, simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   262
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   263
lemma (in UP_cring) UP_l_neg_ex:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   264
  assumes R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   265
  shows "EX q : carrier P. q \<oplus>\<^sub>2 p = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   266
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   267
  let ?q = "%i. \<ominus> (p i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   268
  from R have closed: "?q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   269
    by (simp add: UP_def P_def up_a_inv_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   270
  from R have coeff: "!!n. coeff P ?q n = \<ominus> (coeff P p n)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   271
    by (simp add: UP_def P_def up_a_inv_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   272
  show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   273
  proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   274
    show "?q \<oplus>\<^sub>2 p = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   275
      by (auto intro!: up_eqI simp add: R closed coeff R.l_neg)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   276
  qed (rule closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   277
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   278
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   279
lemma (in UP_cring) UP_a_comm:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   280
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   281
  shows "p \<oplus>\<^sub>2 q = q \<oplus>\<^sub>2 p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   282
  by (rule up_eqI, simp add: a_comm R, simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   283
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   284
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   285
  simpset_ref() := simpset() setsubgoaler asm_full_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   286
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   287
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   288
lemma (in UP_cring) UP_m_assoc:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   289
  assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   290
  shows "(p \<otimes>\<^sub>2 q) \<otimes>\<^sub>2 r = p \<otimes>\<^sub>2 (q \<otimes>\<^sub>2 r)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   291
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   292
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   293
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   294
    fix k and a b c :: "nat=>'a"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   295
    assume R: "a \<in> UNIV -> carrier R" "b \<in> UNIV -> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   296
      "c \<in> UNIV -> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   297
    then have "k <= n ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   298
      (\<Oplus>j \<in> {..k}. (\<Oplus>i \<in> {..j}. a i \<otimes> b (j-i)) \<otimes> c (n-j)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   299
      (\<Oplus>j \<in> {..k}. a j \<otimes> (\<Oplus>i \<in> {..k-j}. b i \<otimes> c (n-j-i)))"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   300
      (concl is "?eq k")
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   301
    proof (induct k)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   302
      case 0 then show ?case by (simp add: Pi_def m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   303
    next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   304
      case (Suc k)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   305
      then have "k <= n" by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   306
      then have "?eq k" by (rule Suc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   307
      with R show ?case
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   308
        by (simp cong: finsum_cong
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   309
             add: Suc_diff_le Pi_def l_distr r_distr m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   310
          (simp cong: finsum_cong add: Pi_def a_ac finsum_ldistr m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   311
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   312
  }
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   313
  with R show "coeff P ((p \<otimes>\<^sub>2 q) \<otimes>\<^sub>2 r) n = coeff P (p \<otimes>\<^sub>2 (q \<otimes>\<^sub>2 r)) n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   314
    by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   315
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   316
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   317
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   318
  simpset_ref() := simpset() setsubgoaler asm_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   319
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   320
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   321
lemma (in UP_cring) UP_l_one [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   322
  assumes R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   323
  shows "\<one>\<^sub>2 \<otimes>\<^sub>2 p = p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   324
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   325
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   326
  show "coeff P (\<one>\<^sub>2 \<otimes>\<^sub>2 p) n = coeff P p n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   327
  proof (cases n)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   328
    case 0 with R show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   329
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   330
    case Suc with R show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   331
      by (simp del: finsum_Suc add: finsum_Suc2 Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   332
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   333
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   334
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   335
lemma (in UP_cring) UP_l_distr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   336
  assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   337
  shows "(p \<oplus>\<^sub>2 q) \<otimes>\<^sub>2 r = (p \<otimes>\<^sub>2 r) \<oplus>\<^sub>2 (q \<otimes>\<^sub>2 r)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   338
  by (rule up_eqI) (simp add: l_distr R Pi_def, simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   339
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   340
lemma (in UP_cring) UP_m_comm:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   341
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   342
  shows "p \<otimes>\<^sub>2 q = q \<otimes>\<^sub>2 p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   343
proof (rule up_eqI)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   344
  fix n
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   345
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   346
    fix k and a b :: "nat=>'a"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   347
    assume R: "a \<in> UNIV -> carrier R" "b \<in> UNIV -> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   348
    then have "k <= n ==>
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   349
      (\<Oplus>i \<in> {..k}. a i \<otimes> b (n-i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   350
      (\<Oplus>i \<in> {..k}. a (k-i) \<otimes> b (i+n-k))"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   351
      (concl is "?eq k")
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   352
    proof (induct k)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   353
      case 0 then show ?case by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   354
    next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   355
      case (Suc k) then show ?case
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   356
        by (subst finsum_Suc2) (simp add: Pi_def a_comm)+
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   357
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   358
  }
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   359
  note l = this
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   360
  from R show "coeff P (p \<otimes>\<^sub>2 q) n =  coeff P (q \<otimes>\<^sub>2 p) n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   361
    apply (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   362
    apply (subst l)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   363
    apply (auto simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   364
    apply (simp add: m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   365
    done
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   366
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   367
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   368
theorem (in UP_cring) UP_cring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   369
  "cring P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   370
  by (auto intro!: cringI abelian_groupI comm_monoidI UP_a_assoc UP_l_zero
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   371
    UP_l_neg_ex UP_a_comm UP_m_assoc UP_l_one UP_m_comm UP_l_distr)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   372
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   373
lemma (in UP_cring) UP_ring:  (* preliminary *)
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   374
  "ring P"
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   375
  by (auto intro: ring.intro cring.axioms UP_cring)
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   376
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   377
lemma (in UP_cring) UP_a_inv_closed [intro, simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   378
  "p \<in> carrier P ==> \<ominus>\<^sub>2 p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   379
  by (rule abelian_group.a_inv_closed
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   380
    [OF ring.is_abelian_group [OF UP_ring]])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   381
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   382
lemma (in UP_cring) coeff_a_inv [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   383
  assumes R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   384
  shows "coeff P (\<ominus>\<^sub>2 p) n = \<ominus> (coeff P p n)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   385
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   386
  from R coeff_closed UP_a_inv_closed have
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   387
    "coeff P (\<ominus>\<^sub>2 p) n = \<ominus> coeff P p n \<oplus> (coeff P p n \<oplus> coeff P (\<ominus>\<^sub>2 p) n)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   388
    by algebra
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   389
  also from R have "... =  \<ominus> (coeff P p n)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   390
    by (simp del: coeff_add add: coeff_add [THEN sym]
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   391
      abelian_group.r_neg [OF ring.is_abelian_group [OF UP_ring]])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   392
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   393
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   394
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   395
text {*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   396
  Instantiation of lemmas from @{term cring}.
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   397
*}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   398
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   399
lemma (in UP_cring) UP_monoid:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   400
  "monoid P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   401
  by (fast intro!: cring.is_comm_monoid comm_monoid.axioms monoid.intro
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   402
    UP_cring)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   403
(* TODO: provide cring.is_monoid *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   404
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   405
lemma (in UP_cring) UP_comm_semigroup:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   406
  "comm_semigroup P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   407
  by (fast intro!: cring.is_comm_monoid comm_monoid.axioms comm_semigroup.intro
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   408
    UP_cring)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   409
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   410
lemma (in UP_cring) UP_comm_monoid:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   411
  "comm_monoid P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   412
  by (fast intro!: cring.is_comm_monoid UP_cring)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   413
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   414
lemma (in UP_cring) UP_abelian_monoid:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   415
  "abelian_monoid P"
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   416
  by (fast intro!: abelian_group.axioms ring.is_abelian_group UP_ring)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   417
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   418
lemma (in UP_cring) UP_abelian_group:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   419
  "abelian_group P"
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   420
  by (fast intro!: ring.is_abelian_group UP_ring)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   421
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   422
lemmas (in UP_cring) UP_r_one [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   423
  monoid.r_one [OF UP_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   424
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   425
lemmas (in UP_cring) UP_nat_pow_closed [intro, simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   426
  monoid.nat_pow_closed [OF UP_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   427
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   428
lemmas (in UP_cring) UP_nat_pow_0 [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   429
  monoid.nat_pow_0 [OF UP_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   430
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   431
lemmas (in UP_cring) UP_nat_pow_Suc [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   432
  monoid.nat_pow_Suc [OF UP_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   433
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   434
lemmas (in UP_cring) UP_nat_pow_one [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   435
  monoid.nat_pow_one [OF UP_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   436
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   437
lemmas (in UP_cring) UP_nat_pow_mult =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   438
  monoid.nat_pow_mult [OF UP_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   439
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   440
lemmas (in UP_cring) UP_nat_pow_pow =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   441
  monoid.nat_pow_pow [OF UP_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   442
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   443
lemmas (in UP_cring) UP_m_lcomm =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   444
  comm_semigroup.m_lcomm [OF UP_comm_semigroup]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   445
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   446
lemmas (in UP_cring) UP_m_ac = UP_m_assoc UP_m_comm UP_m_lcomm
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   447
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   448
lemmas (in UP_cring) UP_nat_pow_distr =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   449
  comm_monoid.nat_pow_distr [OF UP_comm_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   450
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   451
lemmas (in UP_cring) UP_a_lcomm = abelian_monoid.a_lcomm [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   452
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   453
lemmas (in UP_cring) UP_r_zero [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   454
  abelian_monoid.r_zero [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   455
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   456
lemmas (in UP_cring) UP_a_ac = UP_a_assoc UP_a_comm UP_a_lcomm
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   457
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   458
lemmas (in UP_cring) UP_finsum_empty [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   459
  abelian_monoid.finsum_empty [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   460
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   461
lemmas (in UP_cring) UP_finsum_insert [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   462
  abelian_monoid.finsum_insert [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   463
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   464
lemmas (in UP_cring) UP_finsum_zero [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   465
  abelian_monoid.finsum_zero [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   466
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   467
lemmas (in UP_cring) UP_finsum_closed [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   468
  abelian_monoid.finsum_closed [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   469
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   470
lemmas (in UP_cring) UP_finsum_Un_Int =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   471
  abelian_monoid.finsum_Un_Int [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   472
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   473
lemmas (in UP_cring) UP_finsum_Un_disjoint =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   474
  abelian_monoid.finsum_Un_disjoint [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   475
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   476
lemmas (in UP_cring) UP_finsum_addf =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   477
  abelian_monoid.finsum_addf [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   478
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   479
lemmas (in UP_cring) UP_finsum_cong' =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   480
  abelian_monoid.finsum_cong' [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   481
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   482
lemmas (in UP_cring) UP_finsum_0 [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   483
  abelian_monoid.finsum_0 [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   484
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   485
lemmas (in UP_cring) UP_finsum_Suc [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   486
  abelian_monoid.finsum_Suc [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   487
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   488
lemmas (in UP_cring) UP_finsum_Suc2 =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   489
  abelian_monoid.finsum_Suc2 [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   490
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   491
lemmas (in UP_cring) UP_finsum_add [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   492
  abelian_monoid.finsum_add [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   493
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   494
lemmas (in UP_cring) UP_finsum_cong =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   495
  abelian_monoid.finsum_cong [OF UP_abelian_monoid]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   496
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   497
lemmas (in UP_cring) UP_minus_closed [intro, simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   498
  abelian_group.minus_closed [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   499
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   500
lemmas (in UP_cring) UP_a_l_cancel [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   501
  abelian_group.a_l_cancel [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   502
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   503
lemmas (in UP_cring) UP_a_r_cancel [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   504
  abelian_group.a_r_cancel [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   505
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   506
lemmas (in UP_cring) UP_l_neg =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   507
  abelian_group.l_neg [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   508
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   509
lemmas (in UP_cring) UP_r_neg =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   510
  abelian_group.r_neg [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   511
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   512
lemmas (in UP_cring) UP_minus_zero [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   513
  abelian_group.minus_zero [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   514
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   515
lemmas (in UP_cring) UP_minus_minus [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   516
  abelian_group.minus_minus [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   517
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   518
lemmas (in UP_cring) UP_minus_add =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   519
  abelian_group.minus_add [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   520
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   521
lemmas (in UP_cring) UP_r_neg2 =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   522
  abelian_group.r_neg2 [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   523
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   524
lemmas (in UP_cring) UP_r_neg1 =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   525
  abelian_group.r_neg1 [OF UP_abelian_group]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   526
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   527
lemmas (in UP_cring) UP_r_distr =
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   528
  ring.r_distr [OF UP_ring]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   529
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   530
lemmas (in UP_cring) UP_l_null [simp] =
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   531
  ring.l_null [OF UP_ring]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   532
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   533
lemmas (in UP_cring) UP_r_null [simp] =
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   534
  ring.r_null [OF UP_ring]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   535
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   536
lemmas (in UP_cring) UP_l_minus =
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   537
  ring.l_minus [OF UP_ring]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   538
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   539
lemmas (in UP_cring) UP_r_minus =
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   540
  ring.r_minus [OF UP_ring]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   541
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   542
lemmas (in UP_cring) UP_finsum_ldistr =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   543
  cring.finsum_ldistr [OF UP_cring]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   544
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   545
lemmas (in UP_cring) UP_finsum_rdistr =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   546
  cring.finsum_rdistr [OF UP_cring]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   547
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   548
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   549
subsection {* Polynomials form an Algebra *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   550
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   551
lemma (in UP_cring) UP_smult_l_distr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   552
  "[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   553
  (a \<oplus> b) \<odot>\<^sub>2 p = a \<odot>\<^sub>2 p \<oplus>\<^sub>2 b \<odot>\<^sub>2 p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   554
  by (rule up_eqI) (simp_all add: R.l_distr)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   555
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   556
lemma (in UP_cring) UP_smult_r_distr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   557
  "[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   558
  a \<odot>\<^sub>2 (p \<oplus>\<^sub>2 q) = a \<odot>\<^sub>2 p \<oplus>\<^sub>2 a \<odot>\<^sub>2 q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   559
  by (rule up_eqI) (simp_all add: R.r_distr)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   560
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   561
lemma (in UP_cring) UP_smult_assoc1:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   562
      "[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   563
      (a \<otimes> b) \<odot>\<^sub>2 p = a \<odot>\<^sub>2 (b \<odot>\<^sub>2 p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   564
  by (rule up_eqI) (simp_all add: R.m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   565
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   566
lemma (in UP_cring) UP_smult_one [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   567
      "p \<in> carrier P ==> \<one> \<odot>\<^sub>2 p = p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   568
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   569
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   570
lemma (in UP_cring) UP_smult_assoc2:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   571
  "[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   572
  (a \<odot>\<^sub>2 p) \<otimes>\<^sub>2 q = a \<odot>\<^sub>2 (p \<otimes>\<^sub>2 q)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   573
  by (rule up_eqI) (simp_all add: R.finsum_rdistr R.m_assoc Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   574
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   575
text {*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   576
  Instantiation of lemmas from @{term algebra}.
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   577
*}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   578
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   579
(* TODO: move to CRing.thy, really a fact missing from the locales package *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   580
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   581
lemma (in cring) cring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   582
  "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   583
  by (fast intro: cring.intro prems)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   584
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   585
lemma (in UP_cring) UP_algebra:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   586
  "algebra R P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   587
  by (auto intro: algebraI cring UP_cring UP_smult_l_distr UP_smult_r_distr
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   588
    UP_smult_assoc1 UP_smult_assoc2)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   589
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   590
lemmas (in UP_cring) UP_smult_l_null [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   591
  algebra.smult_l_null [OF UP_algebra]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   592
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   593
lemmas (in UP_cring) UP_smult_r_null [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   594
  algebra.smult_r_null [OF UP_algebra]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   595
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   596
lemmas (in UP_cring) UP_smult_l_minus =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   597
  algebra.smult_l_minus [OF UP_algebra]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   598
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   599
lemmas (in UP_cring) UP_smult_r_minus =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   600
  algebra.smult_r_minus [OF UP_algebra]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   601
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
   602
subsection {* Further lemmas involving monomials *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   603
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   604
lemma (in UP_cring) monom_zero [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   605
  "monom P \<zero> n = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   606
  by (simp add: UP_def P_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   607
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   608
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   609
  simpset_ref() := simpset() setsubgoaler asm_full_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   610
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   611
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   612
lemma (in UP_cring) monom_mult_is_smult:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   613
  assumes R: "a \<in> carrier R" "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   614
  shows "monom P a 0 \<otimes>\<^sub>2 p = a \<odot>\<^sub>2 p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   615
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   616
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   617
  have "coeff P (p \<otimes>\<^sub>2 monom P a 0) n = coeff P (a \<odot>\<^sub>2 p) n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   618
  proof (cases n)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   619
    case 0 with R show ?thesis by (simp add: R.m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   620
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   621
    case Suc with R show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   622
      by (simp cong: finsum_cong add: R.r_null Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   623
        (simp add: m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   624
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   625
  with R show "coeff P (monom P a 0 \<otimes>\<^sub>2 p) n = coeff P (a \<odot>\<^sub>2 p) n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   626
    by (simp add: UP_m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   627
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   628
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   629
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   630
  simpset_ref() := simpset() setsubgoaler asm_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   631
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   632
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   633
lemma (in UP_cring) monom_add [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   634
  "[| a \<in> carrier R; b \<in> carrier R |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   635
  monom P (a \<oplus> b) n = monom P a n \<oplus>\<^sub>2 monom P b n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   636
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   637
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   638
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   639
  simpset_ref() := simpset() setsubgoaler asm_full_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   640
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   641
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   642
lemma (in UP_cring) monom_one_Suc:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   643
  "monom P \<one> (Suc n) = monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   644
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   645
  fix k
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   646
  show "coeff P (monom P \<one> (Suc n)) k = coeff P (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1) k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   647
  proof (cases "k = Suc n")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   648
    case True show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   649
    proof -
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   650
      from True have less_add_diff:
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   651
        "!!i. [| n < i; i <= n + m |] ==> n + m - i < m" by arith
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   652
      from True have "coeff P (monom P \<one> (Suc n)) k = \<one>" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   653
      also from True
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   654
      have "... = (\<Oplus>i \<in> {..n(} \<union> {n}. coeff P (monom P \<one> n) i \<otimes>
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   655
        coeff P (monom P \<one> 1) (k - i))"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   656
        by (simp cong: finsum_cong add: finsum_Un_disjoint Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   657
      also have "... = (\<Oplus>i \<in>  {..n}. coeff P (monom P \<one> n) i \<otimes>
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   658
        coeff P (monom P \<one> 1) (k - i))"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   659
        by (simp only: ivl_disj_un_singleton)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   660
      also from True have "... = (\<Oplus>i \<in> {..n} \<union> {)n..k}. coeff P (monom P \<one> n) i \<otimes>
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   661
        coeff P (monom P \<one> 1) (k - i))"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   662
        by (simp cong: finsum_cong add: finsum_Un_disjoint ivl_disj_int_one
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   663
          order_less_imp_not_eq Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   664
      also from True have "... = coeff P (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1) k"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   665
        by (simp add: ivl_disj_un_one)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   666
      finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   667
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   668
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   669
    case False
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   670
    note neq = False
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   671
    let ?s =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   672
      "\<lambda>i. (if n = i then \<one> else \<zero>) \<otimes> (if Suc 0 = k - i then \<one> else \<zero>)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   673
    from neq have "coeff P (monom P \<one> (Suc n)) k = \<zero>" by simp
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   674
    also have "... = (\<Oplus>i \<in> {..k}. ?s i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   675
    proof -
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   676
      have f1: "(\<Oplus>i \<in> {..n(}. ?s i) = \<zero>" by (simp cong: finsum_cong add: Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   677
      from neq have f2: "(\<Oplus>i \<in> {n}. ?s i) = \<zero>"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   678
        by (simp cong: finsum_cong add: Pi_def) arith
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   679
      have f3: "n < k ==> (\<Oplus>i \<in> {)n..k}. ?s i) = \<zero>"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   680
        by (simp cong: finsum_cong add: order_less_imp_not_eq Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   681
      show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   682
      proof (cases "k < n")
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   683
        case True then show ?thesis by (simp cong: finsum_cong add: Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   684
      next
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   685
        case False then have n_le_k: "n <= k" by arith
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   686
        show ?thesis
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   687
        proof (cases "n = k")
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   688
          case True
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   689
          then have "\<zero> = (\<Oplus>i \<in> {..n(} \<union> {n}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   690
            by (simp cong: finsum_cong add: finsum_Un_disjoint
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   691
              ivl_disj_int_singleton Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   692
          also from True have "... = (\<Oplus>i \<in> {..k}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   693
            by (simp only: ivl_disj_un_singleton)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   694
          finally show ?thesis .
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   695
        next
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   696
          case False with n_le_k have n_less_k: "n < k" by arith
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   697
          with neq have "\<zero> = (\<Oplus>i \<in> {..n(} \<union> {n}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   698
            by (simp add: finsum_Un_disjoint f1 f2
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   699
              ivl_disj_int_singleton Pi_def del: Un_insert_right)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   700
          also have "... = (\<Oplus>i \<in> {..n}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   701
            by (simp only: ivl_disj_un_singleton)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   702
          also from n_less_k neq have "... = (\<Oplus>i \<in> {..n} \<union> {)n..k}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   703
            by (simp add: finsum_Un_disjoint f3 ivl_disj_int_one Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   704
          also from n_less_k have "... = (\<Oplus>i \<in> {..k}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   705
            by (simp only: ivl_disj_un_one)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   706
          finally show ?thesis .
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   707
        qed
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   708
      qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   709
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   710
    also have "... = coeff P (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1) k" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   711
    finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   712
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   713
qed (simp_all)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   714
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   715
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   716
  simpset_ref() := simpset() setsubgoaler asm_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   717
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   718
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   719
lemma (in UP_cring) monom_mult_smult:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   720
  "[| a \<in> carrier R; b \<in> carrier R |] ==> monom P (a \<otimes> b) n = a \<odot>\<^sub>2 monom P b n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   721
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   722
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   723
lemma (in UP_cring) monom_one [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   724
  "monom P \<one> 0 = \<one>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   725
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   726
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   727
lemma (in UP_cring) monom_one_mult:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   728
  "monom P \<one> (n + m) = monom P \<one> n \<otimes>\<^sub>2 monom P \<one> m"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   729
proof (induct n)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   730
  case 0 show ?case by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   731
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   732
  case Suc then show ?case
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   733
    by (simp only: add_Suc monom_one_Suc) (simp add: UP_m_ac)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   734
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   735
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   736
lemma (in UP_cring) monom_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   737
  assumes R: "a \<in> carrier R" "b \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   738
  shows "monom P (a \<otimes> b) (n + m) = monom P a n \<otimes>\<^sub>2 monom P b m"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   739
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   740
  from R have "monom P (a \<otimes> b) (n + m) = monom P (a \<otimes> b \<otimes> \<one>) (n + m)" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   741
  also from R have "... = a \<otimes> b \<odot>\<^sub>2 monom P \<one> (n + m)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   742
    by (simp add: monom_mult_smult del: r_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   743
  also have "... = a \<otimes> b \<odot>\<^sub>2 (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> m)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   744
    by (simp only: monom_one_mult)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   745
  also from R have "... = a \<odot>\<^sub>2 (b \<odot>\<^sub>2 (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> m))"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   746
    by (simp add: UP_smult_assoc1)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   747
  also from R have "... = a \<odot>\<^sub>2 (b \<odot>\<^sub>2 (monom P \<one> m \<otimes>\<^sub>2 monom P \<one> n))"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   748
    by (simp add: UP_m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   749
  also from R have "... = a \<odot>\<^sub>2 ((b \<odot>\<^sub>2 monom P \<one> m) \<otimes>\<^sub>2 monom P \<one> n)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   750
    by (simp add: UP_smult_assoc2)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   751
  also from R have "... = a \<odot>\<^sub>2 (monom P \<one> n \<otimes>\<^sub>2 (b \<odot>\<^sub>2 monom P \<one> m))"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   752
    by (simp add: UP_m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   753
  also from R have "... = (a \<odot>\<^sub>2 monom P \<one> n) \<otimes>\<^sub>2 (b \<odot>\<^sub>2 monom P \<one> m)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   754
    by (simp add: UP_smult_assoc2)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   755
  also from R have "... = monom P (a \<otimes> \<one>) n \<otimes>\<^sub>2 monom P (b \<otimes> \<one>) m"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   756
    by (simp add: monom_mult_smult del: r_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   757
  also from R have "... = monom P a n \<otimes>\<^sub>2 monom P b m" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   758
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   759
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   760
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   761
lemma (in UP_cring) monom_a_inv [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   762
  "a \<in> carrier R ==> monom P (\<ominus> a) n = \<ominus>\<^sub>2 monom P a n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   763
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   764
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   765
lemma (in UP_cring) monom_inj:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   766
  "inj_on (%a. monom P a n) (carrier R)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   767
proof (rule inj_onI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   768
  fix x y
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   769
  assume R: "x \<in> carrier R" "y \<in> carrier R" and eq: "monom P x n = monom P y n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   770
  then have "coeff P (monom P x n) n = coeff P (monom P y n) n" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   771
  with R show "x = y" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   772
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   773
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
   774
subsection {* The degree function *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   775
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
   776
constdefs (structure R)
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
   777
  deg :: "[_, nat => 'a] => nat"
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
   778
  "deg R p == LEAST n. bound \<zero> n (coeff (UP R) p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   779
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   780
lemma (in UP_cring) deg_aboveI:
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   781
  "[| (!!m. n < m ==> coeff P p m = \<zero>); p \<in> carrier P |] ==> deg R p <= n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   782
  by (unfold deg_def P_def) (fast intro: Least_le)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   783
(*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   784
lemma coeff_bound_ex: "EX n. bound n (coeff p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   785
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   786
  have "(%n. coeff p n) : UP" by (simp add: coeff_def Rep_UP)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   787
  then obtain n where "bound n (coeff p)" by (unfold UP_def) fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   788
  then show ?thesis ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   789
qed
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   790
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   791
lemma bound_coeff_obtain:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   792
  assumes prem: "(!!n. bound n (coeff p) ==> P)" shows "P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   793
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   794
  have "(%n. coeff p n) : UP" by (simp add: coeff_def Rep_UP)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   795
  then obtain n where "bound n (coeff p)" by (unfold UP_def) fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   796
  with prem show P .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   797
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   798
*)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   799
lemma (in UP_cring) deg_aboveD:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   800
  "[| deg R p < m; p \<in> carrier P |] ==> coeff P p m = \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   801
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   802
  assume R: "p \<in> carrier P" and "deg R p < m"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   803
  from R obtain n where "bound \<zero> n (coeff P p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   804
    by (auto simp add: UP_def P_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   805
  then have "bound \<zero> (deg R p) (coeff P p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   806
    by (auto simp: deg_def P_def dest: LeastI)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   807
  then show ?thesis ..
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   808
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   809
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   810
lemma (in UP_cring) deg_belowI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   811
  assumes non_zero: "n ~= 0 ==> coeff P p n ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   812
    and R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   813
  shows "n <= deg R p"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   814
-- {* Logically, this is a slightly stronger version of
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   815
  @{thm [source] deg_aboveD} *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   816
proof (cases "n=0")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   817
  case True then show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   818
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   819
  case False then have "coeff P p n ~= \<zero>" by (rule non_zero)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   820
  then have "~ deg R p < n" by (fast dest: deg_aboveD intro: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   821
  then show ?thesis by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   822
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   823
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   824
lemma (in UP_cring) lcoeff_nonzero_deg:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   825
  assumes deg: "deg R p ~= 0" and R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   826
  shows "coeff P p (deg R p) ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   827
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   828
  from R obtain m where "deg R p <= m" and m_coeff: "coeff P p m ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   829
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   830
    have minus: "!!(n::nat) m. n ~= 0 ==> (n - Suc 0 < m) = (n <= m)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   831
      by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   832
(* TODO: why does proof not work with "1" *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   833
    from deg have "deg R p - 1 < (LEAST n. bound \<zero> n (coeff P p))"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   834
      by (unfold deg_def P_def) arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   835
    then have "~ bound \<zero> (deg R p - 1) (coeff P p)" by (rule not_less_Least)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   836
    then have "EX m. deg R p - 1 < m & coeff P p m ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   837
      by (unfold bound_def) fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   838
    then have "EX m. deg R p <= m & coeff P p m ~= \<zero>" by (simp add: deg minus)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   839
    then show ?thesis by auto
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   840
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   841
  with deg_belowI R have "deg R p = m" by fastsimp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   842
  with m_coeff show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   843
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   844
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   845
lemma (in UP_cring) lcoeff_nonzero_nonzero:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   846
  assumes deg: "deg R p = 0" and nonzero: "p ~= \<zero>\<^sub>2" and R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   847
  shows "coeff P p 0 ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   848
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   849
  have "EX m. coeff P p m ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   850
  proof (rule classical)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   851
    assume "~ ?thesis"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   852
    with R have "p = \<zero>\<^sub>2" by (auto intro: up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   853
    with nonzero show ?thesis by contradiction
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   854
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   855
  then obtain m where coeff: "coeff P p m ~= \<zero>" ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   856
  then have "m <= deg R p" by (rule deg_belowI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   857
  then have "m = 0" by (simp add: deg)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   858
  with coeff show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   859
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   860
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   861
lemma (in UP_cring) lcoeff_nonzero:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   862
  assumes neq: "p ~= \<zero>\<^sub>2" and R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   863
  shows "coeff P p (deg R p) ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   864
proof (cases "deg R p = 0")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   865
  case True with neq R show ?thesis by (simp add: lcoeff_nonzero_nonzero)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   866
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   867
  case False with neq R show ?thesis by (simp add: lcoeff_nonzero_deg)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   868
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   869
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   870
lemma (in UP_cring) deg_eqI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   871
  "[| !!m. n < m ==> coeff P p m = \<zero>;
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   872
      !!n. n ~= 0 ==> coeff P p n ~= \<zero>; p \<in> carrier P |] ==> deg R p = n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   873
by (fast intro: le_anti_sym deg_aboveI deg_belowI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   874
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   875
(* Degree and polynomial operations *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   876
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   877
lemma (in UP_cring) deg_add [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   878
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   879
  shows "deg R (p \<oplus>\<^sub>2 q) <= max (deg R p) (deg R q)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   880
proof (cases "deg R p <= deg R q")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   881
  case True show ?thesis
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   882
    by (rule deg_aboveI) (simp_all add: True R deg_aboveD)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   883
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   884
  case False show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   885
    by (rule deg_aboveI) (simp_all add: False R deg_aboveD)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   886
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   887
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   888
lemma (in UP_cring) deg_monom_le:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   889
  "a \<in> carrier R ==> deg R (monom P a n) <= n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   890
  by (intro deg_aboveI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   891
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   892
lemma (in UP_cring) deg_monom [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   893
  "[| a ~= \<zero>; a \<in> carrier R |] ==> deg R (monom P a n) = n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   894
  by (fastsimp intro: le_anti_sym deg_aboveI deg_belowI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   895
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   896
lemma (in UP_cring) deg_const [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   897
  assumes R: "a \<in> carrier R" shows "deg R (monom P a 0) = 0"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   898
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   899
  show "deg R (monom P a 0) <= 0" by (rule deg_aboveI) (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   900
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   901
  show "0 <= deg R (monom P a 0)" by (rule deg_belowI) (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   902
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   903
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   904
lemma (in UP_cring) deg_zero [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   905
  "deg R \<zero>\<^sub>2 = 0"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   906
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   907
  show "deg R \<zero>\<^sub>2 <= 0" by (rule deg_aboveI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   908
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   909
  show "0 <= deg R \<zero>\<^sub>2" by (rule deg_belowI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   910
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   911
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   912
lemma (in UP_cring) deg_one [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   913
  "deg R \<one>\<^sub>2 = 0"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   914
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   915
  show "deg R \<one>\<^sub>2 <= 0" by (rule deg_aboveI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   916
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   917
  show "0 <= deg R \<one>\<^sub>2" by (rule deg_belowI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   918
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   919
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   920
lemma (in UP_cring) deg_uminus [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   921
  assumes R: "p \<in> carrier P" shows "deg R (\<ominus>\<^sub>2 p) = deg R p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   922
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   923
  show "deg R (\<ominus>\<^sub>2 p) <= deg R p" by (simp add: deg_aboveI deg_aboveD R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   924
next
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   925
  show "deg R p <= deg R (\<ominus>\<^sub>2 p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   926
    by (simp add: deg_belowI lcoeff_nonzero_deg
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   927
      inj_on_iff [OF a_inv_inj, of _ "\<zero>", simplified] R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   928
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   929
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   930
lemma (in UP_domain) deg_smult_ring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   931
  "[| a \<in> carrier R; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   932
  deg R (a \<odot>\<^sub>2 p) <= (if a = \<zero> then 0 else deg R p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   933
  by (cases "a = \<zero>") (simp add: deg_aboveI deg_aboveD)+
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   934
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   935
lemma (in UP_domain) deg_smult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   936
  assumes R: "a \<in> carrier R" "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   937
  shows "deg R (a \<odot>\<^sub>2 p) = (if a = \<zero> then 0 else deg R p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   938
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   939
  show "deg R (a \<odot>\<^sub>2 p) <= (if a = \<zero> then 0 else deg R p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   940
    by (rule deg_smult_ring)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   941
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   942
  show "(if a = \<zero> then 0 else deg R p) <= deg R (a \<odot>\<^sub>2 p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   943
  proof (cases "a = \<zero>")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   944
  qed (simp, simp add: deg_belowI lcoeff_nonzero_deg integral_iff R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   945
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   946
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   947
lemma (in UP_cring) deg_mult_cring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   948
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   949
  shows "deg R (p \<otimes>\<^sub>2 q) <= deg R p + deg R q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   950
proof (rule deg_aboveI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   951
  fix m
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   952
  assume boundm: "deg R p + deg R q < m"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   953
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   954
    fix k i
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   955
    assume boundk: "deg R p + deg R q < k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   956
    then have "coeff P p i \<otimes> coeff P q (k - i) = \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   957
    proof (cases "deg R p < i")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   958
      case True then show ?thesis by (simp add: deg_aboveD R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   959
    next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   960
      case False with boundk have "deg R q < k - i" by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   961
      then show ?thesis by (simp add: deg_aboveD R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   962
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   963
  }
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   964
  with boundm R show "coeff P (p \<otimes>\<^sub>2 q) m = \<zero>" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   965
qed (simp add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   966
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   967
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   968
  simpset_ref() := simpset() setsubgoaler asm_full_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
   969
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   970
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   971
lemma (in UP_domain) deg_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   972
  "[| p ~= \<zero>\<^sub>2; q ~= \<zero>\<^sub>2; p \<in> carrier P; q \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   973
  deg R (p \<otimes>\<^sub>2 q) = deg R p + deg R q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   974
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   975
  assume "p \<in> carrier P" " q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   976
  show "deg R (p \<otimes>\<^sub>2 q) <= deg R p + deg R q" by (rule deg_mult_cring)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   977
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   978
  let ?s = "(%i. coeff P p i \<otimes> coeff P q (deg R p + deg R q - i))"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   979
  assume R: "p \<in> carrier P" "q \<in> carrier P" and nz: "p ~= \<zero>\<^sub>2" "q ~= \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   980
  have less_add_diff: "!!(k::nat) n m. k < n ==> m < n + m - k" by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   981
  show "deg R p + deg R q <= deg R (p \<otimes>\<^sub>2 q)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   982
  proof (rule deg_belowI, simp add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   983
    have "finsum R ?s {.. deg R p + deg R q}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   984
      = finsum R ?s ({.. deg R p(} Un {deg R p .. deg R p + deg R q})"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   985
      by (simp only: ivl_disj_un_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   986
    also have "... = finsum R ?s {deg R p .. deg R p + deg R q}"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   987
      by (simp cong: finsum_cong add: finsum_Un_disjoint ivl_disj_int_one
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   988
        deg_aboveD less_add_diff R Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   989
    also have "...= finsum R ?s ({deg R p} Un {)deg R p .. deg R p + deg R q})"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   990
      by (simp only: ivl_disj_un_singleton)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   991
    also have "... = coeff P p (deg R p) \<otimes> coeff P q (deg R q)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   992
      by (simp cong: finsum_cong add: finsum_Un_disjoint
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   993
        ivl_disj_int_singleton deg_aboveD R Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   994
    finally have "finsum R ?s {.. deg R p + deg R q}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   995
      = coeff P p (deg R p) \<otimes> coeff P q (deg R q)" .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   996
    with nz show "finsum R ?s {.. deg R p + deg R q} ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   997
      by (simp add: integral_iff lcoeff_nonzero R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   998
    qed (simp add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   999
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1000
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1001
lemma (in UP_cring) coeff_finsum:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1002
  assumes fin: "finite A"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1003
  shows "p \<in> A -> carrier P ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1004
    coeff P (finsum P p A) k == finsum R (%i. coeff P (p i) k) A"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1005
  using fin by induct (auto simp: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1006
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1007
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1008
  simpset_ref() := simpset() setsubgoaler asm_full_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1009
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1010
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1011
lemma (in UP_cring) up_repr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1012
  assumes R: "p \<in> carrier P"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1013
  shows "(\<Oplus>\<^sub>2 i \<in> {..deg R p}. monom P (coeff P p i) i) = p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1014
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1015
  let ?s = "(%i. monom P (coeff P p i) i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1016
  fix k
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1017
  from R have RR: "!!i. (if i = k then coeff P p i else \<zero>) \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1018
    by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1019
  show "coeff P (finsum P ?s {..deg R p}) k = coeff P p k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1020
  proof (cases "k <= deg R p")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1021
    case True
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1022
    hence "coeff P (finsum P ?s {..deg R p}) k =
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1023
          coeff P (finsum P ?s ({..k} Un {)k..deg R p})) k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1024
      by (simp only: ivl_disj_un_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1025
    also from True
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1026
    have "... = coeff P (finsum P ?s {..k}) k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1027
      by (simp cong: finsum_cong add: finsum_Un_disjoint
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1028
        ivl_disj_int_one order_less_imp_not_eq2 coeff_finsum R RR Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1029
    also
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1030
    have "... = coeff P (finsum P ?s ({..k(} Un {k})) k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1031
      by (simp only: ivl_disj_un_singleton)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1032
    also have "... = coeff P p k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1033
      by (simp cong: finsum_cong add: setsum_Un_disjoint
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1034
        ivl_disj_int_singleton coeff_finsum deg_aboveD R RR Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1035
    finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1036
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1037
    case False
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1038
    hence "coeff P (finsum P ?s {..deg R p}) k =
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1039
          coeff P (finsum P ?s ({..deg R p(} Un {deg R p})) k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1040
      by (simp only: ivl_disj_un_singleton)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1041
    also from False have "... = coeff P p k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1042
      by (simp cong: finsum_cong add: setsum_Un_disjoint ivl_disj_int_singleton
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1043
        coeff_finsum deg_aboveD R Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1044
    finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1045
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1046
qed (simp_all add: R Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1047
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1048
lemma (in UP_cring) up_repr_le:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1049
  "[| deg R p <= n; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1050
  finsum P (%i. monom P (coeff P p i) i) {..n} = p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1051
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1052
  let ?s = "(%i. monom P (coeff P p i) i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1053
  assume R: "p \<in> carrier P" and "deg R p <= n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1054
  then have "finsum P ?s {..n} = finsum P ?s ({..deg R p} Un {)deg R p..n})"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1055
    by (simp only: ivl_disj_un_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1056
  also have "... = finsum P ?s {..deg R p}"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1057
    by (simp cong: UP_finsum_cong add: UP_finsum_Un_disjoint ivl_disj_int_one
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1058
      deg_aboveD R Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1059
  also have "... = p" by (rule up_repr)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1060
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1061
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1062
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1063
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1064
  simpset_ref() := simpset() setsubgoaler asm_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1065
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1066
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
  1067
subsection {* Polynomials over an integral domain form an integral domain *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1068
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1069
lemma domainI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1070
  assumes cring: "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1071
    and one_not_zero: "one R ~= zero R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1072
    and integral: "!!a b. [| mult R a b = zero R; a \<in> carrier R;
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1073
      b \<in> carrier R |] ==> a = zero R | b = zero R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1074
  shows "domain R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1075
  by (auto intro!: domain.intro domain_axioms.intro cring.axioms prems
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1076
    del: disjCI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1077
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1078
lemma (in UP_domain) UP_one_not_zero:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1079
  "\<one>\<^sub>2 ~= \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1080
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1081
  assume "\<one>\<^sub>2 = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1082
  hence "coeff P \<one>\<^sub>2 0 = (coeff P \<zero>\<^sub>2 0)" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1083
  hence "\<one> = \<zero>" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1084
  with one_not_zero show "False" by contradiction
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1085
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1086
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1087
lemma (in UP_domain) UP_integral:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1088
  "[| p \<otimes>\<^sub>2 q = \<zero>\<^sub>2; p \<in> carrier P; q \<in> carrier P |] ==> p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1089
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1090
  fix p q
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1091
  assume pq: "p \<otimes>\<^sub>2 q = \<zero>\<^sub>2" and R: "p \<in> carrier P" "q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1092
  show "p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1093
  proof (rule classical)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1094
    assume c: "~ (p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1095
    with R have "deg R p + deg R q = deg R (p \<otimes>\<^sub>2 q)" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1096
    also from pq have "... = 0" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1097
    finally have "deg R p + deg R q = 0" .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1098
    then have f1: "deg R p = 0 & deg R q = 0" by simp
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1099
    from f1 R have "p = (\<Oplus>\<^sub>2 i \<in> {..0}. monom P (coeff P p i) i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1100
      by (simp only: up_repr_le)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1101
    also from R have "... = monom P (coeff P p 0) 0" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1102
    finally have p: "p = monom P (coeff P p 0) 0" .
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1103
    from f1 R have "q = (\<Oplus>\<^sub>2 i \<in> {..0}. monom P (coeff P q i) i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1104
      by (simp only: up_repr_le)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1105
    also from R have "... = monom P (coeff P q 0) 0" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1106
    finally have q: "q = monom P (coeff P q 0) 0" .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1107
    from R have "coeff P p 0 \<otimes> coeff P q 0 = coeff P (p \<otimes>\<^sub>2 q) 0" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1108
    also from pq have "... = \<zero>" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1109
    finally have "coeff P p 0 \<otimes> coeff P q 0 = \<zero>" .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1110
    with R have "coeff P p 0 = \<zero> | coeff P q 0 = \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1111
      by (simp add: R.integral_iff)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1112
    with p q show "p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2" by fastsimp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1113
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1114
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1115
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1116
theorem (in UP_domain) UP_domain:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1117
  "domain P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1118
  by (auto intro!: domainI UP_cring UP_one_not_zero UP_integral del: disjCI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1119
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1120
text {*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1121
  Instantiation of results from @{term domain}.
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1122
*}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1123
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1124
lemmas (in UP_domain) UP_zero_not_one [simp] =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1125
  domain.zero_not_one [OF UP_domain]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1126
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1127
lemmas (in UP_domain) UP_integral_iff =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1128
  domain.integral_iff [OF UP_domain]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1129
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1130
lemmas (in UP_domain) UP_m_lcancel =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1131
  domain.m_lcancel [OF UP_domain]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1132
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1133
lemmas (in UP_domain) UP_m_rcancel =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1134
  domain.m_rcancel [OF UP_domain]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1135
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1136
lemma (in UP_domain) smult_integral:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1137
  "[| a \<odot>\<^sub>2 p = \<zero>\<^sub>2; a \<in> carrier R; p \<in> carrier P |] ==> a = \<zero> | p = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1138
  by (simp add: monom_mult_is_smult [THEN sym] UP_integral_iff
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1139
    inj_on_iff [OF monom_inj, of _ "\<zero>", simplified])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1140
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1141
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
  1142
subsection {* Evaluation Homomorphism and Universal Property*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1143
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1144
(* alternative congruence rule (possibly more efficient)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1145
lemma (in abelian_monoid) finsum_cong2:
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1146
  "[| !!i. i \<in> A ==> f i \<in> carrier G = True; A = B;
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1147
  !!i. i \<in> B ==> f i = g i |] ==> finsum G f A = finsum G g B"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1148
  sorry*)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1149
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1150
ML_setup {*
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1151
  simpset_ref() := simpset() setsubgoaler asm_full_simp_tac;
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1152
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1153
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1154
theorem (in cring) diagonal_sum:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1155
  "[| f \<in> {..n + m::nat} -> carrier R; g \<in> {..n + m} -> carrier R |] ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1156
  (\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1157
  (\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1158
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1159
  assume Rf: "f \<in> {..n + m} -> carrier R" and Rg: "g \<in> {..n + m} -> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1160
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1161
    fix j
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1162
    have "j <= n + m ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1163
      (\<Oplus>k \<in> {..j}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1164
      (\<Oplus>k \<in> {..j}. \<Oplus>i \<in> {..j - k}. f k \<otimes> g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1165
    proof (induct j)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1166
      case 0 from Rf Rg show ?case by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1167
    next
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1168
      case (Suc j)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1169
      (* The following could be simplified if there was a reasoner for
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1170
        total orders integrated with simip. *)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1171
      have R6: "!!i k. [| k <= j; i <= Suc j - k |] ==> g i \<in> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1172
        using Suc by (auto intro!: funcset_mem [OF Rg]) arith
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1173
      have R8: "!!i k. [| k <= Suc j; i <= k |] ==> g (k - i) \<in> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1174
        using Suc by (auto intro!: funcset_mem [OF Rg]) arith
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1175
      have R9: "!!i k. [| k <= Suc j |] ==> f k \<in> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1176
        using Suc by (auto intro!: funcset_mem [OF Rf])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1177
      have R10: "!!i k. [| k <= Suc j; i <= Suc j - k |] ==> g i \<in> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1178
        using Suc by (auto intro!: funcset_mem [OF Rg]) arith
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1179
      have R11: "g 0 \<in> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1180
        using Suc by (auto intro!: funcset_mem [OF Rg])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1181
      from Suc show ?case
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1182
        by (simp cong: finsum_cong add: Suc_diff_le a_ac
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1183
          Pi_def R6 R8 R9 R10 R11)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1184
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1185
  }
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1186
  then show ?thesis by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1187
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1188
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1189
lemma (in abelian_monoid) boundD_carrier:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1190
  "[| bound \<zero> n f; n < m |] ==> f m \<in> carrier G"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1191
  by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1192
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1193
theorem (in cring) cauchy_product:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1194
  assumes bf: "bound \<zero> n f" and bg: "bound \<zero> m g"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1195
    and Rf: "f \<in> {..n} -> carrier R" and Rg: "g \<in> {..m} -> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1196
  shows "(\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1197
    (\<Oplus>i \<in> {..n}. f i) \<otimes> (\<Oplus>i \<in> {..m}. g i)"        (* State revese direction? *)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1198
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1199
  have f: "!!x. f x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1200
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1201
    fix x
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1202
    show "f x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1203
      using Rf bf boundD_carrier by (cases "x <= n") (auto simp: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1204
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1205
  have g: "!!x. g x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1206
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1207
    fix x
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1208
    show "g x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1209
      using Rg bg boundD_carrier by (cases "x <= m") (auto simp: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1210
  qed
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1211
  from f g have "(\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1212
      (\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1213
    by (simp add: diagonal_sum Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1214
  also have "... = (\<Oplus>k \<in> {..n} \<union> {)n..n + m}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1215
    by (simp only: ivl_disj_un_one)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1216
  also from f g have "... = (\<Oplus>k \<in> {..n}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1217
    by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1218
      add: bound.bound [OF bf] finsum_Un_disjoint ivl_disj_int_one Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1219
  also from f g have "... = (\<Oplus>k \<in> {..n}. \<Oplus>i \<in> {..m} \<union> {)m..n + m - k}. f k \<otimes> g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1220
    by (simp cong: finsum_cong add: ivl_disj_un_one le_add_diff Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1221
  also from f g have "... = (\<Oplus>k \<in> {..n}. \<Oplus>i \<in> {..m}. f k \<otimes> g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1222
    by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1223
      add: bound.bound [OF bg] finsum_Un_disjoint ivl_disj_int_one Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1224
  also from f g have "... = (\<Oplus>i \<in> {..n}. f i) \<otimes> (\<Oplus>i \<in> {..m}. g i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1225
    by (simp add: finsum_ldistr diagonal_sum Pi_def,
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1226
      simp cong: finsum_cong add: finsum_rdistr Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1227
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1228
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1229
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1230
lemma (in UP_cring) const_ring_hom:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1231
  "(%a. monom P a 0) \<in> ring_hom R P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1232
  by (auto intro!: ring_hom_memI intro: up_eqI simp: monom_mult_is_smult)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1233
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
  1234
constdefs (structure S)
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
  1235
  eval :: "[_, _, 'a => 'b, 'b, nat => 'a] => 'b"
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
  1236
  "eval R S phi s == \<lambda>p \<in> carrier (UP R).
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
  1237
    \<Oplus>i \<in> {..deg R p}. phi (coeff (UP R) p i) \<otimes> pow S s i"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1238
(*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1239
  "eval R S phi s p == if p \<in> carrier (UP R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1240
  then finsum S (%i. mult S (phi (coeff (UP R) p i)) (pow S s i)) {..deg R p}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1241
  else arbitrary"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1242
*)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1243
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1244
locale ring_hom_UP_cring = ring_hom_cring R S + UP_cring R
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1245
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1246
lemma (in ring_hom_UP_cring) eval_on_carrier:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1247
  "p \<in> carrier P ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1248
    eval R S phi s p =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1249
    (\<Oplus>\<^sub>2 i \<in> {..deg R p}. phi (coeff P p i) \<otimes>\<^sub>2 pow S s i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1250
  by (unfold eval_def, fold P_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1251
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1252
lemma (in ring_hom_UP_cring) eval_extensional:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1253
  "eval R S phi s \<in> extensional (carrier P)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1254
  by (unfold eval_def, fold P_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1255
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1256
theorem (in ring_hom_UP_cring) eval_ring_hom:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1257
  "s \<in> carrier S ==> eval R S h s \<in> ring_hom P S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1258
proof (rule ring_hom_memI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1259
  fix p
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1260
  assume RS: "p \<in> carrier P" "s \<in> carrier S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1261
  then show "eval R S h s p \<in> carrier S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1262
    by (simp only: eval_on_carrier) (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1263
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1264
  fix p q
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1265
  assume RS: "p \<in> carrier P" "q \<in> carrier P" "s \<in> carrier S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1266
  then show "eval R S h s (p \<otimes>\<^sub>3 q) = eval R S h s p \<otimes>\<^sub>2 eval R S h s q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1267
  proof (simp only: eval_on_carrier UP_mult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1268
    from RS have
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1269
      "(\<Oplus>\<^sub>2 i \<in> {..deg R (p \<otimes>\<^sub>3 q)}. h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1270
      (\<Oplus>\<^sub>2 i \<in> {..deg R (p \<otimes>\<^sub>3 q)} \<union> {)deg R (p \<otimes>\<^sub>3 q)..deg R p + deg R q}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1271
        h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1272
      by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1273
        add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1274
        del: coeff_mult)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1275
    also from RS have "... =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1276
      (\<Oplus>\<^sub>2 i \<in> {..deg R p + deg R q}. h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1277
      by (simp only: ivl_disj_un_one deg_mult_cring)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1278
    also from RS have "... =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1279
      (\<Oplus>\<^sub>2 i \<in> {..deg R p + deg R q}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1280
       \<Oplus>\<^sub>2 k \<in> {..i}. h (coeff P p k) \<otimes>\<^sub>2 h (coeff P q (i - k)) \<otimes>\<^sub>2 (s (^)\<^sub>2 k \<otimes>\<^sub>2 s (^)\<^sub>2 (i - k)))"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1281
      by (simp cong: finsum_cong add: nat_pow_mult Pi_def
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1282
        S.m_ac S.finsum_rdistr)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1283
    also from RS have "... =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1284
      (\<Oplus>\<^sub>2i\<in>{..deg R p}. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) \<otimes>\<^sub>2
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1285
      (\<Oplus>\<^sub>2i\<in>{..deg R q}. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1286
      by (simp add: S.cauchy_product [THEN sym] bound.intro deg_aboveD S.m_ac
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1287
        Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1288
    finally show
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1289
      "(\<Oplus>\<^sub>2 i \<in> {..deg R (p \<otimes>\<^sub>3 q)}. h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1290
      (\<Oplus>\<^sub>2 i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) \<otimes>\<^sub>2
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1291
      (\<Oplus>\<^sub>2 i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)" .
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1292
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1293
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1294
  fix p q
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1295
  assume RS: "p \<in> carrier P" "q \<in> carrier P" "s \<in> carrier S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1296
  then show "eval R S h s (p \<oplus>\<^sub>3 q) = eval R S h s p \<oplus>\<^sub>2 eval R S h s q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1297
  proof (simp only: eval_on_carrier UP_a_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1298
    from RS have
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1299
      "(\<Oplus>\<^sub>2i \<in> {..deg R (p \<oplus>\<^sub>3 q)}. h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1300
      (\<Oplus>\<^sub>2i \<in> {..deg R (p \<oplus>\<^sub>3 q)} \<union> {)deg R (p \<oplus>\<^sub>3 q)..max (deg R p) (deg R q)}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1301
        h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1302
      by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1303
        add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1304
        del: coeff_add)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1305
    also from RS have "... =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1306
        (\<Oplus>\<^sub>2 i \<in> {..max (deg R p) (deg R q)}. h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1307
      by (simp add: ivl_disj_un_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1308
    also from RS have "... =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1309
      (\<Oplus>\<^sub>2i\<in>{..max (deg R p) (deg R q)}. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) \<oplus>\<^sub>2
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1310
      (\<Oplus>\<^sub>2i\<in>{..max (deg R p) (deg R q)}. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1311
      by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1312
        add: l_distr deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1313
    also have "... =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1314
        (\<Oplus>\<^sub>2 i \<in> {..deg R p} \<union> {)deg R p..max (deg R p) (deg R q)}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1315
          h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) \<oplus>\<^sub>2
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1316
        (\<Oplus>\<^sub>2 i \<in> {..deg R q} \<union> {)deg R q..max (deg R p) (deg R q)}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1317
          h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1318
      by (simp only: ivl_disj_un_one le_maxI1 le_maxI2)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1319
    also from RS have "... =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1320
      (\<Oplus>\<^sub>2 i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) \<oplus>\<^sub>2
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1321
      (\<Oplus>\<^sub>2 i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1322
      by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1323
        add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1324
    finally show
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1325
      "(\<Oplus>\<^sub>2i \<in> {..deg R (p \<oplus>\<^sub>3 q)}. h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1326
      (\<Oplus>\<^sub>2i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) \<oplus>\<^sub>2
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1327
      (\<Oplus>\<^sub>2i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1328
      .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1329
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1330
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1331
  assume S: "s \<in> carrier S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1332
  then show "eval R S h s \<one>\<^sub>3 = \<one>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1333
    by (simp only: eval_on_carrier UP_one_closed) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1334
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1335
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1336
text {* Instantiation of ring homomorphism lemmas. *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1337
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1338
lemma (in ring_hom_UP_cring) ring_hom_cring_P_S:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1339
  "s \<in> carrier S ==> ring_hom_cring P S (eval R S h s)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1340
  by (fast intro!: ring_hom_cring.intro UP_cring cring.axioms prems
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1341
  intro: ring_hom_cring_axioms.intro eval_ring_hom)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1342
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1343
lemma (in ring_hom_UP_cring) UP_hom_closed [intro, simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1344
  "[| s \<in> carrier S; p \<in> carrier P |] ==> eval R S h s p \<in> carrier S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1345
  by (rule ring_hom_cring.hom_closed [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1346
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1347
lemma (in ring_hom_UP_cring) UP_hom_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1348
  "[| s \<in> carrier S; p \<in> carrier P; q \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1349
  eval R S h s (p \<otimes>\<^sub>3 q) = eval R S h s p \<otimes>\<^sub>2 eval R S h s q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1350
  by (rule ring_hom_cring.hom_mult [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1351
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1352
lemma (in ring_hom_UP_cring) UP_hom_add [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1353
  "[| s \<in> carrier S; p \<in> carrier P; q \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1354
  eval R S h s (p \<oplus>\<^sub>3 q) = eval R S h s p \<oplus>\<^sub>2 eval R S h s q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1355
  by (rule ring_hom_cring.hom_add [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1356
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1357
lemma (in ring_hom_UP_cring) UP_hom_one [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1358
  "s \<in> carrier S ==> eval R S h s \<one>\<^sub>3 = \<one>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1359
  by (rule ring_hom_cring.hom_one [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1360
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1361
lemma (in ring_hom_UP_cring) UP_hom_zero [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1362
  "s \<in> carrier S ==> eval R S h s \<zero>\<^sub>3 = \<zero>\<^sub>2"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1363
  by (rule ring_hom_cring.hom_zero [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1364
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1365
lemma (in ring_hom_UP_cring) UP_hom_a_inv [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1366
  "[| s \<in> carrier S; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1367
  (eval R S h s) (\<ominus>\<^sub>3 p) = \<ominus>\<^sub>2 (eval R S h s) p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1368
  by (rule ring_hom_cring.hom_a_inv [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1369
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1370
lemma (in ring_hom_UP_cring) UP_hom_finsum [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1371
  "[| s \<in> carrier S; finite A; f \<in> A -> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1372
  (eval R S h s) (finsum P f A) = finsum S (eval R S h s o f) A"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1373
  by (rule ring_hom_cring.hom_finsum [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1374
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1375
lemma (in ring_hom_UP_cring) UP_hom_finprod [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1376
  "[| s \<in> carrier S; finite A; f \<in> A -> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1377
  (eval R S h s) (finprod P f A) = finprod S (eval R S h s o f) A"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1378
  by (rule ring_hom_cring.hom_finprod [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1379
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1380
text {* Further properties of the evaluation homomorphism. *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1381
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1382
(* The following lemma could be proved in UP\_cring with the additional
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1383
   assumption that h is closed. *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1384
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1385
lemma (in ring_hom_UP_cring) eval_const:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1386
  "[| s \<in> carrier S; r \<in> carrier R |] ==> eval R S h s (monom P r 0) = h r"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1387
  by (simp only: eval_on_carrier monom_closed) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1388
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1389
text {* The following proof is complicated by the fact that in arbitrary
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1390
  rings one might have @{term "one R = zero R"}. *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1391
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1392
(* TODO: simplify by cases "one R = zero R" *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1393
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1394
lemma (in ring_hom_UP_cring) eval_monom1:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1395
  "s \<in> carrier S ==> eval R S h s (monom P \<one> 1) = s"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1396
proof (simp only: eval_on_carrier monom_closed R.one_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1397
  assume S: "s \<in> carrier S"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1398
  then have
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1399
    "(\<Oplus>\<^sub>2 i \<in> {..deg R (monom P \<one> 1)}. h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1400
    (\<Oplus>\<^sub>2i\<in>{..deg R (monom P \<one> 1)} \<union> {)deg R (monom P \<one> 1)..1}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1401
      h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1402
    by (simp cong: finsum_cong del: coeff_monom
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1403
      add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1404
  also have "... =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1405
    (\<Oplus>\<^sub>2 i \<in> {..1}. h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1406
    by (simp only: ivl_disj_un_one deg_monom_le R.one_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1407
  also have "... = s"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1408
  proof (cases "s = \<zero>\<^sub>2")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1409
    case True then show ?thesis by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1410
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1411
    case False with S show ?thesis by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1412
  qed
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1413
  finally show "(\<Oplus>\<^sub>2 i \<in> {..deg R (monom P \<one> 1)}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1414
    h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) = s" .
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1415
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1416
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1417
lemma (in UP_cring) monom_pow:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1418
  assumes R: "a \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1419
  shows "(monom P a n) (^)\<^sub>2 m = monom P (a (^) m) (n * m)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1420
proof (induct m)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1421
  case 0 from R show ?case by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1422
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1423
  case Suc with R show ?case
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1424
    by (simp del: monom_mult add: monom_mult [THEN sym] add_commute)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1425
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1426
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1427
lemma (in ring_hom_cring) hom_pow [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1428
  "x \<in> carrier R ==> h (x (^) n) = h x (^)\<^sub>2 (n::nat)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1429
  by (induct n) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1430
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1431
lemma (in ring_hom_UP_cring) UP_hom_pow [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1432
  "[| s \<in> carrier S; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1433
  (eval R S h s) (p (^)\<^sub>3 n) = eval R S h s p (^)\<^sub>2 (n::nat)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1434
  by (rule ring_hom_cring.hom_pow [OF ring_hom_cring_P_S])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1435
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1436
lemma (in ring_hom_UP_cring) eval_monom:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1437
  "[| s \<in> carrier S; r \<in> carrier R |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1438
  eval R S h s (monom P r n) = h r \<otimes>\<^sub>2 s (^)\<^sub>2 n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1439
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1440
  assume RS: "s \<in> carrier S" "r \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1441
  then have "eval R S h s (monom P r n) =
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1442
    eval R S h s (monom P r 0 \<otimes>\<^sub>3 (monom P \<one> 1) (^)\<^sub>3 n)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1443
    by (simp del: monom_mult UP_hom_mult UP_hom_pow
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1444
      add: monom_mult [THEN sym] monom_pow)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1445
  also from RS eval_monom1 have "... = h r \<otimes>\<^sub>2 s (^)\<^sub>2 n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1446
    by (simp add: eval_const)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1447
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1448
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1449
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1450
lemma (in ring_hom_UP_cring) eval_smult:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1451
  "[| s \<in> carrier S; r \<in> carrier R; p \<in> carrier P |] ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1452
  eval R S h s (r \<odot>\<^sub>3 p) = h r \<otimes>\<^sub>2 eval R S h s p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1453
  by (simp add: monom_mult_is_smult [THEN sym] eval_const)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1454
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1455
lemma ring_hom_cringI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1456
  assumes "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1457
    and "cring S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1458
    and "h \<in> ring_hom R S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1459
  shows "ring_hom_cring R S h"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1460
  by (fast intro: ring_hom_cring.intro ring_hom_cring_axioms.intro
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1461
    cring.axioms prems)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1462
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1463
lemma (in ring_hom_UP_cring) UP_hom_unique:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1464
  assumes Phi: "Phi \<in> ring_hom P S" "Phi (monom P \<one> (Suc 0)) = s"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1465
      "!!r. r \<in> carrier R ==> Phi (monom P r 0) = h r"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1466
    and Psi: "Psi \<in> ring_hom P S" "Psi (monom P \<one> (Suc 0)) = s"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1467
      "!!r. r \<in> carrier R ==> Psi (monom P r 0) = h r"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1468
    and RS: "s \<in> carrier S" "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1469
  shows "Phi p = Psi p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1470
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1471
  have Phi_hom: "ring_hom_cring P S Phi"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1472
    by (auto intro: ring_hom_cringI UP_cring S.cring Phi)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1473
  have Psi_hom: "ring_hom_cring P S Psi"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1474
    by (auto intro: ring_hom_cringI UP_cring S.cring Psi)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1475
  have "Phi p = Phi (\<Oplus>\<^sub>3i \<in> {..deg R p}. monom P (coeff P p i) 0 \<otimes>\<^sub>3 monom P \<one> 1 (^)\<^sub>3 i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1476
    by (simp add: up_repr RS monom_mult [THEN sym] monom_pow del: monom_mult)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1477
  also have "... = Psi (\<Oplus>\<^sub>3i\<in>{..deg R p}. monom P (coeff P p i) 0 \<otimes>\<^sub>3 monom P \<one> 1 (^)\<^sub>3 i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1478
    by (simp add: ring_hom_cring.hom_finsum [OF Phi_hom]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1479
      ring_hom_cring.hom_mult [OF Phi_hom]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1480
      ring_hom_cring.hom_pow [OF Phi_hom] Phi
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1481
      ring_hom_cring.hom_finsum [OF Psi_hom]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1482
      ring_hom_cring.hom_mult [OF Psi_hom]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1483
      ring_hom_cring.hom_pow [OF Psi_hom] Psi RS Pi_def comp_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1484
  also have "... = Psi p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1485
    by (simp add: up_repr RS monom_mult [THEN sym] monom_pow del: monom_mult)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1486
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1487
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1488
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1489
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1490
theorem (in ring_hom_UP_cring) UP_universal_property:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1491
  "s \<in> carrier S ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1492
  EX! Phi. Phi \<in> ring_hom P S \<inter> extensional (carrier P) &
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1493
    Phi (monom P \<one> 1) = s &
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1494
    (ALL r : carrier R. Phi (monom P r 0) = h r)"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1495
  using eval_monom1
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1496
  apply (auto intro: eval_ring_hom eval_const eval_extensional)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1497
  apply (rule extensionalityI)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1498
  apply (auto intro: UP_hom_unique)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1499
  done
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1500
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1501
subsection {* Sample application of evaluation homomorphism *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1502
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1503
lemma ring_hom_UP_cringI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1504
  assumes "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1505
    and "cring S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1506
    and "h \<in> ring_hom R S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1507
  shows "ring_hom_UP_cring R S h"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1508
  by (fast intro: ring_hom_UP_cring.intro ring_hom_cring_axioms.intro
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1509
    cring.axioms prems)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1510
13975
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1511
constdefs
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1512
  INTEG :: "int ring"
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1513
  "INTEG == (| carrier = UNIV, mult = op *, one = 1, zero = 0, add = op + |)"
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1514
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1515
lemma cring_INTEG:
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1516
  "cring INTEG"
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1517
  by (unfold INTEG_def) (auto intro!: cringI abelian_groupI comm_monoidI
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1518
    zadd_zminus_inverse2 zadd_zmult_distrib)
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1519
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1520
lemma INTEG_id:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1521
  "ring_hom_UP_cring INTEG INTEG id"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1522
  by (fast intro: ring_hom_UP_cringI cring_INTEG id_ring_hom)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1523
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1524
text {*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1525
  An instantiation mechanism would now import all theorems and lemmas
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1526
  valid in the context of homomorphisms between @{term INTEG} and @{term
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1527
  "UP INTEG"}.
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1528
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1529
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1530
lemma INTEG_closed [intro, simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1531
  "z \<in> carrier INTEG"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1532
  by (unfold INTEG_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1533
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1534
lemma INTEG_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1535
  "mult INTEG z w = z * w"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1536
  by (unfold INTEG_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1537
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1538
lemma INTEG_pow [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1539
  "pow INTEG z n = z ^ n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1540
  by (induct n) (simp_all add: INTEG_def nat_pow_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1541
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1542
lemma "eval INTEG INTEG id 10 (monom (UP INTEG) 5 2) = 500"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1543
  by (simp add: ring_hom_UP_cring.eval_monom [OF INTEG_id])
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1544
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1545
end