src/HOL/Groebner_Basis.thy
author haftmann
Thu, 06 May 2010 18:16:07 +0200
changeset 36716 b09f3ad3208f
parent 36714 ae84ddf03c58
child 36720 41da7025e59c
permissions -rw-r--r--
moved generic lemmas to appropriate places
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Groebner_Basis.thy
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
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     5
header {* Semiring normalization and Groebner Bases *}
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
     6
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     7
theory Groebner_Basis
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
36699
816da1023508 moved nat_arith ot Nat_Numeral: clarified normalizer setup
haftmann
parents: 36698
diff changeset
    10
  "Tools/Groebner_Basis/normalizer.ML"
23312
6e32a5bfc30f explicitely depends on file groebner.ML
chaieb
parents: 23266
diff changeset
    11
  ("Tools/Groebner_Basis/groebner.ML")
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    12
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    13
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    14
subsection {* Semiring normalization *}
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    15
36700
9b85b9d74b83 dropped auxiliary method sring_norm; integrated normalizer.ML and normalizer_data.ML
haftmann
parents: 36699
diff changeset
    16
setup Normalizer.setup
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    17
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
    18
locale normalizing_semiring =
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    19
  fixes add mul pwr r0 r1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    20
  assumes add_a:"(add x (add y z) = add (add x y) z)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    21
    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
    22
    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
    23
    and mul_1:"mul r1 x = x" and  mul_0:"mul r0 x = r0"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    24
    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
    25
    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
    26
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    27
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    28
lemma mul_pwr:"mul (pwr x p) (pwr x q) = pwr x (p + q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    29
proof (induct p)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    30
  case 0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    31
  then show ?case by (auto simp add: pwr_0 mul_1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    32
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    33
  case Suc
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    34
  from this [symmetric] show ?case
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    35
    by (auto simp add: pwr_Suc mul_1 mul_a)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    36
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    37
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    38
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
    39
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
    40
  fix q x y
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    41
  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
    42
  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
    43
    by (simp add: mul_a)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    44
  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
    45
  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
    46
  finally show "mul (mul x y) (mul (pwr x q) (pwr y q)) =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    47
    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
    48
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    49
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    50
lemma pwr_pwr: "pwr (pwr x p) q = pwr x (p * q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    51
proof (induct p arbitrary: q)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    52
  case 0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    53
  show ?case using pwr_Suc mul_1 pwr_0 by (induct q) auto
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    54
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    55
  case Suc
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    56
  thus ?case by (auto simp add: mul_pwr [symmetric] pwr_mul pwr_Suc)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    57
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    58
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    59
lemma semiring_ops:
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    60
  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
    61
    and "TERM r0" and "TERM r1" .
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    62
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    63
lemma semiring_rules:
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    64
  "add (mul a m) (mul b m) = mul (add a b) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    65
  "add (mul a m) m = mul (add a r1) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    66
  "add m (mul a m) = mul (add a r1) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    67
  "add m m = mul (add r1 r1) m"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    68
  "add r0 a = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    69
  "add a r0 = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    70
  "mul a b = mul b a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    71
  "mul (add a b) c = add (mul a c) (mul b c)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    72
  "mul r0 a = r0"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    73
  "mul a r0 = r0"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    74
  "mul r1 a = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    75
  "mul a r1 = a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    76
  "mul (mul lx ly) (mul rx ry) = mul (mul lx rx) (mul ly ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    77
  "mul (mul lx ly) (mul rx ry) = mul lx (mul ly (mul rx ry))"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    78
  "mul (mul lx ly) (mul rx ry) = mul rx (mul (mul lx ly) ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    79
  "mul (mul lx ly) rx = mul (mul lx rx) ly"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    80
  "mul (mul lx ly) rx = mul lx (mul ly rx)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    81
  "mul lx (mul rx ry) = mul (mul lx rx) ry"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    82
  "mul lx (mul rx ry) = mul rx (mul lx ry)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    83
  "add (add a b) (add c d) = add (add a c) (add b d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    84
  "add (add a b) c = add a (add b c)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    85
  "add a (add c d) = add c (add a d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    86
  "add (add a b) c = add (add a c) b"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    87
  "add a c = add c a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    88
  "add a (add c d) = add (add a c) d"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    89
  "mul (pwr x p) (pwr x q) = pwr x (p + q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    90
  "mul x (pwr x q) = pwr x (Suc q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    91
  "mul (pwr x q) x = pwr x (Suc q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    92
  "mul x x = pwr x 2"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    93
  "pwr (mul x y) q = mul (pwr x q) (pwr y q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    94
  "pwr (pwr x p) q = pwr x (p * q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    95
  "pwr x 0 = r1"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    96
  "pwr x 1 = x"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    97
  "mul x (add y z) = add (mul x y) (mul x z)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    98
  "pwr x (Suc q) = mul x (pwr x q)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    99
  "pwr x (2*n) = mul (pwr x n) (pwr x n)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   100
  "pwr x (Suc (2*n)) = mul x (mul (pwr x n) (pwr x n))"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   101
proof -
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   102
  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
   103
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
   104
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
   105
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
   106
next show "add r0 a = a" using add_0 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   107
next show "add a r0 = a" using add_0 add_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   108
next show "mul a b = mul b a" using mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   109
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
   110
next show "mul r0 a = r0" using mul_0 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   111
next show "mul a r0 = r0" using mul_0 mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   112
next show "mul r1 a = a" using mul_1 by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   113
next show "mul a r1 = a" using mul_1 mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   114
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
   115
    using mul_c mul_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   116
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
   117
    using mul_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   118
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   119
  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
   120
  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
   121
  finally
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   122
  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
   123
    using mul_c by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   124
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
   125
next
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   126
  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
   127
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
   128
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
   129
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
   130
    using add_c add_a by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   131
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
   132
next show "add a (add c d) = add c (add a d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   133
    apply (simp add: add_a) by (simp only: add_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   134
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
   135
next show "add a c = add c a" by (rule add_c)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   136
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
   137
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
   138
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
   139
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
   140
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
   141
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
   142
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
   143
next show "pwr x 0 = r1" using pwr_0 .
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   144
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
   145
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
   146
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
   147
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
   148
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
   149
    by (simp add: nat_number' pwr_Suc mul_pwr)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   150
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   151
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   152
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   153
lemmas normalizing_semiring_axioms' =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   154
  normalizing_semiring_axioms [normalizer
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   155
    semiring ops: semiring_ops
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   156
    semiring rules: semiring_rules]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   157
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   158
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   159
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   160
sublocale comm_semiring_1
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   161
  < 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
   162
proof
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   163
qed (simp_all add: algebra_simps)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   164
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   165
ML {*
23573
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   166
local
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   167
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   168
fun numeral_is_const ct = can HOLogic.dest_number (Thm.term_of ct);
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   169
23573
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   170
fun int_of_rat x =
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   171
  (case Rat.quotient_of_rat x of (i, 1) => i
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   172
  | _ => error "int_of_rat: bad int");
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   173
23573
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   174
val numeral_conv =
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   175
  Simplifier.rewrite (HOL_basic_ss addsimps @{thms semiring_norm}) then_conv
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   176
  Simplifier.rewrite (HOL_basic_ss addsimps
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   177
    (@{thms numeral_1_eq_1} @ @{thms numeral_0_eq_0} @ @{thms numerals(1-2)}));
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   178
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   179
in
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   180
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   181
fun normalizer_funs' key =
36700
9b85b9d74b83 dropped auxiliary method sring_norm; integrated normalizer.ML and normalizer_data.ML
haftmann
parents: 36699
diff changeset
   182
  Normalizer.funs key
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   183
   {is_const = fn phi => numeral_is_const,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   184
    dest_const = fn phi => fn ct =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   185
      Rat.rat_of_int (snd
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   186
        (HOLogic.dest_number (Thm.term_of ct)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   187
          handle TERM _ => error "ring_dest_const")),
23573
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   188
    mk_const = fn phi => fn cT => fn x => Numeral.mk_cnumber cT (int_of_rat x),
23330
01c09922ce59 Conversion for computation on constants now depends on the context
chaieb
parents: 23327
diff changeset
   189
    conv = fn phi => K numeral_conv}
23573
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   190
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   191
end
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   192
*}
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   193
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   194
declaration {* normalizer_funs' @{thm normalizing.normalizing_semiring_axioms'} *}
23573
d85a277f90fd common normalizer_funs, avoid cterm_of;
wenzelm
parents: 23477
diff changeset
   195
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   196
locale normalizing_ring = normalizing_semiring +
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   197
  fixes sub :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   198
    and neg :: "'a \<Rightarrow> 'a"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   199
  assumes neg_mul: "neg x = mul (neg r1) x"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   200
    and sub_add: "sub x y = add x (neg y)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   201
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   202
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28823
diff changeset
   203
lemma ring_ops: shows "TERM (sub x y)" and "TERM (neg x)" .
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   204
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   205
lemmas ring_rules = neg_mul sub_add
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   206
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   207
lemmas normalizing_ring_axioms' =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   208
  normalizing_ring_axioms [normalizer
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   209
    semiring ops: semiring_ops
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   210
    semiring rules: semiring_rules
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   211
    ring ops: ring_ops
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   212
    ring rules: ring_rules]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   213
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   214
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   215
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   216
(*FIXME add class*)
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   217
interpretation normalizing!: normalizing_ring plus times power
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   218
  "0::'a::{comm_semiring_1,number_ring}" 1 minus uminus proof
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   219
qed simp_all
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   220
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   221
declaration {* normalizer_funs' @{thm normalizing.normalizing_ring_axioms'} *}
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   222
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   223
locale normalizing_field = normalizing_ring +
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   224
  fixes divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   225
    and inverse:: "'a \<Rightarrow> 'a"
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   226
  assumes divide_inverse: "divide x y = mul x (inverse y)"
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   227
     and inverse_divide: "inverse x = divide r1 x"
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   228
begin
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   229
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   230
lemma field_ops: shows "TERM (divide x y)" and "TERM (inverse x)" .
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   231
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   232
lemmas field_rules = divide_inverse inverse_divide
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   233
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   234
lemmas normalizing_field_axioms' =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   235
  normalizing_field_axioms [normalizer
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   236
    semiring ops: semiring_ops
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   237
    semiring rules: semiring_rules
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   238
    ring ops: ring_ops
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   239
    ring rules: ring_rules
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   240
    field ops: field_ops
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   241
    field rules: field_rules]
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   242
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   243
end
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
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
locale normalizing_semiring_cancel = normalizing_semiring +
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   246
  assumes add_cancel: "add (x::'a) y = add x z \<longleftrightarrow> y = z"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   247
  and add_mul_solve: "add (mul w y) (mul x z) =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   248
    add (mul w z) (mul x y) \<longleftrightarrow> w = x \<or> y = z"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   249
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   250
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   251
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
   252
proof-
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   253
  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
   254
  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
   255
    using add_mul_solve by blast
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   256
  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
   257
    by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   258
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   259
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   260
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
   261
  \<Longrightarrow> add a (mul r c) \<noteq> add b (mul r d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   262
proof(clarify)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   263
  assume nz: "r\<noteq> r0" and cnd: "c\<noteq>d"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   264
    and eq: "add b (mul r c) = add b (mul r d)"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   265
  hence "mul r c = mul r d" using cnd add_cancel by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   266
  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
   267
    using mul_0 add_cancel by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   268
  thus "False" using add_mul_solve nz cnd by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   269
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   270
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
   271
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
   272
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
   273
  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
   274
  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
   275
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
   276
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   277
declare normalizing_semiring_axioms' [normalizer del]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   278
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   279
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
   280
  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
   281
    semiring ops: semiring_ops
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   282
    semiring rules: semiring_rules
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   283
    idom rules: noteq_reduce add_scale_eq_noteq]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   284
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   285
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   286
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   287
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
   288
  assumes subr0_iff: "sub x y = r0 \<longleftrightarrow> x = y"
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   289
begin
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   290
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   291
declare normalizing_ring_axioms' [normalizer del]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   292
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   293
lemmas normalizing_ring_cancel_axioms' = normalizing_ring_cancel_axioms [normalizer
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   294
  semiring ops: semiring_ops
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   295
  semiring rules: semiring_rules
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   296
  ring ops: ring_ops
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   297
  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
   298
  idom rules: noteq_reduce add_scale_eq_noteq
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   299
  ideal rules: subr0_iff add_r0_iff]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   300
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   301
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   302
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   303
lemma (in no_zero_divisors) prod_eq_zero_eq_zero:
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   304
  assumes "a * b = 0" and "a \<noteq> 0"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   305
  shows "b = 0"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   306
proof (rule classical)
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   307
  assume "b \<noteq> 0" with `a \<noteq> 0` no_zero_divisors have "a * b \<noteq> 0" by blast
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   308
  with `a * b = 0` show ?thesis by simp
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   309
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   310
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   311
(*FIXME introduce class*)
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   312
interpretation normalizing!: normalizing_ring_cancel
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30925
diff changeset
   313
  "op +" "op *" "op ^" "0::'a::{idom,number_ring}" "1" "op -" "uminus"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   314
proof(unfold_locales, simp add: algebra_simps, auto)
31017
2c227493ea56 stripped class recpower further
haftmann
parents: 30925
diff changeset
   315
  fix w x y z ::"'a::{idom,number_ring}"
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   316
  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
   317
  hence ynz': "y - z \<noteq> 0" by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   318
  from p have "w * y + x* z - w*z - x*y = 0" by simp
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29233
diff changeset
   319
  hence "w* (y - z) - x * (y - z) = 0" by (simp add: algebra_simps)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29233
diff changeset
   320
  hence "(y - z) * (w - x) = 0" by (simp add: algebra_simps)
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   321
  with  prod_eq_zero_eq_zero [OF _ ynz']
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   322
  have "w - x = 0" by blast
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   323
  thus "w = x"  by simp
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   324
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   325
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   326
declaration {* normalizer_funs' @{thm normalizing.normalizing_ring_cancel_axioms'} *}
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   327
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   328
interpretation normalizing_nat!: normalizing_semiring_cancel
29223
e09c53289830 Conversion of HOL-Main and ZF to new locales.
ballarin
parents: 28987
diff changeset
   329
  "op +" "op *" "op ^" "0::nat" "1"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   330
proof (unfold_locales, simp add: algebra_simps)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   331
  fix w x y z ::"nat"
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   332
  { 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
   333
    hence "y < z \<or> y > z" by arith
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   334
    moreover {
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   335
      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
   336
      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
   337
      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
   338
      hence "x*k = w*k" by simp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   339
      hence "w = x" using kp by simp }
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   340
    moreover {
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   341
      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
   342
      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
   343
      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
   344
      hence "w*k = x*k" by simp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35092
diff changeset
   345
      hence "w = x" using kp by simp }
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   346
    ultimately have "w=x" by blast }
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   347
  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
   348
qed
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   349
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   350
declaration {* normalizer_funs' @{thm normalizing_nat.normalizing_semiring_cancel_axioms'} *}
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   351
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   352
locale normalizing_field_cancel = normalizing_ring_cancel + normalizing_field
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   353
begin
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   354
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   355
declare normalizing_field_axioms' [normalizer del]
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   356
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   357
lemmas normalizing_field_cancel_axioms' = normalizing_field_cancel_axioms [normalizer
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   358
  semiring ops: semiring_ops
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   359
  semiring rules: semiring_rules
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   360
  ring ops: ring_ops
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   361
  ring rules: ring_rules
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   362
  field ops: field_ops
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   363
  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
   364
  idom rules: noteq_reduce add_scale_eq_noteq
26314
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   365
  ideal rules: subr0_iff add_r0_iff]
9c39fc898fff avoid rebinding of existing facts;
wenzelm
parents: 26199
diff changeset
   366
23327
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   367
end
1654013ec97c Added instantiation of algebra method to fields
chaieb
parents: 23312
diff changeset
   368
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   369
(*FIXME introduce class*)
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   370
interpretation normalizing!: normalizing_field_cancel "op +" "op *" "op ^"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   371
  "0::'a::{field,number_ring}" "1" "op -" "uminus" "op /" "inverse"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   372
apply (unfold_locales) by (simp_all add: divide_inverse)
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   373
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   374
lemma divide_Numeral1: "(x::'a::{field, number_ring}) / Numeral1 = x" by simp
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   375
lemma divide_Numeral0: "(x::'a::{field_inverse_zero, number_ring}) / Numeral0 = 0"
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   376
  by simp
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   377
lemma mult_frac_frac: "((x::'a::field_inverse_zero) / y) * (z / w) = (x*z) / (y*w)"
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   378
  by simp
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   379
lemma mult_frac_num: "((x::'a::field_inverse_zero) / y) * z  = (x*z) / y"
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   380
  by (fact times_divide_eq_left)
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   381
lemma mult_num_frac: "((x::'a::field_inverse_zero) / y) * z  = (x*z) / y"
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   382
  by (fact times_divide_eq_left)
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   383
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   384
lemma Numeral1_eq1_nat: "(1::nat) = Numeral1" by simp
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   385
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   386
lemma add_frac_num: "y\<noteq> 0 \<Longrightarrow> (x::'a::field_inverse_zero) / y + z = (x + z*y) / y"
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   387
  by (simp add: add_divide_distrib)
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   388
lemma add_num_frac: "y\<noteq> 0 \<Longrightarrow> z + (x::'a::field_inverse_zero) / y = (x + z*y) / y"
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   389
  by (simp add: add_divide_distrib)
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   390
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   391
ML {* 
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   392
local
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   393
 val zr = @{cpat "0"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   394
 val zT = ctyp_of_term zr
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   395
 val geq = @{cpat "op ="}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   396
 val eqT = Thm.dest_ctyp (ctyp_of_term geq) |> hd
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   397
 val add_frac_eq = mk_meta_eq @{thm "add_frac_eq"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   398
 val add_frac_num = mk_meta_eq @{thm "add_frac_num"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   399
 val add_num_frac = mk_meta_eq @{thm "add_num_frac"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   400
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   401
 fun prove_nz ss T t =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   402
    let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   403
      val z = instantiate_cterm ([(zT,T)],[]) zr
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   404
      val eq = instantiate_cterm ([(eqT,T)],[]) geq
35410
1ea89d2a1bd4 more antiquotations;
wenzelm
parents: 35216
diff changeset
   405
      val th = Simplifier.rewrite (ss addsimps @{thms simp_thms})
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   406
           (Thm.capply @{cterm "Trueprop"} (Thm.capply @{cterm "Not"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   407
                  (Thm.capply (Thm.capply eq t) z)))
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   408
    in equal_elim (symmetric th) TrueI
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   409
    end
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   410
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   411
 fun proc phi ss ct =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   412
  let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   413
    val ((x,y),(w,z)) =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   414
         (Thm.dest_binop #> (fn (a,b) => (Thm.dest_binop a, Thm.dest_binop b))) ct
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   415
    val _ = map (HOLogic.dest_number o term_of) [x,y,z,w]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   416
    val T = ctyp_of_term x
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   417
    val [y_nz, z_nz] = map (prove_nz ss T) [y, z]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   418
    val th = instantiate' [SOME T] (map SOME [y,z,x,w]) add_frac_eq
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   419
  in SOME (implies_elim (implies_elim th y_nz) z_nz)
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   420
  end
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   421
  handle CTERM _ => NONE | TERM _ => NONE | THM _ => NONE
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   422
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   423
 fun proc2 phi ss ct =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   424
  let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   425
    val (l,r) = Thm.dest_binop ct
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   426
    val T = ctyp_of_term l
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   427
  in (case (term_of l, term_of r) of
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   428
      (Const(@{const_name Rings.divide},_)$_$_, _) =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   429
        let val (x,y) = Thm.dest_binop l val z = r
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   430
            val _ = map (HOLogic.dest_number o term_of) [x,y,z]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   431
            val ynz = prove_nz ss T y
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   432
        in SOME (implies_elim (instantiate' [SOME T] (map SOME [y,x,z]) add_frac_num) ynz)
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   433
        end
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   434
     | (_, Const (@{const_name Rings.divide},_)$_$_) =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   435
        let val (x,y) = Thm.dest_binop r val z = l
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   436
            val _ = map (HOLogic.dest_number o term_of) [x,y,z]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   437
            val ynz = prove_nz ss T y
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   438
        in SOME (implies_elim (instantiate' [SOME T] (map SOME [y,z,x]) add_num_frac) ynz)
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   439
        end
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   440
     | _ => NONE)
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   441
  end
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   442
  handle CTERM _ => NONE | TERM _ => NONE | THM _ => NONE
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   443
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   444
 fun is_number (Const(@{const_name Rings.divide},_)$a$b) = is_number a andalso is_number b
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   445
   | is_number t = can HOLogic.dest_number t
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   446
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   447
 val is_number = is_number o term_of
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   448
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   449
 fun proc3 phi ss ct =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   450
  (case term_of ct of
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35084
diff changeset
   451
    Const(@{const_name Orderings.less},_)$(Const(@{const_name Rings.divide},_)$_$_)$_ =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   452
      let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   453
        val ((a,b),c) = Thm.dest_binop ct |>> Thm.dest_binop
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   454
        val _ = map is_number [a,b,c]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   455
        val T = ctyp_of_term c
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   456
        val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "divide_less_eq"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   457
      in SOME (mk_meta_eq th) end
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35084
diff changeset
   458
  | Const(@{const_name Orderings.less_eq},_)$(Const(@{const_name Rings.divide},_)$_$_)$_ =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   459
      let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   460
        val ((a,b),c) = Thm.dest_binop ct |>> Thm.dest_binop
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   461
        val _ = map is_number [a,b,c]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   462
        val T = ctyp_of_term c
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   463
        val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "divide_le_eq"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   464
      in SOME (mk_meta_eq th) end
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   465
  | Const("op =",_)$(Const(@{const_name Rings.divide},_)$_$_)$_ =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   466
      let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   467
        val ((a,b),c) = Thm.dest_binop ct |>> Thm.dest_binop
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   468
        val _ = map is_number [a,b,c]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   469
        val T = ctyp_of_term c
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   470
        val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "divide_eq_eq"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   471
      in SOME (mk_meta_eq th) end
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35084
diff changeset
   472
  | Const(@{const_name Orderings.less},_)$_$(Const(@{const_name Rings.divide},_)$_$_) =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   473
    let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   474
      val (a,(b,c)) = Thm.dest_binop ct ||> Thm.dest_binop
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   475
        val _ = map is_number [a,b,c]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   476
        val T = ctyp_of_term c
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   477
        val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "less_divide_eq"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   478
      in SOME (mk_meta_eq th) end
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35084
diff changeset
   479
  | Const(@{const_name Orderings.less_eq},_)$_$(Const(@{const_name Rings.divide},_)$_$_) =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   480
    let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   481
      val (a,(b,c)) = Thm.dest_binop ct ||> Thm.dest_binop
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   482
        val _ = map is_number [a,b,c]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   483
        val T = ctyp_of_term c
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   484
        val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "le_divide_eq"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   485
      in SOME (mk_meta_eq th) end
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   486
  | Const("op =",_)$_$(Const(@{const_name Rings.divide},_)$_$_) =>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   487
    let
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   488
      val (a,(b,c)) = Thm.dest_binop ct ||> Thm.dest_binop
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   489
        val _ = map is_number [a,b,c]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   490
        val T = ctyp_of_term c
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   491
        val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "eq_divide_eq"}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   492
      in SOME (mk_meta_eq th) end
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   493
  | _ => NONE)
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   494
  handle TERM _ => NONE | CTERM _ => NONE | THM _ => NONE
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   495
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   496
val add_frac_frac_simproc =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   497
       make_simproc {lhss = [@{cpat "(?x::?'a::field)/?y + (?w::?'a::field)/?z"}],
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   498
                     name = "add_frac_frac_simproc",
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   499
                     proc = proc, identifier = []}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   500
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   501
val add_frac_num_simproc =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   502
       make_simproc {lhss = [@{cpat "(?x::?'a::field)/?y + ?z"}, @{cpat "?z + (?x::?'a::field)/?y"}],
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   503
                     name = "add_frac_num_simproc",
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   504
                     proc = proc2, identifier = []}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   505
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   506
val ord_frac_simproc =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   507
  make_simproc
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   508
    {lhss = [@{cpat "(?a::(?'a::{field, ord}))/?b < ?c"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   509
             @{cpat "(?a::(?'a::{field, ord}))/?b \<le> ?c"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   510
             @{cpat "?c < (?a::(?'a::{field, ord}))/?b"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   511
             @{cpat "?c \<le> (?a::(?'a::{field, ord}))/?b"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   512
             @{cpat "?c = ((?a::(?'a::{field, ord}))/?b)"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   513
             @{cpat "((?a::(?'a::{field, ord}))/ ?b) = ?c"}],
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   514
             name = "ord_frac_simproc", proc = proc3, identifier = []}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   515
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   516
val ths = [@{thm "mult_numeral_1"}, @{thm "mult_numeral_1_right"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   517
           @{thm "divide_Numeral1"},
36305
dbe99291eb3c dequalified fact name
haftmann
parents: 35410
diff changeset
   518
           @{thm "divide_zero"}, @{thm "divide_Numeral0"},
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   519
           @{thm "divide_divide_eq_left"}, @{thm "mult_frac_frac"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   520
           @{thm "mult_num_frac"}, @{thm "mult_frac_num"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   521
           @{thm "mult_frac_frac"}, @{thm "times_divide_eq_right"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   522
           @{thm "times_divide_eq_left"}, @{thm "divide_divide_eq_right"},
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   523
           @{thm "diff_def"}, @{thm "minus_divide_left"},
30869
71fde5b7b43c More precise treatement of rational constants by the normalizer for fields
chaieb
parents: 30866
diff changeset
   524
           @{thm "Numeral1_eq1_nat"}, @{thm "add_divide_distrib"} RS sym,
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   525
           @{thm field_divide_inverse} RS sym, @{thm inverse_divide}, 
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   526
           Conv.fconv_rule (Conv.arg_conv (Conv.arg1_conv (Conv.rewr_conv (mk_meta_eq @{thm mult_commute}))))   
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   527
           (@{thm field_divide_inverse} RS sym)]
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   528
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   529
in
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   530
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   531
val field_comp_conv = (Simplifier.rewrite
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   532
(HOL_basic_ss addsimps @{thms "semiring_norm"}
35410
1ea89d2a1bd4 more antiquotations;
wenzelm
parents: 35216
diff changeset
   533
              addsimps ths addsimps @{thms simp_thms}
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 31017
diff changeset
   534
              addsimprocs Numeral_Simprocs.field_cancel_numeral_factors
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   535
               addsimprocs [add_frac_frac_simproc, add_frac_num_simproc,
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   536
                            ord_frac_simproc]
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   537
                addcongs [@{thm "if_weak_cong"}]))
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   538
then_conv (Simplifier.rewrite (HOL_basic_ss addsimps
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   539
  [@{thm numeral_1_eq_1},@{thm numeral_0_eq_0}] @ @{thms numerals(1-2)}))
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   540
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   541
end
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   542
*}
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   543
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   544
declaration {*
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   545
let
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   546
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   547
fun numeral_is_const ct =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   548
  case term_of ct of
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   549
   Const (@{const_name Rings.divide},_) $ a $ b =>
30866
dd5117e2d73e now deals with devision in fields
chaieb
parents: 30729
diff changeset
   550
     can HOLogic.dest_number a andalso can HOLogic.dest_number b
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   551
 | Const (@{const_name Rings.inverse},_)$t => can HOLogic.dest_number t
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   552
 | t => can HOLogic.dest_number t
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   553
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   554
fun dest_const ct = ((case term_of ct of
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   555
   Const (@{const_name Rings.divide},_) $ a $ b=>
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   556
    Rat.rat_of_quotient (snd (HOLogic.dest_number a), snd (HOLogic.dest_number b))
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   557
 | Const (@{const_name Rings.inverse},_)$t => 
30869
71fde5b7b43c More precise treatement of rational constants by the normalizer for fields
chaieb
parents: 30866
diff changeset
   558
               Rat.inv (Rat.rat_of_int (snd (HOLogic.dest_number t)))
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   559
 | t => Rat.rat_of_int (snd (HOLogic.dest_number t))) 
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   560
   handle TERM _ => error "ring_dest_const")
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   561
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   562
fun mk_const phi cT x =
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   563
 let val (a, b) = Rat.quotient_of_rat x
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   564
 in if b = 1 then Numeral.mk_cnumber cT a
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   565
    else Thm.capply
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   566
         (Thm.capply (Drule.cterm_rule (instantiate' [SOME cT] []) @{cpat "op /"})
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   567
                     (Numeral.mk_cnumber cT a))
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   568
         (Numeral.mk_cnumber cT b)
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   569
  end
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   570
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   571
in
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   572
 
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   573
  Normalizer.funs @{thm normalizing.normalizing_field_cancel_axioms'}
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   574
   {is_const = K numeral_is_const,
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   575
    dest_const = K dest_const,
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   576
    mk_const = mk_const,
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   577
    conv = K (K field_comp_conv)}
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   578
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   579
end
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   580
*}
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   581
36716
b09f3ad3208f moved generic lemmas to appropriate places
haftmann
parents: 36714
diff changeset
   582
lemmas comp_arith = semiring_norm (*FIXME*)
b09f3ad3208f moved generic lemmas to appropriate places
haftmann
parents: 36714
diff changeset
   583
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   584
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   585
subsection {* Groebner Bases *}
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   586
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   587
lemmas bool_simps = simp_thms(1-34)
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   588
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   589
lemma dnf:
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   590
    "(P & (Q | R)) = ((P&Q) | (P&R))" "((Q | R) & P) = ((Q&P) | (R&P))"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   591
    "(P \<and> Q) = (Q \<and> P)" "(P \<or> Q) = (Q \<or> P)"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   592
  by blast+
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   593
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   594
lemmas weak_dnf_simps = dnf bool_simps
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   595
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   596
lemma nnf_simps:
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   597
    "(\<not>(P \<and> Q)) = (\<not>P \<or> \<not>Q)" "(\<not>(P \<or> Q)) = (\<not>P \<and> \<not>Q)" "(P \<longrightarrow> Q) = (\<not>P \<or> Q)"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   598
    "(P = Q) = ((P \<and> Q) \<or> (\<not>P \<and> \<not> Q))" "(\<not> \<not>(P)) = P"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   599
  by blast+
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   600
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   601
lemma PFalse:
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   602
    "P \<equiv> False \<Longrightarrow> \<not> P"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   603
    "\<not> P \<Longrightarrow> (P \<equiv> False)"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   604
  by auto
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   605
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   606
ML {*
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   607
structure Algebra_Simplification = Named_Thms(
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   608
  val name = "algebra"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   609
  val description = "pre-simplification rules for algebraic methods"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   610
)
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   611
*}
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   612
36712
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   613
setup Algebra_Simplification.setup
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   614
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   615
declare dvd_def[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   616
declare dvd_eq_mod_eq_0[symmetric, algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   617
declare mod_div_trivial[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   618
declare mod_mod_trivial[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   619
declare conjunct1[OF DIVISION_BY_ZERO, algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   620
declare conjunct2[OF DIVISION_BY_ZERO, algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   621
declare zmod_zdiv_equality[symmetric,algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   622
declare zdiv_zmod_equality[symmetric, algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   623
declare zdiv_zminus_zminus[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   624
declare zmod_zminus_zminus[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   625
declare zdiv_zminus2[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   626
declare zmod_zminus2[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   627
declare zdiv_zero[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   628
declare zmod_zero[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   629
declare mod_by_1[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   630
declare div_by_1[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   631
declare zmod_minus1_right[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   632
declare zdiv_minus1_right[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   633
declare mod_div_trivial[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   634
declare mod_mod_trivial[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   635
declare mod_mult_self2_is_0[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   636
declare mod_mult_self1_is_0[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   637
declare zmod_eq_0_iff[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   638
declare dvd_0_left_iff[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   639
declare zdvd1_eq[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   640
declare zmod_eq_dvd_iff[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   641
declare nat_mod_eq_iff[algebra]
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   642
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   643
use "Tools/Groebner_Basis/groebner.ML"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   644
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   645
method_setup algebra =
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   646
{*
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   647
let
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   648
 fun keyword k = Scan.lift (Args.$$$ k -- Args.colon) >> K ()
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   649
 val addN = "add"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   650
 val delN = "del"
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   651
 val any_keyword = keyword addN || keyword delN
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   652
 val thms = Scan.repeat (Scan.unless any_keyword Attrib.multi_thm) >> flat;
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   653
in
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   654
  ((Scan.optional (keyword addN |-- thms) []) -- 
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   655
   (Scan.optional (keyword delN |-- thms) [])) >>
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   656
  (fn (add_ths, del_ths) => fn ctxt =>
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   657
       SIMPLE_METHOD' (Groebner.algebra_tac add_ths del_ths ctxt))
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   658
end
2f4c318861b3 avoid references to groebner bases in names which have no references to groebner bases
haftmann
parents: 36702
diff changeset
   659
*} "solve polynomial equations over (semi)rings and ideal membership problems using Groebner bases"
28402
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   660
09e4aa3ddc25 clarified dependencies between arith tools
haftmann
parents: 27666
diff changeset
   661
end