src/HOL/Algebra/UnivPoly.thy
author webertj
Wed, 02 Aug 2006 16:50:41 +0200
changeset 20282 49c312eaaa11
parent 20217 25b068a99d2b
child 20318 0e0ea63fe768
permissions -rw-r--r--
lin_arith_prover splits certain operators (e.g. min, max, abs)
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
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 15944
diff changeset
    10
theory UnivPoly imports Module begin
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
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
    27
text {*
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
    28
  Functions with finite support.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
    29
*}
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
    30
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    31
locale bound =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    32
  fixes z :: 'a
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    33
    and n :: nat
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    34
    and f :: "nat => 'a"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    35
  assumes bound: "!!m. n < m \<Longrightarrow> f m = z"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    36
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    37
declare bound.intro [intro!]
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    38
  and bound.bound [dest]
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    39
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    40
lemma bound_below:
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
    41
  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
    42
proof (rule classical)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    43
  assume "~ ?thesis"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    44
  then have "m < n" by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    45
  with bound have "f n = z" ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    46
  with nonzero show ?thesis by contradiction
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    47
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    48
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    49
record ('a, 'p) up_ring = "('a, 'p) module" +
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    50
  monom :: "['a, nat] => 'p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    51
  coeff :: "['p, nat] => 'a"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    52
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    53
constdefs (structure R)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
    54
  up :: "('a, 'm) ring_scheme => (nat => 'a) set"
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    55
  "up R == {f. f \<in> UNIV -> carrier R & (EX n. bound \<zero> n f)}"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
    56
  UP :: "('a, 'm) ring_scheme => ('a, nat => 'a) up_ring"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    57
  "UP R == (|
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    58
    carrier = up R,
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    59
    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
    60
    one = (%i. if i=0 then \<one> else \<zero>),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    61
    zero = (%i. \<zero>),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    62
    add = (%p:up R. %q:up R. %i. p i \<oplus> q i),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    63
    smult = (%a:carrier R. %p:up R. %i. a \<otimes> p i),
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
    64
    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
    65
    coeff = (%p:up R. %n. p n) |)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    66
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    67
text {*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    68
  Properties of the set of polynomials @{term up}.
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    69
*}
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_upI [intro]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    72
  "[| !!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
    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 mem_upD [dest]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    76
  "f \<in> up R ==> f n \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    77
  by (simp add: up_def Pi_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) bound_upD [dest]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    80
  "f \<in> up R ==> EX n. bound \<zero> n f"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    81
  by (simp add: up_def)
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_one_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    84
   "(%n. if n = 0 then \<one> else \<zero>) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    85
  using up_def 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_smult_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    88
  "[| 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
    89
  by force
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    90
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    91
lemma (in cring) up_add_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    92
  "[| 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
    93
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    94
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    95
  assume "p \<in> up R" and "q \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    96
  then show "p n \<oplus> q n \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    97
    by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    98
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
    99
  assume UP: "p \<in> up R" "q \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   100
  show "EX n. bound \<zero> n (%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
    from UP obtain n where boundn: "bound \<zero> n p" by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   103
    from UP obtain m where boundm: "bound \<zero> m q" by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   104
    have "bound \<zero> (max n m) (%i. p i \<oplus> q i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   105
    proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   106
      fix i
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   107
      assume "max n m < i"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   108
      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
   109
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   110
    then show ?thesis ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   111
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   112
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   113
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   114
lemma (in cring) up_a_inv_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   115
  "p \<in> up R ==> (%i. \<ominus> (p i)) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   116
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   117
  assume R: "p \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   118
  then obtain n where "bound \<zero> n p" by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   119
  then have "bound \<zero> n (%i. \<ominus> p i)" by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   120
  then show "EX n. bound \<zero> n (%i. \<ominus> p i)" by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   121
qed auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   122
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   123
lemma (in cring) up_mult_closed:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   124
  "[| p \<in> up R; q \<in> up R |] ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   125
  (%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
   126
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   127
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   128
  assume "p \<in> up R" "q \<in> up R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   129
  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
   130
    by (simp add: mem_upD  funcsetI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   131
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   132
  assume UP: "p \<in> up R" "q \<in> up R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   133
  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
   134
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   135
    from UP obtain n where boundn: "bound \<zero> n p" by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   136
    from UP obtain m where boundm: "bound \<zero> m q" by fast
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   137
    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
   138
    proof
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   139
      fix k assume bound: "n + m < k"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   140
      {
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   141
        fix i
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   142
        have "p i \<otimes> q (k-i) = \<zero>"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   143
        proof (cases "n < i")
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   144
          case True
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   145
          with boundn have "p i = \<zero>" by auto
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   146
          moreover from UP have "q (k-i) \<in> carrier R" by auto
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   147
          ultimately show ?thesis by simp
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   148
        next
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   149
          case False
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   150
          with bound have "m < k-i" by arith
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   151
          with boundm have "q (k-i) = \<zero>" by auto
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   152
          moreover from UP have "p i \<in> carrier R" by auto
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   153
          ultimately show ?thesis by simp
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   154
        qed
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   155
      }
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   156
      then show "(\<Oplus>i \<in> {..k}. p i \<otimes> q (k-i)) = \<zero>"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   157
        by (simp add: Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   158
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   159
    then show ?thesis by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   160
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   161
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   162
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   163
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   164
subsection {* Effect of operations on coefficients *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   165
19783
82f365a14960 Improved parameter management of locales.
ballarin
parents: 19582
diff changeset
   166
locale UP =
82f365a14960 Improved parameter management of locales.
ballarin
parents: 19582
diff changeset
   167
  fixes R (structure) and P (structure)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   168
  defines P_def: "P == UP R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   169
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   170
locale UP_cring = UP + cring R
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   171
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   172
locale UP_domain = UP_cring + "domain" R
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   173
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   174
text {*
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   175
  Temporarily declare @{thm [locale=UP] P_def} as simp rule.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   176
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   177
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   178
declare (in UP) P_def [simp]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   179
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   180
lemma (in UP_cring) coeff_monom [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   181
  "a \<in> carrier R ==>
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   182
  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
   183
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   184
  assume R: "a \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   185
  then have "(%n. if n = m then a else \<zero>) \<in> up R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   186
    using up_def by force
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   187
  with R show ?thesis by (simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   188
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   189
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   190
lemma (in UP_cring) coeff_zero [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   191
  "coeff P \<zero>\<^bsub>P\<^esub> n = \<zero>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   192
  by (auto simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   193
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   194
lemma (in UP_cring) coeff_one [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   195
  "coeff P \<one>\<^bsub>P\<^esub> n = (if n=0 then \<one> else \<zero>)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   196
  using up_one_closed by (simp add: UP_def)
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_smult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   199
  "[| a \<in> carrier R; p \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   200
  coeff P (a \<odot>\<^bsub>P\<^esub> p) n = a \<otimes> coeff P p n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   201
  by (simp add: UP_def up_smult_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_add [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   204
  "[| p \<in> carrier P; q \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   205
  coeff P (p \<oplus>\<^bsub>P\<^esub> q) n = coeff P p n \<oplus> coeff P q n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   206
  by (simp add: UP_def up_add_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_cring) coeff_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   209
  "[| p \<in> carrier P; q \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   210
  coeff P (p \<otimes>\<^bsub>P\<^esub> 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
   211
  by (simp add: UP_def up_mult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   212
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   213
lemma (in UP) up_eqI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   214
  assumes prem: "!!n. coeff P p n = coeff P q n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   215
    and R: "p \<in> carrier P" "q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   216
  shows "p = q"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   217
proof
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   218
  fix x
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   219
  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
   220
qed
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   221
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   222
subsection {* Polynomials form a commutative ring. *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   223
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   224
text {* Operations are closed over @{term P}. *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   225
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   226
lemma (in UP_cring) UP_mult_closed [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   227
  "[| p \<in> carrier P; q \<in> carrier P |] ==> p \<otimes>\<^bsub>P\<^esub> q \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   228
  by (simp add: UP_def up_mult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   229
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   230
lemma (in UP_cring) UP_one_closed [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   231
  "\<one>\<^bsub>P\<^esub> \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   232
  by (simp add: UP_def up_one_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   233
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   234
lemma (in UP_cring) UP_zero_closed [intro, simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   235
  "\<zero>\<^bsub>P\<^esub> \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   236
  by (auto simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   237
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   238
lemma (in UP_cring) UP_a_closed [intro, simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   239
  "[| p \<in> carrier P; q \<in> carrier P |] ==> p \<oplus>\<^bsub>P\<^esub> q \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   240
  by (simp add: UP_def up_add_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   241
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   242
lemma (in UP_cring) monom_closed [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   243
  "a \<in> carrier R ==> monom P a n \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   244
  by (auto simp add: UP_def up_def Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   245
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   246
lemma (in UP_cring) UP_smult_closed [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   247
  "[| a \<in> carrier R; p \<in> carrier P |] ==> a \<odot>\<^bsub>P\<^esub> p \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   248
  by (simp add: UP_def up_smult_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   249
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   250
lemma (in UP) coeff_closed [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   251
  "p \<in> carrier P ==> coeff P p n \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   252
  by (auto simp add: UP_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   253
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   254
declare (in UP) P_def [simp del]
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   255
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   256
text {* Algebraic ring properties *}
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_a_assoc:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   259
  assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   260
  shows "(p \<oplus>\<^bsub>P\<^esub> q) \<oplus>\<^bsub>P\<^esub> r = p \<oplus>\<^bsub>P\<^esub> (q \<oplus>\<^bsub>P\<^esub> r)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   261
  by (rule up_eqI, simp add: a_assoc R, 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_zero [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   264
  assumes R: "p \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   265
  shows "\<zero>\<^bsub>P\<^esub> \<oplus>\<^bsub>P\<^esub> p = p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   266
  by (rule up_eqI, simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   267
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   268
lemma (in UP_cring) UP_l_neg_ex:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   269
  assumes R: "p \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   270
  shows "EX q : carrier P. q \<oplus>\<^bsub>P\<^esub> p = \<zero>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   271
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   272
  let ?q = "%i. \<ominus> (p i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   273
  from R have closed: "?q \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   274
    by (simp add: UP_def P_def up_a_inv_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   275
  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
   276
    by (simp add: UP_def P_def up_a_inv_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   277
  show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   278
  proof
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   279
    show "?q \<oplus>\<^bsub>P\<^esub> p = \<zero>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   280
      by (auto intro!: up_eqI simp add: R closed coeff R.l_neg)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   281
  qed (rule closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   282
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   283
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   284
lemma (in UP_cring) UP_a_comm:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   285
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   286
  shows "p \<oplus>\<^bsub>P\<^esub> q = q \<oplus>\<^bsub>P\<^esub> p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   287
  by (rule up_eqI, simp add: a_comm R, simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   288
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   289
lemma (in UP_cring) UP_m_assoc:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   290
  assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   291
  shows "(p \<otimes>\<^bsub>P\<^esub> q) \<otimes>\<^bsub>P\<^esub> r = p \<otimes>\<^bsub>P\<^esub> (q \<otimes>\<^bsub>P\<^esub> r)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   292
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   293
  fix n
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   294
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   295
    fix k and a b c :: "nat=>'a"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   296
    assume R: "a \<in> UNIV -> carrier R" "b \<in> UNIV -> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   297
      "c \<in> UNIV -> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   298
    then have "k <= n ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   299
      (\<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
   300
      (\<Oplus>j \<in> {..k}. a j \<otimes> (\<Oplus>i \<in> {..k-j}. b i \<otimes> c (n-j-i)))"
19582
a669c98b9c24 get rid of 'concl is';
wenzelm
parents: 17094
diff changeset
   301
      (is "_ \<Longrightarrow> ?eq k")
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   302
    proof (induct k)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   303
      case 0 then show ?case by (simp add: Pi_def m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   304
    next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   305
      case (Suc k)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   306
      then have "k <= n" by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   307
      then have "?eq k" by (rule Suc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   308
      with R show ?case
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   309
        by (simp cong: finsum_cong
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   310
             add: Suc_diff_le Pi_def l_distr r_distr m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   311
          (simp cong: finsum_cong add: Pi_def a_ac finsum_ldistr m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   312
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   313
  }
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   314
  with R show "coeff P ((p \<otimes>\<^bsub>P\<^esub> q) \<otimes>\<^bsub>P\<^esub> r) n = coeff P (p \<otimes>\<^bsub>P\<^esub> (q \<otimes>\<^bsub>P\<^esub> r)) n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   315
    by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   316
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   317
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   318
lemma (in UP_cring) UP_l_one [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   319
  assumes R: "p \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   320
  shows "\<one>\<^bsub>P\<^esub> \<otimes>\<^bsub>P\<^esub> p = p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   321
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   322
  fix n
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   323
  show "coeff P (\<one>\<^bsub>P\<^esub> \<otimes>\<^bsub>P\<^esub> p) n = coeff P p n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   324
  proof (cases n)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   325
    case 0 with R show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   326
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   327
    case Suc with R show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   328
      by (simp del: finsum_Suc add: finsum_Suc2 Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   329
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   330
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   331
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   332
lemma (in UP_cring) UP_l_distr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   333
  assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   334
  shows "(p \<oplus>\<^bsub>P\<^esub> q) \<otimes>\<^bsub>P\<^esub> r = (p \<otimes>\<^bsub>P\<^esub> r) \<oplus>\<^bsub>P\<^esub> (q \<otimes>\<^bsub>P\<^esub> r)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   335
  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
   336
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   337
lemma (in UP_cring) UP_m_comm:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   338
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   339
  shows "p \<otimes>\<^bsub>P\<^esub> q = q \<otimes>\<^bsub>P\<^esub> p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   340
proof (rule up_eqI)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   341
  fix n
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   342
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   343
    fix k and a b :: "nat=>'a"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   344
    assume R: "a \<in> UNIV -> carrier R" "b \<in> UNIV -> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   345
    then have "k <= n ==>
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   346
      (\<Oplus>i \<in> {..k}. a i \<otimes> b (n-i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   347
      (\<Oplus>i \<in> {..k}. a (k-i) \<otimes> b (i+n-k))"
19582
a669c98b9c24 get rid of 'concl is';
wenzelm
parents: 17094
diff changeset
   348
      (is "_ \<Longrightarrow> ?eq k")
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   349
    proof (induct k)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   350
      case 0 then show ?case by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   351
    next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   352
      case (Suc k) then show ?case
15944
9b00875e21f7 from simplesubst to new subst
paulson
parents: 15763
diff changeset
   353
        by (subst (2) finsum_Suc2) (simp add: Pi_def a_comm)+
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   354
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   355
  }
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   356
  note l = this
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   357
  from R show "coeff P (p \<otimes>\<^bsub>P\<^esub> q) n =  coeff P (q \<otimes>\<^bsub>P\<^esub> p) n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   358
    apply (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   359
    apply (subst l)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   360
    apply (auto simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   361
    apply (simp add: m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   362
    done
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   363
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   364
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   365
theorem (in UP_cring) UP_cring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   366
  "cring P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   367
  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
   368
    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
   369
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   370
lemma (in UP_cring) UP_ring:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   371
  (* preliminary,
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   372
     we want "UP_ring R P ==> ring P", not "UP_cring R P ==> ring P" *)
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   373
  "ring P"
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   374
  by (auto intro: ring.intro cring.axioms UP_cring)
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   375
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   376
lemma (in UP_cring) UP_a_inv_closed [intro, simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   377
  "p \<in> carrier P ==> \<ominus>\<^bsub>P\<^esub> p \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   378
  by (rule abelian_group.a_inv_closed
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   379
    [OF ring.is_abelian_group [OF UP_ring]])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   380
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   381
lemma (in UP_cring) coeff_a_inv [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   382
  assumes R: "p \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   383
  shows "coeff P (\<ominus>\<^bsub>P\<^esub> p) n = \<ominus> (coeff P p n)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   384
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   385
  from R coeff_closed UP_a_inv_closed have
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   386
    "coeff P (\<ominus>\<^bsub>P\<^esub> p) n = \<ominus> coeff P p n \<oplus> (coeff P p n \<oplus> coeff P (\<ominus>\<^bsub>P\<^esub> p) n)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   387
    by algebra
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   388
  also from R have "... =  \<ominus> (coeff P p n)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   389
    by (simp del: coeff_add add: coeff_add [THEN sym]
14399
dc677b35e54f New lemmas about inversion of restricted functions.
ballarin
parents: 13975
diff changeset
   390
      abelian_group.r_neg [OF ring.is_abelian_group [OF UP_ring]])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   391
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   392
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   393
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   394
text {*
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   395
  Interpretation of lemmas from @{term cring}.  Saves lifting 43
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   396
  lemmas manually.
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   397
*}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   398
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   399
interpretation UP_cring < cring P
19984
29bb4659f80a Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents: 19931
diff changeset
   400
  by intro_locales
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
   401
    (rule cring.axioms ring.axioms abelian_group.axioms comm_monoid.axioms UP_cring)+
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   402
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   403
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   404
subsection {* Polynomials form an Algebra *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   405
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   406
lemma (in UP_cring) UP_smult_l_distr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   407
  "[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   408
  (a \<oplus> b) \<odot>\<^bsub>P\<^esub> p = a \<odot>\<^bsub>P\<^esub> p \<oplus>\<^bsub>P\<^esub> b \<odot>\<^bsub>P\<^esub> p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   409
  by (rule up_eqI) (simp_all add: R.l_distr)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   410
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   411
lemma (in UP_cring) UP_smult_r_distr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   412
  "[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   413
  a \<odot>\<^bsub>P\<^esub> (p \<oplus>\<^bsub>P\<^esub> q) = a \<odot>\<^bsub>P\<^esub> p \<oplus>\<^bsub>P\<^esub> a \<odot>\<^bsub>P\<^esub> q"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   414
  by (rule up_eqI) (simp_all add: R.r_distr)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   415
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   416
lemma (in UP_cring) UP_smult_assoc1:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   417
      "[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   418
      (a \<otimes> b) \<odot>\<^bsub>P\<^esub> p = a \<odot>\<^bsub>P\<^esub> (b \<odot>\<^bsub>P\<^esub> p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   419
  by (rule up_eqI) (simp_all add: R.m_assoc)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   420
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   421
lemma (in UP_cring) UP_smult_one [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   422
      "p \<in> carrier P ==> \<one> \<odot>\<^bsub>P\<^esub> p = p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   423
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   424
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   425
lemma (in UP_cring) UP_smult_assoc2:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   426
  "[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   427
  (a \<odot>\<^bsub>P\<^esub> p) \<otimes>\<^bsub>P\<^esub> q = a \<odot>\<^bsub>P\<^esub> (p \<otimes>\<^bsub>P\<^esub> q)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   428
  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
   429
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   430
text {*
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   431
  Interpretation of lemmas from @{term algebra}.
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   432
*}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   433
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   434
lemma (in cring) cring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   435
  "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   436
  by (fast intro: cring.intro prems)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   437
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   438
lemma (in UP_cring) UP_algebra:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   439
  "algebra R P"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   440
  by (auto intro: algebraI R.cring UP_cring UP_smult_l_distr UP_smult_r_distr
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   441
    UP_smult_assoc1 UP_smult_assoc2)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   442
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   443
interpretation UP_cring < algebra R P
19984
29bb4659f80a Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents: 19931
diff changeset
   444
  by intro_locales
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
   445
    (rule module.axioms algebra.axioms UP_algebra)+
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   446
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   447
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
   448
subsection {* Further lemmas involving monomials *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   449
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   450
lemma (in UP_cring) monom_zero [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   451
  "monom P \<zero> n = \<zero>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   452
  by (simp add: UP_def P_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   453
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   454
lemma (in UP_cring) monom_mult_is_smult:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   455
  assumes R: "a \<in> carrier R" "p \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   456
  shows "monom P a 0 \<otimes>\<^bsub>P\<^esub> p = a \<odot>\<^bsub>P\<^esub> p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   457
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   458
  fix n
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   459
  have "coeff P (p \<otimes>\<^bsub>P\<^esub> monom P a 0) n = coeff P (a \<odot>\<^bsub>P\<^esub> p) n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   460
  proof (cases n)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   461
    case 0 with R show ?thesis by (simp add: R.m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   462
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   463
    case Suc with R show ?thesis
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   464
      by (simp cong: R.finsum_cong add: R.r_null Pi_def)
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   465
        (simp add: R.m_comm)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   466
  qed
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   467
  with R show "coeff P (monom P a 0 \<otimes>\<^bsub>P\<^esub> p) n = coeff P (a \<odot>\<^bsub>P\<^esub> p) n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   468
    by (simp add: UP_m_comm)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   469
qed (simp_all add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   470
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   471
lemma (in UP_cring) monom_add [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   472
  "[| a \<in> carrier R; b \<in> carrier R |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   473
  monom P (a \<oplus> b) n = monom P a n \<oplus>\<^bsub>P\<^esub> monom P b n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   474
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   475
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   476
lemma (in UP_cring) monom_one_Suc:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   477
  "monom P \<one> (Suc n) = monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   478
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   479
  fix k
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   480
  show "coeff P (monom P \<one> (Suc n)) k = coeff P (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1) k"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   481
  proof (cases "k = Suc n")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   482
    case True show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   483
    proof -
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   484
      from True have less_add_diff:
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   485
        "!!i. [| n < i; i <= n + m |] ==> n + m - i < m" by arith
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   486
      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
   487
      also from True
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14963
diff changeset
   488
      have "... = (\<Oplus>i \<in> {..<n} \<union> {n}. coeff P (monom P \<one> n) i \<otimes>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   489
        coeff P (monom P \<one> 1) (k - i))"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   490
        by (simp cong: R.finsum_cong add: Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   491
      also have "... = (\<Oplus>i \<in>  {..n}. coeff P (monom P \<one> n) i \<otimes>
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   492
        coeff P (monom P \<one> 1) (k - i))"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   493
        by (simp only: ivl_disj_un_singleton)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   494
      also from True
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   495
      have "... = (\<Oplus>i \<in> {..n} \<union> {n<..k}. coeff P (monom P \<one> n) i \<otimes>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   496
        coeff P (monom P \<one> 1) (k - i))"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   497
        by (simp cong: R.finsum_cong add: R.finsum_Un_disjoint ivl_disj_int_one
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   498
          order_less_imp_not_eq Pi_def)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   499
      also from True have "... = coeff P (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1) k"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   500
        by (simp add: ivl_disj_un_one)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   501
      finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   502
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   503
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   504
    case False
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   505
    note neq = False
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   506
    let ?s =
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   507
      "\<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
   508
    from neq have "coeff P (monom P \<one> (Suc n)) k = \<zero>" by simp
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   509
    also have "... = (\<Oplus>i \<in> {..k}. ?s i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   510
    proof -
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   511
      have f1: "(\<Oplus>i \<in> {..<n}. ?s i) = \<zero>"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   512
        by (simp cong: R.finsum_cong add: Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   513
      from neq have f2: "(\<Oplus>i \<in> {n}. ?s i) = \<zero>"
20282
49c312eaaa11 lin_arith_prover splits certain operators (e.g. min, max, abs)
webertj
parents: 20217
diff changeset
   514
        by (simp cong: R.finsum_cong add: Pi_def)
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14963
diff changeset
   515
      have f3: "n < k ==> (\<Oplus>i \<in> {n<..k}. ?s i) = \<zero>"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   516
        by (simp cong: R.finsum_cong add: order_less_imp_not_eq Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   517
      show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   518
      proof (cases "k < n")
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   519
        case True then show ?thesis by (simp cong: R.finsum_cong add: Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   520
      next
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   521
        case False then have n_le_k: "n <= k" by arith
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   522
        show ?thesis
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   523
        proof (cases "n = k")
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   524
          case True
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14963
diff changeset
   525
          then have "\<zero> = (\<Oplus>i \<in> {..<n} \<union> {n}. ?s i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   526
            by (simp cong: R.finsum_cong add: ivl_disj_int_singleton Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   527
          also from True have "... = (\<Oplus>i \<in> {..k}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   528
            by (simp only: ivl_disj_un_singleton)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   529
          finally show ?thesis .
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   530
        next
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   531
          case False with n_le_k have n_less_k: "n < k" by arith
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14963
diff changeset
   532
          with neq have "\<zero> = (\<Oplus>i \<in> {..<n} \<union> {n}. ?s i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   533
            by (simp add: R.finsum_Un_disjoint f1 f2
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   534
              ivl_disj_int_singleton Pi_def del: Un_insert_right)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   535
          also have "... = (\<Oplus>i \<in> {..n}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   536
            by (simp only: ivl_disj_un_singleton)
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14963
diff changeset
   537
          also from n_less_k neq have "... = (\<Oplus>i \<in> {..n} \<union> {n<..k}. ?s i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   538
            by (simp add: R.finsum_Un_disjoint f3 ivl_disj_int_one Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   539
          also from n_less_k have "... = (\<Oplus>i \<in> {..k}. ?s i)"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   540
            by (simp only: ivl_disj_un_one)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   541
          finally show ?thesis .
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   542
        qed
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   543
      qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   544
    qed
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   545
    also have "... = coeff P (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1) k" by simp
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   546
    finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   547
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   548
qed (simp_all)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   549
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   550
lemma (in UP_cring) monom_mult_smult:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   551
  "[| a \<in> carrier R; b \<in> carrier R |] ==> monom P (a \<otimes> b) n = a \<odot>\<^bsub>P\<^esub> monom P b n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   552
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   553
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   554
lemma (in UP_cring) monom_one [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   555
  "monom P \<one> 0 = \<one>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   556
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   557
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   558
lemma (in UP_cring) monom_one_mult:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   559
  "monom P \<one> (n + m) = monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> m"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   560
proof (induct n)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   561
  case 0 show ?case by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   562
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   563
  case Suc then show ?case
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   564
    by (simp only: add_Suc monom_one_Suc) (simp add: P.m_ac)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   565
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   566
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   567
lemma (in UP_cring) monom_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   568
  assumes R: "a \<in> carrier R" "b \<in> carrier R"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   569
  shows "monom P (a \<otimes> b) (n + m) = monom P a n \<otimes>\<^bsub>P\<^esub> monom P b m"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   570
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   571
  from R have "monom P (a \<otimes> b) (n + m) = monom P (a \<otimes> b \<otimes> \<one>) (n + m)" by simp
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   572
  also from R have "... = a \<otimes> b \<odot>\<^bsub>P\<^esub> monom P \<one> (n + m)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   573
    by (simp add: monom_mult_smult del: R.r_one)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   574
  also have "... = a \<otimes> b \<odot>\<^bsub>P\<^esub> (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> m)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   575
    by (simp only: monom_one_mult)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   576
  also from R have "... = a \<odot>\<^bsub>P\<^esub> (b \<odot>\<^bsub>P\<^esub> (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> m))"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   577
    by (simp add: UP_smult_assoc1)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   578
  also from R have "... = a \<odot>\<^bsub>P\<^esub> (b \<odot>\<^bsub>P\<^esub> (monom P \<one> m \<otimes>\<^bsub>P\<^esub> monom P \<one> n))"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   579
    by (simp add: P.m_comm)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   580
  also from R have "... = a \<odot>\<^bsub>P\<^esub> ((b \<odot>\<^bsub>P\<^esub> monom P \<one> m) \<otimes>\<^bsub>P\<^esub> monom P \<one> n)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   581
    by (simp add: UP_smult_assoc2)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   582
  also from R have "... = a \<odot>\<^bsub>P\<^esub> (monom P \<one> n \<otimes>\<^bsub>P\<^esub> (b \<odot>\<^bsub>P\<^esub> monom P \<one> m))"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   583
    by (simp add: P.m_comm)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   584
  also from R have "... = (a \<odot>\<^bsub>P\<^esub> monom P \<one> n) \<otimes>\<^bsub>P\<^esub> (b \<odot>\<^bsub>P\<^esub> monom P \<one> m)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   585
    by (simp add: UP_smult_assoc2)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   586
  also from R have "... = monom P (a \<otimes> \<one>) n \<otimes>\<^bsub>P\<^esub> monom P (b \<otimes> \<one>) m"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   587
    by (simp add: monom_mult_smult del: R.r_one)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   588
  also from R have "... = monom P a n \<otimes>\<^bsub>P\<^esub> monom P b m" by simp
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   589
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   590
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   591
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   592
lemma (in UP_cring) monom_a_inv [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   593
  "a \<in> carrier R ==> monom P (\<ominus> a) n = \<ominus>\<^bsub>P\<^esub> monom P a n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   594
  by (rule up_eqI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   595
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   596
lemma (in UP_cring) monom_inj:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   597
  "inj_on (%a. monom P a n) (carrier R)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   598
proof (rule inj_onI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   599
  fix x y
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   600
  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
   601
  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
   602
  with R show "x = y" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   603
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   604
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   605
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
   606
subsection {* The degree function *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   607
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
   608
constdefs (structure R)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   609
  deg :: "[('a, 'm) ring_scheme, nat => 'a] => nat"
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
   610
  "deg R p == LEAST n. bound \<zero> n (coeff (UP R) p)"
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) deg_aboveI:
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   613
  "[| (!!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
   614
  by (unfold deg_def P_def) (fast intro: Least_le)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   615
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   616
(*
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   617
lemma coeff_bound_ex: "EX n. bound n (coeff p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   618
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   619
  have "(%n. coeff p n) : UP" by (simp add: coeff_def Rep_UP)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   620
  then obtain n where "bound n (coeff p)" by (unfold UP_def) fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   621
  then show ?thesis ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   622
qed
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   623
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   624
lemma bound_coeff_obtain:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   625
  assumes prem: "(!!n. bound n (coeff p) ==> P)" shows "P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   626
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   627
  have "(%n. coeff p n) : UP" by (simp add: coeff_def Rep_UP)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   628
  then obtain n where "bound n (coeff p)" by (unfold UP_def) fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   629
  with prem show P .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   630
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   631
*)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   632
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   633
lemma (in UP_cring) deg_aboveD:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   634
  "[| deg R p < m; p \<in> carrier P |] ==> coeff P p m = \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   635
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   636
  assume R: "p \<in> carrier P" and "deg R p < m"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   637
  from R obtain n where "bound \<zero> n (coeff P p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   638
    by (auto simp add: UP_def P_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   639
  then have "bound \<zero> (deg R p) (coeff P p)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   640
    by (auto simp: deg_def P_def dest: LeastI)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   641
  then show ?thesis ..
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   642
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   643
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   644
lemma (in UP_cring) deg_belowI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   645
  assumes non_zero: "n ~= 0 ==> coeff P p n ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   646
    and R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   647
  shows "n <= deg R p"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   648
-- {* Logically, this is a slightly stronger version of
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   649
   @{thm [source] deg_aboveD} *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   650
proof (cases "n=0")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   651
  case True then show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   652
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   653
  case False then have "coeff P p n ~= \<zero>" by (rule non_zero)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   654
  then have "~ deg R p < n" by (fast dest: deg_aboveD intro: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   655
  then show ?thesis by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   656
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   657
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   658
lemma (in UP_cring) lcoeff_nonzero_deg:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   659
  assumes deg: "deg R p ~= 0" and R: "p \<in> carrier P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   660
  shows "coeff P p (deg R p) ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   661
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   662
  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
   663
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   664
    have minus: "!!(n::nat) m. n ~= 0 ==> (n - Suc 0 < m) = (n <= m)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   665
      by arith
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   666
(* TODO: why does simplification below not work with "1" *)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   667
    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
   668
      by (unfold deg_def P_def) arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   669
    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
   670
    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
   671
      by (unfold bound_def) fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   672
    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
   673
    then show ?thesis by auto
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   674
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   675
  with deg_belowI R have "deg R p = m" by fastsimp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   676
  with m_coeff show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   677
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   678
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   679
lemma (in UP_cring) lcoeff_nonzero_nonzero:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   680
  assumes deg: "deg R p = 0" and nonzero: "p ~= \<zero>\<^bsub>P\<^esub>" and R: "p \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   681
  shows "coeff P p 0 ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   682
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   683
  have "EX m. coeff P p m ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   684
  proof (rule classical)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   685
    assume "~ ?thesis"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   686
    with R have "p = \<zero>\<^bsub>P\<^esub>" by (auto intro: up_eqI)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   687
    with nonzero show ?thesis by contradiction
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   688
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   689
  then obtain m where coeff: "coeff P p m ~= \<zero>" ..
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   690
  then have "m <= deg R p" by (rule deg_belowI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   691
  then have "m = 0" by (simp add: deg)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   692
  with coeff show ?thesis by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   693
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   694
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   695
lemma (in UP_cring) lcoeff_nonzero:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   696
  assumes neq: "p ~= \<zero>\<^bsub>P\<^esub>" and R: "p \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   697
  shows "coeff P p (deg R p) ~= \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   698
proof (cases "deg R p = 0")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   699
  case True with neq R show ?thesis by (simp add: lcoeff_nonzero_nonzero)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   700
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   701
  case False with neq R show ?thesis by (simp add: lcoeff_nonzero_deg)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   702
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   703
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   704
lemma (in UP_cring) deg_eqI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   705
  "[| !!m. n < m ==> coeff P p m = \<zero>;
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   706
      !!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
   707
by (fast intro: le_anti_sym deg_aboveI deg_belowI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   708
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   709
text {* Degree and polynomial operations *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   710
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   711
lemma (in UP_cring) deg_add [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   712
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   713
  shows "deg R (p \<oplus>\<^bsub>P\<^esub> q) <= max (deg R p) (deg R q)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   714
proof (cases "deg R p <= deg R q")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   715
  case True show ?thesis
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   716
    by (rule deg_aboveI) (simp_all add: True R deg_aboveD)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   717
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   718
  case False show ?thesis
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   719
    by (rule deg_aboveI) (simp_all add: False R deg_aboveD)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   720
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   721
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   722
lemma (in UP_cring) deg_monom_le:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   723
  "a \<in> carrier R ==> deg R (monom P a n) <= n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   724
  by (intro deg_aboveI) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   725
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   726
lemma (in UP_cring) deg_monom [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   727
  "[| a ~= \<zero>; a \<in> carrier R |] ==> deg R (monom P a n) = n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   728
  by (fastsimp intro: le_anti_sym deg_aboveI deg_belowI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   729
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   730
lemma (in UP_cring) deg_const [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   731
  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
   732
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   733
  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
   734
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   735
  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
   736
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   737
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   738
lemma (in UP_cring) deg_zero [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   739
  "deg R \<zero>\<^bsub>P\<^esub> = 0"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   740
proof (rule le_anti_sym)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   741
  show "deg R \<zero>\<^bsub>P\<^esub> <= 0" by (rule deg_aboveI) simp_all
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   742
next
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   743
  show "0 <= deg R \<zero>\<^bsub>P\<^esub>" by (rule deg_belowI) simp_all
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   744
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   745
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   746
lemma (in UP_cring) deg_one [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   747
  "deg R \<one>\<^bsub>P\<^esub> = 0"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   748
proof (rule le_anti_sym)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   749
  show "deg R \<one>\<^bsub>P\<^esub> <= 0" by (rule deg_aboveI) simp_all
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   750
next
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   751
  show "0 <= deg R \<one>\<^bsub>P\<^esub>" by (rule deg_belowI) simp_all
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   752
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   753
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   754
lemma (in UP_cring) deg_uminus [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   755
  assumes R: "p \<in> carrier P" shows "deg R (\<ominus>\<^bsub>P\<^esub> p) = deg R p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   756
proof (rule le_anti_sym)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   757
  show "deg R (\<ominus>\<^bsub>P\<^esub> p) <= deg R p" by (simp add: deg_aboveI deg_aboveD R)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   758
next
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   759
  show "deg R p <= deg R (\<ominus>\<^bsub>P\<^esub> p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   760
    by (simp add: deg_belowI lcoeff_nonzero_deg
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   761
      inj_on_iff [OF R.a_inv_inj, of _ "\<zero>", simplified] R)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   762
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   763
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   764
lemma (in UP_domain) deg_smult_ring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   765
  "[| a \<in> carrier R; p \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   766
  deg R (a \<odot>\<^bsub>P\<^esub> p) <= (if a = \<zero> then 0 else deg R p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   767
  by (cases "a = \<zero>") (simp add: deg_aboveI deg_aboveD)+
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   768
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   769
lemma (in UP_domain) deg_smult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   770
  assumes R: "a \<in> carrier R" "p \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   771
  shows "deg R (a \<odot>\<^bsub>P\<^esub> p) = (if a = \<zero> then 0 else deg R p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   772
proof (rule le_anti_sym)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   773
  show "deg R (a \<odot>\<^bsub>P\<^esub> p) <= (if a = \<zero> then 0 else deg R p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   774
    by (rule deg_smult_ring)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   775
next
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   776
  show "(if a = \<zero> then 0 else deg R p) <= deg R (a \<odot>\<^bsub>P\<^esub> p)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   777
  proof (cases "a = \<zero>")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   778
  qed (simp, simp add: deg_belowI lcoeff_nonzero_deg integral_iff R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   779
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   780
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   781
lemma (in UP_cring) deg_mult_cring:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   782
  assumes R: "p \<in> carrier P" "q \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   783
  shows "deg R (p \<otimes>\<^bsub>P\<^esub> q) <= deg R p + deg R q"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   784
proof (rule deg_aboveI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   785
  fix m
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   786
  assume boundm: "deg R p + deg R q < m"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   787
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   788
    fix k i
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   789
    assume boundk: "deg R p + deg R q < k"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   790
    then have "coeff P p i \<otimes> coeff P q (k - i) = \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   791
    proof (cases "deg R p < i")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   792
      case True then show ?thesis by (simp add: deg_aboveD R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   793
    next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   794
      case False with boundk have "deg R q < k - i" by arith
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   795
      then show ?thesis by (simp add: deg_aboveD R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   796
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   797
  }
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   798
  with boundm R show "coeff P (p \<otimes>\<^bsub>P\<^esub> q) m = \<zero>" by simp
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   799
qed (simp add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   800
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   801
lemma (in UP_domain) deg_mult [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   802
  "[| p ~= \<zero>\<^bsub>P\<^esub>; q ~= \<zero>\<^bsub>P\<^esub>; p \<in> carrier P; q \<in> carrier P |] ==>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   803
  deg R (p \<otimes>\<^bsub>P\<^esub> q) = deg R p + deg R q"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   804
proof (rule le_anti_sym)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   805
  assume "p \<in> carrier P" " q \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   806
  show "deg R (p \<otimes>\<^bsub>P\<^esub> q) <= deg R p + deg R q" by (rule deg_mult_cring)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   807
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   808
  let ?s = "(%i. coeff P p i \<otimes> coeff P q (deg R p + deg R q - i))"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   809
  assume R: "p \<in> carrier P" "q \<in> carrier P" and nz: "p ~= \<zero>\<^bsub>P\<^esub>" "q ~= \<zero>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   810
  have less_add_diff: "!!(k::nat) n m. k < n ==> m < n + m - k" by arith
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   811
  show "deg R p + deg R q <= deg R (p \<otimes>\<^bsub>P\<^esub> q)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   812
  proof (rule deg_belowI, simp add: R)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   813
    have "(\<Oplus>i \<in> {.. deg R p + deg R q}. ?s i)
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   814
      = (\<Oplus>i \<in> {..< deg R p} \<union> {deg R p .. deg R p + deg R q}. ?s i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   815
      by (simp only: ivl_disj_un_one)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   816
    also have "... = (\<Oplus>i \<in> {deg R p .. deg R p + deg R q}. ?s i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   817
      by (simp cong: R.finsum_cong add: R.finsum_Un_disjoint ivl_disj_int_one
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   818
        deg_aboveD less_add_diff R Pi_def)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   819
    also have "...= (\<Oplus>i \<in> {deg R p} \<union> {deg R p <.. deg R p + deg R q}. ?s i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   820
      by (simp only: ivl_disj_un_singleton)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   821
    also have "... = coeff P p (deg R p) \<otimes> coeff P q (deg R q)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   822
      by (simp cong: R.finsum_cong
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   823
	add: ivl_disj_int_singleton deg_aboveD R Pi_def)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   824
    finally have "(\<Oplus>i \<in> {.. deg R p + deg R q}. ?s i)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   825
      = coeff P p (deg R p) \<otimes> coeff P q (deg R q)" .
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   826
    with nz show "(\<Oplus>i \<in> {.. deg R p + deg R q}. ?s i) ~= \<zero>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   827
      by (simp add: integral_iff lcoeff_nonzero R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   828
    qed (simp add: R)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   829
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   830
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   831
lemma (in UP_cring) coeff_finsum:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   832
  assumes fin: "finite A"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   833
  shows "p \<in> A -> carrier P ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   834
    coeff P (finsum P p A) k = (\<Oplus>i \<in> A. coeff P (p i) k)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   835
  using fin by induct (auto simp: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   836
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   837
lemma (in UP_cring) up_repr:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   838
  assumes R: "p \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   839
  shows "(\<Oplus>\<^bsub>P\<^esub> 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
   840
proof (rule up_eqI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   841
  let ?s = "(%i. monom P (coeff P p i) i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   842
  fix k
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   843
  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
   844
    by simp
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   845
  show "coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..deg R p}. ?s i) k = coeff P p k"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   846
  proof (cases "k <= deg R p")
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   847
    case True
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   848
    hence "coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..deg R p}. ?s i) k =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   849
          coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..k} \<union> {k<..deg R p}. ?s i) k"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   850
      by (simp only: ivl_disj_un_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   851
    also from True
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   852
    have "... = coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..k}. ?s i) k"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   853
      by (simp cong: R.finsum_cong add: R.finsum_Un_disjoint
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   854
        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
   855
    also
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   856
    have "... = coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..<k} \<union> {k}. ?s i) k"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   857
      by (simp only: ivl_disj_un_singleton)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   858
    also have "... = coeff P p k"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   859
      by (simp cong: R.finsum_cong
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   860
	add: ivl_disj_int_singleton coeff_finsum deg_aboveD R RR Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   861
    finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   862
  next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   863
    case False
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   864
    hence "coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..deg R p}. ?s i) k =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   865
          coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..<deg R p} \<union> {deg R p}. ?s i) k"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   866
      by (simp only: ivl_disj_un_singleton)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   867
    also from False have "... = coeff P p k"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   868
      by (simp cong: R.finsum_cong
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   869
	add: ivl_disj_int_singleton coeff_finsum deg_aboveD R Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   870
    finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   871
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   872
qed (simp_all add: R Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   873
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   874
lemma (in UP_cring) up_repr_le:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   875
  "[| deg R p <= n; p \<in> carrier P |] ==>
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   876
  (\<Oplus>\<^bsub>P\<^esub> i \<in> {..n}. monom P (coeff P p i) i) = p"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   877
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   878
  let ?s = "(%i. monom P (coeff P p i) i)"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   879
  assume R: "p \<in> carrier P" and "deg R p <= n"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   880
  then have "finsum P ?s {..n} = finsum P ?s ({..deg R p} \<union> {deg R p<..n})"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   881
    by (simp only: ivl_disj_un_one)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   882
  also have "... = finsum P ?s {..deg R p}"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   883
    by (simp cong: P.finsum_cong add: P.finsum_Un_disjoint ivl_disj_int_one
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   884
      deg_aboveD R Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   885
  also have "... = p" by (rule up_repr)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   886
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   887
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   888
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   889
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
   890
subsection {* Polynomials over an integral domain form an integral domain *}
13940
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 domainI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   893
  assumes cring: "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   894
    and one_not_zero: "one R ~= zero R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   895
    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
   896
      b \<in> carrier R |] ==> a = zero R | b = zero R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   897
  shows "domain R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   898
  by (auto intro!: domain.intro domain_axioms.intro cring.axioms prems
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   899
    del: disjCI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   900
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   901
lemma (in UP_domain) UP_one_not_zero:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   902
  "\<one>\<^bsub>P\<^esub> ~= \<zero>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   903
proof
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   904
  assume "\<one>\<^bsub>P\<^esub> = \<zero>\<^bsub>P\<^esub>"
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   905
  hence "coeff P \<one>\<^bsub>P\<^esub> 0 = (coeff P \<zero>\<^bsub>P\<^esub> 0)" by simp
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   906
  hence "\<one> = \<zero>" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   907
  with one_not_zero show "False" by contradiction
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   908
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   909
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   910
lemma (in UP_domain) UP_integral:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   911
  "[| p \<otimes>\<^bsub>P\<^esub> q = \<zero>\<^bsub>P\<^esub>; p \<in> carrier P; q \<in> carrier P |] ==> p = \<zero>\<^bsub>P\<^esub> | q = \<zero>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   912
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   913
  fix p q
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   914
  assume pq: "p \<otimes>\<^bsub>P\<^esub> q = \<zero>\<^bsub>P\<^esub>" and R: "p \<in> carrier P" "q \<in> carrier P"
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   915
  show "p = \<zero>\<^bsub>P\<^esub> | q = \<zero>\<^bsub>P\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   916
  proof (rule classical)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   917
    assume c: "~ (p = \<zero>\<^bsub>P\<^esub> | q = \<zero>\<^bsub>P\<^esub>)"
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   918
    with R have "deg R p + deg R q = deg R (p \<otimes>\<^bsub>P\<^esub> q)" by simp
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   919
    also from pq have "... = 0" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   920
    finally have "deg R p + deg R q = 0" .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   921
    then have f1: "deg R p = 0 & deg R q = 0" by simp
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   922
    from f1 R have "p = (\<Oplus>\<^bsub>P\<^esub> i \<in> {..0}. monom P (coeff P p i) i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   923
      by (simp only: up_repr_le)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   924
    also from R have "... = monom P (coeff P p 0) 0" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   925
    finally have p: "p = monom P (coeff P p 0) 0" .
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   926
    from f1 R have "q = (\<Oplus>\<^bsub>P\<^esub> i \<in> {..0}. monom P (coeff P q i) i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   927
      by (simp only: up_repr_le)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   928
    also from R have "... = monom P (coeff P q 0) 0" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   929
    finally have q: "q = monom P (coeff P q 0) 0" .
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   930
    from R have "coeff P p 0 \<otimes> coeff P q 0 = coeff P (p \<otimes>\<^bsub>P\<^esub> q) 0" by simp
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   931
    also from pq have "... = \<zero>" by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   932
    finally have "coeff P p 0 \<otimes> coeff P q 0 = \<zero>" .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   933
    with R have "coeff P p 0 = \<zero> | coeff P q 0 = \<zero>"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   934
      by (simp add: R.integral_iff)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
   935
    with p q show "p = \<zero>\<^bsub>P\<^esub> | q = \<zero>\<^bsub>P\<^esub>" by fastsimp
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   936
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   937
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   938
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   939
theorem (in UP_domain) UP_domain:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   940
  "domain P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   941
  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
   942
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   943
text {*
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   944
  Interpretation of theorems from @{term domain}.
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   945
*}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   946
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
   947
interpretation UP_domain < "domain" P
19984
29bb4659f80a Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents: 19931
diff changeset
   948
  by intro_locales (rule domain.axioms UP_domain)+
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   949
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   950
13949
0ce528cd6f19 HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents: 13940
diff changeset
   951
subsection {* Evaluation Homomorphism and Universal Property*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   952
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   953
(* alternative congruence rule (possibly more efficient)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   954
lemma (in abelian_monoid) finsum_cong2:
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   955
  "[| !!i. i \<in> A ==> f i \<in> carrier G = True; A = B;
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   956
  !!i. i \<in> B ==> f i = g i |] ==> finsum G f A = finsum G g B"
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   957
  sorry*)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   958
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   959
theorem (in cring) diagonal_sum:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   960
  "[| f \<in> {..n + m::nat} -> carrier R; g \<in> {..n + m} -> carrier R |] ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   961
  (\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   962
  (\<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
   963
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   964
  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
   965
  {
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   966
    fix j
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   967
    have "j <= n + m ==>
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   968
      (\<Oplus>k \<in> {..j}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   969
      (\<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
   970
    proof (induct j)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   971
      case 0 from Rf Rg show ?case by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   972
    next
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   973
      case (Suc j)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   974
      have R6: "!!i k. [| k <= j; i <= Suc j - k |] ==> g i \<in> carrier R"
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19984
diff changeset
   975
        using Suc by (auto intro!: funcset_mem [OF Rg])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   976
      have R8: "!!i k. [| k <= Suc j; i <= k |] ==> g (k - i) \<in> carrier R"
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19984
diff changeset
   977
        using Suc by (auto intro!: funcset_mem [OF Rg])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   978
      have R9: "!!i k. [| k <= Suc j |] ==> f k \<in> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   979
        using Suc by (auto intro!: funcset_mem [OF Rf])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   980
      have R10: "!!i k. [| k <= Suc j; i <= Suc j - k |] ==> g i \<in> carrier R"
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19984
diff changeset
   981
        using Suc by (auto intro!: funcset_mem [OF Rg])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   982
      have R11: "g 0 \<in> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   983
        using Suc by (auto intro!: funcset_mem [OF Rg])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   984
      from Suc show ?case
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   985
        by (simp cong: finsum_cong add: Suc_diff_le a_ac
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   986
          Pi_def R6 R8 R9 R10 R11)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   987
    qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   988
  }
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   989
  then show ?thesis by fast
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   990
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   991
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   992
lemma (in abelian_monoid) boundD_carrier:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   993
  "[| bound \<zero> n f; n < m |] ==> f m \<in> carrier G"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   994
  by auto
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   995
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   996
theorem (in cring) cauchy_product:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   997
  assumes bf: "bound \<zero> n f" and bg: "bound \<zero> m g"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
   998
    and Rf: "f \<in> {..n} -> carrier R" and Rg: "g \<in> {..m} -> carrier R"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
   999
  shows "(\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1000
    (\<Oplus>i \<in> {..n}. f i) \<otimes> (\<Oplus>i \<in> {..m}. g i)"      (* State reverse direction? *)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1001
proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1002
  have f: "!!x. f x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1003
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1004
    fix x
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1005
    show "f x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1006
      using Rf bf boundD_carrier by (cases "x <= n") (auto simp: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1007
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1008
  have g: "!!x. g x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1009
  proof -
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1010
    fix x
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1011
    show "g x \<in> carrier R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1012
      using Rg bg boundD_carrier by (cases "x <= m") (auto simp: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1013
  qed
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1014
  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
  1015
      (\<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
  1016
    by (simp add: diagonal_sum Pi_def)
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14963
diff changeset
  1017
  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
  1018
    by (simp only: ivl_disj_un_one)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1019
  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
  1020
    by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1021
      add: bound.bound [OF bf] finsum_Un_disjoint ivl_disj_int_one Pi_def)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1022
  also from f g
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1023
  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
  1024
    by (simp cong: finsum_cong add: ivl_disj_un_one le_add_diff Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1025
  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
  1026
    by (simp cong: finsum_cong
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1027
      add: bound.bound [OF bg] finsum_Un_disjoint ivl_disj_int_one Pi_def)
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1028
  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
  1029
    by (simp add: finsum_ldistr diagonal_sum Pi_def,
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1030
      simp cong: finsum_cong add: finsum_rdistr Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1031
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1032
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1033
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1034
lemma (in UP_cring) const_ring_hom:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1035
  "(%a. monom P a 0) \<in> ring_hom R P"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1036
  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
  1037
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
  1038
constdefs (structure S)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1039
  eval :: "[('a, 'm) ring_scheme, ('b, 'n) ring_scheme,
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1040
           'a => 'b, 'b, nat => 'a] => 'b"
14651
02b8f3bcf7fe improved notation;
wenzelm
parents: 14590
diff changeset
  1041
  "eval R S phi s == \<lambda>p \<in> carrier (UP R).
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1042
    \<Oplus>i \<in> {..deg R p}. phi (coeff (UP R) p i) \<otimes> s (^) i"
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1043
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1044
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1045
lemma (in UP) eval_on_carrier:
19783
82f365a14960 Improved parameter management of locales.
ballarin
parents: 19582
diff changeset
  1046
  fixes S (structure)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1047
  shows "p \<in> carrier P ==>
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1048
  eval R S phi s p = (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p}. phi (coeff P p i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1049
  by (unfold eval_def, fold P_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1050
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1051
lemma (in UP) eval_extensional:
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1052
  "eval R S phi p \<in> extensional (carrier P)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1053
  by (unfold eval_def, fold P_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1054
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1055
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1056
text {* The universal property of the polynomial ring *}
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1057
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1058
locale UP_pre_univ_prop = ring_hom_cring R S h + UP_cring R P
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1059
19783
82f365a14960 Improved parameter management of locales.
ballarin
parents: 19582
diff changeset
  1060
locale UP_univ_prop = UP_pre_univ_prop +
82f365a14960 Improved parameter management of locales.
ballarin
parents: 19582
diff changeset
  1061
  fixes s and Eval
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1062
  assumes indet_img_carrier [simp, intro]: "s \<in> carrier S"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1063
  defines Eval_def: "Eval == eval R S h s"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1064
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1065
theorem (in UP_pre_univ_prop) eval_ring_hom:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1066
  assumes S: "s \<in> carrier S"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1067
  shows "eval R S h s \<in> ring_hom P S"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1068
proof (rule ring_hom_memI)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1069
  fix p
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1070
  assume R: "p \<in> carrier P"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1071
  then show "eval R S h s p \<in> carrier S"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1072
    by (simp only: eval_on_carrier) (simp add: S Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1073
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1074
  fix p q
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1075
  assume R: "p \<in> carrier P" "q \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1076
  then show "eval R S h s (p \<otimes>\<^bsub>P\<^esub> q) = eval R S h s p \<otimes>\<^bsub>S\<^esub> eval R S h s q"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1077
  proof (simp only: eval_on_carrier UP_mult_closed)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1078
    from R S have
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1079
      "(\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (p \<otimes>\<^bsub>P\<^esub> q)}. h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1080
      (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (p \<otimes>\<^bsub>P\<^esub> q)} \<union> {deg R (p \<otimes>\<^bsub>P\<^esub> q)<..deg R p + deg R q}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1081
        h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1082
      by (simp cong: S.finsum_cong
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1083
        add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1084
        del: coeff_mult)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1085
    also from R have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1086
      (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p + deg R q}. h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1087
      by (simp only: ivl_disj_un_one deg_mult_cring)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1088
    also from R S have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1089
      (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p + deg R q}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1090
         \<Oplus>\<^bsub>S\<^esub> k \<in> {..i}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1091
           h (coeff P p k) \<otimes>\<^bsub>S\<^esub> h (coeff P q (i - k)) \<otimes>\<^bsub>S\<^esub>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1092
           (s (^)\<^bsub>S\<^esub> k \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> (i - k)))"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1093
      by (simp cong: S.finsum_cong add: S.nat_pow_mult Pi_def
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1094
        S.m_ac S.finsum_rdistr)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1095
    also from R S have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1096
      (\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) \<otimes>\<^bsub>S\<^esub>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1097
      (\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1098
      by (simp add: S.cauchy_product [THEN sym] bound.intro deg_aboveD S.m_ac
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1099
        Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1100
    finally show
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1101
      "(\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (p \<otimes>\<^bsub>P\<^esub> q)}. h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1102
      (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) \<otimes>\<^bsub>S\<^esub>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1103
      (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)" .
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1104
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1105
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1106
  fix p q
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1107
  assume R: "p \<in> carrier P" "q \<in> carrier P"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1108
  then show "eval R S h s (p \<oplus>\<^bsub>P\<^esub> q) = eval R S h s p \<oplus>\<^bsub>S\<^esub> eval R S h s q"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1109
  proof (simp only: eval_on_carrier P.a_closed)
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1110
    from S R have
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1111
      "(\<Oplus>\<^bsub>S \<^esub>i\<in>{..deg R (p \<oplus>\<^bsub>P\<^esub> q)}. h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1112
      (\<Oplus>\<^bsub>S \<^esub>i\<in>{..deg R (p \<oplus>\<^bsub>P\<^esub> q)} \<union> {deg R (p \<oplus>\<^bsub>P\<^esub> q)<..max (deg R p) (deg R q)}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1113
        h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1114
      by (simp cong: S.finsum_cong
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1115
        add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1116
        del: coeff_add)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1117
    also from R have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1118
        (\<Oplus>\<^bsub>S\<^esub> i \<in> {..max (deg R p) (deg R q)}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1119
          h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1120
      by (simp add: ivl_disj_un_one)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1121
    also from R S have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1122
      (\<Oplus>\<^bsub>S\<^esub>i\<in>{..max (deg R p) (deg R q)}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1123
      (\<Oplus>\<^bsub>S\<^esub>i\<in>{..max (deg R p) (deg R q)}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1124
      by (simp cong: S.finsum_cong
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1125
        add: S.l_distr deg_aboveD ivl_disj_int_one Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1126
    also have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1127
        (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p} \<union> {deg R p<..max (deg R p) (deg R q)}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1128
          h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1129
        (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R q} \<union> {deg R q<..max (deg R p) (deg R q)}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1130
          h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1131
      by (simp only: ivl_disj_un_one le_maxI1 le_maxI2)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1132
    also from R S have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1133
      (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1134
      (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1135
      by (simp cong: S.finsum_cong
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1136
        add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1137
    finally show
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1138
      "(\<Oplus>\<^bsub>S\<^esub>i \<in> {..deg R (p \<oplus>\<^bsub>P\<^esub> q)}. h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1139
      (\<Oplus>\<^bsub>S\<^esub>i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub>
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1140
      (\<Oplus>\<^bsub>S\<^esub>i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)" .
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1141
  qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1142
next
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1143
  show "eval R S h s \<one>\<^bsub>P\<^esub> = \<one>\<^bsub>S\<^esub>"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1144
    by (simp only: eval_on_carrier UP_one_closed) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1145
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1146
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1147
text {* Interpretation of ring homomorphism lemmas. *}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1148
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1149
interpretation UP_univ_prop < ring_hom_cring P S Eval
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1150
  apply (unfold Eval_def)
19984
29bb4659f80a Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents: 19931
diff changeset
  1151
  apply intro_locales
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1152
  apply (rule ring_hom_cring.axioms)
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1153
  apply (rule ring_hom_cring.intro)
19984
29bb4659f80a Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents: 19931
diff changeset
  1154
  apply unfold_locales
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1155
  apply (rule eval_ring_hom)
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1156
  apply rule
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1157
  done
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1158
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1159
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1160
text {* Further properties of the evaluation homomorphism. *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1161
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1162
(* The following lemma could be proved in UP\_cring with the additional
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1163
   assumption that h is closed. *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1164
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1165
lemma (in UP_pre_univ_prop) eval_const:
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1166
  "[| 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
  1167
  by (simp only: eval_on_carrier monom_closed) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1168
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1169
text {* The following proof is complicated by the fact that in arbitrary
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1170
  rings one might have @{term "one R = zero R"}. *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1171
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1172
(* TODO: simplify by cases "one R = zero R" *)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1173
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1174
lemma (in UP_pre_univ_prop) eval_monom1:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1175
  assumes S: "s \<in> carrier S"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1176
  shows "eval R S h s (monom P \<one> 1) = s"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1177
proof (simp only: eval_on_carrier monom_closed R.one_closed)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1178
   from S have
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1179
    "(\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R (monom P \<one> 1)}. h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1180
    (\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R (monom P \<one> 1)} \<union> {deg R (monom P \<one> 1)<..1}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1181
      h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1182
    by (simp cong: S.finsum_cong del: coeff_monom
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1183
      add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1184
  also have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1185
    (\<Oplus>\<^bsub>S\<^esub> i \<in> {..1}. h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1186
    by (simp only: ivl_disj_un_one deg_monom_le R.one_closed)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1187
  also have "... = s"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1188
  proof (cases "s = \<zero>\<^bsub>S\<^esub>")
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1189
    case True then show ?thesis by (simp add: Pi_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1190
  next
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1191
    case False then show ?thesis by (simp add: S Pi_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1192
  qed
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1193
  finally show "(\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (monom P \<one> 1)}.
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1194
    h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> i) = s" .
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1195
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1196
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1197
lemma (in UP_cring) monom_pow:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1198
  assumes R: "a \<in> carrier R"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1199
  shows "(monom P a n) (^)\<^bsub>P\<^esub> m = monom P (a (^) m) (n * m)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1200
proof (induct m)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1201
  case 0 from R show ?case by simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1202
next
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1203
  case Suc with R show ?case
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1204
    by (simp del: monom_mult add: monom_mult [THEN sym] add_commute)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1205
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1206
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1207
lemma (in ring_hom_cring) hom_pow [simp]:
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1208
  "x \<in> carrier R ==> h (x (^) n) = h x (^)\<^bsub>S\<^esub> (n::nat)"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1209
  by (induct n) simp_all
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1210
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1211
lemma (in UP_univ_prop) Eval_monom:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1212
  "r \<in> carrier R ==> Eval (monom P r n) = h r \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> n"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1213
proof -
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1214
  assume R: "r \<in> carrier R"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1215
  from R have "Eval (monom P r n) = Eval (monom P r 0 \<otimes>\<^bsub>P\<^esub> (monom P \<one> 1) (^)\<^bsub>P\<^esub> n)"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1216
    by (simp del: monom_mult add: monom_mult [THEN sym] monom_pow)
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1217
  also
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1218
  from R eval_monom1 [where s = s, folded Eval_def]
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1219
  have "... = h r \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> n"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1220
    by (simp add: eval_const [where s = s, folded Eval_def])
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1221
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1222
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1223
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1224
lemma (in UP_pre_univ_prop) eval_monom:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1225
  assumes R: "r \<in> carrier R" and S: "s \<in> carrier S"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1226
  shows "eval R S h s (monom P r n) = h r \<otimes>\<^bsub>S\<^esub> s (^)\<^bsub>S\<^esub> n"
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1227
proof -
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1228
  interpret UP_univ_prop [R S h P s _]
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1229
    by (auto! intro: UP_univ_prop.intro UP_univ_prop_axioms.intro)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1230
  from R
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1231
  show ?thesis by (rule Eval_monom)
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1232
qed
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1233
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1234
lemma (in UP_univ_prop) Eval_smult:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1235
  "[| r \<in> carrier R; p \<in> carrier P |] ==> Eval (r \<odot>\<^bsub>P\<^esub> p) = h r \<otimes>\<^bsub>S\<^esub> Eval p"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1236
proof -
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1237
  assume R: "r \<in> carrier R" and P: "p \<in> carrier P"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1238
  then show ?thesis
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1239
    by (simp add: monom_mult_is_smult [THEN sym]
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1240
      eval_const [where s = s, folded Eval_def])
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1241
qed
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1242
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1243
lemma ring_hom_cringI:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1244
  assumes "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1245
    and "cring S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1246
    and "h \<in> ring_hom R S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1247
  shows "ring_hom_cring R S h"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1248
  by (fast intro: ring_hom_cring.intro ring_hom_cring_axioms.intro
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1249
    cring.axioms prems)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1250
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1251
lemma (in UP_pre_univ_prop) UP_hom_unique:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1252
  includes ring_hom_cring P S Phi
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1253
  assumes Phi: "Phi (monom P \<one> (Suc 0)) = s"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1254
      "!!r. r \<in> carrier R ==> Phi (monom P r 0) = h r"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1255
  includes ring_hom_cring P S Psi
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1256
  assumes Psi: "Psi (monom P \<one> (Suc 0)) = s"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1257
      "!!r. r \<in> carrier R ==> Psi (monom P r 0) = h r"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1258
    and P: "p \<in> carrier P" and S: "s \<in> carrier S"
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1259
  shows "Phi p = Psi p"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1260
proof -
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1261
  have "Phi p =
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1262
      Phi (\<Oplus>\<^bsub>P \<^esub>i \<in> {..deg R p}. monom P (coeff P p i) 0 \<otimes>\<^bsub>P\<^esub> monom P \<one> 1 (^)\<^bsub>P\<^esub> i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1263
    by (simp add: up_repr P monom_mult [THEN sym] monom_pow del: monom_mult)
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15596
diff changeset
  1264
  also
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15596
diff changeset
  1265
  have "... =
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1266
      Psi (\<Oplus>\<^bsub>P \<^esub>i\<in>{..deg R p}. monom P (coeff P p i) 0 \<otimes>\<^bsub>P\<^esub> monom P \<one> 1 (^)\<^bsub>P\<^esub> i)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1267
    by (simp add: Phi Psi P Pi_def comp_def)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1268
  also have "... = Psi p"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1269
    by (simp add: up_repr P monom_mult [THEN sym] monom_pow del: monom_mult)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1270
  finally show ?thesis .
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1271
qed
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1272
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1273
lemma (in UP_pre_univ_prop) ring_homD:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1274
  assumes Phi: "Phi \<in> ring_hom P S"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1275
  shows "ring_hom_cring P S Phi"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1276
proof (rule ring_hom_cring.intro)
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1277
  show "ring_hom_cring_axioms P S Phi"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1278
  by (rule ring_hom_cring_axioms.intro) (rule Phi)
19984
29bb4659f80a Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents: 19931
diff changeset
  1279
qed unfold_locales
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1280
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1281
theorem (in UP_pre_univ_prop) UP_universal_property:
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1282
  assumes S: "s \<in> carrier S"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1283
  shows "EX! Phi. Phi \<in> ring_hom P S \<inter> extensional (carrier P) &
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1284
    Phi (monom P \<one> 1) = s &
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1285
    (ALL r : carrier R. Phi (monom P r 0) = h r)"
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1286
  using S eval_monom1
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1287
  apply (auto intro: eval_ring_hom eval_const eval_extensional)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1288
  apply (rule extensionalityI)
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1289
  apply (auto intro: UP_hom_unique ring_homD)
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1290
  done
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1291
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1292
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1293
subsection {* Sample application of evaluation homomorphism *}
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1294
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1295
lemma UP_pre_univ_propI:
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1296
  assumes "cring R"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1297
    and "cring S"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1298
    and "h \<in> ring_hom R S"
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1299
  shows "UP_pre_univ_prop R S h"
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1300
  by (auto intro!: UP_pre_univ_prop.intro ring_hom_cring.intro
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1301
    ring_hom_cring_axioms.intro UP_cring.intro)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1302
13975
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1303
constdefs
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1304
  INTEG :: "int ring"
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1305
  "INTEG == (| carrier = UNIV, mult = op *, one = 1, zero = 0, add = op + |)"
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1306
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1307
lemma INTEG_cring:
13975
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1308
  "cring INTEG"
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1309
  by (unfold INTEG_def) (auto intro!: cringI abelian_groupI comm_monoidI
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1310
    zadd_zminus_inverse2 zadd_zmult_distrib)
c8e9a89883ce Small changes for release Isabelle 2003.
ballarin
parents: 13949
diff changeset
  1311
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1312
lemma INTEG_id_eval:
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1313
  "UP_pre_univ_prop INTEG INTEG id"
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1314
  by (fast intro: UP_pre_univ_propI INTEG_cring id_ring_hom)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1315
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1316
text {*
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1317
  Interpretation now enables to import all theorems and lemmas
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1318
  valid in the context of homomorphisms between @{term INTEG} and @{term
15095
63f5f4c265dd Theories now take advantage of recent syntax improvements with (structure).
ballarin
parents: 15076
diff changeset
  1319
  "UP INTEG"} globally.
14666
65f8680c3f16 improved notation;
wenzelm
parents: 14651
diff changeset
  1320
*}
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1321
17094
7a3c2efecffe Use interpretation in locales.
ballarin
parents: 16639
diff changeset
  1322
interpretation INTEG: UP_pre_univ_prop [INTEG INTEG id]
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1323
  apply simp
15763
b901a127ac73 Interpretation supports statically scoped attributes; documentation.
ballarin
parents: 15696
diff changeset
  1324
  using INTEG_id_eval
19931
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1325
  apply simp
fb32b43e7f80 Restructured locales with predicates: import is now an interpretation.
ballarin
parents: 19783
diff changeset
  1326
  done
15763
b901a127ac73 Interpretation supports statically scoped attributes; documentation.
ballarin
parents: 15696
diff changeset
  1327
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1328
lemma INTEG_closed [intro, simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1329
  "z \<in> carrier INTEG"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1330
  by (unfold INTEG_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1331
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1332
lemma INTEG_mult [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1333
  "mult INTEG z w = z * w"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1334
  by (unfold INTEG_def) simp
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1335
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1336
lemma INTEG_pow [simp]:
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1337
  "pow INTEG z n = z ^ n"
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1338
  by (induct n) (simp_all add: INTEG_def nat_pow_def)
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1339
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1340
lemma "eval INTEG INTEG id 10 (monom (UP INTEG) 5 2) = 500"
15763
b901a127ac73 Interpretation supports statically scoped attributes; documentation.
ballarin
parents: 15696
diff changeset
  1341
  by (simp add: INTEG.eval_monom)
13940
c67798653056 HOL-Algebra: New polynomial development added.
ballarin
parents:
diff changeset
  1342
14590
276ef51cedbf simplified ML code for setsubgoaler;
wenzelm
parents: 14577
diff changeset
  1343
end