src/HOL/Semiring_Normalization.thy
author haftmann
Fri, 07 May 2010 16:12:26 +0200
changeset 36753 5cf4e9128f22
parent 36751 7f1da69cacb3
child 36756 c1ae8a0b4265
permissions -rw-r--r--
renamed Normalizer to the more specific Semiring_Normalizer
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36751
7f1da69cacb3 split of semiring normalization from Groebner theory; moved field_comp_conv to Numeral_Simproces
haftmann
parents: 36720
diff changeset
     1
(*  Title:      HOL/Semiring_Normalization.thy
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     2
    Author:     Amine Chaieb, TU Muenchen
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     3
*)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     4
36751
7f1da69cacb3 split of semiring normalization from Groebner theory; moved field_comp_conv to Numeral_Simproces
haftmann
parents: 36720
diff changeset
     5
header {* Semiring normalization *}
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
     6
36751
7f1da69cacb3 split of semiring normalization from Groebner theory; moved field_comp_conv to Numeral_Simproces
haftmann
parents: 36720
diff changeset
     7
theory Semiring_Normalization
36699
816da1023508 moved nat_arith ot Nat_Numeral: clarified normalizer setup
haftmann
parents: 36698
diff changeset
     8
imports Numeral_Simprocs Nat_Transfer
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     9
uses
36753
5cf4e9128f22 renamed Normalizer to the more specific Semiring_Normalizer
haftmann
parents: 36751
diff changeset
    10
  "Tools/semiring_normalizer.ML"
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    11
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    12
36753
5cf4e9128f22 renamed Normalizer to the more specific Semiring_Normalizer
haftmann
parents: 36751
diff changeset
    13
setup Semiring_Normalizer.setup
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    14
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
    15
locale normalizing_semiring =
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    16
  fixes add mul pwr r0 r1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    17
  assumes add_a:"(add x (add y z) = add (add x y) z)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    18
    and add_c: "add x y = add y x" and add_0:"add r0 x = x"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    19
    and mul_a:"mul x (mul y z) = mul (mul x y) z" and mul_c:"mul x y = mul y x"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    20
    and mul_1:"mul r1 x = x" and  mul_0:"mul r0 x = r0"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    21
    and mul_d:"mul x (add y z) = add (mul x y) (mul x z)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    22
    and pwr_0:"pwr x 0 = r1" and pwr_Suc:"pwr x (Suc n) = mul x (pwr x n)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    23
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    24
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    25
lemma mul_pwr:"mul (pwr x p) (pwr x q) = pwr x (p + q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    26
proof (induct p)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    27
  case 0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    28
  then show ?case by (auto simp add: pwr_0 mul_1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    29
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    30
  case Suc
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    31
  from this [symmetric] show ?case
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    32
    by (auto simp add: pwr_Suc mul_1 mul_a)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    33
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    34
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    35
lemma pwr_mul: "pwr (mul x y) q = mul (pwr x q) (pwr y q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    36
proof (induct q arbitrary: x y, auto simp add:pwr_0 pwr_Suc mul_1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    37
  fix q x y
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    38
  assume "\<And>x y. pwr (mul x y) q = mul (pwr x q) (pwr y q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    39
  have "mul (mul x y) (mul (pwr x q) (pwr y q)) = mul x (mul y (mul (pwr x q) (pwr y q)))"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    40
    by (simp add: mul_a)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    41
  also have "\<dots> = (mul (mul y (mul (pwr y q) (pwr x q))) x)" by (simp add: mul_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    42
  also have "\<dots> = (mul (mul y (pwr y q)) (mul (pwr x q) x))" by (simp add: mul_a)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    43
  finally show "mul (mul x y) (mul (pwr x q) (pwr y q)) =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    44
    mul (mul x (pwr x q)) (mul y (pwr y q))" by (simp add: mul_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    45
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    46
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    47
lemma pwr_pwr: "pwr (pwr x p) q = pwr x (p * q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    48
proof (induct p arbitrary: q)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    49
  case 0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    50
  show ?case using pwr_Suc mul_1 pwr_0 by (induct q) auto
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    51
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    52
  case Suc
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    53
  thus ?case by (auto simp add: mul_pwr [symmetric] pwr_mul pwr_Suc)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    54
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    55
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    56
lemma semiring_ops:
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    57
  shows "TERM (add x y)" and "TERM (mul x y)" and "TERM (pwr x n)"
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28823
diff changeset
    58
    and "TERM r0" and "TERM r1" .
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    59
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    60
lemma semiring_rules:
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    61
  "add (mul a m) (mul b m) = mul (add a b) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    62
  "add (mul a m) m = mul (add a r1) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    63
  "add m (mul a m) = mul (add a r1) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    64
  "add m m = mul (add r1 r1) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    65
  "add r0 a = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    66
  "add a r0 = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    67
  "mul a b = mul b a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    68
  "mul (add a b) c = add (mul a c) (mul b c)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    69
  "mul r0 a = r0"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    70
  "mul a r0 = r0"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    71
  "mul r1 a = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    72
  "mul a r1 = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    73
  "mul (mul lx ly) (mul rx ry) = mul (mul lx rx) (mul ly ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    74
  "mul (mul lx ly) (mul rx ry) = mul lx (mul ly (mul rx ry))"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    75
  "mul (mul lx ly) (mul rx ry) = mul rx (mul (mul lx ly) ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    76
  "mul (mul lx ly) rx = mul (mul lx rx) ly"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    77
  "mul (mul lx ly) rx = mul lx (mul ly rx)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    78
  "mul lx (mul rx ry) = mul (mul lx rx) ry"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    79
  "mul lx (mul rx ry) = mul rx (mul lx ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    80
  "add (add a b) (add c d) = add (add a c) (add b d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    81
  "add (add a b) c = add a (add b c)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    82
  "add a (add c d) = add c (add a d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    83
  "add (add a b) c = add (add a c) b"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    84
  "add a c = add c a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    85
  "add a (add c d) = add (add a c) d"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    86
  "mul (pwr x p) (pwr x q) = pwr x (p + q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    87
  "mul x (pwr x q) = pwr x (Suc q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    88
  "mul (pwr x q) x = pwr x (Suc q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    89
  "mul x x = pwr x 2"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    90
  "pwr (mul x y) q = mul (pwr x q) (pwr y q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    91
  "pwr (pwr x p) q = pwr x (p * q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    92
  "pwr x 0 = r1"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    93
  "pwr x 1 = x"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    94
  "mul x (add y z) = add (mul x y) (mul x z)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    95
  "pwr x (Suc q) = mul x (pwr x q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    96
  "pwr x (2*n) = mul (pwr x n) (pwr x n)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    97
  "pwr x (Suc (2*n)) = mul x (mul (pwr x n) (pwr x n))"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    98
proof -
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    99
  show "add (mul a m) (mul b m) = mul (add a b) m" using mul_d mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   100
next show"add (mul a m) m = mul (add a r1) m" using mul_d mul_c mul_1 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   101
next show "add m (mul a m) = mul (add a r1) m" using mul_c mul_d mul_1 add_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   102
next show "add m m = mul (add r1 r1) m" using mul_c mul_d mul_1 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   103
next show "add r0 a = a" using add_0 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   104
next show "add a r0 = a" using add_0 add_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   105
next show "mul a b = mul b a" using mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   106
next show "mul (add a b) c = add (mul a c) (mul b c)" using mul_c mul_d by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   107
next show "mul r0 a = r0" using mul_0 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   108
next show "mul a r0 = r0" using mul_0 mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   109
next show "mul r1 a = a" using mul_1 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   110
next show "mul a r1 = a" using mul_1 mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   111
next show "mul (mul lx ly) (mul rx ry) = mul (mul lx rx) (mul ly ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   112
    using mul_c mul_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   113
next show "mul (mul lx ly) (mul rx ry) = mul lx (mul ly (mul rx ry))"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   114
    using mul_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   115
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   116
  have "mul (mul lx ly) (mul rx ry) = mul (mul rx ry) (mul lx ly)" by (rule mul_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   117
  also have "\<dots> = mul rx (mul ry (mul lx ly))" using mul_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   118
  finally
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   119
  show "mul (mul lx ly) (mul rx ry) = mul rx (mul (mul lx ly) ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   120
    using mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   121
next show "mul (mul lx ly) rx = mul (mul lx rx) ly" using mul_c mul_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   122
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   123
  show "mul (mul lx ly) rx = mul lx (mul ly rx)" by (simp add: mul_a)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   124
next show "mul lx (mul rx ry) = mul (mul lx rx) ry" by (simp add: mul_a )
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   125
next show "mul lx (mul rx ry) = mul rx (mul lx ry)" by (simp add: mul_a,simp add: mul_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   126
next show "add (add a b) (add c d) = add (add a c) (add b d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   127
    using add_c add_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   128
next show "add (add a b) c = add a (add b c)" using add_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   129
next show "add a (add c d) = add c (add a d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   130
    apply (simp add: add_a) by (simp only: add_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   131
next show "add (add a b) c = add (add a c) b" using add_a add_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   132
next show "add a c = add c a" by (rule add_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   133
next show "add a (add c d) = add (add a c) d" using add_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   134
next show "mul (pwr x p) (pwr x q) = pwr x (p + q)" by (rule mul_pwr)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   135
next show "mul x (pwr x q) = pwr x (Suc q)" using pwr_Suc by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   136
next show "mul (pwr x q) x = pwr x (Suc q)" using pwr_Suc mul_c by simp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   137
next show "mul x x = pwr x 2" by (simp add: nat_number' pwr_Suc pwr_0 mul_1 mul_c)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   138
next show "pwr (mul x y) q = mul (pwr x q) (pwr y q)" by (rule pwr_mul)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   139
next show "pwr (pwr x p) q = pwr x (p * q)" by (rule pwr_pwr)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   140
next show "pwr x 0 = r1" using pwr_0 .
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   141
next show "pwr x 1 = x" unfolding One_nat_def by (simp add: nat_number' pwr_Suc pwr_0 mul_1 mul_c)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   142
next show "mul x (add y z) = add (mul x y) (mul x z)" using mul_d by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   143
next show "pwr x (Suc q) = mul x (pwr x q)" using pwr_Suc by simp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   144
next show "pwr x (2 * n) = mul (pwr x n) (pwr x n)" by (simp add: nat_number' mul_pwr)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   145
next show "pwr x (Suc (2 * n)) = mul x (mul (pwr x n) (pwr x n))"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   146
    by (simp add: nat_number' pwr_Suc mul_pwr)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   147
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   148
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   149
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   150
lemmas normalizing_semiring_axioms' =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   151
  normalizing_semiring_axioms [normalizer
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   152
    semiring ops: semiring_ops
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   153
    semiring rules: semiring_rules]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   154
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   155
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   156
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   157
sublocale comm_semiring_1
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   158
  < normalizing!: normalizing_semiring plus times power zero one
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   159
proof
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   160
qed (simp_all add: algebra_simps)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   161
36753
5cf4e9128f22 renamed Normalizer to the more specific Semiring_Normalizer
haftmann
parents: 36751
diff changeset
   162
declaration {* Semiring_Normalizer.semiring_funs @{thm normalizing.normalizing_semiring_axioms'} *}
23573
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   163
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   164
locale normalizing_ring = normalizing_semiring +
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   165
  fixes sub :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   166
    and neg :: "'a \<Rightarrow> 'a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   167
  assumes neg_mul: "neg x = mul (neg r1) x"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   168
    and sub_add: "sub x y = add x (neg y)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   169
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   170
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28823
diff changeset
   171
lemma ring_ops: shows "TERM (sub x y)" and "TERM (neg x)" .
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   172
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   173
lemmas ring_rules = neg_mul sub_add
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   174
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   175
lemmas normalizing_ring_axioms' =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   176
  normalizing_ring_axioms [normalizer
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   177
    semiring ops: semiring_ops
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   178
    semiring rules: semiring_rules
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   179
    ring ops: ring_ops
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   180
    ring rules: ring_rules]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   181
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   182
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   183
36720
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   184
sublocale comm_ring_1
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   185
  < normalizing!: normalizing_ring plus times power zero one minus uminus
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   186
proof
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   187
qed (simp_all add: diff_minus)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   188
36753
5cf4e9128f22 renamed Normalizer to the more specific Semiring_Normalizer
haftmann
parents: 36751
diff changeset
   189
declaration {* Semiring_Normalizer.semiring_funs @{thm normalizing.normalizing_ring_axioms'} *}
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   190
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   191
locale normalizing_field = normalizing_ring +
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   192
  fixes divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   193
    and inverse:: "'a \<Rightarrow> 'a"
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   194
  assumes divide_inverse: "divide x y = mul x (inverse y)"
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   195
     and inverse_divide: "inverse x = divide r1 x"
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   196
begin
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   197
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   198
lemma field_ops: shows "TERM (divide x y)" and "TERM (inverse x)" .
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   199
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   200
lemmas field_rules = divide_inverse inverse_divide
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   201
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   202
lemmas normalizing_field_axioms' =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   203
  normalizing_field_axioms [normalizer
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   204
    semiring ops: semiring_ops
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   205
    semiring rules: semiring_rules
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   206
    ring ops: ring_ops
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   207
    ring rules: ring_rules
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   208
    field ops: field_ops
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   209
    field rules: field_rules]
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   210
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   211
end
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   212
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   213
locale normalizing_semiring_cancel = normalizing_semiring +
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   214
  assumes add_cancel: "add (x::'a) y = add x z \<longleftrightarrow> y = z"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   215
  and add_mul_solve: "add (mul w y) (mul x z) =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   216
    add (mul w z) (mul x y) \<longleftrightarrow> w = x \<or> y = z"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   217
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   218
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   219
lemma noteq_reduce: "a \<noteq> b \<and> c \<noteq> d \<longleftrightarrow> add (mul a c) (mul b d) \<noteq> add (mul a d) (mul b c)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   220
proof-
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   221
  have "a \<noteq> b \<and> c \<noteq> d \<longleftrightarrow> \<not> (a = b \<or> c = d)" by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   222
  also have "\<dots> \<longleftrightarrow> add (mul a c) (mul b d) \<noteq> add (mul a d) (mul b c)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   223
    using add_mul_solve by blast
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   224
  finally show "a \<noteq> b \<and> c \<noteq> d \<longleftrightarrow> add (mul a c) (mul b d) \<noteq> add (mul a d) (mul b c)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   225
    by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   226
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   227
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   228
lemma add_scale_eq_noteq: "\<lbrakk>r \<noteq> r0 ; (a = b) \<and> ~(c = d)\<rbrakk>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   229
  \<Longrightarrow> add a (mul r c) \<noteq> add b (mul r d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   230
proof(clarify)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   231
  assume nz: "r\<noteq> r0" and cnd: "c\<noteq>d"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   232
    and eq: "add b (mul r c) = add b (mul r d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   233
  hence "mul r c = mul r d" using cnd add_cancel by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   234
  hence "add (mul r0 d) (mul r c) = add (mul r0 c) (mul r d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   235
    using mul_0 add_cancel by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   236
  thus "False" using add_mul_solve nz cnd by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   237
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   238
25250
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   239
lemma add_r0_iff: " x = add x a \<longleftrightarrow> a = r0"
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   240
proof-
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   241
  have "a = r0 \<longleftrightarrow> add x a = add x r0" by (simp add: add_cancel)
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   242
  thus "x = add x a \<longleftrightarrow> a = r0" by (auto simp add: add_c add_0)
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   243
qed
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   244
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   245
declare normalizing_semiring_axioms' [normalizer del]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   246
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   247
lemmas normalizing_semiring_cancel_axioms' =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   248
  normalizing_semiring_cancel_axioms [normalizer
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   249
    semiring ops: semiring_ops
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   250
    semiring rules: semiring_rules
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   251
    idom rules: noteq_reduce add_scale_eq_noteq]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   253
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   254
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   255
locale normalizing_ring_cancel = normalizing_semiring_cancel + normalizing_ring + 
25250
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   256
  assumes subr0_iff: "sub x y = r0 \<longleftrightarrow> x = y"
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   257
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   258
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   259
declare normalizing_ring_axioms' [normalizer del]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   260
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   261
lemmas normalizing_ring_cancel_axioms' = normalizing_ring_cancel_axioms [normalizer
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   262
  semiring ops: semiring_ops
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   263
  semiring rules: semiring_rules
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   264
  ring ops: ring_ops
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   265
  ring rules: ring_rules
25250
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   266
  idom rules: noteq_reduce add_scale_eq_noteq
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   267
  ideal rules: subr0_iff add_r0_iff]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   268
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   269
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   270
36720
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   271
sublocale idom
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   272
  < normalizing!: normalizing_ring_cancel plus times power zero one minus uminus
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   273
proof
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   274
  fix w x y z
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   275
  show "w * y + x * z = w * z + x * y \<longleftrightarrow> w = x \<or> y = z"
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   276
  proof
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   277
    assume "w * y + x * z = w * z + x * y"
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   278
    then have "w * y + x * z - w * z - x * y = 0" by (simp add: algebra_simps)
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   279
    then have "w * (y - z) - x * (y - z) = 0" by (simp add: algebra_simps)
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   280
    then have "(y - z) * (w - x) = 0" by (simp add: algebra_simps)
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   281
    then have "y - z = 0 \<or> w - x = 0" by (rule divisors_zero)
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   282
    then show "w = x \<or> y = z" by auto
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   283
  qed (auto simp add: add_ac)
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   284
qed (simp_all add: algebra_simps)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   285
36753
5cf4e9128f22 renamed Normalizer to the more specific Semiring_Normalizer
haftmann
parents: 36751
diff changeset
   286
declaration {* Semiring_Normalizer.semiring_funs @{thm normalizing.normalizing_ring_cancel_axioms'} *}
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   287
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   288
interpretation normalizing_nat!: normalizing_semiring_cancel
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 28987
diff changeset
   289
  "op +" "op *" "op ^" "0::nat" "1"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   290
proof (unfold_locales, simp add: algebra_simps)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   291
  fix w x y z ::"nat"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   292
  { assume p: "w * y + x * z = w * z + x * y" and ynz: "y \<noteq> z"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   293
    hence "y < z \<or> y > z" by arith
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   294
    moreover {
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   295
      assume lt:"y <z" hence "\<exists>k. z = y + k \<and> k > 0" by (rule_tac x="z - y" in exI, auto)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   296
      then obtain k where kp: "k>0" and yz:"z = y + k" by blast
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29233
diff changeset
   297
      from p have "(w * y + x *y) + x*k = (w * y + x*y) + w*k" by (simp add: yz algebra_simps)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   298
      hence "x*k = w*k" by simp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   299
      hence "w = x" using kp by simp }
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   300
    moreover {
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   301
      assume lt: "y >z" hence "\<exists>k. y = z + k \<and> k>0" by (rule_tac x="y - z" in exI, auto)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   302
      then obtain k where kp: "k>0" and yz:"y = z + k" by blast
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29233
diff changeset
   303
      from p have "(w * z + x *z) + w*k = (w * z + x*z) + x*k" by (simp add: yz algebra_simps)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   304
      hence "w*k = x*k" by simp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   305
      hence "w = x" using kp by simp }
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   306
    ultimately have "w=x" by blast }
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   307
  thus "(w * y + x * z = w * z + x * y) = (w = x \<or> y = z)" by auto
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   308
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   309
36753
5cf4e9128f22 renamed Normalizer to the more specific Semiring_Normalizer
haftmann
parents: 36751
diff changeset
   310
declaration {* Semiring_Normalizer.semiring_funs @{thm normalizing_nat.normalizing_semiring_cancel_axioms'} *}
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   311
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   312
locale normalizing_field_cancel = normalizing_ring_cancel + normalizing_field
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   313
begin
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   314
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   315
declare normalizing_field_axioms' [normalizer del]
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   316
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   317
lemmas normalizing_field_cancel_axioms' = normalizing_field_cancel_axioms [normalizer
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   318
  semiring ops: semiring_ops
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   319
  semiring rules: semiring_rules
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   320
  ring ops: ring_ops
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   321
  ring rules: ring_rules
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   322
  field ops: field_ops
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   323
  field rules: field_rules
25250
b3a485b98963 (1) added axiom to ringb and theorems to enable algebra to prove the ideal membership problem; (2) Method algebra now calls algebra_tac which first tries to solve a universal formula, then in case of failure trie to solve the ideal membership problem (see HOL/Tools/Groebner_Basis/groebner.ML)
chaieb
parents: 23573
diff changeset
   324
  idom rules: noteq_reduce add_scale_eq_noteq
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   325
  ideal rules: subr0_iff add_r0_iff]
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   326
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   327
end
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   328
36720
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   329
sublocale field 
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   330
  < normalizing!: normalizing_field_cancel plus times power zero one minus uminus divide inverse
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   331
proof
41da7025e59c proper sublocales; no free-floating ML sections
haftmann
parents: 36716
diff changeset
   332
qed (simp_all add: divide_inverse)
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   333
36753
5cf4e9128f22 renamed Normalizer to the more specific Semiring_Normalizer
haftmann
parents: 36751
diff changeset
   334
declaration {* Semiring_Normalizer.field_funs @{thm normalizing.normalizing_field_cancel_axioms'} *}
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   335
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   336
end