src/HOL/IntDiv.thy
author wenzelm
Wed, 15 Jul 2009 23:48:21 +0200
changeset 32010 cb1a1c94b4cd
parent 31998 2c7a24f74db9
child 32075 e8e0fb5da77a
permissions -rw-r--r--
more antiquotations;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/IntDiv.thy
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     3
    Copyright   1999  University of Cambridge
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     4
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     5
*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     6
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
     7
header{* The Division Operators div and mod *}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     8
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     9
theory IntDiv
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25571
diff changeset
    10
imports Int Divides FunDef
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    11
begin
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    12
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    13
definition divmod_rel :: "int \<Rightarrow> int \<Rightarrow> int \<times> int \<Rightarrow> bool" where
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    14
    --{*definition of quotient and remainder*}
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    15
    [code]: "divmod_rel a b = (\<lambda>(q, r). a = b * q + r \<and>
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    16
               (if 0 < b then 0 \<le> r \<and> r < b else b < r \<and> r \<le> 0))"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    17
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    18
definition adjust :: "int \<Rightarrow> int \<times> int \<Rightarrow> int \<times> int" where
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    19
    --{*for the division algorithm*}
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    20
    [code]: "adjust b = (\<lambda>(q, r). if 0 \<le> r - b then (2 * q + 1, r - b)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    21
                         else (2 * q, r))"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    22
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    23
text{*algorithm for the case @{text "a\<ge>0, b>0"}*}
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    24
function posDivAlg :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    25
  "posDivAlg a b = (if a < b \<or>  b \<le> 0 then (0, a)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    26
     else adjust b (posDivAlg a (2 * b)))"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    27
by auto
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    28
termination by (relation "measure (\<lambda>(a, b). nat (a - b + 1))") auto
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    29
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    30
text{*algorithm for the case @{text "a<0, b>0"}*}
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    31
function negDivAlg :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    32
  "negDivAlg a b = (if 0 \<le>a + b \<or> b \<le> 0  then (-1, a + b)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    33
     else adjust b (negDivAlg a (2 * b)))"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    34
by auto
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    35
termination by (relation "measure (\<lambda>(a, b). nat (- a - b))") auto
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    36
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    37
text{*algorithm for the general case @{term "b\<noteq>0"}*}
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    38
definition negateSnd :: "int \<times> int \<Rightarrow> int \<times> int" where
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31734
diff changeset
    39
  [code_inline]: "negateSnd = apsnd uminus"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    40
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    41
definition divmod :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    42
    --{*The full division algorithm considers all possible signs for a, b
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    43
       including the special case @{text "a=0, b<0"} because 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    44
       @{term negDivAlg} requires @{term "a<0"}.*}
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    45
  "divmod a b = (if 0 \<le> a then if 0 \<le> b then posDivAlg a b
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    46
                  else if a = 0 then (0, 0)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    47
                       else negateSnd (negDivAlg (-a) (-b))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    48
               else 
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    49
                  if 0 < b then negDivAlg a b
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    50
                  else negateSnd (posDivAlg (-a) (-b)))"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    51
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    52
instantiation int :: Divides.div
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    53
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    54
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    55
definition
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    56
  div_def: "a div b = fst (divmod a b)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    57
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    58
definition
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    59
  mod_def: "a mod b = snd (divmod a b)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    60
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    61
instance ..
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    62
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    63
end
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    64
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    65
lemma divmod_mod_div:
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    66
  "divmod p q = (p div q, p mod q)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    67
  by (auto simp add: div_def mod_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    68
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    69
text{*
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    70
Here is the division algorithm in ML:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    71
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    72
\begin{verbatim}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    73
    fun posDivAlg (a,b) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    74
      if a<b then (0,a)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    75
      else let val (q,r) = posDivAlg(a, 2*b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    76
	       in  if 0\<le>r-b then (2*q+1, r-b) else (2*q, r)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    77
	   end
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    78
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    79
    fun negDivAlg (a,b) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    80
      if 0\<le>a+b then (~1,a+b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    81
      else let val (q,r) = negDivAlg(a, 2*b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    82
	       in  if 0\<le>r-b then (2*q+1, r-b) else (2*q, r)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    83
	   end;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    84
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    85
    fun negateSnd (q,r:int) = (q,~r);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    86
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
    87
    fun divmod (a,b) = if 0\<le>a then 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    88
			  if b>0 then posDivAlg (a,b) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    89
			   else if a=0 then (0,0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    90
				else negateSnd (negDivAlg (~a,~b))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    91
		       else 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    92
			  if 0<b then negDivAlg (a,b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    93
			  else        negateSnd (posDivAlg (~a,~b));
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    94
\end{verbatim}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    95
*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    96
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    97
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    98
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    99
subsection{*Uniqueness and Monotonicity of Quotients and Remainders*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   100
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   101
lemma unique_quotient_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   102
     "[| b*q' + r'  \<le> b*q + r;  0 \<le> r';  r' < b;  r < b |]  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   103
      ==> q' \<le> (q::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   104
apply (subgoal_tac "r' + b * (q'-q) \<le> r")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   105
 prefer 2 apply (simp add: right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   106
apply (subgoal_tac "0 < b * (1 + q - q') ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   107
apply (erule_tac [2] order_le_less_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   108
 prefer 2 apply (simp add: right_diff_distrib right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   109
apply (subgoal_tac "b * q' < b * (1 + q) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   110
 prefer 2 apply (simp add: right_diff_distrib right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   111
apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   112
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   113
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   114
lemma unique_quotient_lemma_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   115
     "[| b*q' + r' \<le> b*q + r;  r \<le> 0;  b < r;  b < r' |]  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   116
      ==> q \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   117
by (rule_tac b = "-b" and r = "-r'" and r' = "-r" in unique_quotient_lemma, 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   118
    auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   119
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   120
lemma unique_quotient:
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   121
     "[| divmod_rel a b (q, r); divmod_rel a b (q', r');  b \<noteq> 0 |]  
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   122
      ==> q = q'"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   123
apply (simp add: divmod_rel_def linorder_neq_iff split: split_if_asm)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   124
apply (blast intro: order_antisym
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   125
             dest: order_eq_refl [THEN unique_quotient_lemma] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   126
             order_eq_refl [THEN unique_quotient_lemma_neg] sym)+
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   127
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   128
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   129
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   130
lemma unique_remainder:
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   131
     "[| divmod_rel a b (q, r); divmod_rel a b (q', r');  b \<noteq> 0 |]  
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   132
      ==> r = r'"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   133
apply (subgoal_tac "q = q'")
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   134
 apply (simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   135
apply (blast intro: unique_quotient)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   136
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   137
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   138
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   139
subsection{*Correctness of @{term posDivAlg}, the Algorithm for Non-Negative Dividends*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   140
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   141
text{*And positive divisors*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   142
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   143
lemma adjust_eq [simp]:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   144
     "adjust b (q,r) = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   145
      (let diff = r-b in  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   146
	if 0 \<le> diff then (2*q + 1, diff)   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   147
                     else (2*q, r))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   148
by (simp add: Let_def adjust_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   149
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   150
declare posDivAlg.simps [simp del]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   151
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   152
text{*use with a simproc to avoid repeatedly proving the premise*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   153
lemma posDivAlg_eqn:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   154
     "0 < b ==>  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   155
      posDivAlg a b = (if a<b then (0,a) else adjust b (posDivAlg a (2*b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   156
by (rule posDivAlg.simps [THEN trans], simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   157
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   158
text{*Correctness of @{term posDivAlg}: it computes quotients correctly*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   159
theorem posDivAlg_correct:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   160
  assumes "0 \<le> a" and "0 < b"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   161
  shows "divmod_rel a b (posDivAlg a b)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   162
using prems apply (induct a b rule: posDivAlg.induct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   163
apply auto
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   164
apply (simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   165
apply (subst posDivAlg_eqn, simp add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   166
apply (case_tac "a < b")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   167
apply simp_all
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   168
apply (erule splitE)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   169
apply (auto simp add: right_distrib Let_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   170
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   171
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   172
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   173
subsection{*Correctness of @{term negDivAlg}, the Algorithm for Negative Dividends*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   174
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   175
text{*And positive divisors*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   176
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   177
declare negDivAlg.simps [simp del]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   178
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   179
text{*use with a simproc to avoid repeatedly proving the premise*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   180
lemma negDivAlg_eqn:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   181
     "0 < b ==>  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   182
      negDivAlg a b =       
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   183
       (if 0\<le>a+b then (-1,a+b) else adjust b (negDivAlg a (2*b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   184
by (rule negDivAlg.simps [THEN trans], simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   185
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   186
(*Correctness of negDivAlg: it computes quotients correctly
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   187
  It doesn't work if a=0 because the 0/b equals 0, not -1*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   188
lemma negDivAlg_correct:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   189
  assumes "a < 0" and "b > 0"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   190
  shows "divmod_rel a b (negDivAlg a b)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   191
using prems apply (induct a b rule: negDivAlg.induct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   192
apply (auto simp add: linorder_not_le)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   193
apply (simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   194
apply (subst negDivAlg_eqn, assumption)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   195
apply (case_tac "a + b < (0\<Colon>int)")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   196
apply simp_all
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   197
apply (erule splitE)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   198
apply (auto simp add: right_distrib Let_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   199
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   200
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   201
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   202
subsection{*Existence Shown by Proving the Division Algorithm to be Correct*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   203
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   204
(*the case a=0*)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   205
lemma divmod_rel_0: "b \<noteq> 0 ==> divmod_rel 0 b (0, 0)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   206
by (auto simp add: divmod_rel_def linorder_neq_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   207
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   208
lemma posDivAlg_0 [simp]: "posDivAlg 0 b = (0, 0)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   209
by (subst posDivAlg.simps, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   210
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   211
lemma negDivAlg_minus1 [simp]: "negDivAlg -1 b = (-1, b - 1)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   212
by (subst negDivAlg.simps, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   213
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   214
lemma negateSnd_eq [simp]: "negateSnd(q,r) = (q,-r)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   215
by (simp add: negateSnd_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   216
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   217
lemma divmod_rel_neg: "divmod_rel (-a) (-b) qr ==> divmod_rel a b (negateSnd qr)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   218
by (auto simp add: split_ifs divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   219
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   220
lemma divmod_correct: "b \<noteq> 0 ==> divmod_rel a b (divmod a b)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   221
by (force simp add: linorder_neq_iff divmod_rel_0 divmod_def divmod_rel_neg
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   222
                    posDivAlg_correct negDivAlg_correct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   223
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   224
text{*Arbitrary definitions for division by zero.  Useful to simplify 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   225
    certain equations.*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   226
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   227
lemma DIVISION_BY_ZERO [simp]: "a div (0::int) = 0 & a mod (0::int) = a"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   228
by (simp add: div_def mod_def divmod_def posDivAlg.simps)  
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   229
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   230
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   231
text{*Basic laws about division and remainder*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   232
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   233
lemma zmod_zdiv_equality: "(a::int) = b * (a div b) + (a mod b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   234
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   235
apply (cut_tac a = a and b = b in divmod_correct)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   236
apply (auto simp add: divmod_rel_def div_def mod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   237
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   238
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   239
lemma zdiv_zmod_equality: "(b * (a div b) + (a mod b)) + k = (a::int)+k"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   240
by(simp add: zmod_zdiv_equality[symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   241
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   242
lemma zdiv_zmod_equality2: "((a div b) * b + (a mod b)) + k = (a::int)+k"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   243
by(simp add: mult_commute zmod_zdiv_equality[symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   244
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   245
text {* Tool setup *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   246
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26101
diff changeset
   247
ML {*
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   248
local
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   249
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   250
structure CancelDivMod = CancelDivModFun(struct
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   251
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   252
  val div_name = @{const_name div};
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   253
  val mod_name = @{const_name mod};
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   254
  val mk_binop = HOLogic.mk_binop;
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 31065
diff changeset
   255
  val mk_sum = Numeral_Simprocs.mk_sum HOLogic.intT;
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 31065
diff changeset
   256
  val dest_sum = Numeral_Simprocs.dest_sum;
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   257
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   258
  val div_mod_eqs = map mk_meta_eq [@{thm zdiv_zmod_equality}, @{thm zdiv_zmod_equality2}];
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   259
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   260
  val trans = trans;
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   261
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   262
  val prove_eq_sums = Arith_Data.prove_conv2 all_tac (Arith_Data.simp_all_tac 
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   263
    (@{thm diff_minus} :: @{thms add_0s} @ @{thms add_ac}))
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   264
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   265
end)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   266
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   267
in
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   268
32010
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31998
diff changeset
   269
val cancel_div_mod_int_proc = Simplifier.simproc @{theory}
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   270
  "cancel_zdiv_zmod" ["(k::int) + l"] (K CancelDivMod.proc);
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   271
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   272
val _ = Addsimprocs [cancel_div_mod_int_proc];
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   273
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
   274
end
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   275
*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   276
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   277
lemma pos_mod_conj : "(0::int) < b ==> 0 \<le> a mod b & a mod b < b"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   278
apply (cut_tac a = a and b = b in divmod_correct)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   279
apply (auto simp add: divmod_rel_def mod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   280
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   281
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   282
lemmas pos_mod_sign  [simp] = pos_mod_conj [THEN conjunct1, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   283
   and pos_mod_bound [simp] = pos_mod_conj [THEN conjunct2, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   284
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   285
lemma neg_mod_conj : "b < (0::int) ==> a mod b \<le> 0 & b < a mod b"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   286
apply (cut_tac a = a and b = b in divmod_correct)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   287
apply (auto simp add: divmod_rel_def div_def mod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   288
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   289
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   290
lemmas neg_mod_sign  [simp] = neg_mod_conj [THEN conjunct1, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   291
   and neg_mod_bound [simp] = neg_mod_conj [THEN conjunct2, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   292
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   293
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   294
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   295
subsection{*General Properties of div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   296
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   297
lemma divmod_rel_div_mod: "b \<noteq> 0 ==> divmod_rel a b (a div b, a mod b)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   298
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   299
apply (force simp add: divmod_rel_def linorder_neq_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   300
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   301
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   302
lemma divmod_rel_div: "[| divmod_rel a b (q, r);  b \<noteq> 0 |] ==> a div b = q"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   303
by (simp add: divmod_rel_div_mod [THEN unique_quotient])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   304
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   305
lemma divmod_rel_mod: "[| divmod_rel a b (q, r);  b \<noteq> 0 |] ==> a mod b = r"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   306
by (simp add: divmod_rel_div_mod [THEN unique_remainder])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   307
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   308
lemma div_pos_pos_trivial: "[| (0::int) \<le> a;  a < b |] ==> a div b = 0"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   309
apply (rule divmod_rel_div)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   310
apply (auto simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   311
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   312
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   313
lemma div_neg_neg_trivial: "[| a \<le> (0::int);  b < a |] ==> a div b = 0"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   314
apply (rule divmod_rel_div)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   315
apply (auto simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   316
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   317
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   318
lemma div_pos_neg_trivial: "[| (0::int) < a;  a+b \<le> 0 |] ==> a div b = -1"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   319
apply (rule divmod_rel_div)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   320
apply (auto simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   321
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   322
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   323
(*There is no div_neg_pos_trivial because  0 div b = 0 would supersede it*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   324
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   325
lemma mod_pos_pos_trivial: "[| (0::int) \<le> a;  a < b |] ==> a mod b = a"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   326
apply (rule_tac q = 0 in divmod_rel_mod)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   327
apply (auto simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   328
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   329
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   330
lemma mod_neg_neg_trivial: "[| a \<le> (0::int);  b < a |] ==> a mod b = a"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   331
apply (rule_tac q = 0 in divmod_rel_mod)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   332
apply (auto simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   333
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   334
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   335
lemma mod_pos_neg_trivial: "[| (0::int) < a;  a+b \<le> 0 |] ==> a mod b = a+b"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   336
apply (rule_tac q = "-1" in divmod_rel_mod)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   337
apply (auto simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   338
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   339
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   340
text{*There is no @{text mod_neg_pos_trivial}.*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   341
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   342
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   343
(*Simpler laws such as -a div b = -(a div b) FAIL, but see just below*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   344
lemma zdiv_zminus_zminus [simp]: "(-a) div (-b) = a div (b::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   345
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   346
apply (simp add: divmod_rel_div_mod [THEN divmod_rel_neg, simplified, 
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   347
                                 THEN divmod_rel_div, THEN sym])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   348
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   349
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   350
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   351
(*Simpler laws such as -a mod b = -(a mod b) FAIL, but see just below*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   352
lemma zmod_zminus_zminus [simp]: "(-a) mod (-b) = - (a mod (b::int))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   353
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   354
apply (subst divmod_rel_div_mod [THEN divmod_rel_neg, simplified, THEN divmod_rel_mod],
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   355
       auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   356
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   357
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   358
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   359
subsection{*Laws for div and mod with Unary Minus*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   360
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   361
lemma zminus1_lemma:
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   362
     "divmod_rel a b (q, r)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   363
      ==> divmod_rel (-a) b (if r=0 then -q else -q - 1,  
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   364
                          if r=0 then 0 else b-r)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   365
by (force simp add: split_ifs divmod_rel_def linorder_neq_iff right_diff_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   366
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   367
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   368
lemma zdiv_zminus1_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   369
     "b \<noteq> (0::int)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   370
      ==> (-a) div b =  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   371
          (if a mod b = 0 then - (a div b) else  - (a div b) - 1)"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   372
by (blast intro: divmod_rel_div_mod [THEN zminus1_lemma, THEN divmod_rel_div])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   373
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   374
lemma zmod_zminus1_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   375
     "(-a::int) mod b = (if a mod b = 0 then 0 else  b - (a mod b))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   376
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   377
apply (blast intro: divmod_rel_div_mod [THEN zminus1_lemma, THEN divmod_rel_mod])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   378
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   379
29936
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   380
lemma zmod_zminus1_not_zero:
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   381
  fixes k l :: int
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   382
  shows "- k mod l \<noteq> 0 \<Longrightarrow> k mod l \<noteq> 0"
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   383
  unfolding zmod_zminus1_eq_if by auto
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   384
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   385
lemma zdiv_zminus2: "a div (-b) = (-a::int) div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   386
by (cut_tac a = "-a" in zdiv_zminus_zminus, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   387
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   388
lemma zmod_zminus2: "a mod (-b) = - ((-a::int) mod b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   389
by (cut_tac a = "-a" and b = b in zmod_zminus_zminus, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   390
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   391
lemma zdiv_zminus2_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   392
     "b \<noteq> (0::int)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   393
      ==> a div (-b) =  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   394
          (if a mod b = 0 then - (a div b) else  - (a div b) - 1)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   395
by (simp add: zdiv_zminus1_eq_if zdiv_zminus2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   396
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   397
lemma zmod_zminus2_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   398
     "a mod (-b::int) = (if a mod b = 0 then 0 else  (a mod b) - b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   399
by (simp add: zmod_zminus1_eq_if zmod_zminus2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   400
29936
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   401
lemma zmod_zminus2_not_zero:
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   402
  fixes k l :: int
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   403
  shows "k mod - l \<noteq> 0 \<Longrightarrow> k mod l \<noteq> 0"
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   404
  unfolding zmod_zminus2_eq_if by auto 
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
   405
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   406
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   407
subsection{*Division of a Number by Itself*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   408
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   409
lemma self_quotient_aux1: "[| (0::int) < a; a = r + a*q; r < a |] ==> 1 \<le> q"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   410
apply (subgoal_tac "0 < a*q")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   411
 apply (simp add: zero_less_mult_iff, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   412
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   413
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   414
lemma self_quotient_aux2: "[| (0::int) < a; a = r + a*q; 0 \<le> r |] ==> q \<le> 1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   415
apply (subgoal_tac "0 \<le> a* (1-q) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   416
 apply (simp add: zero_le_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   417
apply (simp add: right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   418
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   419
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   420
lemma self_quotient: "[| divmod_rel a a (q, r);  a \<noteq> (0::int) |] ==> q = 1"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   421
apply (simp add: split_ifs divmod_rel_def linorder_neq_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   422
apply (rule order_antisym, safe, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   423
apply (rule_tac [3] a = "-a" and r = "-r" in self_quotient_aux1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   424
apply (rule_tac a = "-a" and r = "-r" in self_quotient_aux2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   425
apply (force intro: self_quotient_aux1 self_quotient_aux2 simp add: add_commute)+
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   426
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   427
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   428
lemma self_remainder: "[| divmod_rel a a (q, r);  a \<noteq> (0::int) |] ==> r = 0"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   429
apply (frule self_quotient, assumption)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   430
apply (simp add: divmod_rel_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   431
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   432
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   433
lemma zdiv_self [simp]: "a \<noteq> 0 ==> a div a = (1::int)"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   434
by (simp add: divmod_rel_div_mod [THEN self_quotient])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   435
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   436
(*Here we have 0 mod 0 = 0, also assumed by Knuth (who puts m mod 0 = 0) *)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   437
lemma zmod_self [simp]: "a mod a = (0::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   438
apply (case_tac "a = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   439
apply (simp add: divmod_rel_div_mod [THEN self_remainder])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   440
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   441
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   442
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   443
subsection{*Computation of Division and Remainder*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   444
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   445
lemma zdiv_zero [simp]: "(0::int) div b = 0"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   446
by (simp add: div_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   447
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   448
lemma div_eq_minus1: "(0::int) < b ==> -1 div b = -1"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   449
by (simp add: div_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   450
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   451
lemma zmod_zero [simp]: "(0::int) mod b = 0"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   452
by (simp add: mod_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   453
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   454
lemma zmod_minus1: "(0::int) < b ==> -1 mod b = b - 1"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   455
by (simp add: mod_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   456
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   457
text{*a positive, b positive *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   458
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   459
lemma div_pos_pos: "[| 0 < a;  0 \<le> b |] ==> a div b = fst (posDivAlg a b)"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   460
by (simp add: div_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   461
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   462
lemma mod_pos_pos: "[| 0 < a;  0 \<le> b |] ==> a mod b = snd (posDivAlg a b)"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   463
by (simp add: mod_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   464
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   465
text{*a negative, b positive *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   466
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   467
lemma div_neg_pos: "[| a < 0;  0 < b |] ==> a div b = fst (negDivAlg a b)"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   468
by (simp add: div_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   469
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   470
lemma mod_neg_pos: "[| a < 0;  0 < b |] ==> a mod b = snd (negDivAlg a b)"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   471
by (simp add: mod_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   472
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   473
text{*a positive, b negative *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   474
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   475
lemma div_pos_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   476
     "[| 0 < a;  b < 0 |] ==> a div b = fst (negateSnd (negDivAlg (-a) (-b)))"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   477
by (simp add: div_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   478
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   479
lemma mod_pos_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   480
     "[| 0 < a;  b < 0 |] ==> a mod b = snd (negateSnd (negDivAlg (-a) (-b)))"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   481
by (simp add: mod_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   482
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   483
text{*a negative, b negative *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   484
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   485
lemma div_neg_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   486
     "[| a < 0;  b \<le> 0 |] ==> a div b = fst (negateSnd (posDivAlg (-a) (-b)))"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   487
by (simp add: div_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   488
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   489
lemma mod_neg_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   490
     "[| a < 0;  b \<le> 0 |] ==> a mod b = snd (negateSnd (posDivAlg (-a) (-b)))"
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   491
by (simp add: mod_def divmod_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   492
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   493
text {*Simplify expresions in which div and mod combine numerical constants*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   494
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   495
lemma divmod_relI:
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   496
  "\<lbrakk>a == b * q + r; if 0 < b then 0 \<le> r \<and> r < b else b < r \<and> r \<le> 0\<rbrakk>
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   497
    \<Longrightarrow> divmod_rel a b (q, r)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   498
  unfolding divmod_rel_def by simp
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   499
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   500
lemmas divmod_rel_div_eq = divmod_relI [THEN divmod_rel_div, THEN eq_reflection]
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   501
lemmas divmod_rel_mod_eq = divmod_relI [THEN divmod_rel_mod, THEN eq_reflection]
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   502
lemmas arithmetic_simps =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   503
  arith_simps
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   504
  add_special
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   505
  OrderedGroup.add_0_left
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   506
  OrderedGroup.add_0_right
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   507
  mult_zero_left
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   508
  mult_zero_right
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   509
  mult_1_left
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   510
  mult_1_right
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   511
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   512
(* simprocs adapted from HOL/ex/Binary.thy *)
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   513
ML {*
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   514
local
30517
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   515
  val mk_number = HOLogic.mk_number HOLogic.intT;
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   516
  fun mk_cert u k l = @{term "plus :: int \<Rightarrow> int \<Rightarrow> int"} $
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   517
    (@{term "times :: int \<Rightarrow> int \<Rightarrow> int"} $ u $ mk_number k) $
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   518
      mk_number l;
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   519
  fun prove ctxt prop = Goal.prove ctxt [] [] prop
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   520
    (K (ALLGOALS (full_simp_tac (HOL_basic_ss addsimps @{thms arithmetic_simps}))));
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   521
  fun binary_proc proc ss ct =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   522
    (case Thm.term_of ct of
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   523
      _ $ t $ u =>
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   524
      (case try (pairself (`(snd o HOLogic.dest_number))) (t, u) of
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   525
        SOME args => proc (Simplifier.the_context ss) args
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   526
      | NONE => NONE)
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   527
    | _ => NONE);
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   528
in
30517
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   529
  fun divmod_proc rule = binary_proc (fn ctxt => fn ((m, t), (n, u)) =>
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   530
    if n = 0 then NONE
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   531
    else let val (k, l) = Integer.div_mod m n;
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   532
    in SOME (rule OF [prove ctxt (Logic.mk_equals (t, mk_cert u k l))]) end);
51a39ed24c0f tuned ML code
haftmann
parents: 30496
diff changeset
   533
end
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   534
*}
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   535
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   536
simproc_setup binary_int_div ("number_of m div number_of n :: int") =
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   537
  {* K (divmod_proc (@{thm divmod_rel_div_eq})) *}
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   538
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   539
simproc_setup binary_int_mod ("number_of m mod number_of n :: int") =
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   540
  {* K (divmod_proc (@{thm divmod_rel_mod_eq})) *}
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   541
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   542
lemmas posDivAlg_eqn_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   543
    posDivAlg_eqn [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   544
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   545
lemmas negDivAlg_eqn_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   546
    negDivAlg_eqn [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   547
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   548
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   549
text{*Special-case simplification *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   550
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   551
lemma zmod_minus1_right [simp]: "a mod (-1::int) = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   552
apply (cut_tac a = a and b = "-1" in neg_mod_sign)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   553
apply (cut_tac [2] a = a and b = "-1" in neg_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   554
apply (auto simp del: neg_mod_sign neg_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   555
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   556
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   557
lemma zdiv_minus1_right [simp]: "a div (-1::int) = -a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   558
by (cut_tac a = a and b = "-1" in zmod_zdiv_equality, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   559
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   560
(** The last remaining special cases for constant arithmetic:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   561
    1 div z and 1 mod z **)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   562
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   563
lemmas div_pos_pos_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   564
    div_pos_pos [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   565
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   566
lemmas div_pos_neg_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   567
    div_pos_neg [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   568
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   569
lemmas mod_pos_pos_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   570
    mod_pos_pos [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   571
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   572
lemmas mod_pos_neg_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   573
    mod_pos_neg [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   574
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   575
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   576
lemmas posDivAlg_eqn_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   577
    posDivAlg_eqn [of concl: 1 "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   578
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   579
lemmas negDivAlg_eqn_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   580
    negDivAlg_eqn [of concl: 1 "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   581
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   582
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   583
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   584
subsection{*Monotonicity in the First Argument (Dividend)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   585
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   586
lemma zdiv_mono1: "[| a \<le> a';  0 < (b::int) |] ==> a div b \<le> a' div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   587
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   588
apply (cut_tac a = a' and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   589
apply (rule unique_quotient_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   590
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   591
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   592
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   593
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   594
lemma zdiv_mono1_neg: "[| a \<le> a';  (b::int) < 0 |] ==> a' div b \<le> a div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   595
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   596
apply (cut_tac a = a' and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   597
apply (rule unique_quotient_lemma_neg)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   598
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   599
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   600
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   601
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   602
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   603
subsection{*Monotonicity in the Second Argument (Divisor)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   604
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   605
lemma q_pos_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   606
     "[| 0 \<le> b'*q' + r'; r' < b';  0 < b' |] ==> 0 \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   607
apply (subgoal_tac "0 < b'* (q' + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   608
 apply (simp add: zero_less_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   609
apply (simp add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   610
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   611
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   612
lemma zdiv_mono2_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   613
     "[| b*q + r = b'*q' + r';  0 \<le> b'*q' + r';   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   614
         r' < b';  0 \<le> r;  0 < b';  b' \<le> b |]   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   615
      ==> q \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   616
apply (frule q_pos_lemma, assumption+) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   617
apply (subgoal_tac "b*q < b* (q' + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   618
 apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   619
apply (subgoal_tac "b*q = r' - r + b'*q'")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   620
 prefer 2 apply simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   621
apply (simp (no_asm_simp) add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   622
apply (subst add_commute, rule zadd_zless_mono, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   623
apply (rule mult_right_mono, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   624
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   625
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   626
lemma zdiv_mono2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   627
     "[| (0::int) \<le> a;  0 < b';  b' \<le> b |] ==> a div b \<le> a div b'"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   628
apply (subgoal_tac "b \<noteq> 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   629
 prefer 2 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   630
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   631
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   632
apply (rule zdiv_mono2_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   633
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   634
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   635
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   636
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   637
lemma q_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   638
     "[| b'*q' + r' < 0;  0 \<le> r';  0 < b' |] ==> q' \<le> (0::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   639
apply (subgoal_tac "b'*q' < 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   640
 apply (simp add: mult_less_0_iff, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   641
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   642
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   643
lemma zdiv_mono2_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   644
     "[| b*q + r = b'*q' + r';  b'*q' + r' < 0;   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   645
         r < b;  0 \<le> r';  0 < b';  b' \<le> b |]   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   646
      ==> q' \<le> (q::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   647
apply (frule q_neg_lemma, assumption+) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   648
apply (subgoal_tac "b*q' < b* (q + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   649
 apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   650
apply (simp add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   651
apply (subgoal_tac "b*q' \<le> b'*q'")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   652
 prefer 2 apply (simp add: mult_right_mono_neg, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   653
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   654
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   655
lemma zdiv_mono2_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   656
     "[| a < (0::int);  0 < b';  b' \<le> b |] ==> a div b' \<le> a div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   657
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   658
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   659
apply (rule zdiv_mono2_neg_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   660
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   661
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   662
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   663
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25919
diff changeset
   664
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   665
subsection{*More Algebraic Laws for div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   666
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   667
text{*proving (a*b) div c = a * (b div c) + a * (b mod c) *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   668
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   669
lemma zmult1_lemma:
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   670
     "[| divmod_rel b c (q, r);  c \<noteq> 0 |]  
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   671
      ==> divmod_rel (a * b) c (a*q + a*r div c, a*r mod c)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   672
by (force simp add: split_ifs divmod_rel_def linorder_neq_iff right_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   673
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   674
lemma zdiv_zmult1_eq: "(a*b) div c = a*(b div c) + a*(b mod c) div (c::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   675
apply (case_tac "c = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   676
apply (blast intro: divmod_rel_div_mod [THEN zmult1_lemma, THEN divmod_rel_div])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   677
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   678
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   679
lemma zmod_zmult1_eq: "(a*b) mod c = a*(b mod c) mod (c::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   680
apply (case_tac "c = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   681
apply (blast intro: divmod_rel_div_mod [THEN zmult1_lemma, THEN divmod_rel_mod])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   682
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   683
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   684
lemma zmod_zdiv_trivial: "(a mod b) div b = (0::int)"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   685
apply (case_tac "b = 0", simp)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   686
apply (auto simp add: linorder_neq_iff div_pos_pos_trivial div_neg_neg_trivial)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   687
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   688
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   689
text{*proving (a+b) div c = a div c + b div c + ((a mod c + b mod c) div c) *}
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   690
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   691
lemma zadd1_lemma:
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   692
     "[| divmod_rel a c (aq, ar);  divmod_rel b c (bq, br);  c \<noteq> 0 |]  
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   693
      ==> divmod_rel (a+b) c (aq + bq + (ar+br) div c, (ar+br) mod c)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   694
by (force simp add: split_ifs divmod_rel_def linorder_neq_iff right_distrib)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   695
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   696
(*NOT suitable for rewriting: the RHS has an instance of the LHS*)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   697
lemma zdiv_zadd1_eq:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   698
     "(a+b) div (c::int) = a div c + b div c + ((a mod c + b mod c) div c)"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   699
apply (case_tac "c = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   700
apply (blast intro: zadd1_lemma [OF divmod_rel_div_mod divmod_rel_div_mod] divmod_rel_div)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   701
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   702
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   703
instance int :: ring_div
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   704
proof
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   705
  fix a b c :: int
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   706
  assume not0: "b \<noteq> 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   707
  show "(a + c * b) div b = c + a div b"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   708
    unfolding zdiv_zadd1_eq [of a "c * b"] using not0 
30181
05629f28f0f7 removed redundant lemmas
nipkow
parents: 30180
diff changeset
   709
      by (simp add: zmod_zmult1_eq zmod_zdiv_trivial zdiv_zmult1_eq)
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   710
next
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   711
  fix a b c :: int
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   712
  assume "a \<noteq> 0"
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   713
  then show "(a * b) div (a * c) = b div c"
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   714
  proof (cases "b \<noteq> 0 \<and> c \<noteq> 0")
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   715
    case False then show ?thesis by auto
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   716
  next
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   717
    case True then have "b \<noteq> 0" and "c \<noteq> 0" by auto
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   718
    with `a \<noteq> 0`
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   719
    have "\<And>q r. divmod_rel b c (q, r) \<Longrightarrow> divmod_rel (a * b) (a * c) (q, a * r)"
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   720
      apply (auto simp add: divmod_rel_def) 
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   721
      apply (auto simp add: algebra_simps)
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   722
      apply (auto simp add: zero_less_mult_iff zero_le_mult_iff mult_le_0_iff)
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   723
      done
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   724
    moreover with `c \<noteq> 0` divmod_rel_div_mod have "divmod_rel b c (b div c, b mod c)" by auto
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   725
    ultimately have "divmod_rel (a * b) (a * c) (b div c, a * (b mod c))" .
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   726
    moreover from  `a \<noteq> 0` `c \<noteq> 0` have "a * c \<noteq> 0" by simp
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   727
    ultimately show ?thesis by (rule divmod_rel_div)
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   728
  qed
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   729
qed auto
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25919
diff changeset
   730
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   731
lemma posDivAlg_div_mod:
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   732
  assumes "k \<ge> 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   733
  and "l \<ge> 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   734
  shows "posDivAlg k l = (k div l, k mod l)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   735
proof (cases "l = 0")
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   736
  case True then show ?thesis by (simp add: posDivAlg.simps)
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   737
next
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   738
  case False with assms posDivAlg_correct
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   739
    have "divmod_rel k l (fst (posDivAlg k l), snd (posDivAlg k l))"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   740
    by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   741
  from divmod_rel_div [OF this `l \<noteq> 0`] divmod_rel_mod [OF this `l \<noteq> 0`]
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   742
  show ?thesis by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   743
qed
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   744
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   745
lemma negDivAlg_div_mod:
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   746
  assumes "k < 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   747
  and "l > 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   748
  shows "negDivAlg k l = (k div l, k mod l)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   749
proof -
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   750
  from assms have "l \<noteq> 0" by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   751
  from assms negDivAlg_correct
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   752
    have "divmod_rel k l (fst (negDivAlg k l), snd (negDivAlg k l))"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   753
    by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   754
  from divmod_rel_div [OF this `l \<noteq> 0`] divmod_rel_mod [OF this `l \<noteq> 0`]
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   755
  show ?thesis by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   756
qed
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   757
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   758
lemma zmod_eq_0_iff: "(m mod d = 0) = (EX q::int. m = d*q)"
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   759
by (simp add: dvd_eq_mod_eq_0 [symmetric] dvd_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   760
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   761
(* REVISIT: should this be generalized to all semiring_div types? *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   762
lemmas zmod_eq_0D [dest!] = zmod_eq_0_iff [THEN iffD1]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   763
23983
79dc793bec43 Added lemmas
nipkow
parents: 23969
diff changeset
   764
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   765
subsection{*Proving  @{term "a div (b*c) = (a div b) div c"} *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   766
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   767
(*The condition c>0 seems necessary.  Consider that 7 div ~6 = ~2 but
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   768
  7 div 2 div ~3 = 3 div ~3 = ~1.  The subcase (a div b) mod c = 0 seems
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   769
  to cause particular problems.*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   770
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   771
text{*first, four lemmas to bound the remainder for the cases b<0 and b>0 *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   772
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   773
lemma zmult2_lemma_aux1: "[| (0::int) < c;  b < r;  r \<le> 0 |] ==> b*c < b*(q mod c) + r"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   774
apply (subgoal_tac "b * (c - q mod c) < r * 1")
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   775
 apply (simp add: algebra_simps)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   776
apply (rule order_le_less_trans)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   777
 apply (erule_tac [2] mult_strict_right_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   778
 apply (rule mult_left_mono_neg)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   779
  using add1_zle_eq[of "q mod c"]apply(simp add: algebra_simps pos_mod_bound)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   780
 apply (simp)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   781
apply (simp)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   782
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   783
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   784
lemma zmult2_lemma_aux2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   785
     "[| (0::int) < c;   b < r;  r \<le> 0 |] ==> b * (q mod c) + r \<le> 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   786
apply (subgoal_tac "b * (q mod c) \<le> 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   787
 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   788
apply (simp add: mult_le_0_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   789
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   790
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   791
lemma zmult2_lemma_aux3: "[| (0::int) < c;  0 \<le> r;  r < b |] ==> 0 \<le> b * (q mod c) + r"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   792
apply (subgoal_tac "0 \<le> b * (q mod c) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   793
apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   794
apply (simp add: zero_le_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   795
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   796
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   797
lemma zmult2_lemma_aux4: "[| (0::int) < c; 0 \<le> r; r < b |] ==> b * (q mod c) + r < b * c"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   798
apply (subgoal_tac "r * 1 < b * (c - q mod c) ")
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   799
 apply (simp add: right_diff_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   800
apply (rule order_less_le_trans)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   801
 apply (erule mult_strict_right_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   802
 apply (rule_tac [2] mult_left_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   803
  apply simp
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   804
 using add1_zle_eq[of "q mod c"] apply (simp add: algebra_simps pos_mod_bound)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   805
apply simp
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   806
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   807
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   808
lemma zmult2_lemma: "[| divmod_rel a b (q, r);  b \<noteq> 0;  0 < c |]  
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   809
      ==> divmod_rel a (b * c) (q div c, b*(q mod c) + r)"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   810
by (auto simp add: mult_ac divmod_rel_def linorder_neq_iff
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   811
                   zero_less_mult_iff right_distrib [symmetric] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   812
                   zmult2_lemma_aux1 zmult2_lemma_aux2 zmult2_lemma_aux3 zmult2_lemma_aux4)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   813
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   814
lemma zdiv_zmult2_eq: "(0::int) < c ==> a div (b*c) = (a div b) div c"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   815
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   816
apply (force simp add: divmod_rel_div_mod [THEN zmult2_lemma, THEN divmod_rel_div])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   817
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   818
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   819
lemma zmod_zmult2_eq:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   820
     "(0::int) < c ==> a mod (b*c) = b*(a div b mod c) + a mod b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   821
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   822
apply (force simp add: divmod_rel_div_mod [THEN zmult2_lemma, THEN divmod_rel_mod])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   823
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   824
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   825
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   826
subsection {*Splitting Rules for div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   827
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   828
text{*The proofs of the two lemmas below are essentially identical*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   829
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   830
lemma split_pos_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   831
 "0<k ==> 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   832
    P(n div k :: int)(n mod k) = (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i j)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   833
apply (rule iffI, clarify)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   834
 apply (erule_tac P="P ?x ?y" in rev_mp)  
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   835
 apply (subst mod_add_eq) 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   836
 apply (subst zdiv_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   837
 apply (simp add: div_pos_pos_trivial mod_pos_pos_trivial)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   838
txt{*converse direction*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   839
apply (drule_tac x = "n div k" in spec) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   840
apply (drule_tac x = "n mod k" in spec, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   841
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   842
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   843
lemma split_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   844
 "k<0 ==>
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   845
    P(n div k :: int)(n mod k) = (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i j)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   846
apply (rule iffI, clarify)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   847
 apply (erule_tac P="P ?x ?y" in rev_mp)  
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   848
 apply (subst mod_add_eq) 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   849
 apply (subst zdiv_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   850
 apply (simp add: div_neg_neg_trivial mod_neg_neg_trivial)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   851
txt{*converse direction*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   852
apply (drule_tac x = "n div k" in spec) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   853
apply (drule_tac x = "n mod k" in spec, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   854
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   855
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   856
lemma split_zdiv:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   857
 "P(n div k :: int) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   858
  ((k = 0 --> P 0) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   859
   (0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i)) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   860
   (k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   861
apply (case_tac "k=0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   862
apply (simp only: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   863
apply (erule disjE) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   864
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P x"] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   865
                      split_neg_lemma [of concl: "%x y. P x"])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   866
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   867
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   868
lemma split_zmod:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   869
 "P(n mod k :: int) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   870
  ((k = 0 --> P n) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   871
   (0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P j)) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   872
   (k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P j)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   873
apply (case_tac "k=0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   874
apply (simp only: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   875
apply (erule disjE) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   876
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P y"] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   877
                      split_neg_lemma [of concl: "%x y. P y"])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   878
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   879
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   880
(* Enable arith to deal with div 2 and mod 2: *)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   881
declare split_zdiv [of _ _ "number_of k", simplified, standard, arith_split]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   882
declare split_zmod [of _ _ "number_of k", simplified, standard, arith_split]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   883
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   884
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   885
subsection{*Speeding up the Division Algorithm with Shifting*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   886
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   887
text{*computing div by shifting *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   888
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   889
lemma pos_zdiv_mult_2: "(0::int) \<le> a ==> (1 + 2*b) div (2*a) = b div a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   890
proof cases
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   891
  assume "a=0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   892
    thus ?thesis by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   893
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   894
  assume "a\<noteq>0" and le_a: "0\<le>a"   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   895
  hence a_pos: "1 \<le> a" by arith
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30517
diff changeset
   896
  hence one_less_a2: "1 < 2 * a" by arith
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   897
  hence le_2a: "2 * (1 + b mod a) \<le> 2 * a"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30517
diff changeset
   898
    unfolding mult_le_cancel_left
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30517
diff changeset
   899
    by (simp add: add1_zle_eq add_commute [of 1])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   900
  with a_pos have "0 \<le> b mod a" by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   901
  hence le_addm: "0 \<le> 1 mod (2*a) + 2*(b mod a)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   902
    by (simp add: mod_pos_pos_trivial one_less_a2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   903
  with  le_2a
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   904
  have "(1 mod (2*a) + 2*(b mod a)) div (2*a) = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   905
    by (simp add: div_pos_pos_trivial le_addm mod_pos_pos_trivial one_less_a2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   906
                  right_distrib) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   907
  thus ?thesis
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   908
    by (subst zdiv_zadd1_eq,
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   909
        simp add: mod_mult_mult1 one_less_a2
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   910
                  div_pos_pos_trivial)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   911
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   912
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   913
lemma neg_zdiv_mult_2: "a \<le> (0::int) ==> (1 + 2*b) div (2*a) = (b+1) div a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   914
apply (subgoal_tac " (1 + 2* (-b - 1)) div (2 * (-a)) = (-b - 1) div (-a) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   915
apply (rule_tac [2] pos_zdiv_mult_2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   916
apply (auto simp add: minus_mult_right [symmetric] right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   917
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   918
apply (simp only: zdiv_zminus_zminus diff_minus minus_add_distrib [symmetric],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   919
       simp) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   920
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   921
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   922
lemma zdiv_number_of_Bit0 [simp]:
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   923
     "number_of (Int.Bit0 v) div number_of (Int.Bit0 w) =  
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   924
          number_of v div (number_of w :: int)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   925
by (simp only: number_of_eq numeral_simps) simp
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   926
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   927
lemma zdiv_number_of_Bit1 [simp]:
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   928
     "number_of (Int.Bit1 v) div number_of (Int.Bit0 w) =  
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   929
          (if (0::int) \<le> number_of w                    
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   930
           then number_of v div (number_of w)     
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   931
           else (number_of v + (1::int)) div (number_of w))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   932
apply (simp only: number_of_eq numeral_simps UNIV_I split: split_if) 
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   933
apply (simp add: pos_zdiv_mult_2 neg_zdiv_mult_2 add_ac)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   934
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   935
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   936
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   937
subsection{*Computing mod by Shifting (proofs resemble those for div)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   938
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   939
lemma pos_zmod_mult_2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   940
     "(0::int) \<le> a ==> (1 + 2*b) mod (2*a) = 1 + 2 * (b mod a)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   941
apply (case_tac "a = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   942
apply (subgoal_tac "1 < a * 2")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   943
 prefer 2 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   944
apply (subgoal_tac "2* (1 + b mod a) \<le> 2*a")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   945
 apply (rule_tac [2] mult_left_mono)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   946
apply (auto simp add: add_commute [of 1] mult_commute add1_zle_eq 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   947
                      pos_mod_bound)
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   948
apply (subst mod_add_eq)
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   949
apply (simp add: mod_mult_mult2 mod_pos_pos_trivial)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   950
apply (rule mod_pos_pos_trivial)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   951
apply (auto simp add: mod_pos_pos_trivial ring_distribs)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   952
apply (subgoal_tac "0 \<le> b mod a", arith, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   953
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   954
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   955
lemma neg_zmod_mult_2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   956
     "a \<le> (0::int) ==> (1 + 2*b) mod (2*a) = 2 * ((b+1) mod a) - 1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   957
apply (subgoal_tac "(1 + 2* (-b - 1)) mod (2* (-a)) = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   958
                    1 + 2* ((-b - 1) mod (-a))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   959
apply (rule_tac [2] pos_zmod_mult_2)
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
   960
apply (auto simp add: right_diff_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   961
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   962
 prefer 2 apply simp 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   963
apply (simp only: zmod_zminus_zminus diff_minus minus_add_distrib [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   964
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   965
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   966
lemma zmod_number_of_Bit0 [simp]:
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   967
     "number_of (Int.Bit0 v) mod number_of (Int.Bit0 w) =  
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   968
      (2::int) * (number_of v mod number_of w)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   969
apply (simp only: number_of_eq numeral_simps) 
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   970
apply (simp add: mod_mult_mult1 pos_zmod_mult_2 
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   971
                 neg_zmod_mult_2 add_ac)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   972
done
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   973
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   974
lemma zmod_number_of_Bit1 [simp]:
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   975
     "number_of (Int.Bit1 v) mod number_of (Int.Bit0 w) =  
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   976
      (if (0::int) \<le> number_of w  
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   977
                then 2 * (number_of v mod number_of w) + 1     
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   978
                else 2 * ((number_of v + (1::int)) mod number_of w) - 1)"
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   979
apply (simp only: number_of_eq numeral_simps) 
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
   980
apply (simp add: mod_mult_mult1 pos_zmod_mult_2 
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   981
                 neg_zmod_mult_2 add_ac)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   982
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   983
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   984
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   985
subsection{*Quotients of Signs*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   986
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   987
lemma div_neg_pos_less0: "[| a < (0::int);  0 < b |] ==> a div b < 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   988
apply (subgoal_tac "a div b \<le> -1", force)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   989
apply (rule order_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   990
apply (rule_tac a' = "-1" in zdiv_mono1)
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   991
apply (auto simp add: div_eq_minus1)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   992
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   993
30323
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
   994
lemma div_nonneg_neg_le0: "[| (0::int) \<le> a; b < 0 |] ==> a div b \<le> 0"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   995
by (drule zdiv_mono1_neg, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   996
30323
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
   997
lemma div_nonpos_pos_le0: "[| (a::int) \<le> 0; b > 0 |] ==> a div b \<le> 0"
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
   998
by (drule zdiv_mono1, auto)
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
   999
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1000
lemma pos_imp_zdiv_nonneg_iff: "(0::int) < b ==> (0 \<le> a div b) = (0 \<le> a)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1001
apply auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1002
apply (drule_tac [2] zdiv_mono1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1003
apply (auto simp add: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1004
apply (simp (no_asm_use) add: linorder_not_less [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1005
apply (blast intro: div_neg_pos_less0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1006
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1007
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1008
lemma neg_imp_zdiv_nonneg_iff:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1009
     "b < (0::int) ==> (0 \<le> a div b) = (a \<le> (0::int))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1010
apply (subst zdiv_zminus_zminus [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1011
apply (subst pos_imp_zdiv_nonneg_iff, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1012
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1013
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1014
(*But not (a div b \<le> 0 iff a\<le>0); consider a=1, b=2 when a div b = 0.*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1015
lemma pos_imp_zdiv_neg_iff: "(0::int) < b ==> (a div b < 0) = (a < 0)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1016
by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1017
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1018
(*Again the law fails for \<le>: consider a = -1, b = -2 when a div b = 0*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1019
lemma neg_imp_zdiv_neg_iff: "b < (0::int) ==> (a div b < 0) = (0 < a)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1020
by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1021
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1022
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1023
subsection {* The Divides Relation *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1024
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1025
lemmas zdvd_iff_zmod_eq_0_number_of [simp] =
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1026
  dvd_eq_mod_eq_0 [of "number_of x::int" "number_of y::int", standard]
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1027
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1028
lemma zdvd_anti_sym:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1029
    "0 < m ==> 0 < n ==> m dvd n ==> n dvd m ==> m = (n::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1030
  apply (simp add: dvd_def, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1031
  apply (simp add: mult_assoc zero_less_mult_iff zmult_eq_1_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1032
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1033
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1034
lemma zdvd_dvd_eq: assumes "a \<noteq> 0" and "(a::int) dvd b" and "b dvd a" 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1035
  shows "\<bar>a\<bar> = \<bar>b\<bar>"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1036
proof-
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1037
  from `a dvd b` obtain k where k:"b = a*k" unfolding dvd_def by blast 
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1038
  from `b dvd a` obtain k' where k':"a = b*k'" unfolding dvd_def by blast 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1039
  from k k' have "a = a*k*k'" by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1040
  with mult_cancel_left1[where c="a" and b="k*k'"]
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1041
  have kk':"k*k' = 1" using `a\<noteq>0` by (simp add: mult_assoc)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1042
  hence "k = 1 \<and> k' = 1 \<or> k = -1 \<and> k' = -1" by (simp add: zmult_eq_1_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1043
  thus ?thesis using k k' by auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1044
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1045
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1046
lemma zdvd_zdiffD: "k dvd m - n ==> k dvd n ==> k dvd (m::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1047
  apply (subgoal_tac "m = n + (m - n)")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1048
   apply (erule ssubst)
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1049
   apply (blast intro: dvd_add, simp)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1050
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1051
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1052
lemma zdvd_reduce: "(k dvd n + k * m) = (k dvd (n::int))"
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1053
apply (rule iffI)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1054
 apply (erule_tac [2] dvd_add)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1055
 apply (subgoal_tac "n = (n + k * m) - k * m")
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1056
  apply (erule ssubst)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1057
  apply (erule dvd_diff)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1058
  apply(simp_all)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1059
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1060
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1061
lemma zdvd_zmod: "f dvd m ==> f dvd (n::int) ==> f dvd m mod n"
31662
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31068
diff changeset
  1062
  by (rule dvd_mod) (* TODO: remove *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1063
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1064
lemma zdvd_zmod_imp_zdvd: "k dvd m mod n ==> k dvd n ==> k dvd (m::int)"
31662
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31068
diff changeset
  1065
  by (rule dvd_mod_imp_dvd) (* TODO: remove *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1066
31734
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1067
lemma dvd_imp_le_int: "(i::int) ~= 0 ==> d dvd i ==> abs d <= abs i"
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1068
apply(auto simp:abs_if)
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1069
   apply(clarsimp simp:dvd_def mult_less_0_iff)
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1070
  using mult_le_cancel_left_neg[of _ "-1::int"]
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1071
  apply(clarsimp simp:dvd_def mult_less_0_iff)
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1072
 apply(clarsimp simp:dvd_def mult_less_0_iff
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1073
         minus_mult_right simp del: mult_minus_right)
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1074
apply(clarsimp simp:dvd_def mult_less_0_iff)
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1075
done
a4a79836d07b new lemmas
nipkow
parents: 31662
diff changeset
  1076
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1077
lemma zdvd_not_zless: "0 < m ==> m < n ==> \<not> n dvd (m::int)"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1078
  apply (auto elim!: dvdE)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1079
  apply (subgoal_tac "0 < n")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1080
   prefer 2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1081
   apply (blast intro: order_less_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1082
  apply (simp add: zero_less_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1083
  done
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1084
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1085
lemma zmult_div_cancel: "(n::int) * (m div n) = m - (m mod n)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1086
  using zmod_zdiv_equality[where a="m" and b="n"]
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
  1087
  by (simp add: algebra_simps)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1088
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1089
lemma zdvd_mult_div_cancel:"(n::int) dvd m \<Longrightarrow> n * (m div n) = m"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1090
apply (subgoal_tac "m mod n = 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1091
 apply (simp add: zmult_div_cancel)
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1092
apply (simp only: dvd_eq_mod_eq_0)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1093
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1094
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1095
lemma zdvd_mult_cancel: assumes d:"k * m dvd k * n" and kz:"k \<noteq> (0::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1096
  shows "m dvd n"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1097
proof-
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1098
  from d obtain h where h: "k*n = k*m * h" unfolding dvd_def by blast
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1099
  {assume "n \<noteq> m*h" hence "k* n \<noteq> k* (m*h)" using kz by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1100
    with h have False by (simp add: mult_assoc)}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1101
  hence "n = m * h" by blast
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1102
  thus ?thesis by simp
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1103
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1104
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23853
diff changeset
  1105
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1106
theorem ex_nat: "(\<exists>x::nat. P x) = (\<exists>x::int. 0 <= x \<and> P (nat x))"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1107
apply (simp split add: split_nat)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1108
apply (rule iffI)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1109
apply (erule exE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1110
apply (rule_tac x = "int x" in exI)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1111
apply simp
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1112
apply (erule exE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1113
apply (rule_tac x = "nat x" in exI)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1114
apply (erule conjE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1115
apply (erule_tac x = "nat x" in allE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1116
apply simp
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1117
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1118
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1119
theorem zdvd_int: "(x dvd y) = (int x dvd int y)"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1120
proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1121
  have "\<And>k. int y = int x * k \<Longrightarrow> x dvd y"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1122
  proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1123
    fix k
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1124
    assume A: "int y = int x * k"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1125
    then show "x dvd y" proof (cases k)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1126
      case (1 n) with A have "y = x * n" by (simp add: zmult_int)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1127
      then show ?thesis ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1128
    next
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1129
      case (2 n) with A have "int y = int x * (- int (Suc n))" by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1130
      also have "\<dots> = - (int x * int (Suc n))" by (simp only: mult_minus_right)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1131
      also have "\<dots> = - int (x * Suc n)" by (simp only: zmult_int)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1132
      finally have "- int (x * Suc n) = int y" ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1133
      then show ?thesis by (simp only: negative_eq_positive) auto
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1134
    qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1135
  qed
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1136
  then show ?thesis by (auto elim!: dvdE simp only: dvd_triv_left int_mult)
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1137
qed
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1138
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1139
lemma zdvd1_eq[simp]: "(x::int) dvd 1 = ( \<bar>x\<bar> = 1)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1140
proof
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1141
  assume d: "x dvd 1" hence "int (nat \<bar>x\<bar>) dvd int (nat 1)" by simp
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1142
  hence "nat \<bar>x\<bar> dvd 1" by (simp add: zdvd_int)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1143
  hence "nat \<bar>x\<bar> = 1"  by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1144
  thus "\<bar>x\<bar> = 1" by (cases "x < 0", auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1145
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1146
  assume "\<bar>x\<bar>=1" thus "x dvd 1" 
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1147
    by(cases "x < 0",simp_all add: minus_equation_iff dvd_eq_mod_eq_0)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1148
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1149
lemma zdvd_mult_cancel1: 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1150
  assumes mp:"m \<noteq>(0::int)" shows "(m * n dvd m) = (\<bar>n\<bar> = 1)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1151
proof
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1152
  assume n1: "\<bar>n\<bar> = 1" thus "m * n dvd m" 
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1153
    by (cases "n >0", auto simp add: minus_dvd_iff minus_equation_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1154
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1155
  assume H: "m * n dvd m" hence H2: "m * n dvd m * 1" by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1156
  from zdvd_mult_cancel[OF H2 mp] show "\<bar>n\<bar> = 1" by (simp only: zdvd1_eq)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1157
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1158
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1159
lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))"
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1160
  unfolding zdvd_int by (cases "z \<ge> 0") simp_all
23306
cdb027d0637e add int_of_nat versions of lemmas about int::nat=>int
huffman
parents: 23164
diff changeset
  1161
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1162
lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)"
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1163
  unfolding zdvd_int by (cases "z \<ge> 0") simp_all
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1165
lemma nat_dvd_iff: "(nat z dvd m) = (if 0 \<le> z then (z dvd int m) else m = 0)"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1166
  by (auto simp add: dvd_int_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1167
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1168
lemma zdvd_imp_le: "[| z dvd n; 0 < n |] ==> z \<le> (n::int)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1169
  apply (rule_tac z=n in int_cases)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1170
  apply (auto simp add: dvd_int_iff)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1171
  apply (rule_tac z=z in int_cases)
23307
2fe3345035c7 modify proofs to avoid referring to int::nat=>int
huffman
parents: 23306
diff changeset
  1172
  apply (auto simp add: dvd_imp_le)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1173
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1174
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1175
lemma zpower_zmod: "((x::int) mod m)^y mod m = x^y mod m"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1176
apply (induct "y", auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1177
apply (rule zmod_zmult1_eq [THEN trans])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1178
apply (simp (no_asm_simp))
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
  1179
apply (rule mod_mult_eq [symmetric])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1180
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1181
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1182
lemma zdiv_int: "int (a div b) = (int a) div (int b)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1183
apply (subst split_div, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1184
apply (subst split_zdiv, auto)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1185
apply (rule_tac a="int (b * i) + int j" and b="int b" and r="int j" and r'=ja in IntDiv.unique_quotient)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
  1186
apply (auto simp add: IntDiv.divmod_rel_def of_nat_mult)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1187
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1188
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1189
lemma zmod_int: "int (a mod b) = (int a) mod (int b)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1190
apply (subst split_mod, auto)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1191
apply (subst split_zmod, auto)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1192
apply (rule_tac a="int (b * i) + int j" and b="int b" and q="int i" and q'=ia 
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1193
       in unique_remainder)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
  1194
apply (auto simp add: IntDiv.divmod_rel_def of_nat_mult)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1195
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1196
30180
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
  1197
lemma abs_div: "(y::int) dvd x \<Longrightarrow> abs (x div y) = abs x div abs y"
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
  1198
by (unfold dvd_def, cases "y=0", auto simp add: abs_mult)
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
  1199
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1200
text{*Suggested by Matthias Daum*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1201
lemma int_power_div_base:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1202
     "\<lbrakk>0 < m; 0 < k\<rbrakk> \<Longrightarrow> k ^ m div k = (k::int) ^ (m - Suc 0)"
30079
293b896b9c25 make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents: 30042
diff changeset
  1203
apply (subgoal_tac "k ^ m = k ^ ((m - Suc 0) + Suc 0)")
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1204
 apply (erule ssubst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1205
 apply (simp only: power_add)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1206
 apply simp_all
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1207
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1208
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1209
text {* by Brian Huffman *}
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1210
lemma zminus_zmod: "- ((x::int) mod m) mod m = - x mod m"
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
  1211
by (rule mod_minus_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1212
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1213
lemma zdiff_zmod_left: "(x mod m - y) mod m = (x - y) mod (m::int)"
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
  1214
by (rule mod_diff_left_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1215
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1216
lemma zdiff_zmod_right: "(x - y mod m) mod m = (x - y) mod (m::int)"
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
  1217
by (rule mod_diff_right_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1218
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1219
lemmas zmod_simps =
30034
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1220
  mod_add_left_eq  [symmetric]
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1221
  mod_add_right_eq [symmetric]
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
  1222
  zmod_zmult1_eq   [symmetric]
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
  1223
  mod_mult_left_eq [symmetric]
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30652
diff changeset
  1224
  zpower_zmod
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1225
  zminus_zmod zdiff_zmod_left zdiff_zmod_right
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1226
29045
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1227
text {* Distributive laws for function @{text nat}. *}
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1228
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1229
lemma nat_div_distrib: "0 \<le> x \<Longrightarrow> nat (x div y) = nat x div nat y"
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1230
apply (rule linorder_cases [of y 0])
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1231
apply (simp add: div_nonneg_neg_le0)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1232
apply simp
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1233
apply (simp add: nat_eq_iff pos_imp_zdiv_nonneg_iff zdiv_int)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1234
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1235
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1236
(*Fails if y<0: the LHS collapses to (nat z) but the RHS doesn't*)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1237
lemma nat_mod_distrib:
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1238
  "\<lbrakk>0 \<le> x; 0 \<le> y\<rbrakk> \<Longrightarrow> nat (x mod y) = nat x mod nat y"
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1239
apply (case_tac "y = 0", simp add: DIVISION_BY_ZERO)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1240
apply (simp add: nat_eq_iff zmod_int)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1241
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1242
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1243
text{*Suggested by Matthias Daum*}
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1244
lemma int_div_less_self: "\<lbrakk>0 < x; 1 < k\<rbrakk> \<Longrightarrow> x div k < (x::int)"
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1245
apply (subgoal_tac "nat x div nat k < nat x")
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1246
 apply (simp (asm_lr) add: nat_div_distrib [symmetric])
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1247
apply (rule Divides.div_less_dividend, simp_all)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1248
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1249
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1250
text {* code generator setup *}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1251
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1252
context ring_1
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1253
begin
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1254
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28262
diff changeset
  1255
lemma of_int_num [code]:
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1256
  "of_int k = (if k = 0 then 0 else if k < 0 then
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1257
     - of_int (- k) else let
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
  1258
       (l, m) = divmod k 2;
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1259
       l' = of_int l
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1260
     in if m = 0 then l' + l' else l' + l' + 1)"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1261
proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1262
  have aux1: "k mod (2\<Colon>int) \<noteq> (0\<Colon>int) \<Longrightarrow> 
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1263
    of_int k = of_int (k div 2 * 2 + 1)"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1264
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1265
    have "k mod 2 < 2" by (auto intro: pos_mod_bound)
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1266
    moreover have "0 \<le> k mod 2" by (auto intro: pos_mod_sign)
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1267
    moreover assume "k mod 2 \<noteq> 0"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1268
    ultimately have "k mod 2 = 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1269
    moreover have "of_int k = of_int (k div 2 * 2 + k mod 2)" by simp
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1270
    ultimately show ?thesis by auto
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1271
  qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1272
  have aux2: "\<And>x. of_int 2 * x = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1273
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1274
    fix x
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1275
    have int2: "(2::int) = 1 + 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1276
    show "of_int 2 * x = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1277
    unfolding int2 of_int_add left_distrib by simp
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1278
  qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1279
  have aux3: "\<And>x. x * of_int 2 = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1280
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1281
    fix x
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1282
    have int2: "(2::int) = 1 + 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1283
    show "x * of_int 2 = x + x" 
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1284
    unfolding int2 of_int_add right_distrib by simp
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1285
  qed
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
  1286
  from aux1 show ?thesis by (auto simp add: divmod_mod_div Let_def aux2 aux3)
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1287
qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1288
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1289
end
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1290
27667
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1291
lemma zmod_eq_dvd_iff: "(x::int) mod n = y mod n \<longleftrightarrow> n dvd x - y"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1292
proof
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1293
  assume H: "x mod n = y mod n"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1294
  hence "x mod n - y mod n = 0" by simp
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1295
  hence "(x mod n - y mod n) mod n = 0" by simp 
30034
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1296
  hence "(x - y) mod n = 0" by (simp add: mod_diff_eq[symmetric])
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1297
  thus "n dvd x - y" by (simp add: dvd_eq_mod_eq_0)
27667
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1298
next
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1299
  assume H: "n dvd x - y"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1300
  then obtain k where k: "x-y = n*k" unfolding dvd_def by blast
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1301
  hence "x = n*k + y" by simp
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1302
  hence "x mod n = (n*k + y) mod n" by simp
30034
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1303
  thus "x mod n = y mod n" by (simp add: mod_add_left_eq)
27667
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1304
qed
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1305
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1306
lemma nat_mod_eq_lemma: assumes xyn: "(x::nat) mod n = y  mod n" and xy:"y \<le> x"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1307
  shows "\<exists>q. x = y + n * q"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1308
proof-
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1309
  from xy have th: "int x - int y = int (x - y)" by simp 
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1310
  from xyn have "int x mod int n = int y mod int n" 
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1311
    by (simp add: zmod_int[symmetric])
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1312
  hence "int n dvd int x - int y" by (simp only: zmod_eq_dvd_iff[symmetric]) 
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1313
  hence "n dvd x - y" by (simp add: th zdvd_int)
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1314
  then show ?thesis using xy unfolding dvd_def apply clarsimp apply (rule_tac x="k" in exI) by arith
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1315
qed
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1316
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1317
lemma nat_mod_eq_iff: "(x::nat) mod n = y mod n \<longleftrightarrow> (\<exists>q1 q2. x + n * q1 = y + n * q2)" 
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1318
  (is "?lhs = ?rhs")
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1319
proof
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1320
  assume H: "x mod n = y mod n"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1321
  {assume xy: "x \<le> y"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1322
    from H have th: "y mod n = x mod n" by simp
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1323
    from nat_mod_eq_lemma[OF th xy] have ?rhs 
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1324
      apply clarify  apply (rule_tac x="q" in exI) by (rule exI[where x="0"], simp)}
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1325
  moreover
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1326
  {assume xy: "y \<le> x"
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1327
    from nat_mod_eq_lemma[OF H xy] have ?rhs 
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1328
      apply clarify  apply (rule_tac x="0" in exI) by (rule_tac x="q" in exI, simp)}
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1329
  ultimately  show ?rhs using linear[of x y] by blast  
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1330
next
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1331
  assume ?rhs then obtain q1 q2 where q12: "x + n * q1 = y + n * q2" by blast
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1332
  hence "(x + n * q1) mod n = (y + n * q2) mod n" by simp
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1333
  thus  ?lhs by simp
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1334
qed
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1335
29936
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1336
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1337
subsection {* Code generation *}
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1338
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1339
definition pdivmod :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1340
  "pdivmod k l = (\<bar>k\<bar> div \<bar>l\<bar>, \<bar>k\<bar> mod \<bar>l\<bar>)"
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1341
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1342
lemma pdivmod_posDivAlg [code]:
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1343
  "pdivmod k l = (if l = 0 then (0, \<bar>k\<bar>) else posDivAlg \<bar>k\<bar> \<bar>l\<bar>)"
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1344
by (subst posDivAlg_div_mod) (simp_all add: pdivmod_def)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1345
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1346
lemma divmod_pdivmod: "divmod k l = (if k = 0 then (0, 0) else if l = 0 then (0, k) else
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1347
  apsnd ((op *) (sgn l)) (if 0 < l \<and> 0 \<le> k \<or> l < 0 \<and> k < 0
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1348
    then pdivmod k l
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1349
    else (let (r, s) = pdivmod k l in
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1350
      if s = 0 then (- r, 0) else (- r - 1, \<bar>l\<bar> - s))))"
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1351
proof -
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1352
  have aux: "\<And>q::int. - k = l * q \<longleftrightarrow> k = l * - q" by auto
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1353
  show ?thesis
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1354
    by (simp add: divmod_mod_div pdivmod_def)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1355
      (auto simp add: aux not_less not_le zdiv_zminus1_eq_if
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1356
      zmod_zminus1_eq_if zdiv_zminus2_eq_if zmod_zminus2_eq_if)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1357
qed
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1358
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1359
lemma divmod_code [code]: "divmod k l = (if k = 0 then (0, 0) else if l = 0 then (0, k) else
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1360
  apsnd ((op *) (sgn l)) (if sgn k = sgn l
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1361
    then pdivmod k l
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1362
    else (let (r, s) = pdivmod k l in
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1363
      if s = 0 then (- r, 0) else (- r - 1, \<bar>l\<bar> - s))))"
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1364
proof -
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1365
  have "k \<noteq> 0 \<Longrightarrow> l \<noteq> 0 \<Longrightarrow> 0 < l \<and> 0 \<le> k \<or> l < 0 \<and> k < 0 \<longleftrightarrow> sgn k = sgn l"
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1366
    by (auto simp add: not_less sgn_if)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1367
  then show ?thesis by (simp add: divmod_pdivmod)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1368
qed
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1369
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1370
code_modulename SML
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1371
  IntDiv Integer
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1372
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1373
code_modulename OCaml
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1374
  IntDiv Integer
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1375
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1376
code_modulename Haskell
24195
haftmann
parents: 23983
diff changeset
  1377
  IntDiv Integer
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1378
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1379
end