1 (* Title: HOL/Presburger.thy
2 Author: Amine Chaieb, TU Muenchen
5 header {* Decision Procedure for Presburger Arithmetic *}
8 imports Groebner_Basis SetInterval
10 "Tools/Qelim/qelim.ML"
11 "Tools/Qelim/cooper_procedure.ML"
12 ("Tools/Qelim/cooper.ML")
15 subsection{* The @{text "-\<infinity>"} and @{text "+\<infinity>"} Properties *}
18 "\<lbrakk>\<exists>(z ::'a::linorder).\<forall>x<z. P x = P' x; \<exists>z.\<forall>x<z. Q x = Q' x\<rbrakk>
19 \<Longrightarrow> \<exists>z.\<forall>x<z. (P x \<and> Q x) = (P' x \<and> Q' x)"
20 "\<lbrakk>\<exists>(z ::'a::linorder).\<forall>x<z. P x = P' x; \<exists>z.\<forall>x<z. Q x = Q' x\<rbrakk>
21 \<Longrightarrow> \<exists>z.\<forall>x<z. (P x \<or> Q x) = (P' x \<or> Q' x)"
22 "\<exists>(z ::'a::{linorder}).\<forall>x<z.(x = t) = False"
23 "\<exists>(z ::'a::{linorder}).\<forall>x<z.(x \<noteq> t) = True"
24 "\<exists>(z ::'a::{linorder}).\<forall>x<z.(x < t) = True"
25 "\<exists>(z ::'a::{linorder}).\<forall>x<z.(x \<le> t) = True"
26 "\<exists>(z ::'a::{linorder}).\<forall>x<z.(x > t) = False"
27 "\<exists>(z ::'a::{linorder}).\<forall>x<z.(x \<ge> t) = False"
28 "\<exists>z.\<forall>(x::'b::{linorder,plus,Rings.dvd})<z. (d dvd x + s) = (d dvd x + s)"
29 "\<exists>z.\<forall>(x::'b::{linorder,plus,Rings.dvd})<z. (\<not> d dvd x + s) = (\<not> d dvd x + s)"
30 "\<exists>z.\<forall>x<z. F = F"
31 by ((erule exE, erule exE,rule_tac x="min z za" in exI,simp)+, (rule_tac x="t" in exI,fastforce)+) simp_all
34 "\<lbrakk>\<exists>(z ::'a::linorder).\<forall>x>z. P x = P' x; \<exists>z.\<forall>x>z. Q x = Q' x\<rbrakk>
35 \<Longrightarrow> \<exists>z.\<forall>x>z. (P x \<and> Q x) = (P' x \<and> Q' x)"
36 "\<lbrakk>\<exists>(z ::'a::linorder).\<forall>x>z. P x = P' x; \<exists>z.\<forall>x>z. Q x = Q' x\<rbrakk>
37 \<Longrightarrow> \<exists>z.\<forall>x>z. (P x \<or> Q x) = (P' x \<or> Q' x)"
38 "\<exists>(z ::'a::{linorder}).\<forall>x>z.(x = t) = False"
39 "\<exists>(z ::'a::{linorder}).\<forall>x>z.(x \<noteq> t) = True"
40 "\<exists>(z ::'a::{linorder}).\<forall>x>z.(x < t) = False"
41 "\<exists>(z ::'a::{linorder}).\<forall>x>z.(x \<le> t) = False"
42 "\<exists>(z ::'a::{linorder}).\<forall>x>z.(x > t) = True"
43 "\<exists>(z ::'a::{linorder}).\<forall>x>z.(x \<ge> t) = True"
44 "\<exists>z.\<forall>(x::'b::{linorder,plus,Rings.dvd})>z. (d dvd x + s) = (d dvd x + s)"
45 "\<exists>z.\<forall>(x::'b::{linorder,plus,Rings.dvd})>z. (\<not> d dvd x + s) = (\<not> d dvd x + s)"
46 "\<exists>z.\<forall>x>z. F = F"
47 by ((erule exE, erule exE,rule_tac x="max z za" in exI,simp)+,(rule_tac x="t" in exI,fastforce)+) simp_all
50 "\<lbrakk>\<forall>x k. P x = P (x - k*D); \<forall>x k. Q x = Q (x - k*D)\<rbrakk>
51 \<Longrightarrow> \<forall>x k. (P x \<and> Q x) = (P (x - k*D) \<and> Q (x - k*D))"
52 "\<lbrakk>\<forall>x k. P x = P (x - k*D); \<forall>x k. Q x = Q (x - k*D)\<rbrakk>
53 \<Longrightarrow> \<forall>x k. (P x \<or> Q x) = (P (x - k*D) \<or> Q (x - k*D))"
54 "(d::'a::{comm_ring,Rings.dvd}) dvd D \<Longrightarrow> \<forall>x k. (d dvd x + t) = (d dvd (x - k*D) + t)"
55 "(d::'a::{comm_ring,Rings.dvd}) dvd D \<Longrightarrow> \<forall>x k. (\<not>d dvd x + t) = (\<not>d dvd (x - k*D) + t)"
57 apply (auto elim!: dvdE simp add: algebra_simps)
58 unfolding mult_assoc [symmetric] left_distrib [symmetric] left_diff_distrib [symmetric]
59 unfolding dvd_def mult_commute [of d]
62 subsection{* The A and B sets *}
64 "\<lbrakk>\<forall>x.(\<forall>j \<in> {1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> P x \<longrightarrow> P(x - D) ;
65 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> Q x \<longrightarrow> Q(x - D)\<rbrakk> \<Longrightarrow>
66 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j) \<longrightarrow> (P x \<and> Q x) \<longrightarrow> (P(x - D) \<and> Q (x - D))"
67 "\<lbrakk>\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> P x \<longrightarrow> P(x - D) ;
68 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> Q x \<longrightarrow> Q(x - D)\<rbrakk> \<Longrightarrow>
69 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (P x \<or> Q x) \<longrightarrow> (P(x - D) \<or> Q (x - D))"
70 "\<lbrakk>D>0; t - 1\<in> B\<rbrakk> \<Longrightarrow> (\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x = t) \<longrightarrow> (x - D = t))"
71 "\<lbrakk>D>0 ; t \<in> B\<rbrakk> \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x \<noteq> t) \<longrightarrow> (x - D \<noteq> t))"
72 "D>0 \<Longrightarrow> (\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x < t) \<longrightarrow> (x - D < t))"
73 "D>0 \<Longrightarrow> (\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x \<le> t) \<longrightarrow> (x - D \<le> t))"
74 "\<lbrakk>D>0 ; t \<in> B\<rbrakk> \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x > t) \<longrightarrow> (x - D > t))"
75 "\<lbrakk>D>0 ; t - 1 \<in> B\<rbrakk> \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x \<ge> t) \<longrightarrow> (x - D \<ge> t))"
76 "d dvd D \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (d dvd x+t) \<longrightarrow> (d dvd (x - D) + t))"
77 "d dvd D \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (\<not>d dvd x+t) \<longrightarrow> (\<not> d dvd (x - D) + t))"
78 "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j) \<longrightarrow> F \<longrightarrow> F"
80 assume dp: "D > 0" and tB: "t - 1\<in> B"
81 show "(\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x = t) \<longrightarrow> (x - D = t))"
82 apply (rule allI, rule impI,erule ballE[where x="1"],erule ballE[where x="t - 1"])
83 apply algebra using dp tB by simp_all
85 assume dp: "D > 0" and tB: "t \<in> B"
86 show "(\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x \<noteq> t) \<longrightarrow> (x - D \<noteq> t))"
87 apply (rule allI, rule impI,erule ballE[where x="D"],erule ballE[where x="t"])
89 using dp tB by simp_all
91 assume dp: "D > 0" thus "(\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x < t) \<longrightarrow> (x - D < t))" by arith
93 assume dp: "D > 0" thus "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x \<le> t) \<longrightarrow> (x - D \<le> t)" by arith
95 assume dp: "D > 0" and tB:"t \<in> B"
96 {fix x assume nob: "\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j" and g: "x > t" and ng: "\<not> (x - D) > t"
97 hence "x -t \<le> D" and "1 \<le> x - t" by simp+
98 hence "\<exists>j \<in> {1 .. D}. x - t = j" by auto
99 hence "\<exists>j \<in> {1 .. D}. x = t + j" by (simp add: algebra_simps)
100 with nob tB have "False" by simp}
101 thus "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x > t) \<longrightarrow> (x - D > t)" by blast
103 assume dp: "D > 0" and tB:"t - 1\<in> B"
104 {fix x assume nob: "\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j" and g: "x \<ge> t" and ng: "\<not> (x - D) \<ge> t"
105 hence "x - (t - 1) \<le> D" and "1 \<le> x - (t - 1)" by simp+
106 hence "\<exists>j \<in> {1 .. D}. x - (t - 1) = j" by auto
107 hence "\<exists>j \<in> {1 .. D}. x = (t - 1) + j" by (simp add: algebra_simps)
108 with nob tB have "False" by simp}
109 thus "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (x \<ge> t) \<longrightarrow> (x - D \<ge> t)" by blast
112 {fix x assume H: "d dvd x + t" with d have "d dvd (x - D) + t" by algebra}
113 thus "\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (d dvd x+t) \<longrightarrow> (d dvd (x - D) + t)" by simp
116 {fix x assume H: "\<not>(d dvd x + t)" with d have "\<not> d dvd (x - D) + t"
117 by (clarsimp simp add: dvd_def,erule_tac x= "ka + k" in allE,simp add: algebra_simps)}
118 thus "\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>B. x \<noteq> b + j)\<longrightarrow> (\<not>d dvd x+t) \<longrightarrow> (\<not>d dvd (x - D) + t)" by auto
122 "\<lbrakk>\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> P x \<longrightarrow> P(x + D) ;
123 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> Q x \<longrightarrow> Q(x + D)\<rbrakk> \<Longrightarrow>
124 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j) \<longrightarrow> (P x \<and> Q x) \<longrightarrow> (P(x + D) \<and> Q (x + D))"
125 "\<lbrakk>\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> P x \<longrightarrow> P(x + D) ;
126 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> Q x \<longrightarrow> Q(x + D)\<rbrakk> \<Longrightarrow>
127 \<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (P x \<or> Q x) \<longrightarrow> (P(x + D) \<or> Q (x + D))"
128 "\<lbrakk>D>0; t + 1\<in> A\<rbrakk> \<Longrightarrow> (\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x = t) \<longrightarrow> (x + D = t))"
129 "\<lbrakk>D>0 ; t \<in> A\<rbrakk> \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x \<noteq> t) \<longrightarrow> (x + D \<noteq> t))"
130 "\<lbrakk>D>0; t\<in> A\<rbrakk> \<Longrightarrow>(\<forall>(x::int). (\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x < t) \<longrightarrow> (x + D < t))"
131 "\<lbrakk>D>0; t + 1 \<in> A\<rbrakk> \<Longrightarrow> (\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x \<le> t) \<longrightarrow> (x + D \<le> t))"
132 "D>0 \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x > t) \<longrightarrow> (x + D > t))"
133 "D>0 \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x \<ge> t) \<longrightarrow> (x + D \<ge> t))"
134 "d dvd D \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (d dvd x+t) \<longrightarrow> (d dvd (x + D) + t))"
135 "d dvd D \<Longrightarrow>(\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (\<not>d dvd x+t) \<longrightarrow> (\<not> d dvd (x + D) + t))"
136 "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j) \<longrightarrow> F \<longrightarrow> F"
138 assume dp: "D > 0" and tA: "t + 1 \<in> A"
139 show "(\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x = t) \<longrightarrow> (x + D = t))"
140 apply (rule allI, rule impI,erule ballE[where x="1"],erule ballE[where x="t + 1"])
141 using dp tA by simp_all
143 assume dp: "D > 0" and tA: "t \<in> A"
144 show "(\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x \<noteq> t) \<longrightarrow> (x + D \<noteq> t))"
145 apply (rule allI, rule impI,erule ballE[where x="D"],erule ballE[where x="t"])
146 using dp tA by simp_all
148 assume dp: "D > 0" thus "(\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x > t) \<longrightarrow> (x + D > t))" by arith
150 assume dp: "D > 0" thus "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x \<ge> t) \<longrightarrow> (x + D \<ge> t)" by arith
152 assume dp: "D > 0" and tA:"t \<in> A"
153 {fix x assume nob: "\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j" and g: "x < t" and ng: "\<not> (x + D) < t"
154 hence "t - x \<le> D" and "1 \<le> t - x" by simp+
155 hence "\<exists>j \<in> {1 .. D}. t - x = j" by auto
156 hence "\<exists>j \<in> {1 .. D}. x = t - j" by (auto simp add: algebra_simps)
157 with nob tA have "False" by simp}
158 thus "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x < t) \<longrightarrow> (x + D < t)" by blast
160 assume dp: "D > 0" and tA:"t + 1\<in> A"
161 {fix x assume nob: "\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j" and g: "x \<le> t" and ng: "\<not> (x + D) \<le> t"
162 hence "(t + 1) - x \<le> D" and "1 \<le> (t + 1) - x" by (simp_all add: algebra_simps)
163 hence "\<exists>j \<in> {1 .. D}. (t + 1) - x = j" by auto
164 hence "\<exists>j \<in> {1 .. D}. x = (t + 1) - j" by (auto simp add: algebra_simps)
165 with nob tA have "False" by simp}
166 thus "\<forall>x.(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (x \<le> t) \<longrightarrow> (x + D \<le> t)" by blast
169 {fix x assume H: "d dvd x + t" with d have "d dvd (x + D) + t"
170 by (clarsimp simp add: dvd_def,rule_tac x= "ka + k" in exI,simp add: algebra_simps)}
171 thus "\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (d dvd x+t) \<longrightarrow> (d dvd (x + D) + t)" by simp
174 {fix x assume H: "\<not>(d dvd x + t)" with d have "\<not>d dvd (x + D) + t"
175 by (clarsimp simp add: dvd_def,erule_tac x= "ka - k" in allE,simp add: algebra_simps)}
176 thus "\<forall>(x::int).(\<forall>j\<in>{1 .. D}. \<forall>b\<in>A. x \<noteq> b - j)\<longrightarrow> (\<not>d dvd x+t) \<longrightarrow> (\<not>d dvd (x + D) + t)" by auto
179 subsection{* Cooper's Theorem @{text "-\<infinity>"} and @{text "+\<infinity>"} Version *}
181 subsubsection{* First some trivial facts about periodic sets or predicates *}
182 lemma periodic_finite_ex:
183 assumes dpos: "(0::int) < d" and modd: "ALL x k. P x = P(x - k*d)"
184 shows "(EX x. P x) = (EX j : {1..d}. P j)"
188 then obtain x where P: "P x" ..
189 have "x mod d = x - (x div d)*d" by(simp add:zmod_zdiv_equality mult_ac eq_diff_eq)
190 hence Pmod: "P x = P(x mod d)" using modd by simp
194 hence "P 0" using P Pmod by simp
195 moreover have "P 0 = P(0 - (-1)*d)" using modd by blast
196 ultimately have "P d" by simp
197 moreover have "d : {1..d}" using dpos by simp
198 ultimately show ?RHS ..
200 assume not0: "x mod d \<noteq> 0"
201 have "P(x mod d)" using dpos P Pmod by simp
202 moreover have "x mod d : {1..d}"
204 from dpos have "0 \<le> x mod d" by(rule pos_mod_sign)
205 moreover from dpos have "x mod d < d" by(rule pos_mod_bound)
206 ultimately show ?thesis using not0 by simp
208 ultimately show ?RHS ..
212 subsubsection{* The @{text "-\<infinity>"} Version*}
214 lemma decr_lemma: "0 < (d::int) \<Longrightarrow> x - (abs(x-z)+1) * d < z"
215 by(induct rule: int_gr_induct,simp_all add:int_distrib)
217 lemma incr_lemma: "0 < (d::int) \<Longrightarrow> z < x + (abs(x-z)+1) * d"
218 by(induct rule: int_gr_induct, simp_all add:int_distrib)
220 lemma decr_mult_lemma:
221 assumes dpos: "(0::int) < d" and minus: "\<forall>x. P x \<longrightarrow> P(x - d)" and knneg: "0 <= k"
222 shows "ALL x. P x \<longrightarrow> P(x - k*d)"
224 proof (induct rule:int_ge_induct)
225 case base thus ?case by simp
229 have "P x \<longrightarrow> P (x - i * d)" using step.hyps by blast
230 also have "\<dots> \<longrightarrow> P(x - (i + 1) * d)" using minus[THEN spec, of "x - i * d"]
231 by (simp add: algebra_simps)
232 ultimately have "P x \<longrightarrow> P(x - (i + 1) * d)" by blast}
237 assumes dpos: "0 < d" and
238 P1eqP1: "ALL x k. P1 x = P1(x - k*d)" and ePeqP1: "EX z::int. ALL x. x < z \<longrightarrow> (P x = P1 x)"
239 shows "(EX x. P1 x) \<longrightarrow> (EX x. P x)"
241 assume eP1: "EX x. P1 x"
242 then obtain x where P1: "P1 x" ..
243 from ePeqP1 obtain z where P1eqP: "ALL x. x < z \<longrightarrow> (P x = P1 x)" ..
244 let ?w = "x - (abs(x-z)+1) * d"
245 from dpos have w: "?w < z" by(rule decr_lemma)
246 have "P1 x = P1 ?w" using P1eqP1 by blast
247 also have "\<dots> = P(?w)" using w P1eqP by blast
248 finally have "P ?w" using P1 by blast
253 assumes dp: "0 < D" and p1:"\<exists>z. \<forall> x< z. P x = P' x"
254 and nb:"\<forall>x.(\<forall> j\<in> {1..D}. \<forall>(b::int) \<in> B. x \<noteq> b+j) --> P (x) --> P (x - D)"
255 and pd: "\<forall> x k. P' x = P' (x-k*D)"
256 shows "(\<exists>x. P x) = ((\<exists> j\<in> {1..D} . P' j) | (\<exists> j \<in> {1..D}.\<exists> b\<in> B. P (b+j)))"
257 (is "?L = (?R1 \<or> ?R2)")
259 {assume "?R2" hence "?L" by blast}
261 {assume H:"?R1" hence "?L" using minusinfinity[OF dp pd p1] periodic_finite_ex[OF dp pd] by simp}
264 assume P: "P x" and H: "\<not> ?R2"
265 {fix y assume "\<not> (\<exists>j\<in>{1..D}. \<exists>b\<in>B. P (b + j))" and P: "P y"
266 hence "~(EX (j::int) : {1..D}. EX (b::int) : B. y = b+j)" by auto
267 with nb P have "P (y - D)" by auto }
268 hence "ALL x.~(EX (j::int) : {1..D}. EX (b::int) : B. P(b+j)) --> P (x) --> P (x - D)" by blast
269 with H P have th: " \<forall>x. P x \<longrightarrow> P (x - D)" by auto
270 from p1 obtain z where z: "ALL x. x < z --> (P x = P' x)" by blast
271 let ?y = "x - (\<bar>x - z\<bar> + 1)*D"
272 have zp: "0 <= (\<bar>x - z\<bar> + 1)" by arith
273 from dp have yz: "?y < z" using decr_lemma[OF dp] by simp
274 from z[rule_format, OF yz] decr_mult_lemma[OF dp th zp, rule_format, OF P] have th2: " P' ?y" by auto
275 with periodic_finite_ex[OF dp pd]
277 ultimately show ?thesis by blast
280 subsubsection {* The @{text "+\<infinity>"} Version*}
283 assumes dpos: "(0::int) < d" and
284 P1eqP1: "\<forall>x k. P' x = P'(x - k*d)" and ePeqP1: "\<exists> z. \<forall> x>z. P x = P' x"
285 shows "(\<exists> x. P' x) \<longrightarrow> (\<exists> x. P x)"
287 assume eP1: "EX x. P' x"
288 then obtain x where P1: "P' x" ..
289 from ePeqP1 obtain z where P1eqP: "\<forall>x>z. P x = P' x" ..
290 let ?w' = "x + (abs(x-z)+1) * d"
291 let ?w = "x - (-(abs(x-z) + 1))*d"
292 have ww'[simp]: "?w = ?w'" by (simp add: algebra_simps)
293 from dpos have w: "?w > z" by(simp only: ww' incr_lemma)
294 hence "P' x = P' ?w" using P1eqP1 by blast
295 also have "\<dots> = P(?w)" using w P1eqP by blast
296 finally have "P ?w" using P1 by blast
300 lemma incr_mult_lemma:
301 assumes dpos: "(0::int) < d" and plus: "ALL x::int. P x \<longrightarrow> P(x + d)" and knneg: "0 <= k"
302 shows "ALL x. P x \<longrightarrow> P(x + k*d)"
304 proof (induct rule:int_ge_induct)
305 case base thus ?case by simp
309 have "P x \<longrightarrow> P (x + i * d)" using step.hyps by blast
310 also have "\<dots> \<longrightarrow> P(x + (i + 1) * d)" using plus[THEN spec, of "x + i * d"]
311 by (simp add:int_distrib add_ac)
312 ultimately have "P x \<longrightarrow> P(x + (i + 1) * d)" by blast}
317 assumes dp: "0 < D" and p1:"\<exists>z. \<forall> x> z. P x = P' x"
318 and nb:"\<forall>x.(\<forall> j\<in> {1..D}. \<forall>(b::int) \<in> A. x \<noteq> b - j) --> P (x) --> P (x + D)"
319 and pd: "\<forall> x k. P' x= P' (x-k*D)"
320 shows "(\<exists>x. P x) = ((\<exists> j\<in> {1..D} . P' j) | (\<exists> j \<in> {1..D}.\<exists> b\<in> A. P (b - j)))" (is "?L = (?R1 \<or> ?R2)")
322 {assume "?R2" hence "?L" by blast}
324 {assume H:"?R1" hence "?L" using plusinfinity[OF dp pd p1] periodic_finite_ex[OF dp pd] by simp}
327 assume P: "P x" and H: "\<not> ?R2"
328 {fix y assume "\<not> (\<exists>j\<in>{1..D}. \<exists>b\<in>A. P (b - j))" and P: "P y"
329 hence "~(EX (j::int) : {1..D}. EX (b::int) : A. y = b - j)" by auto
330 with nb P have "P (y + D)" by auto }
331 hence "ALL x.~(EX (j::int) : {1..D}. EX (b::int) : A. P(b-j)) --> P (x) --> P (x + D)" by blast
332 with H P have th: " \<forall>x. P x \<longrightarrow> P (x + D)" by auto
333 from p1 obtain z where z: "ALL x. x > z --> (P x = P' x)" by blast
334 let ?y = "x + (\<bar>x - z\<bar> + 1)*D"
335 have zp: "0 <= (\<bar>x - z\<bar> + 1)" by arith
336 from dp have yz: "?y > z" using incr_lemma[OF dp] by simp
337 from z[rule_format, OF yz] incr_mult_lemma[OF dp th zp, rule_format, OF P] have th2: " P' ?y" by auto
338 with periodic_finite_ex[OF dp pd]
340 ultimately show ?thesis by blast
343 lemma simp_from_to: "{i..j::int} = (if j < i then {} else insert i {i+1..j})"
344 apply(simp add:atLeastAtMost_def atLeast_def atMost_def)
348 theorem unity_coeff_ex: "(\<exists>(x::'a::{semiring_0,Rings.dvd}). P (l * x)) \<equiv> (\<exists>x. l dvd (x + 0) \<and> P x)"
349 apply (rule eq_reflection [symmetric])
353 apply (rule_tac x = "l * x" in exI)
354 apply (simp add: dvd_def)
355 apply (rule_tac x = x in exI, simp)
360 apply (rule_tac x = k in exI)
364 lemma zdvd_mono: assumes not0: "(k::int) \<noteq> 0"
365 shows "((m::int) dvd t) \<equiv> (k*m dvd k*t)"
366 using not0 by (simp add: dvd_def)
368 lemma uminus_dvd_conv: "(d dvd (t::int)) \<equiv> (-d dvd t)" "(d dvd (t::int)) \<equiv> (d dvd -t)"
371 text {* \bigskip Theorems for transforming predicates on nat to predicates on @{text int}*}
373 lemma zdiff_int_split: "P (int (x - y)) =
374 ((y \<le> x \<longrightarrow> P (int x - int y)) \<and> (x < y \<longrightarrow> P 0))"
375 by (cases "y \<le> x") (simp_all add: zdiff_int)
377 lemma number_of1: "(0::int) <= number_of n \<Longrightarrow> (0::int) <= number_of (Int.Bit0 n) \<and> (0::int) <= number_of (Int.Bit1 n)"
380 lemma number_of2: "(0::int) <= Numeral0" by simp
383 \medskip Specific instances of congruence rules, to prevent
384 simplifier from looping. *}
386 theorem imp_le_cong: "(0 <= x \<Longrightarrow> P = P') \<Longrightarrow> (0 <= (x::int) \<longrightarrow> P) = (0 <= x \<longrightarrow> P')" by simp
388 theorem conj_le_cong: "(0 <= x \<Longrightarrow> P = P') \<Longrightarrow> (0 <= (x::int) \<and> P) = (0 <= x \<and> P')"
389 by (simp cong: conj_cong)
391 use "Tools/Qelim/cooper.ML"
395 method_setup presburger = "Cooper.method" "Cooper's algorithm for Presburger arithmetic"
397 declare dvd_eq_mod_eq_0[symmetric, presburger]
398 declare mod_1[presburger]
399 declare mod_0[presburger]
400 declare mod_by_1[presburger]
401 declare zmod_zero[presburger]
402 declare zmod_self[presburger]
403 declare mod_self[presburger]
404 declare mod_by_0[presburger]
405 declare mod_div_trivial[presburger]
406 declare div_mod_equality2[presburger]
407 declare div_mod_equality[presburger]
408 declare mod_div_equality2[presburger]
409 declare mod_div_equality[presburger]
410 declare mod_mult_self1[presburger]
411 declare mod_mult_self2[presburger]
412 declare zdiv_zmod_equality2[presburger]
413 declare zdiv_zmod_equality[presburger]
414 declare mod2_Suc_Suc[presburger]
415 lemma [presburger]: "(a::int) div 0 = 0" and [presburger]: "a mod 0 = a"
418 lemma [presburger, algebra]: "m mod 2 = (1::nat) \<longleftrightarrow> \<not> 2 dvd m " by presburger
419 lemma [presburger, algebra]: "m mod 2 = Suc 0 \<longleftrightarrow> \<not> 2 dvd m " by presburger
420 lemma [presburger, algebra]: "m mod (Suc (Suc 0)) = (1::nat) \<longleftrightarrow> \<not> 2 dvd m " by presburger
421 lemma [presburger, algebra]: "m mod (Suc (Suc 0)) = Suc 0 \<longleftrightarrow> \<not> 2 dvd m " by presburger
422 lemma [presburger, algebra]: "m mod 2 = (1::int) \<longleftrightarrow> \<not> 2 dvd m " by presburger