src/HOL/IntDiv.thy
author nipkow
Wed, 28 Jan 2009 16:29:16 +0100
changeset 29667 53103fc8ffa3
parent 29410 97916a925a69
child 29668 33ba3faeaa0e
permissions -rw-r--r--
Replaced group_ and ring_simps by algebra_simps; removed compare_rls - use algebra_simps now
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
    ID:         $Id$
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     4
    Copyright   1999  University of Cambridge
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     5
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     6
*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     7
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     8
header{*The Division Operators div and mod; the Divides Relation dvd*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     9
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    10
theory IntDiv
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25571
diff changeset
    11
imports Int Divides FunDef
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    12
begin
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    13
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    14
constdefs
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    15
  quorem :: "(int*int) * (int*int) => bool"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    16
    --{*definition of quotient and remainder*}
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28262
diff changeset
    17
    [code]: "quorem == %((a,b), (q,r)).
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    18
                      a = b*q + r &
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    19
                      (if 0 < b then 0\<le>r & r<b else b<r & r \<le> 0)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    20
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    21
  adjust :: "[int, int*int] => int*int"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    22
    --{*for the division algorithm*}
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28262
diff changeset
    23
    [code]: "adjust b == %(q,r). if 0 \<le> r-b then (2*q + 1, r-b)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    24
                         else (2*q, r)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    25
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    26
text{*algorithm for the case @{text "a\<ge>0, b>0"}*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    27
function
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    28
  posDivAlg :: "int \<Rightarrow> int \<Rightarrow> int \<times> int"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    29
where
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    30
  "posDivAlg a b =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    31
     (if (a<b | b\<le>0) then (0,a)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    32
        else adjust b (posDivAlg a (2*b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    33
by auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    34
termination by (relation "measure (%(a,b). nat(a - b + 1))") auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    35
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    36
text{*algorithm for the case @{text "a<0, b>0"}*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    37
function
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    38
  negDivAlg :: "int \<Rightarrow> int \<Rightarrow> int \<times> int"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    39
where
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    40
  "negDivAlg a b  =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    41
     (if (0\<le>a+b | b\<le>0) then (-1,a+b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    42
      else adjust b (negDivAlg a (2*b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    43
by auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    44
termination by (relation "measure (%(a,b). nat(- a - b))") auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    45
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    46
text{*algorithm for the general case @{term "b\<noteq>0"}*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    47
constdefs
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    48
  negateSnd :: "int*int => int*int"
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28262
diff changeset
    49
    [code]: "negateSnd == %(q,r). (q,-r)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    50
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    51
definition
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    52
  divAlg :: "int \<times> int \<Rightarrow> int \<times> int"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    53
    --{*The full division algorithm considers all possible signs for a, b
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    54
       including the special case @{text "a=0, b<0"} because 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    55
       @{term negDivAlg} requires @{term "a<0"}.*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    56
where
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    57
  "divAlg = (\<lambda>(a, b). (if 0\<le>a then
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    58
                  if 0\<le>b then posDivAlg a b
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    59
                  else if a=0 then (0, 0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    60
                       else negateSnd (negDivAlg (-a) (-b))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    61
               else 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    62
                  if 0<b then negDivAlg a b
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    63
                  else negateSnd (posDivAlg (-a) (-b))))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    64
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    65
instantiation int :: Divides.div
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    66
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    67
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    68
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    69
  div_def: "a div b = fst (divAlg (a, b))"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    70
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    71
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    72
  mod_def: "a mod b = snd (divAlg (a, b))"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    73
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    74
instance ..
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    75
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25134
diff changeset
    76
end
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    77
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    78
lemma divAlg_mod_div:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    79
  "divAlg (p, q) = (p div q, p mod q)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    80
  by (auto simp add: div_def mod_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    81
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    82
text{*
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    83
Here is the division algorithm in ML:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    84
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    85
\begin{verbatim}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    86
    fun posDivAlg (a,b) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    87
      if a<b then (0,a)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    88
      else let val (q,r) = posDivAlg(a, 2*b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    89
	       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
    90
	   end
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    91
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    92
    fun negDivAlg (a,b) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    93
      if 0\<le>a+b then (~1,a+b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    94
      else let val (q,r) = negDivAlg(a, 2*b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    95
	       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
    96
	   end;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    97
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    98
    fun negateSnd (q,r:int) = (q,~r);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    99
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   100
    fun divAlg (a,b) = if 0\<le>a then 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   101
			  if b>0 then posDivAlg (a,b) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   102
			   else if a=0 then (0,0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   103
				else negateSnd (negDivAlg (~a,~b))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   104
		       else 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   105
			  if 0<b then negDivAlg (a,b)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   106
			  else        negateSnd (posDivAlg (~a,~b));
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   107
\end{verbatim}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   108
*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   109
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   110
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   111
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   112
subsection{*Uniqueness and Monotonicity of Quotients and Remainders*}
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:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   115
     "[| 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
   116
      ==> q' \<le> (q::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   117
apply (subgoal_tac "r' + b * (q'-q) \<le> r")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   118
 prefer 2 apply (simp add: right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   119
apply (subgoal_tac "0 < b * (1 + q - q') ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   120
apply (erule_tac [2] order_le_less_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   121
 prefer 2 apply (simp add: right_diff_distrib right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   122
apply (subgoal_tac "b * q' < b * (1 + q) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   123
 prefer 2 apply (simp add: right_diff_distrib right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   124
apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   125
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   126
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   127
lemma unique_quotient_lemma_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   128
     "[| 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
   129
      ==> q \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   130
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
   131
    auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   132
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   133
lemma unique_quotient:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   134
     "[| quorem ((a,b), (q,r));  quorem ((a,b), (q',r'));  b \<noteq> 0 |]  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   135
      ==> q = q'"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   136
apply (simp add: quorem_def linorder_neq_iff split: split_if_asm)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   137
apply (blast intro: order_antisym
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   138
             dest: order_eq_refl [THEN unique_quotient_lemma] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   139
             order_eq_refl [THEN unique_quotient_lemma_neg] sym)+
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   140
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   141
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 unique_remainder:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   144
     "[| quorem ((a,b), (q,r));  quorem ((a,b), (q',r'));  b \<noteq> 0 |]  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   145
      ==> r = r'"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   146
apply (subgoal_tac "q = q'")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   147
 apply (simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   148
apply (blast intro: unique_quotient)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   149
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   150
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   151
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   152
subsection{*Correctness of @{term posDivAlg}, the Algorithm for Non-Negative Dividends*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   153
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   154
text{*And positive divisors*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   155
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   156
lemma adjust_eq [simp]:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   157
     "adjust b (q,r) = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   158
      (let diff = r-b in  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   159
	if 0 \<le> diff then (2*q + 1, diff)   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   160
                     else (2*q, r))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   161
by (simp add: Let_def adjust_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   162
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   163
declare posDivAlg.simps [simp del]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   165
text{*use with a simproc to avoid repeatedly proving the premise*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   166
lemma posDivAlg_eqn:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   167
     "0 < b ==>  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   168
      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
   169
by (rule posDivAlg.simps [THEN trans], simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   170
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   171
text{*Correctness of @{term posDivAlg}: it computes quotients correctly*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   172
theorem posDivAlg_correct:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   173
  assumes "0 \<le> a" and "0 < b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   174
  shows "quorem ((a, b), posDivAlg a b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   175
using prems apply (induct a b rule: posDivAlg.induct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   176
apply auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   177
apply (simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   178
apply (subst posDivAlg_eqn, simp add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   179
apply (case_tac "a < b")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   180
apply simp_all
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   181
apply (erule splitE)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   182
apply (auto simp add: right_distrib Let_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   183
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   184
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   185
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   186
subsection{*Correctness of @{term negDivAlg}, the Algorithm for Negative Dividends*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   187
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   188
text{*And positive divisors*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   189
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   190
declare negDivAlg.simps [simp del]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   191
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   192
text{*use with a simproc to avoid repeatedly proving the premise*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   193
lemma negDivAlg_eqn:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   194
     "0 < b ==>  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   195
      negDivAlg a b =       
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   196
       (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
   197
by (rule negDivAlg.simps [THEN trans], simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   198
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   199
(*Correctness of negDivAlg: it computes quotients correctly
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   200
  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
   201
lemma negDivAlg_correct:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   202
  assumes "a < 0" and "b > 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   203
  shows "quorem ((a, b), negDivAlg a b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   204
using prems apply (induct a b rule: negDivAlg.induct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   205
apply (auto simp add: linorder_not_le)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   206
apply (simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   207
apply (subst negDivAlg_eqn, assumption)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   208
apply (case_tac "a + b < (0\<Colon>int)")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   209
apply simp_all
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   210
apply (erule splitE)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   211
apply (auto simp add: right_distrib Let_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   212
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   213
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   214
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   215
subsection{*Existence Shown by Proving the Division Algorithm to be Correct*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   216
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   217
(*the case a=0*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   218
lemma quorem_0: "b \<noteq> 0 ==> quorem ((0,b), (0,0))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   219
by (auto simp add: quorem_def linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   220
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   221
lemma posDivAlg_0 [simp]: "posDivAlg 0 b = (0, 0)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   222
by (subst posDivAlg.simps, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   223
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   224
lemma negDivAlg_minus1 [simp]: "negDivAlg -1 b = (-1, b - 1)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   225
by (subst negDivAlg.simps, auto)
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 negateSnd_eq [simp]: "negateSnd(q,r) = (q,-r)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   228
by (simp add: negateSnd_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   229
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   230
lemma quorem_neg: "quorem ((-a,-b), qr) ==> quorem ((a,b), negateSnd qr)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   231
by (auto simp add: split_ifs quorem_def)
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 divAlg_correct: "b \<noteq> 0 ==> quorem ((a,b), divAlg (a, b))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   234
by (force simp add: linorder_neq_iff quorem_0 divAlg_def quorem_neg
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   235
                    posDivAlg_correct negDivAlg_correct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   236
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   237
text{*Arbitrary definitions for division by zero.  Useful to simplify 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   238
    certain equations.*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   239
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   240
lemma DIVISION_BY_ZERO [simp]: "a div (0::int) = 0 & a mod (0::int) = a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   241
by (simp add: div_def mod_def divAlg_def posDivAlg.simps)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   242
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   243
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   244
text{*Basic laws about division and remainder*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   245
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   246
lemma zmod_zdiv_equality: "(a::int) = b * (a div b) + (a mod b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   247
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   248
apply (cut_tac a = a and b = b in divAlg_correct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   249
apply (auto simp add: quorem_def div_def mod_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   250
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   251
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   252
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
   253
by(simp add: zmod_zdiv_equality[symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   254
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   255
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
   256
by(simp add: mult_commute zmod_zdiv_equality[symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   257
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   258
text {* Tool setup *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   259
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26101
diff changeset
   260
ML {*
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   261
local 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   262
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   263
structure CancelDivMod = CancelDivModFun(
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   264
struct
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   265
  val div_name = @{const_name Divides.div};
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   266
  val mod_name = @{const_name Divides.mod};
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   267
  val mk_binop = HOLogic.mk_binop;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   268
  val mk_sum = Int_Numeral_Simprocs.mk_sum HOLogic.intT;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   269
  val dest_sum = Int_Numeral_Simprocs.dest_sum;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   270
  val div_mod_eqs =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   271
    map mk_meta_eq [@{thm zdiv_zmod_equality},
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   272
      @{thm zdiv_zmod_equality2}];
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   273
  val trans = trans;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   274
  val prove_eq_sums =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   275
    let
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
   276
      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
   277
    in ArithData.prove_conv all_tac (ArithData.simp_all_tac simps) end;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   278
end)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   279
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   280
in
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   281
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
   282
val cancel_zdiv_zmod_proc = Simplifier.simproc (the_context ())
26101
a657683e902a tuned structures in arith_data.ML
haftmann
parents: 26086
diff changeset
   283
  "cancel_zdiv_zmod" ["(m::int) + n"] (K CancelDivMod.proc)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   284
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   285
end;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   286
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   287
Addsimprocs [cancel_zdiv_zmod_proc]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   288
*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   289
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   290
lemma pos_mod_conj : "(0::int) < b ==> 0 \<le> a mod b & a mod b < b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   291
apply (cut_tac a = a and b = b in divAlg_correct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   292
apply (auto simp add: quorem_def mod_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   293
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   294
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   295
lemmas pos_mod_sign  [simp] = pos_mod_conj [THEN conjunct1, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   296
   and pos_mod_bound [simp] = pos_mod_conj [THEN conjunct2, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   297
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   298
lemma neg_mod_conj : "b < (0::int) ==> a mod b \<le> 0 & b < a mod b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   299
apply (cut_tac a = a and b = b in divAlg_correct)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   300
apply (auto simp add: quorem_def div_def mod_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   301
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   302
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   303
lemmas neg_mod_sign  [simp] = neg_mod_conj [THEN conjunct1, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   304
   and neg_mod_bound [simp] = neg_mod_conj [THEN conjunct2, standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   305
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   306
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   307
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   308
subsection{*General Properties of div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   309
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   310
lemma quorem_div_mod: "b \<noteq> 0 ==> quorem ((a, b), (a div b, a mod b))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   311
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   312
apply (force simp add: quorem_def linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   313
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   314
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   315
lemma quorem_div: "[| quorem((a,b),(q,r));  b \<noteq> 0 |] ==> a div b = q"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   316
by (simp add: quorem_div_mod [THEN unique_quotient])
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 quorem_mod: "[| quorem((a,b),(q,r));  b \<noteq> 0 |] ==> a mod b = r"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   319
by (simp add: quorem_div_mod [THEN unique_remainder])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   320
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   321
lemma div_pos_pos_trivial: "[| (0::int) \<le> a;  a < b |] ==> a div b = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   322
apply (rule quorem_div)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   323
apply (auto simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   324
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   325
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   326
lemma div_neg_neg_trivial: "[| a \<le> (0::int);  b < a |] ==> a div b = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   327
apply (rule quorem_div)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   328
apply (auto simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   329
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   330
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   331
lemma div_pos_neg_trivial: "[| (0::int) < a;  a+b \<le> 0 |] ==> a div b = -1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   332
apply (rule quorem_div)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   333
apply (auto simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   334
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   335
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   336
(*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
   337
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   338
lemma mod_pos_pos_trivial: "[| (0::int) \<le> a;  a < b |] ==> a mod b = a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   339
apply (rule_tac q = 0 in quorem_mod)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   340
apply (auto simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   341
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   342
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   343
lemma mod_neg_neg_trivial: "[| a \<le> (0::int);  b < a |] ==> a mod b = a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   344
apply (rule_tac q = 0 in quorem_mod)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   345
apply (auto simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   346
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   347
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   348
lemma mod_pos_neg_trivial: "[| (0::int) < a;  a+b \<le> 0 |] ==> a mod b = a+b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   349
apply (rule_tac q = "-1" in quorem_mod)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   350
apply (auto simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   351
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   352
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   353
text{*There is no @{text mod_neg_pos_trivial}.*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   354
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   355
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   356
(*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
   357
lemma zdiv_zminus_zminus [simp]: "(-a) div (-b) = a div (b::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   358
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   359
apply (simp add: quorem_div_mod [THEN quorem_neg, simplified, 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   360
                                 THEN quorem_div, THEN sym])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   361
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   362
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   363
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   364
(*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
   365
lemma zmod_zminus_zminus [simp]: "(-a) mod (-b) = - (a mod (b::int))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   366
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   367
apply (subst quorem_div_mod [THEN quorem_neg, simplified, THEN quorem_mod],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   368
       auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   369
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   370
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   371
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   372
subsection{*Laws for div and mod with Unary Minus*}
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 zminus1_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   375
     "quorem((a,b),(q,r))  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   376
      ==> quorem ((-a,b), (if r=0 then -q else -q - 1),  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   377
                          (if r=0 then 0 else b-r))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   378
by (force simp add: split_ifs quorem_def linorder_neq_iff right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   379
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   380
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   381
lemma zdiv_zminus1_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   382
     "b \<noteq> (0::int)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   383
      ==> (-a) div b =  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   384
          (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
   385
by (blast intro: quorem_div_mod [THEN zminus1_lemma, THEN quorem_div])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   386
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   387
lemma zmod_zminus1_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   388
     "(-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
   389
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   390
apply (blast intro: quorem_div_mod [THEN zminus1_lemma, THEN quorem_mod])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   391
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   392
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   393
lemma zdiv_zminus2: "a div (-b) = (-a::int) div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   394
by (cut_tac a = "-a" in zdiv_zminus_zminus, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   395
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   396
lemma zmod_zminus2: "a mod (-b) = - ((-a::int) mod b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   397
by (cut_tac a = "-a" and b = b in zmod_zminus_zminus, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   398
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   399
lemma zdiv_zminus2_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   400
     "b \<noteq> (0::int)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   401
      ==> a div (-b) =  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   402
          (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
   403
by (simp add: zdiv_zminus1_eq_if zdiv_zminus2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   404
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   405
lemma zmod_zminus2_eq_if:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   406
     "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
   407
by (simp add: zmod_zminus1_eq_if zmod_zminus2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   408
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   409
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   410
subsection{*Division of a Number by Itself*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   411
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   412
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
   413
apply (subgoal_tac "0 < a*q")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   414
 apply (simp add: zero_less_mult_iff, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   415
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   416
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   417
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
   418
apply (subgoal_tac "0 \<le> a* (1-q) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   419
 apply (simp add: zero_le_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   420
apply (simp add: right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   421
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   422
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   423
lemma self_quotient: "[| quorem((a,a),(q,r));  a \<noteq> (0::int) |] ==> q = 1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   424
apply (simp add: split_ifs quorem_def linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   425
apply (rule order_antisym, safe, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   426
apply (rule_tac [3] a = "-a" and r = "-r" in self_quotient_aux1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   427
apply (rule_tac a = "-a" and r = "-r" in self_quotient_aux2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   428
apply (force intro: self_quotient_aux1 self_quotient_aux2 simp add: add_commute)+
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   429
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   430
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   431
lemma self_remainder: "[| quorem((a,a),(q,r));  a \<noteq> (0::int) |] ==> r = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   432
apply (frule self_quotient, assumption)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   433
apply (simp add: quorem_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   434
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   435
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   436
lemma zdiv_self [simp]: "a \<noteq> 0 ==> a div a = (1::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   437
by (simp add: quorem_div_mod [THEN self_quotient])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   438
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   439
(*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
   440
lemma zmod_self [simp]: "a mod a = (0::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   441
apply (case_tac "a = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   442
apply (simp add: quorem_div_mod [THEN self_remainder])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   443
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   444
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   445
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   446
subsection{*Computation of Division and Remainder*}
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 zdiv_zero [simp]: "(0::int) div b = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   449
by (simp add: div_def divAlg_def)
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 div_eq_minus1: "(0::int) < b ==> -1 div b = -1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   452
by (simp add: div_def divAlg_def)
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_zero [simp]: "(0::int) mod b = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   455
by (simp add: mod_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   456
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   457
lemma zdiv_minus1: "(0::int) < b ==> -1 div b = -1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   458
by (simp add: div_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   459
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   460
lemma zmod_minus1: "(0::int) < b ==> -1 mod b = b - 1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   461
by (simp add: mod_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   462
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   463
text{*a positive, b positive *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   464
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   465
lemma div_pos_pos: "[| 0 < a;  0 \<le> b |] ==> a div b = fst (posDivAlg a b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   466
by (simp add: div_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   467
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   468
lemma mod_pos_pos: "[| 0 < a;  0 \<le> b |] ==> a mod b = snd (posDivAlg a b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   469
by (simp add: mod_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   470
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   471
text{*a negative, b positive *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   472
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   473
lemma div_neg_pos: "[| a < 0;  0 < b |] ==> a div b = fst (negDivAlg a b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   474
by (simp add: div_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   475
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   476
lemma mod_neg_pos: "[| a < 0;  0 < b |] ==> a mod b = snd (negDivAlg a b)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   477
by (simp add: mod_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   478
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   479
text{*a positive, b negative *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   480
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   481
lemma div_pos_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   482
     "[| 0 < a;  b < 0 |] ==> a div b = fst (negateSnd (negDivAlg (-a) (-b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   483
by (simp add: div_def divAlg_def)
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 mod_pos_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   486
     "[| 0 < a;  b < 0 |] ==> a mod b = snd (negateSnd (negDivAlg (-a) (-b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   487
by (simp add: mod_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   488
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   489
text{*a negative, b negative *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   490
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   491
lemma div_neg_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   492
     "[| a < 0;  b \<le> 0 |] ==> a div b = fst (negateSnd (posDivAlg (-a) (-b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   493
by (simp add: div_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   494
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   495
lemma mod_neg_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   496
     "[| a < 0;  b \<le> 0 |] ==> a mod b = snd (negateSnd (posDivAlg (-a) (-b)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   497
by (simp add: mod_def divAlg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   498
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   499
text {*Simplify expresions in which div and mod combine numerical constants*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   500
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   501
lemma quoremI:
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   502
  "\<lbrakk>a == b * q + r; if 0 < b then 0 \<le> r \<and> r < b else b < r \<and> r \<le> 0\<rbrakk>
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   503
    \<Longrightarrow> quorem ((a, b), (q, r))"
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   504
  unfolding quorem_def by simp
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   505
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   506
lemmas quorem_div_eq = quoremI [THEN quorem_div, THEN eq_reflection]
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   507
lemmas quorem_mod_eq = quoremI [THEN quorem_mod, THEN eq_reflection]
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   508
lemmas arithmetic_simps =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   509
  arith_simps
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   510
  add_special
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   511
  OrderedGroup.add_0_left
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   512
  OrderedGroup.add_0_right
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   513
  mult_zero_left
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   514
  mult_zero_right
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   515
  mult_1_left
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   516
  mult_1_right
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   517
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   518
(* simprocs adapted from HOL/ex/Binary.thy *)
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   519
ML {*
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   520
local
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   521
  infix ==;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   522
  val op == = Logic.mk_equals;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   523
  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
   524
  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
   525
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   526
  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
   527
  fun prove ctxt prop =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   528
    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
   529
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   530
  fun binary_proc proc ss ct =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   531
    (case Thm.term_of ct of
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   532
      _ $ t $ u =>
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   533
      (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
   534
        SOME args => proc (Simplifier.the_context ss) args
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   535
      | NONE => NONE)
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   536
    | _ => NONE);
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   537
in
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   538
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   539
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
   540
  if n = 0 then NONE
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   541
  else
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 24490
diff changeset
   542
    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
   543
        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
   544
    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
   545
    end);
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
end;
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   548
*}
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   549
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   550
simproc_setup binary_int_div ("number_of m div number_of n :: int") =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   551
  {* K (divmod_proc (@{thm quorem_div_eq})) *}
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   552
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   553
simproc_setup binary_int_mod ("number_of m mod number_of n :: int") =
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   554
  {* K (divmod_proc (@{thm quorem_mod_eq})) *}
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   555
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   556
(* The following 8 lemmas are made unnecessary by the above simprocs: *)
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   557
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   558
lemmas div_pos_pos_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   559
    div_pos_pos [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   560
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   561
lemmas div_neg_pos_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   562
    div_neg_pos [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   563
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   564
lemmas div_pos_neg_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   565
    div_pos_neg [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   566
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   567
lemmas div_neg_neg_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   568
    div_neg_neg [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   569
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   570
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   571
lemmas mod_pos_pos_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   572
    mod_pos_pos [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   573
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   574
lemmas mod_neg_pos_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   575
    mod_neg_pos [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   576
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   577
lemmas mod_pos_neg_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   578
    mod_pos_neg [of "number_of v" "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   579
24481
c3a4a289decc ported div/mod simprocs from HOL/ex/Binary.thy
huffman
parents: 24391
diff changeset
   580
lemmas mod_neg_neg_number_of =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   581
    mod_neg_neg [of "number_of v" "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_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   585
    posDivAlg_eqn [of "number_of v" "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_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   588
    negDivAlg_eqn [of "number_of v" "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
text{*Special-case simplification *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   592
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   593
lemma zmod_1 [simp]: "a mod (1::int) = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   594
apply (cut_tac a = a and b = 1 in pos_mod_sign)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   595
apply (cut_tac [2] a = a and b = 1 in pos_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   596
apply (auto simp del:pos_mod_bound pos_mod_sign)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   597
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   598
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   599
lemma zdiv_1 [simp]: "a div (1::int) = a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   600
by (cut_tac a = a and b = 1 in zmod_zdiv_equality, auto)
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 zmod_minus1_right [simp]: "a mod (-1::int) = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   603
apply (cut_tac a = a and b = "-1" in neg_mod_sign)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   604
apply (cut_tac [2] a = a and b = "-1" in neg_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   605
apply (auto simp del: neg_mod_sign neg_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   606
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   607
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   608
lemma zdiv_minus1_right [simp]: "a div (-1::int) = -a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   609
by (cut_tac a = a and b = "-1" in zmod_zdiv_equality, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   610
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   611
(** The last remaining special cases for constant arithmetic:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   612
    1 div z and 1 mod z **)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   613
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   614
lemmas div_pos_pos_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   615
    div_pos_pos [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   616
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   617
lemmas div_pos_neg_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   618
    div_pos_neg [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   619
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   620
lemmas mod_pos_pos_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   621
    mod_pos_pos [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   622
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   623
lemmas mod_pos_neg_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   624
    mod_pos_neg [OF int_0_less_1, of "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   625
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   626
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   627
lemmas posDivAlg_eqn_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   628
    posDivAlg_eqn [of concl: 1 "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   629
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   630
lemmas negDivAlg_eqn_1_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   631
    negDivAlg_eqn [of concl: 1 "number_of w", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   632
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   633
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   634
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   635
subsection{*Monotonicity in the First Argument (Dividend)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   636
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   637
lemma 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
   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 unique_quotient_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 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
   646
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   647
apply (cut_tac a = a' and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   648
apply (rule unique_quotient_lemma_neg)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   649
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   650
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   651
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   652
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   653
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   654
subsection{*Monotonicity in the Second Argument (Divisor)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   655
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   656
lemma q_pos_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   657
     "[| 0 \<le> b'*q' + r'; r' < b';  0 < b' |] ==> 0 \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   658
apply (subgoal_tac "0 < b'* (q' + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   659
 apply (simp add: zero_less_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   660
apply (simp add: right_distrib)
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_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   664
     "[| b*q + r = b'*q' + r';  0 \<le> b'*q' + r';   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   665
         r' < b';  0 \<le> r;  0 < b';  b' \<le> b |]   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   666
      ==> q \<le> (q'::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   667
apply (frule q_pos_lemma, assumption+) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   668
apply (subgoal_tac "b*q < b* (q' + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   669
 apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   670
apply (subgoal_tac "b*q = r' - r + b'*q'")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   671
 prefer 2 apply simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   672
apply (simp (no_asm_simp) add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   673
apply (subst add_commute, rule zadd_zless_mono, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   674
apply (rule mult_right_mono, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   675
done
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 zdiv_mono2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   678
     "[| (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
   679
apply (subgoal_tac "b \<noteq> 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   680
 prefer 2 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   681
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   682
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   683
apply (rule zdiv_mono2_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   684
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   685
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   686
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   687
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   688
lemma q_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   689
     "[| b'*q' + r' < 0;  0 \<le> r';  0 < b' |] ==> q' \<le> (0::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   690
apply (subgoal_tac "b'*q' < 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   691
 apply (simp add: mult_less_0_iff, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   692
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   693
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   694
lemma zdiv_mono2_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   695
     "[| b*q + r = b'*q' + r';  b'*q' + r' < 0;   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   696
         r < b;  0 \<le> r';  0 < b';  b' \<le> b |]   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   697
      ==> q' \<le> (q::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   698
apply (frule q_neg_lemma, assumption+) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   699
apply (subgoal_tac "b*q' < b* (q + 1) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   700
 apply (simp add: mult_less_cancel_left)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   701
apply (simp add: right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   702
apply (subgoal_tac "b*q' \<le> b'*q'")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   703
 prefer 2 apply (simp add: mult_right_mono_neg, arith)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   704
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   705
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   706
lemma zdiv_mono2_neg:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   707
     "[| 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
   708
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   709
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   710
apply (rule zdiv_mono2_neg_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   711
apply (erule subst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   712
apply (erule subst, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   713
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   714
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25919
diff changeset
   715
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   716
subsection{*More Algebraic Laws for div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   717
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   718
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
   719
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   720
lemma zmult1_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   721
     "[| quorem((b,c),(q,r));  c \<noteq> 0 |]  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   722
      ==> quorem ((a*b, c), (a*q + a*r div c, a*r mod c))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   723
by (force simp add: split_ifs quorem_def linorder_neq_iff right_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   724
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   725
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
   726
apply (case_tac "c = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   727
apply (blast intro: quorem_div_mod [THEN zmult1_lemma, THEN quorem_div])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   728
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   729
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   730
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
   731
apply (case_tac "c = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   732
apply (blast intro: quorem_div_mod [THEN zmult1_lemma, THEN quorem_mod])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   733
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   734
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   735
lemma zmod_zmult1_eq': "(a*b) mod (c::int) = ((a mod c) * b) mod c"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   736
apply (rule trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   737
apply (rule_tac s = "b*a mod c" in trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   738
apply (rule_tac [2] zmod_zmult1_eq)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   739
apply (simp_all add: mult_commute)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   740
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   741
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   742
lemma zmod_zmult_distrib: "(a*b) mod (c::int) = ((a mod c) * (b mod c)) mod c"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   743
apply (rule zmod_zmult1_eq' [THEN trans])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   744
apply (rule zmod_zmult1_eq)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   745
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   746
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   747
lemma zdiv_zmult_self1 [simp]: "b \<noteq> (0::int) ==> (a*b) div b = a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   748
by (simp add: zdiv_zmult1_eq)
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
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
   751
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
   752
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
   753
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   754
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   755
lemma zmod_zmod_trivial: "(a mod b) mod b = a mod (b::int)"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   756
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
   757
apply (force simp add: linorder_neq_iff mod_pos_pos_trivial mod_neg_neg_trivial)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   758
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   759
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   760
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
   761
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   762
lemma zadd1_lemma:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   763
     "[| quorem((a,c),(aq,ar));  quorem((b,c),(bq,br));  c \<noteq> 0 |]  
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   764
      ==> quorem ((a+b, c), (aq + bq + (ar+br) div c, (ar+br) mod c))"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   765
by (force simp add: split_ifs quorem_def linorder_neq_iff right_distrib)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   766
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   767
(*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
   768
lemma zdiv_zadd1_eq:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   769
     "(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
   770
apply (case_tac "c = 0", simp)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   771
apply (blast intro: zadd1_lemma [OF quorem_div_mod quorem_div_mod] quorem_div)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   772
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   773
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   774
lemma zmod_zadd1_eq: "(a+b) mod (c::int) = (a mod c + b mod c) mod c"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   775
apply (case_tac "c = 0", simp)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   776
apply (blast intro: zadd1_lemma [OF quorem_div_mod quorem_div_mod] quorem_mod)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   777
done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   778
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   779
instance int :: ring_div
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   780
proof
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   781
  fix a b c :: int
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   782
  assume not0: "b \<noteq> 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   783
  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
   784
    unfolding zdiv_zadd1_eq [of a "c * b"] using not0 
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   785
      by (simp add: zmod_zmult1_eq zmod_zdiv_trivial)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
   786
qed auto
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25919
diff changeset
   787
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   788
lemma zdiv_zadd_self1: "a \<noteq> (0::int) ==> (a+b) div a = b div a + 1"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   789
by (rule div_add_self1) (* already declared [simp] *)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   790
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   791
lemma zdiv_zadd_self2: "a \<noteq> (0::int) ==> (b+a) div a = b div a + 1"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   792
by (rule div_add_self2) (* already declared [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   793
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   794
lemma zdiv_zmult_self2: "b \<noteq> (0::int) ==> (b*a) div b = a"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   795
by (rule div_mult_self1_is_id) (* already declared [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   796
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   797
lemma zmod_zmult_self1: "(a*b) mod b = (0::int)"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   798
by (rule mod_mult_self2_is_0) (* already declared [simp] *)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   799
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   800
lemma zmod_zmult_self2: "(b*a) mod b = (0::int)"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   801
by (rule mod_mult_self1_is_0) (* already declared [simp] *)
23164
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 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
   804
by (simp add: dvd_eq_mod_eq_0 [symmetric] dvd_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   805
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   806
(* REVISIT: should this be generalized to all semiring_div types? *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   807
lemmas zmod_eq_0D [dest!] = zmod_eq_0_iff [THEN iffD1]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   808
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   809
lemma zmod_zadd_left_eq: "(a+b) mod (c::int) = ((a mod c) + b) mod c"
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   810
by (rule mod_add_left_eq)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   811
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   812
lemma zmod_zadd_right_eq: "(a+b) mod (c::int) = (a + (b mod c)) mod c"
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   813
by (rule mod_add_right_eq)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   814
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   815
lemma zmod_zadd_self1: "(a+b) mod a = b mod (a::int)"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   816
by (rule mod_add_self1) (* already declared [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   817
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   818
lemma zmod_zadd_self2: "(b+a) mod a = b mod (a::int)"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29045
diff changeset
   819
by (rule mod_add_self2) (* already declared [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   820
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   821
lemma zmod_zdiff1_eq: "(a - b) mod c = (a mod c - b mod c) mod (c::int)"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   822
by (rule mod_diff_eq)
23983
79dc793bec43 Added lemmas
nipkow
parents: 23969
diff changeset
   823
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   824
subsection{*Proving  @{term "a div (b*c) = (a div b) div c"} *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   825
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   826
(*The condition c>0 seems necessary.  Consider that 7 div ~6 = ~2 but
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   827
  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
   828
  to cause particular problems.*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   829
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   830
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
   831
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   832
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
   833
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
   834
 apply (simp add: algebra_simps)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   835
apply (rule order_le_less_trans)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   836
 apply (erule_tac [2] mult_strict_right_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   837
 apply (rule mult_left_mono_neg)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   838
  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
   839
 apply (simp)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   840
apply (simp)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   841
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   842
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   843
lemma zmult2_lemma_aux2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   844
     "[| (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
   845
apply (subgoal_tac "b * (q mod c) \<le> 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   846
 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   847
apply (simp add: mult_le_0_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   848
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   849
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   850
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
   851
apply (subgoal_tac "0 \<le> b * (q mod c) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   852
apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   853
apply (simp add: zero_le_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   854
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   855
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   856
lemma 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
   857
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
   858
 apply (simp add: right_diff_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   859
apply (rule order_less_le_trans)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   860
 apply (erule mult_strict_right_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   861
 apply (rule_tac [2] mult_left_mono)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   862
  apply simp
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29410
diff changeset
   863
 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
   864
apply simp
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   865
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   866
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   867
lemma zmult2_lemma: "[| quorem ((a,b), (q,r));  b \<noteq> 0;  0 < c |]  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   868
      ==> quorem ((a, b*c), (q div c, b*(q mod c) + r))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   869
by (auto simp add: mult_ac quorem_def linorder_neq_iff
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   870
                   zero_less_mult_iff right_distrib [symmetric] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   871
                   zmult2_lemma_aux1 zmult2_lemma_aux2 zmult2_lemma_aux3 zmult2_lemma_aux4)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   872
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   873
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
   874
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   875
apply (force simp add: quorem_div_mod [THEN zmult2_lemma, THEN quorem_div])
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 zmod_zmult2_eq:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   879
     "(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
   880
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   881
apply (force simp add: quorem_div_mod [THEN zmult2_lemma, THEN quorem_mod])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   882
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   883
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   884
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   885
subsection{*Cancellation of Common Factors in div*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   886
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   887
lemma zdiv_zmult_zmult1_aux1:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   888
     "[| (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
   889
by (subst zdiv_zmult2_eq, auto)
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 zdiv_zmult_zmult1_aux2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   892
     "[| 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
   893
apply (subgoal_tac " (c * (-a)) div (c * (-b)) = (-a) div (-b) ")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   894
apply (rule_tac [2] zdiv_zmult_zmult1_aux1, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   895
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   896
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   897
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
   898
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   899
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
   900
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   901
23401
nipkow
parents: 23365
diff changeset
   902
lemma zdiv_zmult_zmult1_if[simp]:
nipkow
parents: 23365
diff changeset
   903
  "(k*m) div (k*n) = (if k = (0::int) then 0 else m div n)"
nipkow
parents: 23365
diff changeset
   904
by (simp add:zdiv_zmult_zmult1)
nipkow
parents: 23365
diff changeset
   905
nipkow
parents: 23365
diff changeset
   906
(*
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   907
lemma zdiv_zmult_zmult2: "c \<noteq> (0::int) ==> (a*c) div (b*c) = a div b"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   908
apply (drule zdiv_zmult_zmult1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   909
apply (auto simp add: mult_commute)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   910
done
23401
nipkow
parents: 23365
diff changeset
   911
*)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   912
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   913
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   914
subsection{*Distribution of Factors over mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   915
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   916
lemma zmod_zmult_zmult1_aux1:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   917
     "[| (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
   918
by (subst zmod_zmult2_eq, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   919
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   920
lemma zmod_zmult_zmult1_aux2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   921
     "[| 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
   922
apply (subgoal_tac " (c * (-a)) mod (c * (-b)) = c * ((-a) mod (-b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   923
apply (rule_tac [2] zmod_zmult_zmult1_aux1, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   924
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   925
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   926
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
   927
apply (case_tac "b = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   928
apply (case_tac "c = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   929
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
   930
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   931
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   932
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
   933
apply (cut_tac c = c in zmod_zmult_zmult1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   934
apply (auto simp add: mult_commute)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   935
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   936
29404
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   937
lemma zmod_zmod_cancel: "n dvd m \<Longrightarrow> (k::int) mod m mod n = k mod n"
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   938
by (rule mod_mod_cancel)
24490
a4c2a0ffa5be added lemma
nipkow
parents: 24481
diff changeset
   939
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   940
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   941
subsection {*Splitting Rules for div and mod*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   942
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   943
text{*The proofs of the two lemmas below are essentially identical*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   944
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   945
lemma split_pos_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   946
 "0<k ==> 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   947
    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
   948
apply (rule iffI, clarify)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   949
 apply (erule_tac P="P ?x ?y" in rev_mp)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   950
 apply (subst zmod_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   951
 apply (subst zdiv_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   952
 apply (simp add: div_pos_pos_trivial mod_pos_pos_trivial)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   953
txt{*converse direction*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   954
apply (drule_tac x = "n div k" in spec) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   955
apply (drule_tac x = "n mod k" in spec, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   956
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   957
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   958
lemma split_neg_lemma:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   959
 "k<0 ==>
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   960
    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
   961
apply (rule iffI, clarify)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   962
 apply (erule_tac P="P ?x ?y" in rev_mp)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   963
 apply (subst zmod_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   964
 apply (subst zdiv_zadd1_eq) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   965
 apply (simp add: div_neg_neg_trivial mod_neg_neg_trivial)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   966
txt{*converse direction*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   967
apply (drule_tac x = "n div k" in spec) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   968
apply (drule_tac x = "n mod k" in spec, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   969
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   970
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   971
lemma split_zdiv:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   972
 "P(n div k :: int) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   973
  ((k = 0 --> P 0) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   974
   (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
   975
   (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
   976
apply (case_tac "k=0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   977
apply (simp only: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   978
apply (erule disjE) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   979
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P x"] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   980
                      split_neg_lemma [of concl: "%x y. P x"])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   981
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   982
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   983
lemma split_zmod:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   984
 "P(n mod k :: int) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   985
  ((k = 0 --> P n) & 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   986
   (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
   987
   (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
   988
apply (case_tac "k=0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   989
apply (simp only: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   990
apply (erule disjE) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   991
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P y"] 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   992
                      split_neg_lemma [of concl: "%x y. P y"])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   993
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   994
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   995
(* Enable arith to deal with div 2 and mod 2: *)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   996
declare split_zdiv [of _ _ "number_of k", simplified, standard, arith_split]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   997
declare split_zmod [of _ _ "number_of k", simplified, standard, arith_split]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   998
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   999
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1000
subsection{*Speeding up the Division Algorithm with Shifting*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1001
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1002
text{*computing div by shifting *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1003
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1004
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
  1005
proof cases
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1006
  assume "a=0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1007
    thus ?thesis by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1008
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1009
  assume "a\<noteq>0" and le_a: "0\<le>a"   
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1010
  hence a_pos: "1 \<le> a" by arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1011
  hence one_less_a2: "1 < 2*a" by arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1012
  hence le_2a: "2 * (1 + b mod a) \<le> 2 * a"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1013
    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
  1014
  with a_pos have "0 \<le> b mod a" by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1015
  hence le_addm: "0 \<le> 1 mod (2*a) + 2*(b mod a)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1016
    by (simp add: mod_pos_pos_trivial one_less_a2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1017
  with  le_2a
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1018
  have "(1 mod (2*a) + 2*(b mod a)) div (2*a) = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1019
    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
  1020
                  right_distrib) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1021
  thus ?thesis
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1022
    by (subst zdiv_zadd1_eq,
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1023
        simp add: zdiv_zmult_zmult1 zmod_zmult_zmult1 one_less_a2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1024
                  div_pos_pos_trivial)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1025
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1026
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1027
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
  1028
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
  1029
apply (rule_tac [2] pos_zdiv_mult_2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1030
apply (auto simp add: minus_mult_right [symmetric] right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1031
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1032
apply (simp only: zdiv_zminus_zminus diff_minus minus_add_distrib [symmetric],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1033
       simp) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1034
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1035
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1036
(*Not clear why this must be proved separately; probably number_of causes
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1037
  simplification problems*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1038
lemma not_0_le_lemma: "~ 0 \<le> x ==> x \<le> (0::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1039
by auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1040
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1041
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
  1042
     "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
  1043
          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
  1044
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
  1045
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1046
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
  1047
     "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
  1048
          (if (0::int) \<le> number_of w                    
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1049
           then number_of v div (number_of w)     
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1050
           else (number_of v + (1::int)) div (number_of w))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1051
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
  1052
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
  1053
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1054
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1055
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1056
subsection{*Computing mod by Shifting (proofs resemble those for div)*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1057
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1058
lemma pos_zmod_mult_2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1059
     "(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
  1060
apply (case_tac "a = 0", simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1061
apply (subgoal_tac "1 < a * 2")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1062
 prefer 2 apply arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1063
apply (subgoal_tac "2* (1 + b mod a) \<le> 2*a")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1064
 apply (rule_tac [2] mult_left_mono)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1065
apply (auto simp add: add_commute [of 1] mult_commute add1_zle_eq 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1066
                      pos_mod_bound)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1067
apply (subst zmod_zadd1_eq)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1068
apply (simp add: zmod_zmult_zmult2 mod_pos_pos_trivial)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1069
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
  1070
apply (auto simp add: mod_pos_pos_trivial ring_distribs)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1071
apply (subgoal_tac "0 \<le> b mod a", arith, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1072
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1073
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1074
lemma neg_zmod_mult_2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1075
     "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
  1076
apply (subgoal_tac "(1 + 2* (-b - 1)) mod (2* (-a)) = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1077
                    1 + 2* ((-b - 1) mod (-a))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1078
apply (rule_tac [2] pos_zmod_mult_2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1079
apply (auto simp add: minus_mult_right [symmetric] right_diff_distrib)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1080
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1081
 prefer 2 apply simp 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1082
apply (simp only: zmod_zminus_zminus diff_minus minus_add_distrib [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1083
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1084
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1085
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
  1086
     "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
  1087
      (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
  1088
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
  1089
apply (simp add: zmod_zmult_zmult1 pos_zmod_mult_2 
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1090
                 not_0_le_lemma neg_zmod_mult_2 add_ac)
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1091
done
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1092
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25961
diff changeset
  1093
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
  1094
     "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
  1095
      (if (0::int) \<le> number_of w  
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1096
                then 2 * (number_of v mod number_of w) + 1     
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1097
                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
  1098
apply (simp only: number_of_eq numeral_simps) 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1099
apply (simp add: zmod_zmult_zmult1 pos_zmod_mult_2 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1100
                 not_0_le_lemma neg_zmod_mult_2 add_ac)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1101
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1102
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1103
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1104
subsection{*Quotients of Signs*}
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 div_neg_pos_less0: "[| a < (0::int);  0 < b |] ==> a div b < 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1107
apply (subgoal_tac "a div b \<le> -1", force)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1108
apply (rule order_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1109
apply (rule_tac a' = "-1" in zdiv_mono1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1110
apply (auto simp add: zdiv_minus1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1111
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1112
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1113
lemma div_nonneg_neg_le0: "[| (0::int) \<le> a;  b < 0 |] ==> a div b \<le> 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1114
by (drule zdiv_mono1_neg, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1115
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1116
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
  1117
apply auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1118
apply (drule_tac [2] zdiv_mono1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1119
apply (auto simp add: linorder_neq_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1120
apply (simp (no_asm_use) add: linorder_not_less [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1121
apply (blast intro: div_neg_pos_less0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1122
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1123
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1124
lemma neg_imp_zdiv_nonneg_iff:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1125
     "b < (0::int) ==> (0 \<le> a div b) = (a \<le> (0::int))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1126
apply (subst zdiv_zminus_zminus [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1127
apply (subst pos_imp_zdiv_nonneg_iff, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1128
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1129
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1130
(*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
  1131
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
  1132
by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1133
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1134
(*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
  1135
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
  1136
by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1137
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1138
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1139
subsection {* The Divides Relation *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1140
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1141
lemma zdvd_iff_zmod_eq_0: "(m dvd n) = (n mod m = (0::int))"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1142
  by (rule dvd_eq_mod_eq_0)
23512
770e7f9f715b code generation for dvd
haftmann
parents: 23477
diff changeset
  1143
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1144
lemmas zdvd_iff_zmod_eq_0_number_of [simp] =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1145
  zdvd_iff_zmod_eq_0 [of "number_of x" "number_of y", standard]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1146
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1147
lemma zdvd_0_right: "(m::int) dvd 0"
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1148
  by (rule dvd_0_right) (* already declared [iff] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1149
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1150
lemma zdvd_0_left: "(0 dvd (m::int)) = (m = 0)"
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1151
  by (rule dvd_0_left_iff) (* already declared [noatp,simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1152
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1153
lemma zdvd_1_left: "1 dvd (m::int)"
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1154
  by (rule one_dvd) (* already declared [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1155
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1156
lemma zdvd_refl [simp]: "m dvd (m::int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1157
  by (rule dvd_refl) (* TODO: declare generic dvd_refl [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1158
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1159
lemma zdvd_trans: "m dvd n ==> n dvd k ==> m dvd (k::int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1160
  by (rule dvd_trans)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1161
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1162
lemma zdvd_zminus_iff: "m dvd -n \<longleftrightarrow> m dvd (n::int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1163
  by (rule dvd_minus_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1164
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1165
lemma zdvd_zminus2_iff: "-m dvd n \<longleftrightarrow> m dvd (n::int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1166
  by (rule minus_dvd_iff)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1167
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1168
lemma zdvd_abs1: "( \<bar>i::int\<bar> dvd j) = (i dvd j)" 
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1169
  by (cases "i > 0") (simp_all add: zdvd_zminus2_iff)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1170
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1171
lemma zdvd_abs2: "( (i::int) dvd \<bar>j\<bar>) = (i dvd j)" 
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1172
  by (cases "j > 0") (simp_all add: zdvd_zminus_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1173
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1174
lemma zdvd_anti_sym:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1175
    "0 < m ==> 0 < n ==> m dvd n ==> n dvd m ==> m = (n::int)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1176
  apply (simp add: dvd_def, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1177
  apply (simp add: mult_assoc zero_less_mult_iff zmult_eq_1_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1178
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1179
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1180
lemma zdvd_zadd: "k dvd m ==> k dvd n ==> k dvd (m + n :: int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1181
  by (rule dvd_add)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1182
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1183
lemma zdvd_dvd_eq: assumes anz:"a \<noteq> 0" and ab: "(a::int) dvd b" and ba:"b dvd a" 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1184
  shows "\<bar>a\<bar> = \<bar>b\<bar>"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1185
proof-
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1186
  from ab obtain k where k:"b = a*k" unfolding dvd_def by blast 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1187
  from ba obtain k' where k':"a = b*k'" unfolding dvd_def by blast 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1188
  from k k' have "a = a*k*k'" by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1189
  with mult_cancel_left1[where c="a" and b="k*k'"]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1190
  have kk':"k*k' = 1" using anz by (simp add: mult_assoc)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1191
  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
  1192
  thus ?thesis using k k' by auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1193
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1194
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1195
lemma zdvd_zdiff: "k dvd m ==> k dvd n ==> k dvd (m - n :: int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1196
  by (rule Ring_and_Field.dvd_diff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1197
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1198
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
  1199
  apply (subgoal_tac "m = n + (m - n)")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1200
   apply (erule ssubst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1201
   apply (blast intro: zdvd_zadd, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1202
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1203
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1204
lemma zdvd_zmult: "k dvd (n::int) ==> k dvd m * n"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1205
  by (rule dvd_mult)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1206
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1207
lemma zdvd_zmult2: "k dvd (m::int) ==> k dvd m * n"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1208
  by (rule dvd_mult2)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1209
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1210
lemma zdvd_triv_right: "(k::int) dvd m * k"
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1211
  by (rule dvd_triv_right) (* already declared [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1212
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1213
lemma zdvd_triv_left: "(k::int) dvd k * m"
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1214
  by (rule dvd_triv_left) (* already declared [simp] *)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1215
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1216
lemma zdvd_zmultD2: "j * k dvd n ==> j dvd (n::int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1217
  by (rule dvd_mult_left)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1218
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1219
lemma zdvd_zmultD: "j * k dvd n ==> k dvd (n::int)"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1220
  by (rule dvd_mult_right)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1221
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1222
lemma zdvd_zmult_mono: "i dvd m ==> j dvd (n::int) ==> i * j dvd m * n"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1223
  by (rule mult_dvd_mono)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1224
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1225
lemma zdvd_reduce: "(k dvd n + k * m) = (k dvd (n::int))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1226
  apply (rule iffI)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1227
   apply (erule_tac [2] zdvd_zadd)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1228
   apply (subgoal_tac "n = (n + k * m) - k * m")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1229
    apply (erule ssubst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1230
    apply (erule zdvd_zdiff, simp_all)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1231
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1232
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1233
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
  1234
  apply (simp add: dvd_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1235
  apply (auto simp add: zmod_zmult_zmult1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1236
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1237
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1238
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
  1239
  apply (subgoal_tac "k dvd n * (m div n) + m mod n")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1240
   apply (simp add: zmod_zdiv_equality [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1241
  apply (simp only: zdvd_zadd zdvd_zmult2)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1242
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1243
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1244
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
  1245
  apply (auto elim!: dvdE)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1246
  apply (subgoal_tac "0 < n")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1247
   prefer 2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1248
   apply (blast intro: order_less_trans)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1249
  apply (simp add: zero_less_mult_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1250
  apply (subgoal_tac "n * k < n * 1")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1251
   apply (drule mult_less_cancel_left [THEN iffD1], auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1252
  done
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1253
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1254
lemma zmult_div_cancel: "(n::int) * (m div n) = m - (m mod n)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1255
  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
  1256
  by (simp add: algebra_simps)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1257
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1258
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
  1259
apply (subgoal_tac "m mod n = 0")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1260
 apply (simp add: zmult_div_cancel)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1261
apply (simp only: zdvd_iff_zmod_eq_0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1262
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1263
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1264
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
  1265
  shows "m dvd n"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1266
proof-
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1267
  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
  1268
  {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
  1269
    with h have False by (simp add: mult_assoc)}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1270
  hence "n = m * h" by blast
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1271
  thus ?thesis by simp
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1272
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1273
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23853
diff changeset
  1274
lemma zdvd_zmult_cancel_disj[simp]:
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23853
diff changeset
  1275
  "(k*m) dvd (k*n) = (k=0 | m dvd (n::int))"
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23853
diff changeset
  1276
by (auto simp: zdvd_zmult_mono dest: zdvd_mult_cancel)
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23853
diff changeset
  1277
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23853
diff changeset
  1278
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1279
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
  1280
apply (simp split add: split_nat)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1281
apply (rule iffI)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1282
apply (erule exE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1283
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
  1284
apply simp
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1285
apply (erule exE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1286
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
  1287
apply (erule conjE)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1288
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
  1289
apply simp
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1290
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1291
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1292
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
  1293
proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1294
  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
  1295
  proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1296
    fix k
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1297
    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
  1298
    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
  1299
      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
  1300
      then show ?thesis ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1301
    next
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1302
      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
  1303
      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
  1304
      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
  1305
      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
  1306
      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
  1307
    qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1308
  qed
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1309
  then show ?thesis by (auto elim!: dvdE simp only: zdvd_triv_left int_mult)
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1310
qed
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1311
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1312
lemma zdvd1_eq[simp]: "(x::int) dvd 1 = ( \<bar>x\<bar> = 1)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1313
proof
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1314
  assume d: "x dvd 1" hence "int (nat \<bar>x\<bar>) dvd int (nat 1)" by (simp add: zdvd_abs1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1315
  hence "nat \<bar>x\<bar> dvd 1" by (simp add: zdvd_int)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1316
  hence "nat \<bar>x\<bar> = 1"  by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1317
  thus "\<bar>x\<bar> = 1" by (cases "x < 0", auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1318
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1319
  assume "\<bar>x\<bar>=1" thus "x dvd 1" 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1320
    by(cases "x < 0",simp_all add: minus_equation_iff zdvd_iff_zmod_eq_0)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1321
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1322
lemma zdvd_mult_cancel1: 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1323
  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
  1324
proof
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1325
  assume n1: "\<bar>n\<bar> = 1" thus "m * n dvd m" 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1326
    by (cases "n >0", auto simp add: zdvd_zminus2_iff minus_equation_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1327
next
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1328
  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
  1329
  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
  1330
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1331
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1332
lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1333
  unfolding zdvd_int by (cases "z \<ge> 0") (simp_all add: zdvd_zminus_iff)
23306
cdb027d0637e add int_of_nat versions of lemmas about int::nat=>int
huffman
parents: 23164
diff changeset
  1334
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1335
lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 26507
diff changeset
  1336
  unfolding zdvd_int by (cases "z \<ge> 0") (simp_all add: zdvd_zminus2_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1337
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1338
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
  1339
  by (auto simp add: dvd_int_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1340
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1341
lemma zminus_dvd_iff [iff]: "(-z dvd w) = (z dvd (w::int))"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1342
  by (rule minus_dvd_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1343
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1344
lemma dvd_zminus_iff [iff]: "(z dvd -w) = (z dvd (w::int))"
29410
97916a925a69 remove type-specific proofs
huffman
parents: 29405
diff changeset
  1345
  by (rule dvd_minus_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1346
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1347
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
  1348
  apply (rule_tac z=n in int_cases)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1349
  apply (auto simp add: dvd_int_iff)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1350
  apply (rule_tac z=z in int_cases)
23307
2fe3345035c7 modify proofs to avoid referring to int::nat=>int
huffman
parents: 23306
diff changeset
  1351
  apply (auto simp add: dvd_imp_le)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1352
  done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1353
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1354
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
  1355
apply (induct "y", auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1356
apply (rule zmod_zmult1_eq [THEN trans])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1357
apply (simp (no_asm_simp))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1358
apply (rule zmod_zmult_distrib [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1359
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1360
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1361
lemma zdiv_int: "int (a div b) = (int a) div (int b)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1362
apply (subst split_div, auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1363
apply (subst split_zdiv, auto)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1364
apply (rule_tac a="int (b * i) + int j" and b="int b" and r="int j" and r'=ja in IntDiv.unique_quotient)
23431
25ca91279a9b change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents: 23401
diff changeset
  1365
apply (auto simp add: IntDiv.quorem_def of_nat_mult)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1366
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1367
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1368
lemma zmod_int: "int (a mod b) = (int a) mod (int b)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1369
apply (subst split_mod, auto)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1370
apply (subst split_zmod, auto)
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1371
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
  1372
       in unique_remainder)
23431
25ca91279a9b change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents: 23401
diff changeset
  1373
apply (auto simp add: IntDiv.quorem_def of_nat_mult)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23307
diff changeset
  1374
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1375
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1376
text{*Suggested by Matthias Daum*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1377
lemma int_power_div_base:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1378
     "\<lbrakk>0 < m; 0 < k\<rbrakk> \<Longrightarrow> k ^ m div k = (k::int) ^ (m - Suc 0)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1379
apply (subgoal_tac "k ^ m = k ^ ((m - 1) + 1)")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1380
 apply (erule ssubst)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1381
 apply (simp only: power_add)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1382
 apply simp_all
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1383
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1384
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1385
text {* by Brian Huffman *}
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1386
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
  1387
by (rule mod_minus_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1388
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1389
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
  1390
by (rule mod_diff_left_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1391
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1392
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
  1393
by (rule mod_diff_right_eq [symmetric])
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1394
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1395
lemmas zmod_simps =
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1396
  IntDiv.zmod_zadd_left_eq  [symmetric]
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1397
  IntDiv.zmod_zadd_right_eq [symmetric]
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1398
  IntDiv.zmod_zmult1_eq     [symmetric]
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1399
  IntDiv.zmod_zmult1_eq'    [symmetric]
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1400
  IntDiv.zpower_zmod
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1401
  zminus_zmod zdiff_zmod_left zdiff_zmod_right
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1402
29045
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1403
text {* Distributive laws for function @{text nat}. *}
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1404
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1405
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
  1406
apply (rule linorder_cases [of y 0])
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1407
apply (simp add: div_nonneg_neg_le0)
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1408
apply simp
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1409
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
  1410
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1411
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1412
(*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
  1413
lemma nat_mod_distrib:
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1414
  "\<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
  1415
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
  1416
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
  1417
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1418
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1419
text{*Suggested by Matthias Daum*}
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1420
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
  1421
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
  1422
 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
  1423
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
  1424
done
3c8f48333731 move nat_{div,mod}_distrib from NatBin to IntDiv, simplified proofs
huffman
parents: 28562
diff changeset
  1425
23853
2c69bb1374b8 added lemmas by Brian Huffman
haftmann
parents: 23684
diff changeset
  1426
text {* code generator setup *}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1427
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1428
context ring_1
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1429
begin
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1430
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28262
diff changeset
  1431
lemma of_int_num [code]:
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1432
  "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
  1433
     - of_int (- k) else let
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1434
       (l, m) = divAlg (k, 2);
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1435
       l' = of_int l
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1436
     in if m = 0 then l' + l' else l' + l' + 1)"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1437
proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1438
  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
  1439
    of_int k = of_int (k div 2 * 2 + 1)"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1440
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1441
    have "k mod 2 < 2" by (auto intro: pos_mod_bound)
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1442
    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
  1443
    moreover assume "k mod 2 \<noteq> 0"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1444
    ultimately have "k mod 2 = 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1445
    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
  1446
    ultimately show ?thesis by auto
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1447
  qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1448
  have aux2: "\<And>x. of_int 2 * x = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1449
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1450
    fix x
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1451
    have int2: "(2::int) = 1 + 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1452
    show "of_int 2 * x = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1453
    unfolding int2 of_int_add left_distrib by simp
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1454
  qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1455
  have aux3: "\<And>x. x * of_int 2 = x + x"
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1456
  proof -
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1457
    fix x
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1458
    have int2: "(2::int) = 1 + 1" by arith
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1459
    show "x * of_int 2 = x + x" 
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1460
    unfolding int2 of_int_add right_distrib by simp
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1461
  qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1462
  from aux1 show ?thesis by (auto simp add: divAlg_mod_div Let_def aux2 aux3)
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1463
qed
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1464
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1465
end
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26480
diff changeset
  1466
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
  1467
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
  1468
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
  1469
  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
  1470
  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
  1471
  hence "(x mod n - y mod n) 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
  1472
  hence "(x - y) mod n = 0" by (simp add: zmod_zdiff1_eq[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
  1473
  thus "n dvd x - y" by (simp add: zdvd_iff_zmod_eq_0)
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1474
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
  1475
  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
  1476
  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
  1477
  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
  1478
  hence "x mod n = (n*k + y) 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
  1479
  thus "x mod n = y mod n" by (simp add: zmod_zadd_left_eq)
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1480
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
  1481
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1482
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
  1483
  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
  1484
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
  1485
  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
  1486
  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
  1487
    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
  1488
  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
  1489
  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
  1490
  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
  1491
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
  1492
62500b980749 Added theorems zmod_eq_dvd_iff and nat_mod_eq_iff previously in Pocklington.thy --- relevant for algebra
chaieb
parents: 27651
diff changeset
  1493
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
  1494
  (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
  1495
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
  1496
  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
  1497
  {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
  1498
    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
  1499
    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
  1500
      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
  1501
  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
  1502
  {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
  1503
    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
  1504
      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
  1505
  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
  1506
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
  1507
  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
  1508
  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
  1509
  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
  1510
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
  1511
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1512
code_modulename SML
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1513
  IntDiv Integer
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1514
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1515
code_modulename OCaml
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1516
  IntDiv Integer
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1517
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1518
code_modulename Haskell
24195
haftmann
parents: 23983
diff changeset
  1519
  IntDiv Integer
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1520
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
  1521
end