src/HOL/IntDiv.thy
author nipkow
Fri, 06 Mar 2009 22:06:33 +0100
changeset 30323 6a02238da8e9
parent 30242 aea5d7fa7ef5
child 30496 7cdcc9dd95cb
permissions -rw-r--r--
added lemma
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
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
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 {*
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   248
local 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   249
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   250
structure CancelDivMod = CancelDivModFun(
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   251
struct
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   252
  val div_name = @{const_name Divides.div};
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   253
  val mod_name = @{const_name Divides.mod};
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   254
  val mk_binop = HOLogic.mk_binop;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   255
  val mk_sum = Int_Numeral_Simprocs.mk_sum HOLogic.intT;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   256
  val dest_sum = Int_Numeral_Simprocs.dest_sum;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   257
  val div_mod_eqs =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   258
    map mk_meta_eq [@{thm zdiv_zmod_equality},
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   259
      @{thm zdiv_zmod_equality2}];
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   260
  val trans = trans;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   261
  val prove_eq_sums =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   262
    let
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
   263
      val simps = @{thm diff_int_def} :: Int_Numeral_Simprocs.add_0s @ @{thms zadd_ac}
26101
a657683e902a tuned structures in arith_data.ML
haftmann
parents: 26086
diff changeset
   264
    in ArithData.prove_conv all_tac (ArithData.simp_all_tac simps) end;
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
28262
aa7ca36d67fd back to dynamic the_context(), because static @{theory} is invalidated if ML environment changes within the same code block;
wenzelm
parents: 27667
diff changeset
   269
val cancel_zdiv_zmod_proc = Simplifier.simproc (the_context ())
26101
a657683e902a tuned structures in arith_data.ML
haftmann
parents: 26086
diff changeset
   270
  "cancel_zdiv_zmod" ["(m::int) + n"] (K CancelDivMod.proc)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   271
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   272
end;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   273
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   274
Addsimprocs [cancel_zdiv_zmod_proc]
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
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   515
  infix ==;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   516
  val op == = Logic.mk_equals;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   517
  fun plus m n = @{term "plus :: int \<Rightarrow> int \<Rightarrow> int"} $ m $ n;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   518
  fun mult m n = @{term "times :: int \<Rightarrow> int \<Rightarrow> int"} $ m $ n;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   519
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   520
  val binary_ss = HOL_basic_ss addsimps @{thms arithmetic_simps};
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   521
  fun prove ctxt prop =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   522
    Goal.prove ctxt [] [] prop (fn _ => ALLGOALS (full_simp_tac binary_ss));
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   523
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   524
  fun binary_proc proc ss ct =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   525
    (case Thm.term_of ct of
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   526
      _ $ t $ u =>
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   527
      (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
   528
        SOME args => proc (Simplifier.the_context ss) args
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   529
      | NONE => NONE)
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   530
    | _ => NONE);
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   531
in
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   532
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   533
fun divmod_proc rule = binary_proc (fn ctxt => fn ((m, t), (n, u)) =>
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   534
  if n = 0 then NONE
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   535
  else
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 24490
diff changeset
   536
    let val (k, l) = Integer.div_mod m n;
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   537
        fun mk_num x = HOLogic.mk_number HOLogic.intT x;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   538
    in SOME (rule OF [prove ctxt (t == plus (mult u (mk_num k)) (mk_num l))])
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   539
    end);
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   540
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   541
end;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   542
*}
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   543
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   544
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
   545
  {* K (divmod_proc (@{thm divmod_rel_div_eq})) *}
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   546
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   547
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
   548
  {* K (divmod_proc (@{thm divmod_rel_mod_eq})) *}
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   549
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   550
lemmas posDivAlg_eqn_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   551
    posDivAlg_eqn [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   552
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   553
lemmas negDivAlg_eqn_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   554
    negDivAlg_eqn [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   555
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   556
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   557
text{*Special-case simplification *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   558
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   559
lemma zmod_minus1_right [simp]: "a mod (-1::int) = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   560
apply (cut_tac a = a and b = "-1" in neg_mod_sign)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   561
apply (cut_tac [2] a = a and b = "-1" in neg_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   562
apply (auto simp del: neg_mod_sign neg_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   563
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   564
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   565
lemma zdiv_minus1_right [simp]: "a div (-1::int) = -a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   566
by (cut_tac a = a and b = "-1" in zmod_zdiv_equality, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   567
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   568
(** The last remaining special cases for constant arithmetic:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   569
    1 div z and 1 mod z **)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   570
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   571
lemmas div_pos_pos_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   572
    div_pos_pos [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   573
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   574
lemmas div_pos_neg_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   575
    div_pos_neg [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   576
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   577
lemmas mod_pos_pos_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   578
    mod_pos_pos [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   579
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   580
lemmas mod_pos_neg_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   581
    mod_pos_neg [OF int_0_less_1, of "number_of w", standard]
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
lemmas posDivAlg_eqn_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   585
    posDivAlg_eqn [of concl: 1 "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   586
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   587
lemmas negDivAlg_eqn_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   588
    negDivAlg_eqn [of concl: 1 "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   589
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   590
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   591
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   592
subsection{*Monotonicity in the First Argument (Dividend)*}
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: "[| a \<le> a';  0 < (b::int) |] ==> 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)
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
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
   603
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   604
apply (cut_tac a = a' and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   605
apply (rule unique_quotient_lemma_neg)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   606
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   607
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   608
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   609
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   610
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   611
subsection{*Monotonicity in the Second Argument (Divisor)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   612
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   613
lemma q_pos_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   614
     "[| 0 \<le> b'*q' + r'; r' < b';  0 < b' |] ==> 0 \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   615
apply (subgoal_tac "0 < b'* (q' + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   616
 apply (simp add: zero_less_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   617
apply (simp add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   618
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   619
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   620
lemma zdiv_mono2_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   621
     "[| b*q + r = b'*q' + r';  0 \<le> b'*q' + r';   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   622
         r' < b';  0 \<le> r;  0 < b';  b' \<le> b |]   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   623
      ==> q \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   624
apply (frule q_pos_lemma, assumption+) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   625
apply (subgoal_tac "b*q < b* (q' + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   626
 apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   627
apply (subgoal_tac "b*q = r' - r + b'*q'")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   628
 prefer 2 apply simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   629
apply (simp (no_asm_simp) add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   630
apply (subst add_commute, rule zadd_zless_mono, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   631
apply (rule mult_right_mono, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   632
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   633
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   634
lemma zdiv_mono2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   635
     "[| (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
   636
apply (subgoal_tac "b \<noteq> 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   637
 prefer 2 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   638
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   639
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   640
apply (rule zdiv_mono2_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   641
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   642
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   643
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   644
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   645
lemma q_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   646
     "[| b'*q' + r' < 0;  0 \<le> r';  0 < b' |] ==> q' \<le> (0::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   647
apply (subgoal_tac "b'*q' < 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   648
 apply (simp add: mult_less_0_iff, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   649
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   650
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   651
lemma zdiv_mono2_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   652
     "[| b*q + r = b'*q' + r';  b'*q' + r' < 0;   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   653
         r < b;  0 \<le> r';  0 < b';  b' \<le> b |]   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   654
      ==> q' \<le> (q::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   655
apply (frule q_neg_lemma, assumption+) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   656
apply (subgoal_tac "b*q' < b* (q + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   657
 apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   658
apply (simp add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   659
apply (subgoal_tac "b*q' \<le> b'*q'")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   660
 prefer 2 apply (simp add: mult_right_mono_neg, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   661
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   662
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   663
lemma zdiv_mono2_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   664
     "[| 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
   665
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   666
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   667
apply (rule zdiv_mono2_neg_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   668
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   669
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   670
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   671
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25919
diff changeset
   672
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   673
subsection{*More Algebraic Laws for div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   674
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   675
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
   676
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   677
lemma zmult1_lemma:
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   678
     "[| 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
   679
      ==> 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
   680
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
   681
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   682
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
   683
apply (case_tac "c = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   684
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
   685
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   686
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   687
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
   688
apply (case_tac "c = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   689
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
   690
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   691
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   692
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
   693
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
   694
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
   695
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   696
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   697
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
   698
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   699
lemma zadd1_lemma:
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   700
     "[| 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
   701
      ==> 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
   702
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
   703
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   704
(*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
   705
lemma zdiv_zadd1_eq:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   706
     "(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
   707
apply (case_tac "c = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   708
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
   709
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   710
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   711
instance int :: ring_div
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   712
proof
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   713
  fix a b c :: int
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   714
  assume not0: "b \<noteq> 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   715
  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
   716
    unfolding zdiv_zadd1_eq [of a "c * b"] using not0 
30181
05629f28f0f7 removed redundant lemmas
nipkow
parents: 30180
diff changeset
   717
      by (simp add: zmod_zmult1_eq zmod_zdiv_trivial zdiv_zmult1_eq)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   718
qed auto
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25919
diff changeset
   719
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   720
lemma posDivAlg_div_mod:
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   721
  assumes "k \<ge> 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   722
  and "l \<ge> 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   723
  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
   724
proof (cases "l = 0")
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   725
  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
   726
next
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   727
  case False with assms posDivAlg_correct
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   728
    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
   729
    by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   730
  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
   731
  show ?thesis by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   732
qed
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   733
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   734
lemma negDivAlg_div_mod:
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   735
  assumes "k < 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   736
  and "l > 0"
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   737
  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
   738
proof -
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   739
  from assms have "l \<noteq> 0" by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   740
  from assms negDivAlg_correct
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   741
    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
   742
    by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   743
  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
   744
  show ?thesis by simp
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   745
qed
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   746
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   747
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
   748
by (simp add: dvd_eq_mod_eq_0 [symmetric] dvd_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   749
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   750
(* REVISIT: should this be generalized to all semiring_div types? *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   751
lemmas zmod_eq_0D [dest!] = zmod_eq_0_iff [THEN iffD1]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   752
23983
79dc793bec43 Added lemmas
nipkow
parents: 23969
diff changeset
   753
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   754
subsection{*Proving  @{term "a div (b*c) = (a div b) div c"} *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   755
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   756
(*The condition c>0 seems necessary.  Consider that 7 div ~6 = ~2 but
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   757
  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
   758
  to cause particular problems.*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   759
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   760
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
   761
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   762
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
   763
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
   764
 apply (simp add: algebra_simps)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   765
apply (rule order_le_less_trans)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   766
 apply (erule_tac [2] mult_strict_right_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   767
 apply (rule mult_left_mono_neg)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   768
  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
   769
 apply (simp)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   770
apply (simp)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   771
done
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_aux2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   774
     "[| (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
   775
apply (subgoal_tac "b * (q mod c) \<le> 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   776
 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   777
apply (simp add: mult_le_0_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   778
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   779
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   780
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
   781
apply (subgoal_tac "0 \<le> b * (q mod c) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   782
apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   783
apply (simp add: zero_le_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   784
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   785
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   786
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
   787
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
   788
 apply (simp add: right_diff_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   789
apply (rule order_less_le_trans)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   790
 apply (erule mult_strict_right_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   791
 apply (rule_tac [2] mult_left_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   792
  apply simp
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   793
 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
   794
apply simp
23164
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
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   797
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
   798
      ==> 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
   799
by (auto simp add: mult_ac divmod_rel_def linorder_neq_iff
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   800
                   zero_less_mult_iff right_distrib [symmetric] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   801
                   zmult2_lemma_aux1 zmult2_lemma_aux2 zmult2_lemma_aux3 zmult2_lemma_aux4)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   802
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   803
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
   804
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   805
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
   806
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   807
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   808
lemma zmod_zmult2_eq:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   809
     "(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
   810
apply (case_tac "b = 0", simp)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
   811
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
   812
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   813
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   814
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   815
subsection{*Cancellation of Common Factors in div*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   816
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   817
lemma zdiv_zmult_zmult1_aux1:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   818
     "[| (0::int) < b;  c \<noteq> 0 |] ==> (c*a) div (c*b) = a div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   819
by (subst zdiv_zmult2_eq, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   820
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   821
lemma zdiv_zmult_zmult1_aux2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   822
     "[| b < (0::int);  c \<noteq> 0 |] ==> (c*a) div (c*b) = a div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   823
apply (subgoal_tac " (c * (-a)) div (c * (-b)) = (-a) div (-b) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   824
apply (rule_tac [2] zdiv_zmult_zmult1_aux1, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   825
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   826
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   827
lemma zdiv_zmult_zmult1: "c \<noteq> (0::int) ==> (c*a) div (c*b) = a div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   828
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   829
apply (auto simp add: linorder_neq_iff zdiv_zmult_zmult1_aux1 zdiv_zmult_zmult1_aux2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   830
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   831
23401
nipkow
parents: 23365
diff changeset
   832
lemma zdiv_zmult_zmult1_if[simp]:
nipkow
parents: 23365
diff changeset
   833
  "(k*m) div (k*n) = (if k = (0::int) then 0 else m div n)"
nipkow
parents: 23365
diff changeset
   834
by (simp add:zdiv_zmult_zmult1)
nipkow
parents: 23365
diff changeset
   835
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   836
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   837
subsection{*Distribution of Factors over mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   838
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   839
lemma zmod_zmult_zmult1_aux1:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   840
     "[| (0::int) < b;  c \<noteq> 0 |] ==> (c*a) mod (c*b) = c * (a mod b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   841
by (subst zmod_zmult2_eq, auto)
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 zmod_zmult_zmult1_aux2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   844
     "[| b < (0::int);  c \<noteq> 0 |] ==> (c*a) mod (c*b) = c * (a mod b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   845
apply (subgoal_tac " (c * (-a)) mod (c * (-b)) = c * ((-a) mod (-b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   846
apply (rule_tac [2] zmod_zmult_zmult1_aux1, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   847
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   848
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   849
lemma zmod_zmult_zmult1: "(c*a) mod (c*b) = (c::int) * (a mod b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   850
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   851
apply (case_tac "c = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   852
apply (auto simp add: linorder_neq_iff zmod_zmult_zmult1_aux1 zmod_zmult_zmult1_aux2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   853
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   854
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   855
lemma zmod_zmult_zmult2: "(a*c) mod (b*c) = (a mod b) * (c::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   856
apply (cut_tac c = c in zmod_zmult_zmult1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   857
apply (auto simp add: mult_commute)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   858
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   859
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   860
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   861
subsection {*Splitting Rules for div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   862
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   863
text{*The proofs of the two lemmas below are essentially identical*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   864
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   865
lemma split_pos_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   866
 "0<k ==> 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   867
    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
   868
apply (rule iffI, clarify)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   869
 apply (erule_tac P="P ?x ?y" in rev_mp)  
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   870
 apply (subst mod_add_eq) 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   871
 apply (subst zdiv_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   872
 apply (simp add: div_pos_pos_trivial mod_pos_pos_trivial)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   873
txt{*converse direction*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   874
apply (drule_tac x = "n div k" in spec) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   875
apply (drule_tac x = "n mod k" in spec, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   876
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   877
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   878
lemma split_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   879
 "k<0 ==>
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   880
    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
   881
apply (rule iffI, clarify)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   882
 apply (erule_tac P="P ?x ?y" in rev_mp)  
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   883
 apply (subst mod_add_eq) 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   884
 apply (subst zdiv_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   885
 apply (simp add: div_neg_neg_trivial mod_neg_neg_trivial)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   886
txt{*converse direction*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   887
apply (drule_tac x = "n div k" in spec) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   888
apply (drule_tac x = "n mod k" in spec, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   889
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   890
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   891
lemma split_zdiv:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   892
 "P(n div k :: int) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   893
  ((k = 0 --> P 0) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   894
   (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
   895
   (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
   896
apply (case_tac "k=0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   897
apply (simp only: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   898
apply (erule disjE) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   899
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P x"] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   900
                      split_neg_lemma [of concl: "%x y. P x"])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   901
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   902
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   903
lemma split_zmod:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   904
 "P(n mod k :: int) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   905
  ((k = 0 --> P n) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   906
   (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
   907
   (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
   908
apply (case_tac "k=0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   909
apply (simp only: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   910
apply (erule disjE) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   911
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P y"] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   912
                      split_neg_lemma [of concl: "%x y. P y"])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   913
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   914
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   915
(* Enable arith to deal with div 2 and mod 2: *)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   916
declare split_zdiv [of _ _ "number_of k", simplified, standard, arith_split]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   917
declare split_zmod [of _ _ "number_of k", simplified, standard, arith_split]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   918
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   919
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   920
subsection{*Speeding up the Division Algorithm with Shifting*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   921
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   922
text{*computing div by shifting *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   923
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   924
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
   925
proof cases
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   926
  assume "a=0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   927
    thus ?thesis by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   928
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   929
  assume "a\<noteq>0" and le_a: "0\<le>a"   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   930
  hence a_pos: "1 \<le> a" by arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   931
  hence one_less_a2: "1 < 2*a" by arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   932
  hence le_2a: "2 * (1 + b mod a) \<le> 2 * a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   933
    by (simp add: mult_le_cancel_left add_commute [of 1] add1_zle_eq)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   934
  with a_pos have "0 \<le> b mod a" by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   935
  hence le_addm: "0 \<le> 1 mod (2*a) + 2*(b mod a)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   936
    by (simp add: mod_pos_pos_trivial one_less_a2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   937
  with  le_2a
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   938
  have "(1 mod (2*a) + 2*(b mod a)) div (2*a) = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   939
    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
   940
                  right_distrib) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   941
  thus ?thesis
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   942
    by (subst zdiv_zadd1_eq,
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   943
        simp add: zdiv_zmult_zmult1 zmod_zmult_zmult1 one_less_a2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   944
                  div_pos_pos_trivial)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   945
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   946
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   947
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
   948
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
   949
apply (rule_tac [2] pos_zdiv_mult_2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   950
apply (auto simp add: minus_mult_right [symmetric] right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   951
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   952
apply (simp only: zdiv_zminus_zminus diff_minus minus_add_distrib [symmetric],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   953
       simp) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   954
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   955
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   956
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
   957
     "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
   958
          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
   959
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
   960
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   961
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
   962
     "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
   963
          (if (0::int) \<le> number_of w                    
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   964
           then number_of v div (number_of w)     
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   965
           else (number_of v + (1::int)) div (number_of w))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   966
apply (simp only: number_of_eq numeral_simps UNIV_I split: split_if) 
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
   967
apply (simp add: zdiv_zmult_zmult1 pos_zdiv_mult_2 neg_zdiv_mult_2 add_ac)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   968
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   969
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   970
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   971
subsection{*Computing mod by Shifting (proofs resemble those for div)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   972
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   973
lemma pos_zmod_mult_2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   974
     "(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
   975
apply (case_tac "a = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   976
apply (subgoal_tac "1 < a * 2")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   977
 prefer 2 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   978
apply (subgoal_tac "2* (1 + b mod a) \<le> 2*a")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   979
 apply (rule_tac [2] mult_left_mono)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   980
apply (auto simp add: add_commute [of 1] mult_commute add1_zle_eq 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   981
                      pos_mod_bound)
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
   982
apply (subst mod_add_eq)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   983
apply (simp add: zmod_zmult_zmult2 mod_pos_pos_trivial)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   984
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
   985
apply (auto simp add: mod_pos_pos_trivial ring_distribs)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   986
apply (subgoal_tac "0 \<le> b mod a", arith, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   987
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   988
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   989
lemma neg_zmod_mult_2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   990
     "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
   991
apply (subgoal_tac "(1 + 2* (-b - 1)) mod (2* (-a)) = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   992
                    1 + 2* ((-b - 1) mod (-a))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   993
apply (rule_tac [2] pos_zmod_mult_2)
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
   994
apply (auto simp add: right_diff_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   995
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   996
 prefer 2 apply simp 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   997
apply (simp only: zmod_zminus_zminus diff_minus minus_add_distrib [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   998
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   999
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1000
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
  1001
     "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
  1002
      (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
  1003
apply (simp only: number_of_eq numeral_simps) 
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1004
apply (simp add: zmod_zmult_zmult1 pos_zmod_mult_2 
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
  1005
                 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
  1006
done
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1007
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1008
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
  1009
     "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
  1010
      (if (0::int) \<le> number_of w  
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1011
                then 2 * (number_of v mod number_of w) + 1     
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1012
                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
  1013
apply (simp only: number_of_eq numeral_simps) 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1014
apply (simp add: zmod_zmult_zmult1 pos_zmod_mult_2 
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
  1015
                 neg_zmod_mult_2 add_ac)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1016
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1017
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1018
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1019
subsection{*Quotients of Signs*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1020
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1021
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
  1022
apply (subgoal_tac "a div b \<le> -1", force)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1023
apply (rule order_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1024
apply (rule_tac a' = "-1" in zdiv_mono1)
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
  1025
apply (auto simp add: div_eq_minus1)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1026
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1027
30323
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
  1028
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
  1029
by (drule zdiv_mono1_neg, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1030
30323
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
  1031
lemma div_nonpos_pos_le0: "[| (a::int) \<le> 0; b > 0 |] ==> a div b \<le> 0"
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
  1032
by (drule zdiv_mono1, auto)
6a02238da8e9 added lemma
nipkow
parents: 30242
diff changeset
  1033
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1034
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
  1035
apply auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1036
apply (drule_tac [2] zdiv_mono1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1037
apply (auto simp add: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1038
apply (simp (no_asm_use) add: linorder_not_less [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1039
apply (blast intro: div_neg_pos_less0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1040
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1041
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1042
lemma neg_imp_zdiv_nonneg_iff:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1043
     "b < (0::int) ==> (0 \<le> a div b) = (a \<le> (0::int))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1044
apply (subst zdiv_zminus_zminus [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1045
apply (subst pos_imp_zdiv_nonneg_iff, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1046
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1047
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1048
(*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
  1049
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
  1050
by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1051
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1052
(*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
  1053
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
  1054
by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1055
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1056
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1057
subsection {* The Divides Relation *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1058
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1059
lemmas zdvd_iff_zmod_eq_0_number_of [simp] =
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1060
  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
  1061
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1062
lemma zdvd_anti_sym:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1063
    "0 < m ==> 0 < n ==> m dvd n ==> n dvd m ==> m = (n::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1064
  apply (simp add: dvd_def, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1065
  apply (simp add: mult_assoc zero_less_mult_iff zmult_eq_1_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1066
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1067
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1068
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
  1069
  shows "\<bar>a\<bar> = \<bar>b\<bar>"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1070
proof-
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1071
  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
  1072
  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
  1073
  from k k' have "a = a*k*k'" by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1074
  with mult_cancel_left1[where c="a" and b="k*k'"]
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1075
  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
  1076
  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
  1077
  thus ?thesis using k k' by auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1078
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1079
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1080
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
  1081
  apply (subgoal_tac "m = n + (m - n)")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1082
   apply (erule ssubst)
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1083
   apply (blast intro: dvd_add, simp)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1084
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1085
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1086
lemma zdvd_reduce: "(k dvd n + k * m) = (k dvd (n::int))"
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1087
apply (rule iffI)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1088
 apply (erule_tac [2] dvd_add)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1089
 apply (subgoal_tac "n = (n + k * m) - k * m")
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1090
  apply (erule ssubst)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1091
  apply (erule dvd_diff)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1092
  apply(simp_all)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1093
done
23164
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_zmod: "f dvd m ==> f dvd (n::int) ==> f dvd m mod n"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1096
  apply (simp add: dvd_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1097
  apply (auto simp add: zmod_zmult_zmult1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1098
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1099
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1100
lemma zdvd_zmod_imp_zdvd: "k dvd m mod n ==> k dvd n ==> k dvd (m::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1101
  apply (subgoal_tac "k dvd n * (m div n) + m mod n")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1102
   apply (simp add: zmod_zdiv_equality [symmetric])
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1103
  apply (simp only: dvd_add dvd_mult2)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1104
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1105
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1106
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
  1107
  apply (auto elim!: dvdE)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1108
  apply (subgoal_tac "0 < n")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1109
   prefer 2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1110
   apply (blast intro: order_less_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1111
  apply (simp add: zero_less_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1112
  apply (subgoal_tac "n * k < n * 1")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1113
   apply (drule mult_less_cancel_left [THEN iffD1], auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1114
  done
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1115
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1116
lemma zmult_div_cancel: "(n::int) * (m div n) = m - (m mod n)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1117
  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
  1118
  by (simp add: algebra_simps)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1119
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1120
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
  1121
apply (subgoal_tac "m mod n = 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1122
 apply (simp add: zmult_div_cancel)
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1123
apply (simp only: dvd_eq_mod_eq_0)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1124
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1125
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1126
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
  1127
  shows "m dvd n"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1128
proof-
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1129
  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
  1130
  {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
  1131
    with h have False by (simp add: mult_assoc)}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1132
  hence "n = m * h" by blast
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1133
  thus ?thesis by simp
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1134
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1135
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23853
diff changeset
  1136
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1137
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
  1138
apply (simp split add: split_nat)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1139
apply (rule iffI)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1140
apply (erule exE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1141
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
  1142
apply simp
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1143
apply (erule exE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1144
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
  1145
apply (erule conjE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1146
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
  1147
apply simp
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1148
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1149
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1150
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
  1151
proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1152
  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
  1153
  proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1154
    fix k
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1155
    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
  1156
    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
  1157
      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
  1158
      then show ?thesis ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1159
    next
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1160
      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
  1161
      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
  1162
      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
  1163
      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
  1164
      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
  1165
    qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1166
  qed
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1167
  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
  1168
qed
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1169
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1170
lemma zdvd1_eq[simp]: "(x::int) dvd 1 = ( \<bar>x\<bar> = 1)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1171
proof
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1172
  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
  1173
  hence "nat \<bar>x\<bar> dvd 1" by (simp add: zdvd_int)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1174
  hence "nat \<bar>x\<bar> = 1"  by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1175
  thus "\<bar>x\<bar> = 1" by (cases "x < 0", auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1176
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1177
  assume "\<bar>x\<bar>=1" thus "x dvd 1" 
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1178
    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
  1179
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1180
lemma zdvd_mult_cancel1: 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1181
  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
  1182
proof
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1183
  assume n1: "\<bar>n\<bar> = 1" thus "m * n dvd m" 
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1184
    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
  1185
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1186
  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
  1187
  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
  1188
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1189
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1190
lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))"
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1191
  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
  1192
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1193
lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)"
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1194
  unfolding zdvd_int by (cases "z \<ge> 0") simp_all
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1195
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1196
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
  1197
  by (auto simp add: dvd_int_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1198
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1199
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
  1200
  apply (rule_tac z=n in int_cases)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1201
  apply (auto simp add: dvd_int_iff)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1202
  apply (rule_tac z=z in int_cases)
23307
2fe3345035c7 modify proofs to avoid referring to int::nat=>int
huffman
parents: 23306
diff changeset
  1203
  apply (auto simp add: dvd_imp_le)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1204
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1205
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1206
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
  1207
apply (induct "y", auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1208
apply (rule zmod_zmult1_eq [THEN trans])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1209
apply (simp (no_asm_simp))
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
  1210
apply (rule mod_mult_eq [symmetric])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1211
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1212
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1213
lemma zdiv_int: "int (a div b) = (int a) div (int b)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1214
apply (subst split_div, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1215
apply (subst split_zdiv, auto)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1216
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
  1217
apply (auto simp add: IntDiv.divmod_rel_def of_nat_mult)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1218
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1219
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1220
lemma zmod_int: "int (a mod b) = (int a) mod (int b)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1221
apply (subst split_mod, auto)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1222
apply (subst split_zmod, auto)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1223
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
  1224
       in unique_remainder)
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
  1225
apply (auto simp add: IntDiv.divmod_rel_def of_nat_mult)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1226
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1227
30180
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
  1228
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
  1229
by (unfold dvd_def, cases "y=0", auto simp add: abs_mult)
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
  1230
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1231
text{*Suggested by Matthias Daum*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1232
lemma int_power_div_base:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1233
     "\<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
  1234
apply (subgoal_tac "k ^ m = k ^ ((m - Suc 0) + Suc 0)")
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1235
 apply (erule ssubst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1236
 apply (simp only: power_add)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1237
 apply simp_all
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1238
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1239
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1240
text {* by Brian Huffman *}
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1241
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
  1242
by (rule mod_minus_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1243
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1244
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
  1245
by (rule mod_diff_left_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1246
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1247
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
  1248
by (rule mod_diff_right_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1249
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1250
lemmas zmod_simps =
30034
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1251
  mod_add_left_eq  [symmetric]
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1252
  mod_add_right_eq [symmetric]
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1253
  IntDiv.zmod_zmult1_eq     [symmetric]
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 29936
diff changeset
  1254
  mod_mult_left_eq          [symmetric]
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1255
  IntDiv.zpower_zmod
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1256
  zminus_zmod zdiff_zmod_left zdiff_zmod_right
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1257
29045
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1258
text {* Distributive laws for function @{text nat}. *}
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1259
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1260
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
  1261
apply (rule linorder_cases [of y 0])
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1262
apply (simp add: div_nonneg_neg_le0)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1263
apply simp
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1264
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
  1265
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1266
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1267
(*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
  1268
lemma nat_mod_distrib:
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1269
  "\<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
  1270
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
  1271
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
  1272
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1273
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1274
text{*Suggested by Matthias Daum*}
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1275
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
  1276
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
  1277
 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
  1278
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
  1279
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1280
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1281
text {* code generator setup *}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1282
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1283
context ring_1
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1284
begin
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1285
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28262
diff changeset
  1286
lemma of_int_num [code]:
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1287
  "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
  1288
     - of_int (- k) else let
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
  1289
       (l, m) = divmod k 2;
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1290
       l' = of_int l
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1291
     in if m = 0 then l' + l' else l' + l' + 1)"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1292
proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1293
  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
  1294
    of_int k = of_int (k div 2 * 2 + 1)"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1295
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1296
    have "k mod 2 < 2" by (auto intro: pos_mod_bound)
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1297
    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
  1298
    moreover assume "k mod 2 \<noteq> 0"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1299
    ultimately have "k mod 2 = 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1300
    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
  1301
    ultimately show ?thesis by auto
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1302
  qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1303
  have aux2: "\<And>x. of_int 2 * x = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1304
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1305
    fix x
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1306
    have int2: "(2::int) = 1 + 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1307
    show "of_int 2 * x = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1308
    unfolding int2 of_int_add left_distrib by simp
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1309
  qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1310
  have aux3: "\<And>x. x * of_int 2 = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1311
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1312
    fix x
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1313
    have int2: "(2::int) = 1 + 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1314
    show "x * of_int 2 = x + x" 
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1315
    unfolding int2 of_int_add right_distrib by simp
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1316
  qed
29651
16a19466bf81 slightly adapted towards more uniformity with div/mod on nat
haftmann
parents: 29410
diff changeset
  1317
  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
  1318
qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1319
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1320
end
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1321
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
  1322
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
  1323
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
  1324
  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
  1325
  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
  1326
  hence "(x mod n - y mod n) mod n = 0" by simp 
30034
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1327
  hence "(x - y) mod n = 0" by (simp add: mod_diff_eq[symmetric])
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
  1328
  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
  1329
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
  1330
  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
  1331
  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
  1332
  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
  1333
  hence "x mod n = (n*k + y) mod n" by simp
30034
60f64f112174 removed redundant thms
nipkow
parents: 30031
diff changeset
  1334
  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
  1335
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
  1336
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1337
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
  1338
  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
  1339
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
  1340
  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
  1341
  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
  1342
    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
  1343
  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
  1344
  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
  1345
  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
  1346
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
  1347
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1348
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
  1349
  (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
  1350
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
  1351
  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
  1352
  {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
  1353
    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
  1354
    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
  1355
      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
  1356
  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
  1357
  {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
  1358
    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
  1359
      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
  1360
  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
  1361
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
  1362
  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
  1363
  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
  1364
  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
  1365
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
  1366
29936
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1367
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1368
subsection {* Code generation *}
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1369
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1370
definition pdivmod :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1371
  "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
  1372
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1373
lemma pdivmod_posDivAlg [code]:
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1374
  "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
  1375
by (subst posDivAlg_div_mod) (simp_all add: pdivmod_def)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1376
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1377
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
  1378
  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
  1379
    then pdivmod k l
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1380
    else (let (r, s) = pdivmod k l in
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1381
      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
  1382
proof -
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1383
  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
  1384
  show ?thesis
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1385
    by (simp add: divmod_mod_div pdivmod_def)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1386
      (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
  1387
      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
  1388
qed
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1389
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1390
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
  1391
  apsnd ((op *) (sgn l)) (if sgn k = sgn l
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1392
    then pdivmod k l
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1393
    else (let (r, s) = pdivmod k l in
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1394
      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
  1395
proof -
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1396
  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
  1397
    by (auto simp add: not_less sgn_if)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1398
  then show ?thesis by (simp add: divmod_pdivmod)
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1399
qed
d3dfb67f0f59 added pdivmod on int (for code generation)
haftmann
parents: 29700
diff changeset
  1400
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1401
code_modulename SML
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1402
  IntDiv Integer
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1403
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1404
code_modulename OCaml
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1405
  IntDiv Integer
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1406
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1407
code_modulename Haskell
24195
haftmann
parents: 23983
diff changeset
  1408
  IntDiv Integer
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1409
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1410
end