author | ballarin |
Wed, 19 Nov 2008 16:58:33 +0100 | |
changeset 28849 | 9458d7a6388a |
parent 28823 | dcbef866c9e2 |
child 28856 | 5e009a80fe6d |
permissions | -rw-r--r-- |
23252 | 1 |
(* Title: HOL/Groebner_Basis.thy |
2 |
ID: $Id$ |
|
3 |
Author: Amine Chaieb, TU Muenchen |
|
4 |
*) |
|
5 |
||
6 |
header {* Semiring normalization and Groebner Bases *} |
|
28402 | 7 |
|
23252 | 8 |
theory Groebner_Basis |
28402 | 9 |
imports Arith_Tools |
23252 | 10 |
uses |
11 |
"Tools/Groebner_Basis/misc.ML" |
|
12 |
"Tools/Groebner_Basis/normalizer_data.ML" |
|
13 |
("Tools/Groebner_Basis/normalizer.ML") |
|
23312 | 14 |
("Tools/Groebner_Basis/groebner.ML") |
23252 | 15 |
begin |
16 |
||
17 |
subsection {* Semiring normalization *} |
|
18 |
||
19 |
setup NormalizerData.setup |
|
20 |
||
21 |
||
23258
9062e98fdab1
renamed locale ring/semiring to gb_ring/gb_semiring to avoid clash with Ring_and_Field versions;
wenzelm
parents:
23252
diff
changeset
|
22 |
locale gb_semiring = |
23252 | 23 |
fixes add mul pwr r0 r1 |
24 |
assumes add_a:"(add x (add y z) = add (add x y) z)" |
|
25 |
and add_c: "add x y = add y x" and add_0:"add r0 x = x" |
|
26 |
and mul_a:"mul x (mul y z) = mul (mul x y) z" and mul_c:"mul x y = mul y x" |
|
27 |
and mul_1:"mul r1 x = x" and mul_0:"mul r0 x = r0" |
|
28 |
and mul_d:"mul x (add y z) = add (mul x y) (mul x z)" |
|
29 |
and pwr_0:"pwr x 0 = r1" and pwr_Suc:"pwr x (Suc n) = mul x (pwr x n)" |
|
30 |
begin |
|
31 |
||
32 |
lemma mul_pwr:"mul (pwr x p) (pwr x q) = pwr x (p + q)" |
|
33 |
proof (induct p) |
|
34 |
case 0 |
|
35 |
then show ?case by (auto simp add: pwr_0 mul_1) |
|
36 |
next |
|
37 |
case Suc |
|
38 |
from this [symmetric] show ?case |
|
39 |
by (auto simp add: pwr_Suc mul_1 mul_a) |
|
40 |
qed |
|
41 |
||
42 |
lemma pwr_mul: "pwr (mul x y) q = mul (pwr x q) (pwr y q)" |
|
43 |
proof (induct q arbitrary: x y, auto simp add:pwr_0 pwr_Suc mul_1) |
|
44 |
fix q x y |
|
45 |
assume "\<And>x y. pwr (mul x y) q = mul (pwr x q) (pwr y q)" |
|
46 |
have "mul (mul x y) (mul (pwr x q) (pwr y q)) = mul x (mul y (mul (pwr x q) (pwr y q)))" |
|
47 |
by (simp add: mul_a) |
|
48 |
also have "\<dots> = (mul (mul y (mul (pwr y q) (pwr x q))) x)" by (simp add: mul_c) |
|
49 |
also have "\<dots> = (mul (mul y (pwr y q)) (mul (pwr x q) x))" by (simp add: mul_a) |
|
50 |
finally show "mul (mul x y) (mul (pwr x q) (pwr y q)) = |
|
51 |
mul (mul x (pwr x q)) (mul y (pwr y q))" by (simp add: mul_c) |
|
52 |
qed |
|
53 |
||
54 |
lemma pwr_pwr: "pwr (pwr x p) q = pwr x (p * q)" |
|
55 |
proof (induct p arbitrary: q) |
|
56 |
case 0 |
|
57 |
show ?case using pwr_Suc mul_1 pwr_0 by (induct q) auto |
|
58 |
next |
|
59 |
case Suc |
|
60 |
thus ?case by (auto simp add: mul_pwr [symmetric] pwr_mul pwr_Suc) |
|
61 |
qed |
|
62 |
||
63 |
||
64 |
subsubsection {* Declaring the abstract theory *} |
|
65 |
||
66 |
lemma semiring_ops: |
|
28699
32b6a8f12c1c
Removed 'includes meta_term_syntax' and 'includes meta_conjunction_syntax'.
ballarin
parents:
28402
diff
changeset
|
67 |
fixes meta_term :: "'a => prop" ("TERM _") |
23252 | 68 |
shows "TERM (add x y)" and "TERM (mul x y)" and "TERM (pwr x n)" |
69 |
and "TERM r0" and "TERM r1" |
|
70 |
by rule+ |
|
71 |
||
72 |
lemma semiring_rules: |
|
73 |
"add (mul a m) (mul b m) = mul (add a b) m" |
|
74 |
"add (mul a m) m = mul (add a r1) m" |
|
75 |
"add m (mul a m) = mul (add a r1) m" |
|
76 |
"add m m = mul (add r1 r1) m" |
|
77 |
"add r0 a = a" |
|
78 |
"add a r0 = a" |
|
79 |
"mul a b = mul b a" |
|
80 |
"mul (add a b) c = add (mul a c) (mul b c)" |
|
81 |
"mul r0 a = r0" |
|
82 |
"mul a r0 = r0" |
|
83 |
"mul r1 a = a" |
|
84 |
"mul a r1 = a" |
|
85 |
"mul (mul lx ly) (mul rx ry) = mul (mul lx rx) (mul ly ry)" |
|
86 |
"mul (mul lx ly) (mul rx ry) = mul lx (mul ly (mul rx ry))" |
|
87 |
"mul (mul lx ly) (mul rx ry) = mul rx (mul (mul lx ly) ry)" |
|
88 |
"mul (mul lx ly) rx = mul (mul lx rx) ly" |
|
89 |
"mul (mul lx ly) rx = mul lx (mul ly rx)" |
|
90 |
"mul lx (mul rx ry) = mul (mul lx rx) ry" |
|
91 |
"mul lx (mul rx ry) = mul rx (mul lx ry)" |
|
92 |
"add (add a b) (add c d) = add (add a c) (add b d)" |
|
93 |
"add (add a b) c = add a (add b c)" |
|
94 |
"add a (add c d) = add c (add a d)" |
|
95 |
"add (add a b) c = add (add a c) b" |
|
96 |
"add a c = add c a" |
|
97 |
"add a (add c d) = add (add a c) d" |
|
98 |
"mul (pwr x p) (pwr x q) = pwr x (p + q)" |
|
99 |
"mul x (pwr x q) = pwr x (Suc q)" |
|
100 |
"mul (pwr x q) x = pwr x (Suc q)" |
|
101 |
"mul x x = pwr x 2" |
|
102 |
"pwr (mul x y) q = mul (pwr x q) (pwr y q)" |
|
103 |
"pwr (pwr x p) q = pwr x (p * q)" |
|
104 |
"pwr x 0 = r1" |
|
105 |
"pwr x 1 = x" |
|
106 |
"mul x (add y z) = add (mul x y) (mul x z)" |
|
107 |
"pwr x (Suc q) = mul x (pwr x q)" |
|
108 |
"pwr x (2*n) = mul (pwr x n) (pwr x n)" |
|
109 |
"pwr x (Suc (2*n)) = mul x (mul (pwr x n) (pwr x n))" |
|
110 |
proof - |
|
111 |
show "add (mul a m) (mul b m) = mul (add a b) m" using mul_d mul_c by simp |
|
112 |
next show"add (mul a m) m = mul (add a r1) m" using mul_d mul_c mul_1 by simp |
|
113 |
next show "add m (mul a m) = mul (add a r1) m" using mul_c mul_d mul_1 add_c by simp |
|
114 |
next show "add m m = mul (add r1 r1) m" using mul_c mul_d mul_1 by simp |
|
115 |
next show "add r0 a = a" using add_0 by simp |
|
116 |
next show "add a r0 = a" using add_0 add_c by simp |
|
117 |
next show "mul a b = mul b a" using mul_c by simp |
|
118 |
next show "mul (add a b) c = add (mul a c) (mul b c)" using mul_c mul_d by simp |
|
119 |
next show "mul r0 a = r0" using mul_0 by simp |
|
120 |
next show "mul a r0 = r0" using mul_0 mul_c by simp |
|
121 |
next show "mul r1 a = a" using mul_1 by simp |
|
122 |
next show "mul a r1 = a" using mul_1 mul_c by simp |
|
123 |
next show "mul (mul lx ly) (mul rx ry) = mul (mul lx rx) (mul ly ry)" |
|
124 |
using mul_c mul_a by simp |
|
125 |
next show "mul (mul lx ly) (mul rx ry) = mul lx (mul ly (mul rx ry))" |
|
126 |
using mul_a by simp |
|
127 |
next |
|
128 |
have "mul (mul lx ly) (mul rx ry) = mul (mul rx ry) (mul lx ly)" by (rule mul_c) |
|
129 |
also have "\<dots> = mul rx (mul ry (mul lx ly))" using mul_a by simp |
|
130 |
finally |
|
131 |
show "mul (mul lx ly) (mul rx ry) = mul rx (mul (mul lx ly) ry)" |
|
132 |
using mul_c by simp |
|
133 |
next show "mul (mul lx ly) rx = mul (mul lx rx) ly" using mul_c mul_a by simp |
|
134 |
next |
|
135 |
show "mul (mul lx ly) rx = mul lx (mul ly rx)" by (simp add: mul_a) |
|
136 |
next show "mul lx (mul rx ry) = mul (mul lx rx) ry" by (simp add: mul_a ) |
|
137 |
next show "mul lx (mul rx ry) = mul rx (mul lx ry)" by (simp add: mul_a,simp add: mul_c) |
|
138 |
next show "add (add a b) (add c d) = add (add a c) (add b d)" |
|
139 |
using add_c add_a by simp |
|
140 |
next show "add (add a b) c = add a (add b c)" using add_a by simp |
|
141 |
next show "add a (add c d) = add c (add a d)" |
|
142 |
apply (simp add: add_a) by (simp only: add_c) |
|
143 |
next show "add (add a b) c = add (add a c) b" using add_a add_c by simp |
|
144 |
next show "add a c = add c a" by (rule add_c) |
|
145 |
next show "add a (add c d) = add (add a c) d" using add_a by simp |
|
146 |
next show "mul (pwr x p) (pwr x q) = pwr x (p + q)" by (rule mul_pwr) |
|
147 |
next show "mul x (pwr x q) = pwr x (Suc q)" using pwr_Suc by simp |
|
148 |
next show "mul (pwr x q) x = pwr x (Suc q)" using pwr_Suc mul_c by simp |
|
149 |
next show "mul x x = pwr x 2" by (simp add: nat_number pwr_Suc pwr_0 mul_1 mul_c) |
|
150 |
next show "pwr (mul x y) q = mul (pwr x q) (pwr y q)" by (rule pwr_mul) |
|
151 |
next show "pwr (pwr x p) q = pwr x (p * q)" by (rule pwr_pwr) |
|
152 |
next show "pwr x 0 = r1" using pwr_0 . |
|
153 |
next show "pwr x 1 = x" by (simp add: nat_number pwr_Suc pwr_0 mul_1 mul_c) |
|
154 |
next show "mul x (add y z) = add (mul x y) (mul x z)" using mul_d by simp |
|
155 |
next show "pwr x (Suc q) = mul x (pwr x q)" using pwr_Suc by simp |
|
156 |
next show "pwr x (2 * n) = mul (pwr x n) (pwr x n)" by (simp add: nat_number mul_pwr) |
|
157 |
next show "pwr x (Suc (2 * n)) = mul x (mul (pwr x n) (pwr x n))" |
|
158 |
by (simp add: nat_number pwr_Suc mul_pwr) |
|
159 |
qed |
|
160 |
||
161 |
||
26462 | 162 |
lemmas gb_semiring_axioms' = |
26314 | 163 |
gb_semiring_axioms [normalizer |
23252 | 164 |
semiring ops: semiring_ops |
26314 | 165 |
semiring rules: semiring_rules] |
23252 | 166 |
|
167 |
end |
|
168 |
||
23258
9062e98fdab1
renamed locale ring/semiring to gb_ring/gb_semiring to avoid clash with Ring_and_Field versions;
wenzelm
parents:
23252
diff
changeset
|
169 |
interpretation class_semiring: gb_semiring |
23252 | 170 |
["op +" "op *" "op ^" "0::'a::{comm_semiring_1, recpower}" "1"] |
28823 | 171 |
proof qed (auto simp add: ring_simps power_Suc) |
23252 | 172 |
|
173 |
lemmas nat_arith = |
|
174 |
add_nat_number_of diff_nat_number_of mult_nat_number_of eq_nat_number_of less_nat_number_of |
|
175 |
||
176 |
lemma not_iszero_Numeral1: "\<not> iszero (Numeral1::'a::number_ring)" |
|
177 |
by (simp add: numeral_1_eq_1) |
|
178 |
lemmas comp_arith = Let_def arith_simps nat_arith rel_simps if_False |
|
179 |
if_True add_0 add_Suc add_number_of_left mult_number_of_left |
|
180 |
numeral_1_eq_1[symmetric] Suc_eq_add_numeral_1 |
|
181 |
numeral_0_eq_0[symmetric] numerals[symmetric] not_iszero_1 |
|
26086
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents:
25250
diff
changeset
|
182 |
iszero_number_of_Bit1 iszero_number_of_Bit0 nonzero_number_of_Min |
23252 | 183 |
iszero_number_of_Pls iszero_0 not_iszero_Numeral1 |
184 |
||
185 |
lemmas semiring_norm = comp_arith |
|
186 |
||
187 |
ML {* |
|
23573 | 188 |
local |
23252 | 189 |
|
23573 | 190 |
open Conv; |
191 |
||
192 |
fun numeral_is_const ct = |
|
193 |
can HOLogic.dest_number (Thm.term_of ct); |
|
23252 | 194 |
|
23573 | 195 |
fun int_of_rat x = |
196 |
(case Rat.quotient_of_rat x of (i, 1) => i |
|
197 |
| _ => error "int_of_rat: bad int"); |
|
23252 | 198 |
|
23573 | 199 |
val numeral_conv = |
200 |
Simplifier.rewrite (HOL_basic_ss addsimps @{thms semiring_norm}) then_conv |
|
201 |
Simplifier.rewrite (HOL_basic_ss addsimps |
|
202 |
(@{thms numeral_1_eq_1} @ @{thms numeral_0_eq_0} @ @{thms numerals(1-2)})); |
|
203 |
||
204 |
in |
|
205 |
||
206 |
fun normalizer_funs key = |
|
207 |
NormalizerData.funs key |
|
23252 | 208 |
{is_const = fn phi => numeral_is_const, |
209 |
dest_const = fn phi => fn ct => |
|
210 |
Rat.rat_of_int (snd |
|
211 |
(HOLogic.dest_number (Thm.term_of ct) |
|
212 |
handle TERM _ => error "ring_dest_const")), |
|
23573 | 213 |
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
|
214 |
conv = fn phi => K numeral_conv} |
23573 | 215 |
|
216 |
end |
|
23252 | 217 |
*} |
218 |
||
26462 | 219 |
declaration {* normalizer_funs @{thm class_semiring.gb_semiring_axioms'} *} |
23573 | 220 |
|
23252 | 221 |
|
23258
9062e98fdab1
renamed locale ring/semiring to gb_ring/gb_semiring to avoid clash with Ring_and_Field versions;
wenzelm
parents:
23252
diff
changeset
|
222 |
locale gb_ring = gb_semiring + |
23252 | 223 |
fixes sub :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" |
224 |
and neg :: "'a \<Rightarrow> 'a" |
|
225 |
assumes neg_mul: "neg x = mul (neg r1) x" |
|
226 |
and sub_add: "sub x y = add x (neg y)" |
|
227 |
begin |
|
228 |
||
229 |
lemma ring_ops: |
|
28699
32b6a8f12c1c
Removed 'includes meta_term_syntax' and 'includes meta_conjunction_syntax'.
ballarin
parents:
28402
diff
changeset
|
230 |
fixes meta_term :: "'a => prop" ("TERM _") |
23252 | 231 |
shows "TERM (sub x y)" and "TERM (neg x)" . |
232 |
||
233 |
lemmas ring_rules = neg_mul sub_add |
|
234 |
||
26462 | 235 |
lemmas gb_ring_axioms' = |
26314 | 236 |
gb_ring_axioms [normalizer |
237 |
semiring ops: semiring_ops |
|
238 |
semiring rules: semiring_rules |
|
239 |
ring ops: ring_ops |
|
240 |
ring rules: ring_rules] |
|
23252 | 241 |
|
242 |
end |
|
243 |
||
244 |
||
23258
9062e98fdab1
renamed locale ring/semiring to gb_ring/gb_semiring to avoid clash with Ring_and_Field versions;
wenzelm
parents:
23252
diff
changeset
|
245 |
interpretation class_ring: gb_ring ["op +" "op *" "op ^" |
23252 | 246 |
"0::'a::{comm_semiring_1,recpower,number_ring}" 1 "op -" "uminus"] |
28823 | 247 |
proof qed simp_all |
23252 | 248 |
|
249 |
||
26462 | 250 |
declaration {* normalizer_funs @{thm class_ring.gb_ring_axioms'} *} |
23252 | 251 |
|
252 |
use "Tools/Groebner_Basis/normalizer.ML" |
|
253 |
||
27666 | 254 |
|
23252 | 255 |
method_setup sring_norm = {* |
256 |
Method.ctxt_args (fn ctxt => Method.SIMPLE_METHOD' (Normalizer.semiring_normalize_tac ctxt)) |
|
23458 | 257 |
*} "semiring normalizer" |
23252 | 258 |
|
259 |
||
23327 | 260 |
locale gb_field = gb_ring + |
261 |
fixes divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" |
|
262 |
and inverse:: "'a \<Rightarrow> 'a" |
|
263 |
assumes divide: "divide x y = mul x (inverse y)" |
|
264 |
and inverse: "inverse x = divide r1 x" |
|
265 |
begin |
|
266 |
||
26462 | 267 |
lemmas gb_field_axioms' = |
26314 | 268 |
gb_field_axioms [normalizer |
269 |
semiring ops: semiring_ops |
|
270 |
semiring rules: semiring_rules |
|
271 |
ring ops: ring_ops |
|
272 |
ring rules: ring_rules] |
|
23327 | 273 |
|
274 |
end |
|
275 |
||
23458 | 276 |
|
23266 | 277 |
subsection {* Groebner Bases *} |
23252 | 278 |
|
23258
9062e98fdab1
renamed locale ring/semiring to gb_ring/gb_semiring to avoid clash with Ring_and_Field versions;
wenzelm
parents:
23252
diff
changeset
|
279 |
locale semiringb = gb_semiring + |
23252 | 280 |
assumes add_cancel: "add (x::'a) y = add x z \<longleftrightarrow> y = z" |
281 |
and add_mul_solve: "add (mul w y) (mul x z) = |
|
282 |
add (mul w z) (mul x y) \<longleftrightarrow> w = x \<or> y = z" |
|
283 |
begin |
|
284 |
||
285 |
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)" |
|
286 |
proof- |
|
287 |
have "a \<noteq> b \<and> c \<noteq> d \<longleftrightarrow> \<not> (a = b \<or> c = d)" by simp |
|
288 |
also have "\<dots> \<longleftrightarrow> add (mul a c) (mul b d) \<noteq> add (mul a d) (mul b c)" |
|
289 |
using add_mul_solve by blast |
|
290 |
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)" |
|
291 |
by simp |
|
292 |
qed |
|
293 |
||
294 |
lemma add_scale_eq_noteq: "\<lbrakk>r \<noteq> r0 ; (a = b) \<and> ~(c = d)\<rbrakk> |
|
295 |
\<Longrightarrow> add a (mul r c) \<noteq> add b (mul r d)" |
|
296 |
proof(clarify) |
|
297 |
assume nz: "r\<noteq> r0" and cnd: "c\<noteq>d" |
|
298 |
and eq: "add b (mul r c) = add b (mul r d)" |
|
299 |
hence "mul r c = mul r d" using cnd add_cancel by simp |
|
300 |
hence "add (mul r0 d) (mul r c) = add (mul r0 c) (mul r d)" |
|
301 |
using mul_0 add_cancel by simp |
|
302 |
thus "False" using add_mul_solve nz cnd by simp |
|
303 |
qed |
|
304 |
||
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
|
305 |
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
|
306 |
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
|
307 |
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
|
308 |
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
|
309 |
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
|
310 |
|
26462 | 311 |
declare gb_semiring_axioms' [normalizer del] |
23252 | 312 |
|
26462 | 313 |
lemmas semiringb_axioms' = semiringb_axioms [normalizer |
23252 | 314 |
semiring ops: semiring_ops |
315 |
semiring rules: semiring_rules |
|
26314 | 316 |
idom rules: noteq_reduce add_scale_eq_noteq] |
23252 | 317 |
|
318 |
end |
|
319 |
||
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
|
320 |
locale ringb = semiringb + gb_ring + |
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
|
321 |
assumes subr0_iff: "sub x y = r0 \<longleftrightarrow> x = y" |
23252 | 322 |
begin |
323 |
||
26462 | 324 |
declare gb_ring_axioms' [normalizer del] |
23252 | 325 |
|
26462 | 326 |
lemmas ringb_axioms' = ringb_axioms [normalizer |
23252 | 327 |
semiring ops: semiring_ops |
328 |
semiring rules: semiring_rules |
|
329 |
ring ops: ring_ops |
|
330 |
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
|
331 |
idom rules: noteq_reduce add_scale_eq_noteq |
26314 | 332 |
ideal rules: subr0_iff add_r0_iff] |
23252 | 333 |
|
334 |
end |
|
335 |
||
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
|
336 |
|
23252 | 337 |
lemma no_zero_divirors_neq0: |
338 |
assumes az: "(a::'a::no_zero_divisors) \<noteq> 0" |
|
339 |
and ab: "a*b = 0" shows "b = 0" |
|
340 |
proof - |
|
341 |
{ assume bz: "b \<noteq> 0" |
|
342 |
from no_zero_divisors [OF az bz] ab have False by blast } |
|
343 |
thus "b = 0" by blast |
|
344 |
qed |
|
345 |
||
346 |
interpretation class_ringb: ringb |
|
347 |
["op +" "op *" "op ^" "0::'a::{idom,recpower,number_ring}" "1" "op -" "uminus"] |
|
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23458
diff
changeset
|
348 |
proof(unfold_locales, simp add: ring_simps power_Suc, auto) |
23252 | 349 |
fix w x y z ::"'a::{idom,recpower,number_ring}" |
350 |
assume p: "w * y + x * z = w * z + x * y" and ynz: "y \<noteq> z" |
|
351 |
hence ynz': "y - z \<noteq> 0" by simp |
|
352 |
from p have "w * y + x* z - w*z - x*y = 0" by simp |
|
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23458
diff
changeset
|
353 |
hence "w* (y - z) - x * (y - z) = 0" by (simp add: ring_simps) |
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23458
diff
changeset
|
354 |
hence "(y - z) * (w - x) = 0" by (simp add: ring_simps) |
23252 | 355 |
with no_zero_divirors_neq0 [OF ynz'] |
356 |
have "w - x = 0" by blast |
|
357 |
thus "w = x" by simp |
|
358 |
qed |
|
359 |
||
26462 | 360 |
declaration {* normalizer_funs @{thm class_ringb.ringb_axioms'} *} |
23252 | 361 |
|
362 |
interpretation natgb: semiringb |
|
363 |
["op +" "op *" "op ^" "0::nat" "1"] |
|
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23458
diff
changeset
|
364 |
proof (unfold_locales, simp add: ring_simps power_Suc) |
23252 | 365 |
fix w x y z ::"nat" |
366 |
{ assume p: "w * y + x * z = w * z + x * y" and ynz: "y \<noteq> z" |
|
367 |
hence "y < z \<or> y > z" by arith |
|
368 |
moreover { |
|
369 |
assume lt:"y <z" hence "\<exists>k. z = y + k \<and> k > 0" by (rule_tac x="z - y" in exI, auto) |
|
370 |
then obtain k where kp: "k>0" and yz:"z = y + k" by blast |
|
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23458
diff
changeset
|
371 |
from p have "(w * y + x *y) + x*k = (w * y + x*y) + w*k" by (simp add: yz ring_simps) |
23252 | 372 |
hence "x*k = w*k" by simp |
373 |
hence "w = x" using kp by (simp add: mult_cancel2) } |
|
374 |
moreover { |
|
375 |
assume lt: "y >z" hence "\<exists>k. y = z + k \<and> k>0" by (rule_tac x="y - z" in exI, auto) |
|
376 |
then obtain k where kp: "k>0" and yz:"y = z + k" by blast |
|
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23458
diff
changeset
|
377 |
from p have "(w * z + x *z) + w*k = (w * z + x*z) + x*k" by (simp add: yz ring_simps) |
23252 | 378 |
hence "w*k = x*k" by simp |
379 |
hence "w = x" using kp by (simp add: mult_cancel2)} |
|
380 |
ultimately have "w=x" by blast } |
|
381 |
thus "(w * y + x * z = w * z + x * y) = (w = x \<or> y = z)" by auto |
|
382 |
qed |
|
383 |
||
26462 | 384 |
declaration {* normalizer_funs @{thm natgb.semiringb_axioms'} *} |
23252 | 385 |
|
23327 | 386 |
locale fieldgb = ringb + gb_field |
387 |
begin |
|
388 |
||
26462 | 389 |
declare gb_field_axioms' [normalizer del] |
23327 | 390 |
|
26462 | 391 |
lemmas fieldgb_axioms' = fieldgb_axioms [normalizer |
23327 | 392 |
semiring ops: semiring_ops |
393 |
semiring rules: semiring_rules |
|
394 |
ring ops: ring_ops |
|
395 |
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
|
396 |
idom rules: noteq_reduce add_scale_eq_noteq |
26314 | 397 |
ideal rules: subr0_iff add_r0_iff] |
398 |
||
23327 | 399 |
end |
400 |
||
401 |
||
23258
9062e98fdab1
renamed locale ring/semiring to gb_ring/gb_semiring to avoid clash with Ring_and_Field versions;
wenzelm
parents:
23252
diff
changeset
|
402 |
lemmas bool_simps = simp_thms(1-34) |
23252 | 403 |
lemma dnf: |
404 |
"(P & (Q | R)) = ((P&Q) | (P&R))" "((Q | R) & P) = ((Q&P) | (R&P))" |
|
405 |
"(P \<and> Q) = (Q \<and> P)" "(P \<or> Q) = (Q \<or> P)" |
|
406 |
by blast+ |
|
407 |
||
408 |
lemmas weak_dnf_simps = dnf bool_simps |
|
409 |
||
410 |
lemma nnf_simps: |
|
411 |
"(\<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)" |
|
412 |
"(P = Q) = ((P \<and> Q) \<or> (\<not>P \<and> \<not> Q))" "(\<not> \<not>(P)) = P" |
|
413 |
by blast+ |
|
414 |
||
415 |
lemma PFalse: |
|
416 |
"P \<equiv> False \<Longrightarrow> \<not> P" |
|
417 |
"\<not> P \<Longrightarrow> (P \<equiv> False)" |
|
418 |
by auto |
|
419 |
use "Tools/Groebner_Basis/groebner.ML" |
|
420 |
||
23332
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
421 |
method_setup algebra = |
23458 | 422 |
{* |
23332
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
423 |
let |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
424 |
fun keyword k = Scan.lift (Args.$$$ k -- Args.colon) >> K () |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
425 |
val addN = "add" |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
426 |
val delN = "del" |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
427 |
val any_keyword = keyword addN || keyword delN |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
428 |
val thms = Scan.repeat (Scan.unless any_keyword Attrib.multi_thm) >> flat; |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
429 |
in |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
430 |
fn src => Method.syntax |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
431 |
((Scan.optional (keyword addN |-- thms) []) -- |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
432 |
(Scan.optional (keyword delN |-- thms) [])) src |
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
433 |
#> (fn ((add_ths, del_ths), ctxt) => |
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
|
434 |
Method.SIMPLE_METHOD' (Groebner.algebra_tac add_ths del_ths ctxt)) |
23332
b91295432e6d
algebra_tac moved to file Tools/Groebner_Basis/groebner.ML; Method now takes theorems to be added or deleted from a simpset for simplificatio *before* the core method starts
chaieb
parents:
23330
diff
changeset
|
435 |
end |
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
|
436 |
*} "solve polynomial equations over (semi)rings and ideal membership problems using Groebner bases" |
27666 | 437 |
declare dvd_def[algebra] |
438 |
declare dvd_eq_mod_eq_0[symmetric, algebra] |
|
439 |
declare nat_mod_div_trivial[algebra] |
|
440 |
declare nat_mod_mod_trivial[algebra] |
|
441 |
declare conjunct1[OF DIVISION_BY_ZERO, algebra] |
|
442 |
declare conjunct2[OF DIVISION_BY_ZERO, algebra] |
|
443 |
declare zmod_zdiv_equality[symmetric,algebra] |
|
444 |
declare zdiv_zmod_equality[symmetric, algebra] |
|
445 |
declare zdiv_zminus_zminus[algebra] |
|
446 |
declare zmod_zminus_zminus[algebra] |
|
447 |
declare zdiv_zminus2[algebra] |
|
448 |
declare zmod_zminus2[algebra] |
|
449 |
declare zdiv_zero[algebra] |
|
450 |
declare zmod_zero[algebra] |
|
451 |
declare zmod_1[algebra] |
|
452 |
declare zdiv_1[algebra] |
|
453 |
declare zmod_minus1_right[algebra] |
|
454 |
declare zdiv_minus1_right[algebra] |
|
455 |
declare mod_div_trivial[algebra] |
|
456 |
declare mod_mod_trivial[algebra] |
|
457 |
declare zmod_zmult_self1[algebra] |
|
458 |
declare zmod_zmult_self2[algebra] |
|
459 |
declare zmod_eq_0_iff[algebra] |
|
460 |
declare zdvd_0_left[algebra] |
|
461 |
declare zdvd1_eq[algebra] |
|
462 |
declare zmod_eq_dvd_iff[algebra] |
|
463 |
declare nat_mod_eq_iff[algebra] |
|
23252 | 464 |
|
28402 | 465 |
|
466 |
subsection{* Groebner Bases for fields *} |
|
467 |
||
468 |
interpretation class_fieldgb: |
|
469 |
fieldgb["op +" "op *" "op ^" "0::'a::{field,recpower,number_ring}" "1" "op -" "uminus" "op /" "inverse"] apply (unfold_locales) by (simp_all add: divide_inverse) |
|
470 |
||
471 |
lemma divide_Numeral1: "(x::'a::{field,number_ring}) / Numeral1 = x" by simp |
|
472 |
lemma divide_Numeral0: "(x::'a::{field,number_ring, division_by_zero}) / Numeral0 = 0" |
|
473 |
by simp |
|
474 |
lemma mult_frac_frac: "((x::'a::{field,division_by_zero}) / y) * (z / w) = (x*z) / (y*w)" |
|
475 |
by simp |
|
476 |
lemma mult_frac_num: "((x::'a::{field, division_by_zero}) / y) * z = (x*z) / y" |
|
477 |
by simp |
|
478 |
lemma mult_num_frac: "((x::'a::{field, division_by_zero}) / y) * z = (x*z) / y" |
|
479 |
by simp |
|
480 |
||
481 |
lemma Numeral1_eq1_nat: "(1::nat) = Numeral1" by simp |
|
482 |
||
483 |
lemma add_frac_num: "y\<noteq> 0 \<Longrightarrow> (x::'a::{field, division_by_zero}) / y + z = (x + z*y) / y" |
|
484 |
by (simp add: add_divide_distrib) |
|
485 |
lemma add_num_frac: "y\<noteq> 0 \<Longrightarrow> z + (x::'a::{field, division_by_zero}) / y = (x + z*y) / y" |
|
486 |
by (simp add: add_divide_distrib) |
|
487 |
||
488 |
||
489 |
ML{* |
|
490 |
local |
|
491 |
val zr = @{cpat "0"} |
|
492 |
val zT = ctyp_of_term zr |
|
493 |
val geq = @{cpat "op ="} |
|
494 |
val eqT = Thm.dest_ctyp (ctyp_of_term geq) |> hd |
|
495 |
val add_frac_eq = mk_meta_eq @{thm "add_frac_eq"} |
|
496 |
val add_frac_num = mk_meta_eq @{thm "add_frac_num"} |
|
497 |
val add_num_frac = mk_meta_eq @{thm "add_num_frac"} |
|
498 |
||
499 |
fun prove_nz ss T t = |
|
500 |
let |
|
501 |
val z = instantiate_cterm ([(zT,T)],[]) zr |
|
502 |
val eq = instantiate_cterm ([(eqT,T)],[]) geq |
|
503 |
val th = Simplifier.rewrite (ss addsimps simp_thms) |
|
504 |
(Thm.capply @{cterm "Trueprop"} (Thm.capply @{cterm "Not"} |
|
505 |
(Thm.capply (Thm.capply eq t) z))) |
|
506 |
in equal_elim (symmetric th) TrueI |
|
507 |
end |
|
508 |
||
509 |
fun proc phi ss ct = |
|
510 |
let |
|
511 |
val ((x,y),(w,z)) = |
|
512 |
(Thm.dest_binop #> (fn (a,b) => (Thm.dest_binop a, Thm.dest_binop b))) ct |
|
513 |
val _ = map (HOLogic.dest_number o term_of) [x,y,z,w] |
|
514 |
val T = ctyp_of_term x |
|
515 |
val [y_nz, z_nz] = map (prove_nz ss T) [y, z] |
|
516 |
val th = instantiate' [SOME T] (map SOME [y,z,x,w]) add_frac_eq |
|
517 |
in SOME (implies_elim (implies_elim th y_nz) z_nz) |
|
518 |
end |
|
519 |
handle CTERM _ => NONE | TERM _ => NONE | THM _ => NONE |
|
520 |
||
521 |
fun proc2 phi ss ct = |
|
522 |
let |
|
523 |
val (l,r) = Thm.dest_binop ct |
|
524 |
val T = ctyp_of_term l |
|
525 |
in (case (term_of l, term_of r) of |
|
526 |
(Const(@{const_name "HOL.divide"},_)$_$_, _) => |
|
527 |
let val (x,y) = Thm.dest_binop l val z = r |
|
528 |
val _ = map (HOLogic.dest_number o term_of) [x,y,z] |
|
529 |
val ynz = prove_nz ss T y |
|
530 |
in SOME (implies_elim (instantiate' [SOME T] (map SOME [y,x,z]) add_frac_num) ynz) |
|
531 |
end |
|
532 |
| (_, Const (@{const_name "HOL.divide"},_)$_$_) => |
|
533 |
let val (x,y) = Thm.dest_binop r val z = l |
|
534 |
val _ = map (HOLogic.dest_number o term_of) [x,y,z] |
|
535 |
val ynz = prove_nz ss T y |
|
536 |
in SOME (implies_elim (instantiate' [SOME T] (map SOME [y,z,x]) add_num_frac) ynz) |
|
537 |
end |
|
538 |
| _ => NONE) |
|
539 |
end |
|
540 |
handle CTERM _ => NONE | TERM _ => NONE | THM _ => NONE |
|
541 |
||
542 |
fun is_number (Const(@{const_name "HOL.divide"},_)$a$b) = is_number a andalso is_number b |
|
543 |
| is_number t = can HOLogic.dest_number t |
|
544 |
||
545 |
val is_number = is_number o term_of |
|
546 |
||
547 |
fun proc3 phi ss ct = |
|
548 |
(case term_of ct of |
|
549 |
Const(@{const_name HOL.less},_)$(Const(@{const_name "HOL.divide"},_)$_$_)$_ => |
|
550 |
let |
|
551 |
val ((a,b),c) = Thm.dest_binop ct |>> Thm.dest_binop |
|
552 |
val _ = map is_number [a,b,c] |
|
553 |
val T = ctyp_of_term c |
|
554 |
val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "divide_less_eq"} |
|
555 |
in SOME (mk_meta_eq th) end |
|
556 |
| Const(@{const_name HOL.less_eq},_)$(Const(@{const_name "HOL.divide"},_)$_$_)$_ => |
|
557 |
let |
|
558 |
val ((a,b),c) = Thm.dest_binop ct |>> Thm.dest_binop |
|
559 |
val _ = map is_number [a,b,c] |
|
560 |
val T = ctyp_of_term c |
|
561 |
val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "divide_le_eq"} |
|
562 |
in SOME (mk_meta_eq th) end |
|
563 |
| Const("op =",_)$(Const(@{const_name "HOL.divide"},_)$_$_)$_ => |
|
564 |
let |
|
565 |
val ((a,b),c) = Thm.dest_binop ct |>> Thm.dest_binop |
|
566 |
val _ = map is_number [a,b,c] |
|
567 |
val T = ctyp_of_term c |
|
568 |
val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "divide_eq_eq"} |
|
569 |
in SOME (mk_meta_eq th) end |
|
570 |
| Const(@{const_name HOL.less},_)$_$(Const(@{const_name "HOL.divide"},_)$_$_) => |
|
571 |
let |
|
572 |
val (a,(b,c)) = Thm.dest_binop ct ||> Thm.dest_binop |
|
573 |
val _ = map is_number [a,b,c] |
|
574 |
val T = ctyp_of_term c |
|
575 |
val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "less_divide_eq"} |
|
576 |
in SOME (mk_meta_eq th) end |
|
577 |
| Const(@{const_name HOL.less_eq},_)$_$(Const(@{const_name "HOL.divide"},_)$_$_) => |
|
578 |
let |
|
579 |
val (a,(b,c)) = Thm.dest_binop ct ||> Thm.dest_binop |
|
580 |
val _ = map is_number [a,b,c] |
|
581 |
val T = ctyp_of_term c |
|
582 |
val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "le_divide_eq"} |
|
583 |
in SOME (mk_meta_eq th) end |
|
584 |
| Const("op =",_)$_$(Const(@{const_name "HOL.divide"},_)$_$_) => |
|
585 |
let |
|
586 |
val (a,(b,c)) = Thm.dest_binop ct ||> Thm.dest_binop |
|
587 |
val _ = map is_number [a,b,c] |
|
588 |
val T = ctyp_of_term c |
|
589 |
val th = instantiate' [SOME T] (map SOME [a,b,c]) @{thm "eq_divide_eq"} |
|
590 |
in SOME (mk_meta_eq th) end |
|
591 |
| _ => NONE) |
|
592 |
handle TERM _ => NONE | CTERM _ => NONE | THM _ => NONE |
|
593 |
||
594 |
val add_frac_frac_simproc = |
|
595 |
make_simproc {lhss = [@{cpat "(?x::?'a::field)/?y + (?w::?'a::field)/?z"}], |
|
596 |
name = "add_frac_frac_simproc", |
|
597 |
proc = proc, identifier = []} |
|
598 |
||
599 |
val add_frac_num_simproc = |
|
600 |
make_simproc {lhss = [@{cpat "(?x::?'a::field)/?y + ?z"}, @{cpat "?z + (?x::?'a::field)/?y"}], |
|
601 |
name = "add_frac_num_simproc", |
|
602 |
proc = proc2, identifier = []} |
|
603 |
||
604 |
val ord_frac_simproc = |
|
605 |
make_simproc |
|
606 |
{lhss = [@{cpat "(?a::(?'a::{field, ord}))/?b < ?c"}, |
|
607 |
@{cpat "(?a::(?'a::{field, ord}))/?b \<le> ?c"}, |
|
608 |
@{cpat "?c < (?a::(?'a::{field, ord}))/?b"}, |
|
609 |
@{cpat "?c \<le> (?a::(?'a::{field, ord}))/?b"}, |
|
610 |
@{cpat "?c = ((?a::(?'a::{field, ord}))/?b)"}, |
|
611 |
@{cpat "((?a::(?'a::{field, ord}))/ ?b) = ?c"}], |
|
612 |
name = "ord_frac_simproc", proc = proc3, identifier = []} |
|
613 |
||
614 |
val nat_arith = map thm ["add_nat_number_of", "diff_nat_number_of", |
|
615 |
"mult_nat_number_of", "eq_nat_number_of", "less_nat_number_of"] |
|
616 |
||
617 |
val comp_arith = (map thm ["Let_def", "if_False", "if_True", "add_0", |
|
618 |
"add_Suc", "add_number_of_left", "mult_number_of_left", |
|
619 |
"Suc_eq_add_numeral_1"])@ |
|
620 |
(map (fn s => thm s RS sym) ["numeral_1_eq_1", "numeral_0_eq_0"]) |
|
621 |
@ @{thms arith_simps} @ nat_arith @ @{thms rel_simps} |
|
622 |
val ths = [@{thm "mult_numeral_1"}, @{thm "mult_numeral_1_right"}, |
|
623 |
@{thm "divide_Numeral1"}, |
|
624 |
@{thm "Ring_and_Field.divide_zero"}, @{thm "divide_Numeral0"}, |
|
625 |
@{thm "divide_divide_eq_left"}, @{thm "mult_frac_frac"}, |
|
626 |
@{thm "mult_num_frac"}, @{thm "mult_frac_num"}, |
|
627 |
@{thm "mult_frac_frac"}, @{thm "times_divide_eq_right"}, |
|
628 |
@{thm "times_divide_eq_left"}, @{thm "divide_divide_eq_right"}, |
|
629 |
@{thm "diff_def"}, @{thm "minus_divide_left"}, |
|
630 |
@{thm "Numeral1_eq1_nat"}, @{thm "add_divide_distrib"} RS sym] |
|
631 |
||
632 |
local |
|
633 |
open Conv |
|
634 |
in |
|
635 |
val comp_conv = (Simplifier.rewrite |
|
636 |
(HOL_basic_ss addsimps @{thms "Groebner_Basis.comp_arith"} |
|
637 |
addsimps ths addsimps comp_arith addsimps simp_thms |
|
638 |
addsimprocs field_cancel_numeral_factors |
|
639 |
addsimprocs [add_frac_frac_simproc, add_frac_num_simproc, |
|
640 |
ord_frac_simproc] |
|
641 |
addcongs [@{thm "if_weak_cong"}])) |
|
642 |
then_conv (Simplifier.rewrite (HOL_basic_ss addsimps |
|
643 |
[@{thm numeral_1_eq_1},@{thm numeral_0_eq_0}] @ @{thms numerals(1-2)})) |
|
23252 | 644 |
end |
28402 | 645 |
|
646 |
fun numeral_is_const ct = |
|
647 |
case term_of ct of |
|
648 |
Const (@{const_name "HOL.divide"},_) $ a $ b => |
|
649 |
numeral_is_const (Thm.dest_arg1 ct) andalso numeral_is_const (Thm.dest_arg ct) |
|
650 |
| Const (@{const_name "HOL.uminus"},_)$t => numeral_is_const (Thm.dest_arg ct) |
|
651 |
| t => can HOLogic.dest_number t |
|
652 |
||
653 |
fun dest_const ct = ((case term_of ct of |
|
654 |
Const (@{const_name "HOL.divide"},_) $ a $ b=> |
|
655 |
Rat.rat_of_quotient (snd (HOLogic.dest_number a), snd (HOLogic.dest_number b)) |
|
656 |
| t => Rat.rat_of_int (snd (HOLogic.dest_number t))) |
|
657 |
handle TERM _ => error "ring_dest_const") |
|
658 |
||
659 |
fun mk_const phi cT x = |
|
660 |
let val (a, b) = Rat.quotient_of_rat x |
|
661 |
in if b = 1 then Numeral.mk_cnumber cT a |
|
662 |
else Thm.capply |
|
663 |
(Thm.capply (Drule.cterm_rule (instantiate' [SOME cT] []) @{cpat "op /"}) |
|
664 |
(Numeral.mk_cnumber cT a)) |
|
665 |
(Numeral.mk_cnumber cT b) |
|
666 |
end |
|
667 |
||
668 |
in |
|
669 |
val field_comp_conv = comp_conv; |
|
670 |
val fieldgb_declaration = |
|
671 |
NormalizerData.funs @{thm class_fieldgb.fieldgb_axioms'} |
|
672 |
{is_const = K numeral_is_const, |
|
673 |
dest_const = K dest_const, |
|
674 |
mk_const = mk_const, |
|
675 |
conv = K (K comp_conv)} |
|
676 |
end; |
|
677 |
*} |
|
678 |
||
679 |
declaration fieldgb_declaration |
|
680 |
||
681 |
end |