src/HOL/Divides.thy
author hoelzl
Thu, 07 May 2015 15:34:28 +0200
changeset 60182 e1ea5a6379c9
parent 59833 ab828c2c5d67
child 60352 d46de31a50c4
permissions -rw-r--r--
generalized tends over powr; added DERIV rule for powr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3366
2402c6ab1561 Moving div and mod from Arith to Divides
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Divides.thy
2402c6ab1561 Moving div and mod from Arith to Divides
paulson
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
6865
5577ffe4c2f1 now div and mod are overloaded; dvd is polymorphic
paulson
parents: 3366
diff changeset
     3
    Copyright   1999  University of Cambridge
18154
0c05abaf6244 add header
huffman
parents: 17609
diff changeset
     4
*)
3366
2402c6ab1561 Moving div and mod from Arith to Divides
paulson
parents:
diff changeset
     5
58889
5b7a9633cfa8 modernized header uniformly as section;
wenzelm
parents: 58847
diff changeset
     6
section {* The division operators div and mod *}
3366
2402c6ab1561 Moving div and mod from Arith to Divides
paulson
parents:
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14640
diff changeset
     8
theory Divides
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
     9
imports Parity
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14640
diff changeset
    10
begin
3366
2402c6ab1561 Moving div and mod from Arith to Divides
paulson
parents:
diff changeset
    11
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
    12
subsection {* Syntactic division operations *}
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
    13
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    14
class div = dvd +
27540
dc38e79f5a1c separate class dvd for divisibility predicate
haftmann
parents: 26748
diff changeset
    15
  fixes div :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "div" 70)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    16
    and mod :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "mod" 70)
27540
dc38e79f5a1c separate class dvd for divisibility predicate
haftmann
parents: 26748
diff changeset
    17
dc38e79f5a1c separate class dvd for divisibility predicate
haftmann
parents: 26748
diff changeset
    18
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    19
subsection {* Abstract division in commutative semirings. *}
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
    20
59833
ab828c2c5d67 clarified no_zero_devisors: makes only sense in a semiring;
haftmann
parents: 59816
diff changeset
    21
class semiring_div = semidom + div +
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
    22
  assumes mod_div_equality: "a div b * b + a mod b = a"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    23
    and div_by_0 [simp]: "a div 0 = 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    24
    and div_0 [simp]: "0 div a = 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    25
    and div_mult_self1 [simp]: "b \<noteq> 0 \<Longrightarrow> (a + c * b) div b = c + a div b"
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
    26
    and div_mult_mult1 [simp]: "c \<noteq> 0 \<Longrightarrow> (c * a) div (c * b) = a div b"
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
    27
begin
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
    28
58953
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
    29
subclass semiring_no_zero_divisors ..
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
    30
59009
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    31
lemma power_not_zero: -- \<open>FIXME cf. @{text field_power_not_zero}\<close>
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    32
  "a \<noteq> 0 \<Longrightarrow> a ^ n \<noteq> 0"
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    33
  by (induct n) (simp_all add: no_zero_divisors)
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    34
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    35
lemma semiring_div_power_eq_0_iff: -- \<open>FIXME cf. @{text power_eq_0_iff}, @{text power_eq_0_nat_iff}\<close>
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    36
  "n \<noteq> 0 \<Longrightarrow> a ^ n = 0 \<longleftrightarrow> a = 0"
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    37
  using power_not_zero [of a n] by (auto simp add: zero_power)
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
    38
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
    39
text {* @{const div} and @{const mod} *}
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
    40
26062
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
    41
lemma mod_div_equality2: "b * (a div b) + a mod b = a"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
    42
  unfolding mult.commute [of b]
26062
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
    43
  by (rule mod_div_equality)
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
    44
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
    45
lemma mod_div_equality': "a mod b + a div b * b = a"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
    46
  using mod_div_equality [of a b]
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
    47
  by (simp only: ac_simps)
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
    48
26062
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
    49
lemma div_mod_equality: "((a div b) * b + a mod b) + c = a + c"
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
    50
  by (simp add: mod_div_equality)
26062
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
    51
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
    52
lemma div_mod_equality2: "(b * (a div b) + a mod b) + c = a + c"
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
    53
  by (simp add: mod_div_equality2)
26062
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
    54
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    55
lemma mod_by_0 [simp]: "a mod 0 = a"
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
    56
  using mod_div_equality [of a zero] by simp
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    57
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    58
lemma mod_0 [simp]: "0 mod a = 0"
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
    59
  using mod_div_equality [of zero a] div_0 by simp
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    60
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    61
lemma div_mult_self2 [simp]:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    62
  assumes "b \<noteq> 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    63
  shows "(a + b * c) div b = c + a div b"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
    64
  using assms div_mult_self1 [of b a c] by (simp add: mult.commute)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
    65
54221
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    66
lemma div_mult_self3 [simp]:
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    67
  assumes "b \<noteq> 0"
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    68
  shows "(c * b + a) div b = c + a div b"
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    69
  using assms by (simp add: add.commute)
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    70
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    71
lemma div_mult_self4 [simp]:
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    72
  assumes "b \<noteq> 0"
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    73
  shows "(b * c + a) div b = c + a div b"
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    74
  using assms by (simp add: add.commute)
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    75
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    76
lemma mod_mult_self1 [simp]: "(a + c * b) mod b = a mod b"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    77
proof (cases "b = 0")
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    78
  case True then show ?thesis by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    79
next
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    80
  case False
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    81
  have "a + c * b = (a + c * b) div b * b + (a + c * b) mod b"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    82
    by (simp add: mod_div_equality)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    83
  also from False div_mult_self1 [of b a c] have
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    84
    "\<dots> = (c + a div b) * b + (a + c * b) mod b"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
    85
      by (simp add: algebra_simps)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    86
  finally have "a = a div b * b + (a + c * b) mod b"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
    87
    by (simp add: add.commute [of a] add.assoc distrib_right)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    88
  then have "a div b * b + (a + c * b) mod b = a div b * b + a mod b"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    89
    by (simp add: mod_div_equality)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    90
  then show ?thesis by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    91
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    92
54221
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    93
lemma mod_mult_self2 [simp]: 
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    94
  "(a + b * c) mod b = a mod b"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
    95
  by (simp add: mult.commute [of b])
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
    96
54221
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    97
lemma mod_mult_self3 [simp]:
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    98
  "(c * b + a) mod b = a mod b"
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
    99
  by (simp add: add.commute)
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   100
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   101
lemma mod_mult_self4 [simp]:
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   102
  "(b * c + a) mod b = a mod b"
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   103
  by (simp add: add.commute)
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   104
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   105
lemma div_mult_self1_is_id [simp]: "b \<noteq> 0 \<Longrightarrow> b * a div b = a"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   106
  using div_mult_self2 [of b 0 a] by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   107
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   108
lemma div_mult_self2_is_id [simp]: "b \<noteq> 0 \<Longrightarrow> a * b div b = a"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   109
  using div_mult_self1 [of b 0 a] by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   110
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   111
lemma mod_mult_self1_is_0 [simp]: "b * a mod b = 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   112
  using mod_mult_self2 [of 0 b a] by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   113
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   114
lemma mod_mult_self2_is_0 [simp]: "a * b mod b = 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   115
  using mod_mult_self1 [of 0 a b] by simp
26062
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
   116
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   117
lemma div_by_1 [simp]: "a div 1 = a"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   118
  using div_mult_self2_is_id [of 1 a] zero_neq_one by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   119
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   120
lemma mod_by_1 [simp]: "a mod 1 = 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   121
proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   122
  from mod_div_equality [of a one] div_by_1 have "a + a mod 1 = a" by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   123
  then have "a + a mod 1 = a + 0" by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   124
  then show ?thesis by (rule add_left_imp_eq)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   125
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   126
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   127
lemma mod_self [simp]: "a mod a = 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   128
  using mod_mult_self2_is_0 [of 1] by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   129
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   130
lemma div_self [simp]: "a \<noteq> 0 \<Longrightarrow> a div a = 1"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   131
  using div_mult_self2_is_id [of _ 1] by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   132
27676
55676111ed69 (re-)added simp rules for (_ + _) div/mod _
haftmann
parents: 27651
diff changeset
   133
lemma div_add_self1 [simp]:
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   134
  assumes "b \<noteq> 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   135
  shows "(b + a) div b = a div b + 1"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   136
  using assms div_mult_self1 [of b a 1] by (simp add: add.commute)
26062
16f334d7156a more abstract lemmas
haftmann
parents: 25947
diff changeset
   137
27676
55676111ed69 (re-)added simp rules for (_ + _) div/mod _
haftmann
parents: 27651
diff changeset
   138
lemma div_add_self2 [simp]:
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   139
  assumes "b \<noteq> 0"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   140
  shows "(a + b) div b = a div b + 1"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   141
  using assms div_add_self1 [of b a] by (simp add: add.commute)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   142
27676
55676111ed69 (re-)added simp rules for (_ + _) div/mod _
haftmann
parents: 27651
diff changeset
   143
lemma mod_add_self1 [simp]:
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   144
  "(b + a) mod b = a mod b"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   145
  using mod_mult_self1 [of a 1 b] by (simp add: add.commute)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   146
27676
55676111ed69 (re-)added simp rules for (_ + _) div/mod _
haftmann
parents: 27651
diff changeset
   147
lemma mod_add_self2 [simp]:
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   148
  "(a + b) mod b = a mod b"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   149
  using mod_mult_self1 [of a 1 b] by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   150
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   151
lemma mod_div_decomp:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   152
  fixes a b
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   153
  obtains q r where "q = a div b" and "r = a mod b"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   154
    and "a = q * b + r"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   155
proof -
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   156
  from mod_div_equality have "a = a div b * b + a mod b" by simp
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   157
  moreover have "a div b = a div b" ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   158
  moreover have "a mod b = a mod b" ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   159
  note that ultimately show thesis by blast
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   160
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
   161
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   162
lemma dvd_imp_mod_0 [simp]:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   163
  assumes "a dvd b"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   164
  shows "b mod a = 0"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   165
proof -
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   166
  from assms obtain c where "b = a * c" ..
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   167
  then have "b mod a = a * c mod a" by simp
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   168
  then show "b mod a = 0" by simp
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   169
qed
58911
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   170
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   171
lemma mod_eq_0_iff_dvd:
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   172
  "a mod b = 0 \<longleftrightarrow> b dvd a"
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   173
proof
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   174
  assume "b dvd a"
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   175
  then show "a mod b = 0" by simp
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   176
next
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   177
  assume "a mod b = 0"
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   178
  with mod_div_equality [of a b] have "a div b * b = a" by simp
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   179
  then have "a = b * (a div b)" by (simp add: ac_simps)
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   180
  then show "b dvd a" ..
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   181
qed
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   182
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   183
lemma dvd_eq_mod_eq_0 [code]:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   184
  "a dvd b \<longleftrightarrow> b mod a = 0"
58911
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   185
  by (simp add: mod_eq_0_iff_dvd)
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   186
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   187
lemma mod_div_trivial [simp]:
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   188
  "a mod b div b = 0"
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   189
proof (cases "b = 0")
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   190
  assume "b = 0"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   191
  thus ?thesis by simp
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   192
next
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   193
  assume "b \<noteq> 0"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   194
  hence "a div b + a mod b div b = (a mod b + a div b * b) div b"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   195
    by (rule div_mult_self1 [symmetric])
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   196
  also have "\<dots> = a div b"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   197
    by (simp only: mod_div_equality')
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   198
  also have "\<dots> = a div b + 0"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   199
    by simp
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   200
  finally show ?thesis
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   201
    by (rule add_left_imp_eq)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   202
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   203
58911
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   204
lemma mod_mod_trivial [simp]:
2cf595ee508b proper oriented equivalence of dvd predicate and mod
haftmann
parents: 58889
diff changeset
   205
  "a mod b mod b = a mod b"
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   206
proof -
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   207
  have "a mod b mod b = (a mod b + a div b * b) mod b"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   208
    by (simp only: mod_mult_self1)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   209
  also have "\<dots> = a mod b"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   210
    by (simp only: mod_div_equality')
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   211
  finally show ?thesis .
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   212
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   213
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   214
lemma dvd_div_mult_self [simp]:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   215
  "a dvd b \<Longrightarrow> (b div a) * a = b"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   216
  using mod_div_equality [of b a, symmetric] by simp
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   217
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   218
lemma dvd_mult_div_cancel [simp]:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   219
  "a dvd b \<Longrightarrow> a * (b div a) = b"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   220
  using dvd_div_mult_self by (simp add: ac_simps)
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   221
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   222
lemma dvd_div_mult:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   223
  "a dvd b \<Longrightarrow> (b div a) * c = (b * c) div a"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   224
  by (cases "a = 0") (auto elim!: dvdE simp add: mult.assoc)
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   225
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   226
lemma div_dvd_div [simp]:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   227
  assumes "a dvd b" and "a dvd c"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   228
  shows "b div a dvd c div a \<longleftrightarrow> b dvd c"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   229
using assms apply (cases "a = 0")
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   230
apply auto
29925
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29667
diff changeset
   231
apply (unfold dvd_def)
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29667
diff changeset
   232
apply auto
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   233
 apply(blast intro:mult.assoc[symmetric])
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   234
apply(fastforce simp add: mult.assoc)
29925
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29667
diff changeset
   235
done
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29667
diff changeset
   236
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   237
lemma dvd_mod_imp_dvd:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   238
  assumes "k dvd m mod n" and "k dvd n"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   239
  shows "k dvd m"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   240
proof -
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   241
  from assms have "k dvd (m div n) * n + m mod n"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   242
    by (simp only: dvd_add dvd_mult)
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   243
  then show ?thesis by (simp add: mod_div_equality)
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   244
qed
30078
beee83623cc9 move lemma dvd_mod_imp_dvd into class semiring_div
huffman
parents: 30052
diff changeset
   245
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   246
text {* Addition respects modular equivalence. *}
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   247
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   248
lemma mod_add_left_eq: "(a + b) mod c = (a mod c + b) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   249
proof -
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   250
  have "(a + b) mod c = (a div c * c + a mod c + b) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   251
    by (simp only: mod_div_equality)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   252
  also have "\<dots> = (a mod c + b + a div c * c) mod c"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   253
    by (simp only: ac_simps)
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   254
  also have "\<dots> = (a mod c + b) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   255
    by (rule mod_mult_self1)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   256
  finally show ?thesis .
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   257
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   258
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   259
lemma mod_add_right_eq: "(a + b) mod c = (a + b mod c) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   260
proof -
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   261
  have "(a + b) mod c = (a + (b div c * c + b mod c)) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   262
    by (simp only: mod_div_equality)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   263
  also have "\<dots> = (a + b mod c + b div c * c) mod c"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   264
    by (simp only: ac_simps)
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   265
  also have "\<dots> = (a + b mod c) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   266
    by (rule mod_mult_self1)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   267
  finally show ?thesis .
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   268
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   269
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   270
lemma mod_add_eq: "(a + b) mod c = (a mod c + b mod c) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   271
by (rule trans [OF mod_add_left_eq mod_add_right_eq])
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   272
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   273
lemma mod_add_cong:
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   274
  assumes "a mod c = a' mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   275
  assumes "b mod c = b' mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   276
  shows "(a + b) mod c = (a' + b') mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   277
proof -
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   278
  have "(a mod c + b mod c) mod c = (a' mod c + b' mod c) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   279
    unfolding assms ..
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   280
  thus ?thesis
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   281
    by (simp only: mod_add_eq [symmetric])
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   282
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   283
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   284
lemma div_add [simp]: "z dvd x \<Longrightarrow> z dvd y
30837
3d4832d9f7e4 added strong_setprod_cong[cong] (in analogy with setsum)
nipkow
parents: 30729
diff changeset
   285
  \<Longrightarrow> (x + y) div z = x div z + y div z"
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   286
by (cases "z = 0", simp, unfold dvd_def, auto simp add: algebra_simps)
30837
3d4832d9f7e4 added strong_setprod_cong[cong] (in analogy with setsum)
nipkow
parents: 30729
diff changeset
   287
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   288
text {* Multiplication respects modular equivalence. *}
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   289
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   290
lemma mod_mult_left_eq: "(a * b) mod c = ((a mod c) * b) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   291
proof -
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   292
  have "(a * b) mod c = ((a div c * c + a mod c) * b) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   293
    by (simp only: mod_div_equality)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   294
  also have "\<dots> = (a mod c * b + a div c * b * c) mod c"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
   295
    by (simp only: algebra_simps)
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   296
  also have "\<dots> = (a mod c * b) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   297
    by (rule mod_mult_self1)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   298
  finally show ?thesis .
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   299
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   300
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   301
lemma mod_mult_right_eq: "(a * b) mod c = (a * (b mod c)) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   302
proof -
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   303
  have "(a * b) mod c = (a * (b div c * c + b mod c)) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   304
    by (simp only: mod_div_equality)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   305
  also have "\<dots> = (a * (b mod c) + a * (b div c) * c) mod c"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
   306
    by (simp only: algebra_simps)
29403
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   307
  also have "\<dots> = (a * (b mod c)) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   308
    by (rule mod_mult_self1)
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   309
  finally show ?thesis .
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   310
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   311
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   312
lemma mod_mult_eq: "(a * b) mod c = ((a mod c) * (b mod c)) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   313
by (rule trans [OF mod_mult_left_eq mod_mult_right_eq])
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   314
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   315
lemma mod_mult_cong:
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   316
  assumes "a mod c = a' mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   317
  assumes "b mod c = b' mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   318
  shows "(a * b) mod c = (a' * b') mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   319
proof -
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   320
  have "(a mod c * (b mod c)) mod c = (a' mod c * (b' mod c)) mod c"
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   321
    unfolding assms ..
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   322
  thus ?thesis
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   323
    by (simp only: mod_mult_eq [symmetric])
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   324
qed
fe17df4e4ab3 generalize some div/mod lemmas; remove type-specific proofs
huffman
parents: 29252
diff changeset
   325
47164
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   326
text {* Exponentiation respects modular equivalence. *}
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   327
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   328
lemma power_mod: "(a mod b)^n mod b = a^n mod b"
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   329
apply (induct n, simp_all)
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   330
apply (rule mod_mult_right_eq [THEN trans])
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   331
apply (simp (no_asm_simp))
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   332
apply (rule mod_mult_eq [symmetric])
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   333
done
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
   334
29404
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   335
lemma mod_mod_cancel:
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   336
  assumes "c dvd b"
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   337
  shows "a mod b mod c = a mod c"
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   338
proof -
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   339
  from `c dvd b` obtain k where "b = c * k"
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   340
    by (rule dvdE)
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   341
  have "a mod b mod c = a mod (c * k) mod c"
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   342
    by (simp only: `b = c * k`)
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   343
  also have "\<dots> = (a mod (c * k) + a div (c * k) * k * c) mod c"
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   344
    by (simp only: mod_mult_self1)
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   345
  also have "\<dots> = (a div (c * k) * (c * k) + a mod (c * k)) mod c"
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   346
    by (simp only: ac_simps)
29404
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   347
  also have "\<dots> = a mod c"
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   348
    by (simp only: mod_div_equality)
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   349
  finally show ?thesis .
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   350
qed
ee15ccdeaa72 generalize zmod_zmod_cancel -> mod_mod_cancel
huffman
parents: 29403
diff changeset
   351
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   352
lemma div_mult_div_if_dvd:
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   353
  "y dvd x \<Longrightarrow> z dvd w \<Longrightarrow> (x div y) * (w div z) = (x * w) div (y * z)"
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   354
  apply (cases "y = 0", simp)
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   355
  apply (cases "z = 0", simp)
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   356
  apply (auto elim!: dvdE simp add: algebra_simps)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   357
  apply (subst mult.assoc [symmetric])
30476
0a41b0662264 added div lemmas
nipkow
parents: 30242
diff changeset
   358
  apply (simp add: no_zero_divisors)
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   359
  done
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   360
35367
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   361
lemma div_mult_swap:
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   362
  assumes "c dvd b"
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   363
  shows "a * (b div c) = (a * b) div c"
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   364
proof -
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   365
  from assms have "b div c * (a div 1) = b * a div (c * 1)"
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   366
    by (simp only: div_mult_div_if_dvd one_dvd)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   367
  then show ?thesis by (simp add: mult.commute)
35367
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   368
qed
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   369
   
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   370
lemma div_mult_mult2 [simp]:
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   371
  "c \<noteq> 0 \<Longrightarrow> (a * c) div (b * c) = a div b"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   372
  by (drule div_mult_mult1) (simp add: mult.commute)
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   373
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   374
lemma div_mult_mult1_if [simp]:
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   375
  "(c * a) div (c * b) = (if c = 0 then 0 else a div b)"
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   376
  by simp_all
30476
0a41b0662264 added div lemmas
nipkow
parents: 30242
diff changeset
   377
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   378
lemma mod_mult_mult1:
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   379
  "(c * a) mod (c * b) = c * (a mod b)"
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   380
proof (cases "c = 0")
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   381
  case True then show ?thesis by simp
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   382
next
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   383
  case False
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   384
  from mod_div_equality
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   385
  have "((c * a) div (c * b)) * (c * b) + (c * a) mod (c * b) = c * a" .
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   386
  with False have "c * ((a div b) * b + a mod b) + (c * a) mod (c * b)
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   387
    = c * a + c * (a mod b)" by (simp add: algebra_simps)
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   388
  with mod_div_equality show ?thesis by simp 
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   389
qed
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   390
  
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   391
lemma mod_mult_mult2:
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   392
  "(a * c) mod (b * c) = (a mod b) * c"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   393
  using mod_mult_mult1 [of c a b] by (simp add: mult.commute)
30930
11010e5f18f0 tightended specification of class semiring_div
haftmann
parents: 30923
diff changeset
   394
47159
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   395
lemma mult_mod_left: "(a mod b) * c = (a * c) mod (b * c)"
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   396
  by (fact mod_mult_mult2 [symmetric])
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   397
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   398
lemma mult_mod_right: "c * (a mod b) = (c * a) mod (c * b)"
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   399
  by (fact mod_mult_mult1 [symmetric])
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   400
59009
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   401
lemma dvd_times_left_cancel_iff [simp]: -- \<open>FIXME generalize\<close>
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   402
  assumes "c \<noteq> 0"
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   403
  shows "c * a dvd c * b \<longleftrightarrow> a dvd b"
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   404
proof -
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   405
  have "(c * b) mod (c * a) = 0 \<longleftrightarrow> b mod a = 0" (is "?P \<longleftrightarrow> ?Q")
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   406
    using assms by (simp add: mod_mult_mult1)
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   407
  then show ?thesis by (simp add: mod_eq_0_iff_dvd)
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   408
qed
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   409
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   410
lemma dvd_times_right_cancel_iff [simp]: -- \<open>FIXME generalize\<close>
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   411
  assumes "c \<noteq> 0"
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   412
  shows "a * c dvd b * c \<longleftrightarrow> a dvd b"
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   413
  using assms dvd_times_left_cancel_iff [of c a b] by (simp add: ac_simps)
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 59000
diff changeset
   414
31662
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31661
diff changeset
   415
lemma dvd_mod: "k dvd m \<Longrightarrow> k dvd n \<Longrightarrow> k dvd (m mod n)"
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31661
diff changeset
   416
  unfolding dvd_def by (auto simp add: mod_mult_mult1)
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31661
diff changeset
   417
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31661
diff changeset
   418
lemma dvd_mod_iff: "k dvd n \<Longrightarrow> k dvd (m mod n) \<longleftrightarrow> k dvd m"
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31661
diff changeset
   419
by (blast intro: dvd_mod_imp_dvd dvd_mod)
57f7ef0dba8e generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents: 31661
diff changeset
   420
31009
41fd307cab30 dropped reference to class recpower and lemma duplicate
haftmann
parents: 30934
diff changeset
   421
lemma div_power:
31661
1e252b8b2334 move lemma div_power into semiring_div context; class ring_div inherits from idom
huffman
parents: 31009
diff changeset
   422
  "y dvd x \<Longrightarrow> (x div y) ^ n = x ^ n div y ^ n"
30476
0a41b0662264 added div lemmas
nipkow
parents: 30242
diff changeset
   423
apply (induct n)
0a41b0662264 added div lemmas
nipkow
parents: 30242
diff changeset
   424
 apply simp
0a41b0662264 added div lemmas
nipkow
parents: 30242
diff changeset
   425
apply(simp add: div_mult_div_if_dvd dvd_power_same)
0a41b0662264 added div lemmas
nipkow
parents: 30242
diff changeset
   426
done
0a41b0662264 added div lemmas
nipkow
parents: 30242
diff changeset
   427
35367
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   428
lemma dvd_div_eq_mult:
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   429
  assumes "a \<noteq> 0" and "a dvd b"  
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   430
  shows "b div a = c \<longleftrightarrow> b = c * a"
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   431
proof
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   432
  assume "b = c * a"
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   433
  then show "b div a = c" by (simp add: assms)
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   434
next
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   435
  assume "b div a = c"
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   436
  then have "b div a * a = c * a" by simp
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   437
  moreover from `a dvd b` have "b div a * a = b" by (simp add: dvd_div_mult_self)
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   438
  ultimately show "b = c * a" by simp
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   439
qed
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   440
   
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   441
lemma dvd_div_div_eq_mult:
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   442
  assumes "a \<noteq> 0" "c \<noteq> 0" and "a dvd b" "c dvd d"
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   443
  shows "b div a = d div c \<longleftrightarrow> b * c = a * d"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
   444
  using assms by (auto simp add: mult.commute [of _ a] dvd_div_mult_self dvd_div_eq_mult div_mult_swap intro: sym)
35367
45a193f0ed0c lemma div_mult_swap, dvd_div_eq_mult, dvd_div_div_eq_mult
haftmann
parents: 35216
diff changeset
   445
31661
1e252b8b2334 move lemma div_power into semiring_div context; class ring_div inherits from idom
huffman
parents: 31009
diff changeset
   446
end
1e252b8b2334 move lemma div_power into semiring_div context; class ring_div inherits from idom
huffman
parents: 31009
diff changeset
   447
59833
ab828c2c5d67 clarified no_zero_devisors: makes only sense in a semiring;
haftmann
parents: 59816
diff changeset
   448
class ring_div = comm_ring_1 + semiring_div
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   449
begin
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   450
59833
ab828c2c5d67 clarified no_zero_devisors: makes only sense in a semiring;
haftmann
parents: 59816
diff changeset
   451
subclass idom ..
36634
f9b43d197d16 a ring_div is a ring_1_no_zero_divisors
haftmann
parents: 35815
diff changeset
   452
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   453
text {* Negation respects modular equivalence. *}
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   454
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   455
lemma mod_minus_eq: "(- a) mod b = (- (a mod b)) mod b"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   456
proof -
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   457
  have "(- a) mod b = (- (a div b * b + a mod b)) mod b"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   458
    by (simp only: mod_div_equality)
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   459
  also have "\<dots> = (- (a mod b) + - (a div b) * b) mod b"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   460
    by (simp add: ac_simps)
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   461
  also have "\<dots> = (- (a mod b)) mod b"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   462
    by (rule mod_mult_self1)
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   463
  finally show ?thesis .
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   464
qed
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   465
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   466
lemma mod_minus_cong:
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   467
  assumes "a mod b = a' mod b"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   468
  shows "(- a) mod b = (- a') mod b"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   469
proof -
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   470
  have "(- (a mod b)) mod b = (- (a' mod b)) mod b"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   471
    unfolding assms ..
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   472
  thus ?thesis
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   473
    by (simp only: mod_minus_eq [symmetric])
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   474
qed
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   475
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   476
text {* Subtraction respects modular equivalence. *}
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   477
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   478
lemma mod_diff_left_eq:
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   479
  "(a - b) mod c = (a mod c - b) mod c"
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   480
  using mod_add_cong [of a c "a mod c" "- b" "- b"] by simp
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   481
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   482
lemma mod_diff_right_eq:
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   483
  "(a - b) mod c = (a - b mod c) mod c"
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   484
  using mod_add_cong [of a c a "- b" "- (b mod c)"] mod_minus_cong [of "b mod c" c b] by simp
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   485
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   486
lemma mod_diff_eq:
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   487
  "(a - b) mod c = (a mod c - b mod c) mod c"
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   488
  using mod_add_cong [of a c "a mod c" "- b" "- (b mod c)"] mod_minus_cong [of "b mod c" c b] by simp
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   489
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   490
lemma mod_diff_cong:
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   491
  assumes "a mod c = a' mod c"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   492
  assumes "b mod c = b' mod c"
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   493
  shows "(a - b) mod c = (a' - b') mod c"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   494
  using assms mod_add_cong [of a c a' "- b" "- b'"] mod_minus_cong [of b c "b'"] by simp
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   495
30180
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   496
lemma dvd_neg_div: "y dvd x \<Longrightarrow> -x div y = - (x div y)"
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   497
apply (case_tac "y = 0") apply simp
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   498
apply (auto simp add: dvd_def)
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   499
apply (subgoal_tac "-(y * k) = y * - k")
57492
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 55440
diff changeset
   500
 apply (simp only:)
30180
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   501
 apply (erule div_mult_self1_is_id)
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   502
apply simp
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   503
done
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   504
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   505
lemma dvd_div_neg: "y dvd x \<Longrightarrow> x div -y = - (x div y)"
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   506
apply (case_tac "y = 0") apply simp
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   507
apply (auto simp add: dvd_def)
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   508
apply (subgoal_tac "y * k = -y * -k")
57492
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 55440
diff changeset
   509
 apply (erule ssubst, rule div_mult_self1_is_id)
30180
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   510
 apply simp
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   511
apply simp
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   512
done
6d29a873141f added lemmas by Jeremy Avigad
nipkow
parents: 30079
diff changeset
   513
59473
b0ac740fc510 canonical name
nipkow
parents: 59380
diff changeset
   514
lemma div_diff[simp]:
59380
e7d237c2ce93 added simp lemma
nipkow
parents: 59058
diff changeset
   515
  "\<lbrakk> z dvd x; z dvd y\<rbrakk> \<Longrightarrow> (x - y) div z = x div z - y div z"
e7d237c2ce93 added simp lemma
nipkow
parents: 59058
diff changeset
   516
using div_add[where y = "- z" for z]
e7d237c2ce93 added simp lemma
nipkow
parents: 59058
diff changeset
   517
by (simp add: dvd_neg_div)
e7d237c2ce93 added simp lemma
nipkow
parents: 59058
diff changeset
   518
47159
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   519
lemma div_minus_minus [simp]: "(-a) div (-b) = a div b"
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   520
  using div_mult_mult1 [of "- 1" a b]
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   521
  unfolding neg_equal_0_iff_equal by simp
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   522
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   523
lemma mod_minus_minus [simp]: "(-a) mod (-b) = - (a mod b)"
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   524
  using mod_mult_mult1 [of "- 1" a b] by simp
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   525
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   526
lemma div_minus_right: "a div (-b) = (-a) div b"
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   527
  using div_minus_minus [of "-a" b] by simp
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   528
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   529
lemma mod_minus_right: "a mod (-b) = - ((-a) mod b)"
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   530
  using mod_minus_minus [of "-a" b] by simp
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
   531
47160
8ada79014cb2 generalize more div/mod lemmas
huffman
parents: 47159
diff changeset
   532
lemma div_minus1_right [simp]: "a div (-1) = -a"
8ada79014cb2 generalize more div/mod lemmas
huffman
parents: 47159
diff changeset
   533
  using div_minus_right [of a 1] by simp
8ada79014cb2 generalize more div/mod lemmas
huffman
parents: 47159
diff changeset
   534
8ada79014cb2 generalize more div/mod lemmas
huffman
parents: 47159
diff changeset
   535
lemma mod_minus1_right [simp]: "a mod (-1) = 0"
8ada79014cb2 generalize more div/mod lemmas
huffman
parents: 47159
diff changeset
   536
  using mod_minus_right [of a 1] by simp
8ada79014cb2 generalize more div/mod lemmas
huffman
parents: 47159
diff changeset
   537
54221
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   538
lemma minus_mod_self2 [simp]: 
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   539
  "(a - b) mod b = a mod b"
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   540
  by (simp add: mod_diff_right_eq)
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   541
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   542
lemma minus_mod_self1 [simp]: 
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   543
  "(b - a) mod b = - a mod b"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54227
diff changeset
   544
  using mod_add_self2 [of "- a" b] by simp
54221
56587960e444 more lemmas on division
haftmann
parents: 53374
diff changeset
   545
29405
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   546
end
98ab21b14f09 add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents: 29404
diff changeset
   547
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   548
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   549
subsubsection {* Parity and division *}
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   550
59833
ab828c2c5d67 clarified no_zero_devisors: makes only sense in a semiring;
haftmann
parents: 59816
diff changeset
   551
class semiring_div_parity = semiring_div + comm_semiring_1_diff_distrib + numeral + 
54226
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   552
  assumes parity: "a mod 2 = 0 \<or> a mod 2 = 1"
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   553
  assumes one_mod_two_eq_one [simp]: "1 mod 2 = 1"
58710
7216a10d69ba augmented and tuned facts on even/odd and division
haftmann
parents: 58646
diff changeset
   554
  assumes zero_not_eq_two: "0 \<noteq> 2"
54226
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   555
begin
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   556
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   557
lemma parity_cases [case_names even odd]:
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   558
  assumes "a mod 2 = 0 \<Longrightarrow> P"
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   559
  assumes "a mod 2 = 1 \<Longrightarrow> P"
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   560
  shows P
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   561
  using assms parity by blast
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   562
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   563
lemma one_div_two_eq_zero [simp]:
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   564
  "1 div 2 = 0"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   565
proof (cases "2 = 0")
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   566
  case True then show ?thesis by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   567
next
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   568
  case False
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   569
  from mod_div_equality have "1 div 2 * 2 + 1 mod 2 = 1" .
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   570
  with one_mod_two_eq_one have "1 div 2 * 2 + 1 = 1" by simp
58953
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   571
  then have "1 div 2 * 2 = 0" by (simp add: ac_simps add_left_imp_eq del: mult_eq_0_iff)
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   572
  then have "1 div 2 = 0 \<or> 2 = 0" by simp
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   573
  with False show ?thesis by auto
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   574
qed
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   575
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   576
lemma not_mod_2_eq_0_eq_1 [simp]:
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   577
  "a mod 2 \<noteq> 0 \<longleftrightarrow> a mod 2 = 1"
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   578
  by (cases a rule: parity_cases) simp_all
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   579
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   580
lemma not_mod_2_eq_1_eq_0 [simp]:
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   581
  "a mod 2 \<noteq> 1 \<longleftrightarrow> a mod 2 = 0"
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   582
  by (cases a rule: parity_cases) simp_all
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
   583
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   584
subclass semiring_parity
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   585
proof (unfold_locales, unfold dvd_eq_mod_eq_0 not_mod_2_eq_0_eq_1)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   586
  show "1 mod 2 = 1"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   587
    by (fact one_mod_two_eq_one)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   588
next
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   589
  fix a b
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   590
  assume "a mod 2 = 1"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   591
  moreover assume "b mod 2 = 1"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   592
  ultimately show "(a + b) mod 2 = 0"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   593
    using mod_add_eq [of a b 2] by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   594
next
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   595
  fix a b
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   596
  assume "(a * b) mod 2 = 0"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   597
  then have "(a mod 2) * (b mod 2) = 0"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   598
    by (cases "a mod 2 = 0") (simp_all add: mod_mult_eq [of a b 2])
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   599
  then show "a mod 2 = 0 \<or> b mod 2 = 0"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   600
    by (rule divisors_zero)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   601
next
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   602
  fix a
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   603
  assume "a mod 2 = 1"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   604
  then have "a = a div 2 * 2 + 1" using mod_div_equality [of a 2] by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   605
  then show "\<exists>b. a = b + 1" ..
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   606
qed
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   607
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   608
lemma even_iff_mod_2_eq_zero:
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   609
  "even a \<longleftrightarrow> a mod 2 = 0"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   610
  by (fact dvd_eq_mod_eq_0)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   611
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   612
lemma even_succ_div_two [simp]:
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   613
  "even a \<Longrightarrow> (a + 1) div 2 = a div 2"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   614
  by (cases "a = 0") (auto elim!: evenE dest: mult_not_zero)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   615
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   616
lemma odd_succ_div_two [simp]:
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   617
  "odd a \<Longrightarrow> (a + 1) div 2 = a div 2 + 1"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   618
  by (auto elim!: oddE simp add: zero_not_eq_two [symmetric] add.assoc)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   619
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   620
lemma even_two_times_div_two:
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   621
  "even a \<Longrightarrow> 2 * (a div 2) = a"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   622
  by (fact dvd_mult_div_cancel)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   623
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
   624
lemma odd_two_times_div_two_succ [simp]:
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   625
  "odd a \<Longrightarrow> 2 * (a div 2) + 1 = a"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   626
  using mod_div_equality2 [of 2 a] by (simp add: even_iff_mod_2_eq_zero)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
   627
54226
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   628
end
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   629
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
   630
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   631
subsection {* Generic numeral division with a pragmatic type class *}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   632
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   633
text {*
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   634
  The following type class contains everything necessary to formulate
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   635
  a division algorithm in ring structures with numerals, restricted
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   636
  to its positive segments.  This is its primary motiviation, and it
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   637
  could surely be formulated using a more fine-grained, more algebraic
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   638
  and less technical class hierarchy.
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   639
*}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   640
59833
ab828c2c5d67 clarified no_zero_devisors: makes only sense in a semiring;
haftmann
parents: 59816
diff changeset
   641
class semiring_numeral_div = semiring_div + comm_semiring_1_diff_distrib + linordered_semidom +
59816
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   642
  assumes le_add_diff_inverse2: "b \<le> a \<Longrightarrow> a - b + b = a"
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   643
  assumes div_less: "0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a div b = 0"
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   644
    and mod_less: " 0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a mod b = a"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   645
    and div_positive: "0 < b \<Longrightarrow> b \<le> a \<Longrightarrow> a div b > 0"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   646
    and mod_less_eq_dividend: "0 \<le> a \<Longrightarrow> a mod b \<le> a"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   647
    and pos_mod_bound: "0 < b \<Longrightarrow> a mod b < b"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   648
    and pos_mod_sign: "0 < b \<Longrightarrow> 0 \<le> a mod b"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   649
    and mod_mult2_eq: "0 \<le> c \<Longrightarrow> a mod (b * c) = b * (a div b mod c) + a mod b"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   650
    and div_mult2_eq: "0 \<le> c \<Longrightarrow> a div (b * c) = a div b div c"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   651
  assumes discrete: "a < b \<longleftrightarrow> a + 1 \<le> b"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   652
begin
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   653
59816
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   654
lemma mult_div_cancel:
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   655
  "b * (a div b) = a - a mod b"
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   656
proof -
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   657
  have "b * (a div b) + a mod b = a"
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   658
    using mod_div_equality [of a b] by (simp add: ac_simps)
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   659
  then have "b * (a div b) + a mod b - a mod b = a - a mod b"
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   660
    by simp
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   661
  then show ?thesis
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   662
    by simp
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   663
qed
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   664
54226
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   665
subclass semiring_div_parity
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   666
proof
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   667
  fix a
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   668
  show "a mod 2 = 0 \<or> a mod 2 = 1"
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   669
  proof (rule ccontr)
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   670
    assume "\<not> (a mod 2 = 0 \<or> a mod 2 = 1)"
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   671
    then have "a mod 2 \<noteq> 0" and "a mod 2 \<noteq> 1" by simp_all
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   672
    have "0 < 2" by simp
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   673
    with pos_mod_bound pos_mod_sign have "0 \<le> a mod 2" "a mod 2 < 2" by simp_all
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   674
    with `a mod 2 \<noteq> 0` have "0 < a mod 2" by simp
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   675
    with discrete have "1 \<le> a mod 2" by simp
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   676
    with `a mod 2 \<noteq> 1` have "1 < a mod 2" by simp
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   677
    with discrete have "2 \<le> a mod 2" by simp
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   678
    with `a mod 2 < 2` show False by simp
e3df2a4e02fc explicit type class for modelling even/odd parity
haftmann
parents: 54221
diff changeset
   679
  qed
58646
cd63a4b12a33 specialized specification: avoid trivial instances
haftmann
parents: 58511
diff changeset
   680
next
cd63a4b12a33 specialized specification: avoid trivial instances
haftmann
parents: 58511
diff changeset
   681
  show "1 mod 2 = 1"
cd63a4b12a33 specialized specification: avoid trivial instances
haftmann
parents: 58511
diff changeset
   682
    by (rule mod_less) simp_all
58710
7216a10d69ba augmented and tuned facts on even/odd and division
haftmann
parents: 58646
diff changeset
   683
next
7216a10d69ba augmented and tuned facts on even/odd and division
haftmann
parents: 58646
diff changeset
   684
  show "0 \<noteq> 2"
7216a10d69ba augmented and tuned facts on even/odd and division
haftmann
parents: 58646
diff changeset
   685
    by simp
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   686
qed
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   687
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   688
lemma divmod_digit_1:
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   689
  assumes "0 \<le> a" "0 < b" and "b \<le> a mod (2 * b)"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   690
  shows "2 * (a div (2 * b)) + 1 = a div b" (is "?P")
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   691
    and "a mod (2 * b) - b = a mod b" (is "?Q")
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   692
proof -
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   693
  from assms mod_less_eq_dividend [of a "2 * b"] have "b \<le> a"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   694
    by (auto intro: trans)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   695
  with `0 < b` have "0 < a div b" by (auto intro: div_positive)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   696
  then have [simp]: "1 \<le> a div b" by (simp add: discrete)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   697
  with `0 < b` have mod_less: "a mod b < b" by (simp add: pos_mod_bound)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   698
  def w \<equiv> "a div b mod 2" with parity have w_exhaust: "w = 0 \<or> w = 1" by auto
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   699
  have mod_w: "a mod (2 * b) = a mod b + b * w"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   700
    by (simp add: w_def mod_mult2_eq ac_simps)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   701
  from assms w_exhaust have "w = 1"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   702
    by (auto simp add: mod_w) (insert mod_less, auto)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   703
  with mod_w have mod: "a mod (2 * b) = a mod b + b" by simp
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   704
  have "2 * (a div (2 * b)) = a div b - w"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   705
    by (simp add: w_def div_mult2_eq mult_div_cancel ac_simps)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   706
  with `w = 1` have div: "2 * (a div (2 * b)) = a div b - 1" by simp
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   707
  then show ?P and ?Q
59816
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   708
    by (simp_all add: div mod add_implies_diff [symmetric] le_add_diff_inverse2)
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   709
qed
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   710
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   711
lemma divmod_digit_0:
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   712
  assumes "0 < b" and "a mod (2 * b) < b"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   713
  shows "2 * (a div (2 * b)) = a div b" (is "?P")
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   714
    and "a mod (2 * b) = a mod b" (is "?Q")
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   715
proof -
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   716
  def w \<equiv> "a div b mod 2" with parity have w_exhaust: "w = 0 \<or> w = 1" by auto
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   717
  have mod_w: "a mod (2 * b) = a mod b + b * w"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   718
    by (simp add: w_def mod_mult2_eq ac_simps)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   719
  moreover have "b \<le> a mod b + b"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   720
  proof -
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   721
    from `0 < b` pos_mod_sign have "0 \<le> a mod b" by blast
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   722
    then have "0 + b \<le> a mod b + b" by (rule add_right_mono)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   723
    then show ?thesis by simp
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   724
  qed
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   725
  moreover note assms w_exhaust
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   726
  ultimately have "w = 0" by auto
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   727
  with mod_w have mod: "a mod (2 * b) = a mod b" by simp
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   728
  have "2 * (a div (2 * b)) = a div b - w"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   729
    by (simp add: w_def div_mult2_eq mult_div_cancel ac_simps)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   730
  with `w = 0` have div: "2 * (a div (2 * b)) = a div b" by simp
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   731
  then show ?P and ?Q
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   732
    by (simp_all add: div mod)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   733
qed
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   734
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   735
definition divmod :: "num \<Rightarrow> num \<Rightarrow> 'a \<times> 'a"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   736
where
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   737
  "divmod m n = (numeral m div numeral n, numeral m mod numeral n)"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   738
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   739
lemma fst_divmod [simp]:
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   740
  "fst (divmod m n) = numeral m div numeral n"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   741
  by (simp add: divmod_def)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   742
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   743
lemma snd_divmod [simp]:
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   744
  "snd (divmod m n) = numeral m mod numeral n"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   745
  by (simp add: divmod_def)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   746
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   747
definition divmod_step :: "num \<Rightarrow> 'a \<times> 'a \<Rightarrow> 'a \<times> 'a"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   748
where
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   749
  "divmod_step l qr = (let (q, r) = qr
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   750
    in if r \<ge> numeral l then (2 * q + 1, r - numeral l)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   751
    else (2 * q, r))"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   752
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   753
text {*
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   754
  This is a formulation of one step (referring to one digit position)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   755
  in school-method division: compare the dividend at the current
53070
6a3410845bb2 spelling and typos
haftmann
parents: 53069
diff changeset
   756
  digit position with the remainder from previous division steps
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   757
  and evaluate accordingly.
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   758
*}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   759
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   760
lemma divmod_step_eq [code]:
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   761
  "divmod_step l (q, r) = (if numeral l \<le> r
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   762
    then (2 * q + 1, r - numeral l) else (2 * q, r))"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   763
  by (simp add: divmod_step_def)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   764
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   765
lemma divmod_step_simps [simp]:
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   766
  "r < numeral l \<Longrightarrow> divmod_step l (q, r) = (2 * q, r)"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   767
  "numeral l \<le> r \<Longrightarrow> divmod_step l (q, r) = (2 * q + 1, r - numeral l)"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   768
  by (auto simp add: divmod_step_eq not_le)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   769
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   770
text {*
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   771
  This is a formulation of school-method division.
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   772
  If the divisor is smaller than the dividend, terminate.
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   773
  If not, shift the dividend to the right until termination
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   774
  occurs and then reiterate single division steps in the
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   775
  opposite direction.
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   776
*}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   777
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   778
lemma divmod_divmod_step [code]:
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   779
  "divmod m n = (if m < n then (0, numeral m)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   780
    else divmod_step n (divmod m (Num.Bit0 n)))"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   781
proof (cases "m < n")
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   782
  case True then have "numeral m < numeral n" by simp
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   783
  then show ?thesis
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   784
    by (simp add: prod_eq_iff div_less mod_less)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   785
next
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   786
  case False
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   787
  have "divmod m n =
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   788
    divmod_step n (numeral m div (2 * numeral n),
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   789
      numeral m mod (2 * numeral n))"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   790
  proof (cases "numeral n \<le> numeral m mod (2 * numeral n)")
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   791
    case True
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   792
    with divmod_step_simps
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   793
      have "divmod_step n (numeral m div (2 * numeral n), numeral m mod (2 * numeral n)) =
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   794
        (2 * (numeral m div (2 * numeral n)) + 1, numeral m mod (2 * numeral n) - numeral n)"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   795
        by blast
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   796
    moreover from True divmod_digit_1 [of "numeral m" "numeral n"]
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   797
      have "2 * (numeral m div (2 * numeral n)) + 1 = numeral m div numeral n"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   798
      and "numeral m mod (2 * numeral n) - numeral n = numeral m mod numeral n"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   799
      by simp_all
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   800
    ultimately show ?thesis by (simp only: divmod_def)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   801
  next
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   802
    case False then have *: "numeral m mod (2 * numeral n) < numeral n"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   803
      by (simp add: not_le)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   804
    with divmod_step_simps
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   805
      have "divmod_step n (numeral m div (2 * numeral n), numeral m mod (2 * numeral n)) =
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   806
        (2 * (numeral m div (2 * numeral n)), numeral m mod (2 * numeral n))"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   807
        by blast
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   808
    moreover from * divmod_digit_0 [of "numeral n" "numeral m"]
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   809
      have "2 * (numeral m div (2 * numeral n)) = numeral m div numeral n"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   810
      and "numeral m mod (2 * numeral n) = numeral m mod numeral n"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   811
      by (simp_all only: zero_less_numeral)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   812
    ultimately show ?thesis by (simp only: divmod_def)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   813
  qed
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   814
  then have "divmod m n =
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   815
    divmod_step n (numeral m div numeral (Num.Bit0 n),
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   816
      numeral m mod numeral (Num.Bit0 n))"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   817
    by (simp only: numeral.simps distrib mult_1) 
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   818
  then have "divmod m n = divmod_step n (divmod m (Num.Bit0 n))"
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   819
    by (simp add: divmod_def)
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   820
  with False show ?thesis by simp
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   821
qed
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   822
58953
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   823
lemma divmod_eq [simp]:
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   824
  "m < n \<Longrightarrow> divmod m n = (0, numeral m)"
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   825
  "n \<le> m \<Longrightarrow> divmod m n = divmod_step n (divmod m (Num.Bit0 n))"
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   826
  by (auto simp add: divmod_divmod_step [of m n])
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   827
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   828
lemma divmod_cancel [simp, code]:
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   829
  "divmod (Num.Bit0 m) (Num.Bit0 n) = (case divmod m n of (q, r) \<Rightarrow> (q, 2 * r))" (is ?P)
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   830
  "divmod (Num.Bit1 m) (Num.Bit0 n) = (case divmod m n of (q, r) \<Rightarrow> (q, 2 * r + 1))" (is ?Q)
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   831
proof -
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   832
  have *: "\<And>q. numeral (Num.Bit0 q) = 2 * numeral q"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   833
    "\<And>q. numeral (Num.Bit1 q) = 2 * numeral q + 1"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   834
    by (simp_all only: numeral_mult numeral.simps distrib) simp_all
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   835
  have "1 div 2 = 0" "1 mod 2 = 1" by (auto intro: div_less mod_less)
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   836
  then show ?P and ?Q
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   837
    by (simp_all add: prod_eq_iff split_def * [of m] * [of n] mod_mult_mult1
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   838
      div_mult2_eq [of _ _ 2] mod_mult2_eq [of _ _ 2] add.commute del: numeral_times_numeral)
58953
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   839
qed
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   840
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   841
text {* Special case: divisibility *}
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   842
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   843
definition divides_aux :: "'a \<times> 'a \<Rightarrow> bool"
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   844
where
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   845
  "divides_aux qr \<longleftrightarrow> snd qr = 0"
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   846
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   847
lemma divides_aux_eq [simp]:
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   848
  "divides_aux (q, r) \<longleftrightarrow> r = 0"
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   849
  by (simp add: divides_aux_def)
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   850
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   851
lemma dvd_numeral_simp [simp]:
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   852
  "numeral m dvd numeral n \<longleftrightarrow> divides_aux (divmod n m)"
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
   853
  by (simp add: divmod_def mod_eq_0_iff_dvd)
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
   854
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   855
end
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   856
59816
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 59807
diff changeset
   857
hide_fact (open) le_add_diff_inverse2
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   858
  -- {* restore simple accesses for more general variants of theorems *}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   859
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
   860
  
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   861
subsection {* Division on @{typ nat} *}
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   862
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   863
text {*
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   864
  We define @{const div} and @{const mod} on @{typ nat} by means
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   865
  of a characteristic relation with two input arguments
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   866
  @{term "m\<Colon>nat"}, @{term "n\<Colon>nat"} and two output arguments
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   867
  @{term "q\<Colon>nat"}(uotient) and @{term "r\<Colon>nat"}(emainder).
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   868
*}
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   869
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   870
definition divmod_nat_rel :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat \<Rightarrow> bool" where
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   871
  "divmod_nat_rel m n qr \<longleftrightarrow>
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   872
    m = fst qr * n + snd qr \<and>
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   873
      (if n = 0 then fst qr = 0 else if n > 0 then 0 \<le> snd qr \<and> snd qr < n else n < snd qr \<and> snd qr \<le> 0)"
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   874
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   875
text {* @{const divmod_nat_rel} is total: *}
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   876
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   877
lemma divmod_nat_rel_ex:
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   878
  obtains q r where "divmod_nat_rel m n (q, r)"
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   879
proof (cases "n = 0")
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   880
  case True  with that show thesis
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   881
    by (auto simp add: divmod_nat_rel_def)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   882
next
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   883
  case False
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   884
  have "\<exists>q r. m = q * n + r \<and> r < n"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   885
  proof (induct m)
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   886
    case 0 with `n \<noteq> 0`
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   887
    have "(0\<Colon>nat) = 0 * n + 0 \<and> 0 < n" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   888
    then show ?case by blast
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   889
  next
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   890
    case (Suc m) then obtain q' r'
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   891
      where m: "m = q' * n + r'" and n: "r' < n" by auto
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   892
    then show ?case proof (cases "Suc r' < n")
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   893
      case True
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   894
      from m n have "Suc m = q' * n + Suc r'" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   895
      with True show ?thesis by blast
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   896
    next
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   897
      case False then have "n \<le> Suc r'" by auto
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   898
      moreover from n have "Suc r' \<le> n" by auto
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   899
      ultimately have "n = Suc r'" by auto
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   900
      with m have "Suc m = Suc q' * n + 0" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   901
      with `n \<noteq> 0` show ?thesis by blast
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   902
    qed
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   903
  qed
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   904
  with that show thesis
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   905
    using `n \<noteq> 0` by (auto simp add: divmod_nat_rel_def)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   906
qed
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   907
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   908
text {* @{const divmod_nat_rel} is injective: *}
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   909
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   910
lemma divmod_nat_rel_unique:
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   911
  assumes "divmod_nat_rel m n qr"
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   912
    and "divmod_nat_rel m n qr'"
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   913
  shows "qr = qr'"
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   914
proof (cases "n = 0")
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   915
  case True with assms show ?thesis
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   916
    by (cases qr, cases qr')
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   917
      (simp add: divmod_nat_rel_def)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   918
next
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   919
  case False
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   920
  have aux: "\<And>q r q' r'. q' * n + r' = q * n + r \<Longrightarrow> r < n \<Longrightarrow> q' \<le> (q\<Colon>nat)"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   921
  apply (rule leI)
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   922
  apply (subst less_iff_Suc_add)
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   923
  apply (auto simp add: add_mult_distrib)
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   924
  done
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53199
diff changeset
   925
  from `n \<noteq> 0` assms have *: "fst qr = fst qr'"
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   926
    by (auto simp add: divmod_nat_rel_def intro: order_antisym dest: aux sym)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53199
diff changeset
   927
  with assms have "snd qr = snd qr'"
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   928
    by (simp add: divmod_nat_rel_def)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53199
diff changeset
   929
  with * show ?thesis by (cases qr, cases qr') simp
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   930
qed
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   931
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   932
text {*
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   933
  We instantiate divisibility on the natural numbers by
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   934
  means of @{const divmod_nat_rel}:
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   935
*}
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
   936
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   937
definition divmod_nat :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat" where
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36634
diff changeset
   938
  "divmod_nat m n = (THE qr. divmod_nat_rel m n qr)"
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   939
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   940
lemma divmod_nat_rel_divmod_nat:
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   941
  "divmod_nat_rel m n (divmod_nat m n)"
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   942
proof -
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   943
  from divmod_nat_rel_ex
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   944
    obtain qr where rel: "divmod_nat_rel m n qr" .
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   945
  then show ?thesis
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   946
  by (auto simp add: divmod_nat_def intro: theI elim: divmod_nat_rel_unique)
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   947
qed
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
   948
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
   949
lemma divmod_nat_unique:
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   950
  assumes "divmod_nat_rel m n qr" 
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   951
  shows "divmod_nat m n = qr"
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   952
  using assms by (auto intro: divmod_nat_rel_unique divmod_nat_rel_divmod_nat)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   953
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   954
instantiation nat :: semiring_div
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   955
begin
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   956
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   957
definition div_nat where
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   958
  "m div n = fst (divmod_nat m n)"
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   959
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   960
lemma fst_divmod_nat [simp]:
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   961
  "fst (divmod_nat m n) = m div n"
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   962
  by (simp add: div_nat_def)
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   963
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   964
definition mod_nat where
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   965
  "m mod n = snd (divmod_nat m n)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25162
diff changeset
   966
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   967
lemma snd_divmod_nat [simp]:
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   968
  "snd (divmod_nat m n) = m mod n"
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   969
  by (simp add: mod_nat_def)
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   970
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   971
lemma divmod_nat_div_mod:
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   972
  "divmod_nat m n = (m div n, m mod n)"
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   973
  by (simp add: prod_eq_iff)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   974
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
   975
lemma div_nat_unique:
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   976
  assumes "divmod_nat_rel m n (q, r)" 
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   977
  shows "m div n = q"
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
   978
  using assms by (auto dest!: divmod_nat_unique simp add: prod_eq_iff)
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
   979
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
   980
lemma mod_nat_unique:
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   981
  assumes "divmod_nat_rel m n (q, r)" 
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   982
  shows "m mod n = r"
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
   983
  using assms by (auto dest!: divmod_nat_unique simp add: prod_eq_iff)
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25162
diff changeset
   984
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   985
lemma divmod_nat_rel: "divmod_nat_rel m n (m div n, m mod n)"
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
   986
  using divmod_nat_rel_divmod_nat by (simp add: divmod_nat_div_mod)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
   987
47136
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
   988
lemma divmod_nat_zero: "divmod_nat m 0 = (0, m)"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
   989
  by (simp add: divmod_nat_unique divmod_nat_rel_def)
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
   990
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
   991
lemma divmod_nat_zero_left: "divmod_nat 0 n = (0, 0)"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
   992
  by (simp add: divmod_nat_unique divmod_nat_rel_def)
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
   993
47137
7f5f0531cae6 shorten a proof
huffman
parents: 47136
diff changeset
   994
lemma divmod_nat_base: "m < n \<Longrightarrow> divmod_nat m n = (0, m)"
7f5f0531cae6 shorten a proof
huffman
parents: 47136
diff changeset
   995
  by (simp add: divmod_nat_unique divmod_nat_rel_def)
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
   996
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   997
lemma divmod_nat_step:
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
   998
  assumes "0 < n" and "n \<le> m"
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
   999
  shows "divmod_nat m n = (Suc ((m - n) div n), (m - n) mod n)"
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
  1000
proof (rule divmod_nat_unique)
47134
28c1db43d4d0 simplify some proofs
huffman
parents: 47108
diff changeset
  1001
  have "divmod_nat_rel (m - n) n ((m - n) div n, (m - n) mod n)"
28c1db43d4d0 simplify some proofs
huffman
parents: 47108
diff changeset
  1002
    by (rule divmod_nat_rel)
28c1db43d4d0 simplify some proofs
huffman
parents: 47108
diff changeset
  1003
  thus "divmod_nat_rel m n (Suc ((m - n) div n), (m - n) mod n)"
28c1db43d4d0 simplify some proofs
huffman
parents: 47108
diff changeset
  1004
    unfolding divmod_nat_rel_def using assms by auto
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1005
qed
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1006
26300
03def556e26e removed duplicate lemmas;
wenzelm
parents: 26100
diff changeset
  1007
text {* The ''recursion'' equations for @{const div} and @{const mod} *}
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1008
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1009
lemma div_less [simp]:
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1010
  fixes m n :: nat
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1011
  assumes "m < n"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1012
  shows "m div n = 0"
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1013
  using assms divmod_nat_base by (simp add: prod_eq_iff)
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1014
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1015
lemma le_div_geq:
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1016
  fixes m n :: nat
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1017
  assumes "0 < n" and "n \<le> m"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1018
  shows "m div n = Suc ((m - n) div n)"
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1019
  using assms divmod_nat_step by (simp add: prod_eq_iff)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1020
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1021
lemma mod_less [simp]:
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1022
  fixes m n :: nat
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1023
  assumes "m < n"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1024
  shows "m mod n = m"
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1025
  using assms divmod_nat_base by (simp add: prod_eq_iff)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1026
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1027
lemma le_mod_geq:
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1028
  fixes m n :: nat
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1029
  assumes "n \<le> m"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1030
  shows "m mod n = (m - n) mod n"
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1031
  using assms divmod_nat_step by (cases "n = 0") (simp_all add: prod_eq_iff)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1032
47136
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1033
instance proof
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1034
  fix m n :: nat
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1035
  show "m div n * n + m mod n = m"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1036
    using divmod_nat_rel [of m n] by (simp add: divmod_nat_rel_def)
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1037
next
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1038
  fix m n q :: nat
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1039
  assume "n \<noteq> 0"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1040
  then show "(q + m * n) div n = m + q div n"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1041
    by (induct m) (simp_all add: le_div_geq)
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1042
next
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1043
  fix m n q :: nat
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1044
  assume "m \<noteq> 0"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1045
  hence "\<And>a b. divmod_nat_rel n q (a, b) \<Longrightarrow> divmod_nat_rel (m * n) (m * q) (a, m * b)"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1046
    unfolding divmod_nat_rel_def
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1047
    by (auto split: split_if_asm, simp_all add: algebra_simps)
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1048
  moreover from divmod_nat_rel have "divmod_nat_rel n q (n div q, n mod q)" .
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1049
  ultimately have "divmod_nat_rel (m * n) (m * q) (n div q, m * (n mod q))" .
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1050
  thus "(m * n) div (m * q) = n div q" by (rule div_nat_unique)
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1051
next
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1052
  fix n :: nat show "n div 0 = 0"
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1053
    by (simp add: div_nat_def divmod_nat_zero)
47136
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1054
next
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1055
  fix n :: nat show "0 div n = 0"
5b6c5641498a simplify some proofs
huffman
parents: 47135
diff changeset
  1056
    by (simp add: div_nat_def divmod_nat_zero_left)
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1057
qed
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1058
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1059
end
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1060
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1061
lemma divmod_nat_if [code]: "divmod_nat m n = (if n = 0 \<or> m < n then (0, m) else
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1062
  let (q, r) = divmod_nat (m - n) n in (Suc q, r))"
55414
eab03e9cee8a renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents: 55172
diff changeset
  1063
  by (simp add: prod_eq_iff case_prod_beta not_less le_div_geq le_mod_geq)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1064
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1065
text {* Simproc for cancelling @{const div} and @{const mod} *}
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1066
51299
30b014246e21 proper place for cancel_div_mod.ML (see also ee729dbd1b7f and ec7f10155389);
wenzelm
parents: 51173
diff changeset
  1067
ML_file "~~/src/Provers/Arith/cancel_div_mod.ML"
30b014246e21 proper place for cancel_div_mod.ML (see also ee729dbd1b7f and ec7f10155389);
wenzelm
parents: 51173
diff changeset
  1068
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
  1069
ML {*
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 41792
diff changeset
  1070
structure Cancel_Div_Mod_Nat = Cancel_Div_Mod
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1071
(
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
  1072
  val div_name = @{const_name div};
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
  1073
  val mod_name = @{const_name mod};
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
  1074
  val mk_binop = HOLogic.mk_binop;
48561
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1075
  val mk_plus = HOLogic.mk_binop @{const_name Groups.plus};
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1076
  val dest_plus = HOLogic.dest_bin @{const_name Groups.plus} HOLogic.natT;
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1077
  fun mk_sum [] = HOLogic.zero
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1078
    | mk_sum [t] = t
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1079
    | mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1080
  fun dest_sum tm =
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1081
    if HOLogic.is_zero tm then []
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1082
    else
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1083
      (case try HOLogic.dest_Suc tm of
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1084
        SOME t => HOLogic.Suc_zero :: dest_sum t
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1085
      | NONE =>
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1086
          (case try dest_plus tm of
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1087
            SOME (t, u) => dest_sum t @ dest_sum u
12aa0cb2b447 move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
huffman
parents: 47268
diff changeset
  1088
          | NONE => [tm]));
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1089
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
  1090
  val div_mod_eqs = map mk_meta_eq [@{thm div_mod_equality}, @{thm div_mod_equality2}];
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1091
30934
ed5377c2b0a3 tuned setups of CancelDivMod
haftmann
parents: 30930
diff changeset
  1092
  val prove_eq_sums = Arith_Data.prove_conv2 all_tac (Arith_Data.simp_all_tac
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1093
    (@{thm add_0_left} :: @{thm add_0_right} :: @{thms ac_simps}))
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1094
)
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1095
*}
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1096
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 41792
diff changeset
  1097
simproc_setup cancel_div_mod_nat ("(m::nat) + n") = {* K Cancel_Div_Mod_Nat.proc *}
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 41792
diff changeset
  1098
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1099
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1100
subsubsection {* Quotient *}
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1101
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1102
lemma div_geq: "0 < n \<Longrightarrow>  \<not> m < n \<Longrightarrow> m div n = Suc ((m - n) div n)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1103
by (simp add: le_div_geq linorder_not_less)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1104
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1105
lemma div_if: "0 < n \<Longrightarrow> m div n = (if m < n then 0 else Suc ((m - n) div n))"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1106
by (simp add: div_geq)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1107
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1108
lemma div_mult_self_is_m [simp]: "0<n ==> (m*n) div n = (m::nat)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1109
by simp
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1110
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1111
lemma div_mult_self1_is_m [simp]: "0<n ==> (n*m) div n = (m::nat)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1112
by simp
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1113
53066
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1114
lemma div_positive:
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1115
  fixes m n :: nat
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1116
  assumes "n > 0"
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1117
  assumes "m \<ge> n"
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1118
  shows "m div n > 0"
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1119
proof -
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1120
  from `m \<ge> n` obtain q where "m = n + q"
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1121
    by (auto simp add: le_iff_add)
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1122
  with `n > 0` show ?thesis by simp
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1123
qed
1f61a923c2d6 added lemma
haftmann
parents: 52435
diff changeset
  1124
59000
6eb0725503fc import general theorems from AFP/Markov_Models
hoelzl
parents: 58953
diff changeset
  1125
lemma div_eq_0_iff: "(a div b::nat) = 0 \<longleftrightarrow> a < b \<or> b = 0"
6eb0725503fc import general theorems from AFP/Markov_Models
hoelzl
parents: 58953
diff changeset
  1126
  by (metis div_less div_positive div_by_0 gr0I less_numeral_extra(3) not_less)
25942
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1127
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1128
subsubsection {* Remainder *}
a52309ac4a4d added class semiring_div
haftmann
parents: 25571
diff changeset
  1129
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1130
lemma mod_less_divisor [simp]:
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1131
  fixes m n :: nat
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1132
  assumes "n > 0"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1133
  shows "m mod n < (n::nat)"
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1134
  using assms divmod_nat_rel [of m n] unfolding divmod_nat_rel_def by auto
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1135
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 50422
diff changeset
  1136
lemma mod_Suc_le_divisor [simp]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 50422
diff changeset
  1137
  "m mod Suc n \<le> n"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 50422
diff changeset
  1138
  using mod_less_divisor [of "Suc n" m] by arith
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 50422
diff changeset
  1139
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1140
lemma mod_less_eq_dividend [simp]:
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1141
  fixes m n :: nat
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1142
  shows "m mod n \<le> m"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1143
proof (rule add_leD2)
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1144
  from mod_div_equality have "m div n * n + m mod n = m" .
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1145
  then show "m div n * n + m mod n \<le> m" by auto
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1146
qed
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1147
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1148
lemma mod_geq: "\<not> m < (n\<Colon>nat) \<Longrightarrow> m mod n = (m - n) mod n"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1149
by (simp add: le_mod_geq linorder_not_less)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1150
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1151
lemma mod_if: "m mod (n\<Colon>nat) = (if m < n then m else (m - n) mod n)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1152
by (simp add: le_mod_geq)
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1153
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1154
lemma mod_1 [simp]: "m mod Suc 0 = 0"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1155
by (induct m) (simp_all add: mod_geq)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1156
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1157
(* a simple rearrangement of mod_div_equality: *)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1158
lemma mult_div_cancel: "(n::nat) * (m div n) = m - (m mod n)"
47138
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1159
  using mod_div_equality2 [of n m] by arith
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1160
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15251
diff changeset
  1161
lemma mod_le_divisor[simp]: "0 < n \<Longrightarrow> m mod n \<le> (n::nat)"
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1162
  apply (drule mod_less_divisor [where m = m])
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1163
  apply simp
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1164
  done
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1165
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1166
subsubsection {* Quotient and Remainder *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1167
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1168
lemma divmod_nat_rel_mult1_eq:
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  1169
  "divmod_nat_rel b c (q, r)
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1170
   \<Longrightarrow> divmod_nat_rel (a * b) c (a * q + a * r div c, a * r mod c)"
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1171
by (auto simp add: split_ifs divmod_nat_rel_def algebra_simps)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1172
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
  1173
lemma div_mult1_eq:
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
  1174
  "(a * b) div c = a * (b div c) + a * (b mod c) div (c::nat)"
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
  1175
by (blast intro: divmod_nat_rel_mult1_eq [THEN div_nat_unique] divmod_nat_rel)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1176
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1177
lemma divmod_nat_rel_add1_eq:
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  1178
  "divmod_nat_rel a c (aq, ar) \<Longrightarrow> divmod_nat_rel b c (bq, br)
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1179
   \<Longrightarrow> divmod_nat_rel (a + b) c (aq + bq + (ar + br) div c, (ar + br) mod c)"
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1180
by (auto simp add: split_ifs divmod_nat_rel_def algebra_simps)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1181
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1182
(*NOT suitable for rewriting: the RHS has an instance of the LHS*)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1183
lemma div_add1_eq:
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1184
  "(a+b) div (c::nat) = a div c + b div c + ((a mod c + b mod c) div c)"
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
  1185
by (blast intro: divmod_nat_rel_add1_eq [THEN div_nat_unique] divmod_nat_rel)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1186
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1187
lemma mod_lemma: "[| (0::nat) < c; r < b |] ==> b * (q mod c) + r < b * c"
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1188
  apply (cut_tac m = q and n = c in mod_less_divisor)
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1189
  apply (drule_tac [2] m = "q mod c" in less_imp_Suc_add, auto)
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59556
diff changeset
  1190
  apply (erule_tac P = "%x. lhs < rhs x" for lhs rhs in ssubst)
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1191
  apply (simp add: add_mult_distrib2)
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1192
  done
10559
d3fd54fc659b many new div and mod properties (borrowed from Integ/IntDiv)
paulson
parents: 10214
diff changeset
  1193
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1194
lemma divmod_nat_rel_mult2_eq:
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  1195
  "divmod_nat_rel a b (q, r)
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1196
   \<Longrightarrow> divmod_nat_rel a (b * c) (q div c, b *(q mod c) + r)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1197
by (auto simp add: mult.commute mult.left_commute divmod_nat_rel_def add_mult_distrib2 [symmetric] mod_lemma)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1198
55085
0e8e4dc55866 moved 'fundef_cong' attribute (and other basic 'fun' stuff) up the dependency chain
blanchet
parents: 54489
diff changeset
  1199
lemma div_mult2_eq: "a div (b * c) = (a div b) div (c::nat)"
47135
fb67b596067f rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
huffman
parents: 47134
diff changeset
  1200
by (force simp add: divmod_nat_rel [THEN divmod_nat_rel_mult2_eq, THEN div_nat_unique])
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1201
55085
0e8e4dc55866 moved 'fundef_cong' attribute (and other basic 'fun' stuff) up the dependency chain
blanchet
parents: 54489
diff changeset
  1202
lemma mod_mult2_eq: "a mod (b * c) = b * (a div b mod c) + a mod (b::nat)"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1203
by (auto simp add: mult.commute divmod_nat_rel [THEN divmod_nat_rel_mult2_eq, THEN mod_nat_unique])
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1204
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1205
instance nat :: semiring_numeral_div
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1206
  by intro_classes (auto intro: div_positive simp add: mult_div_cancel mod_mult2_eq div_mult2_eq)
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1207
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1208
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1209
subsubsection {* Further Facts about Quotient and Remainder *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1210
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1211
lemma div_1 [simp]:
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1212
  "m div Suc 0 = m"
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1213
  using div_by_1 [of m] by simp
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1214
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1215
(* Monotonicity of div in first argument *)
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
  1216
lemma div_le_mono [rule_format (no_asm)]:
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1217
    "\<forall>m::nat. m \<le> n --> (m div k) \<le> (n div k)"
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1218
apply (case_tac "k=0", simp)
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
  1219
apply (induct "n" rule: nat_less_induct, clarify)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1220
apply (case_tac "n<k")
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1221
(* 1  case n<k *)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1222
apply simp
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1223
(* 2  case n >= k *)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1224
apply (case_tac "m<k")
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1225
(* 2.1  case m<k *)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1226
apply simp
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1227
(* 2.2  case m>=k *)
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15251
diff changeset
  1228
apply (simp add: div_geq diff_le_mono)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1229
done
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1230
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1231
(* Antimonotonicity of div in second argument *)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1232
lemma div_le_mono2: "!!m::nat. [| 0<m; m\<le>n |] ==> (k div n) \<le> (k div m)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1233
apply (subgoal_tac "0<n")
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1234
 prefer 2 apply simp
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
  1235
apply (induct_tac k rule: nat_less_induct)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1236
apply (rename_tac "k")
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1237
apply (case_tac "k<n", simp)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1238
apply (subgoal_tac "~ (k<m) ")
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1239
 prefer 2 apply simp
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1240
apply (simp add: div_geq)
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
  1241
apply (subgoal_tac "(k-n) div n \<le> (k-m) div n")
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1242
 prefer 2
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1243
 apply (blast intro: div_le_mono diff_le_mono2)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1244
apply (rule le_trans, simp)
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15251
diff changeset
  1245
apply (simp)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1246
done
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1247
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1248
lemma div_le_dividend [simp]: "m div n \<le> (m::nat)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1249
apply (case_tac "n=0", simp)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1250
apply (subgoal_tac "m div n \<le> m div 1", simp)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1251
apply (rule div_le_mono2)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1252
apply (simp_all (no_asm_simp))
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1253
done
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1254
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1255
(* Similar for "less than" *)
47138
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1256
lemma div_less_dividend [simp]:
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1257
  "\<lbrakk>(1::nat) < n; 0 < m\<rbrakk> \<Longrightarrow> m div n < m"
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1258
apply (induct m rule: nat_less_induct)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1259
apply (rename_tac "m")
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1260
apply (case_tac "m<n", simp)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1261
apply (subgoal_tac "0<n")
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1262
 prefer 2 apply simp
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1263
apply (simp add: div_geq)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1264
apply (case_tac "n<m")
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
  1265
 apply (subgoal_tac "(m-n) div n < (m-n) ")
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1266
  apply (rule impI less_trans_Suc)+
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1267
apply assumption
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15251
diff changeset
  1268
  apply (simp_all)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1269
done
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1270
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1271
text{*A fact for the mutilated chess board*}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1272
lemma mod_Suc: "Suc(m) mod n = (if Suc(m mod n) = n then 0 else Suc(m mod n))"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1273
apply (case_tac "n=0", simp)
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
  1274
apply (induct "m" rule: nat_less_induct)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1275
apply (case_tac "Suc (na) <n")
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1276
(* case Suc(na) < n *)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1277
apply (frule lessI [THEN less_trans], simp add: less_not_refl3)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1278
(* case n \<le> Suc(na) *)
16796
140f1e0ea846 generlization of some "nat" theorems
paulson
parents: 16733
diff changeset
  1279
apply (simp add: linorder_not_less le_Suc_eq mod_geq)
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15251
diff changeset
  1280
apply (auto simp add: Suc_diff_le le_mod_geq)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1281
done
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1282
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1283
lemma mod_eq_0_iff: "(m mod d = 0) = (\<exists>q::nat. m = d*q)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29509
diff changeset
  1284
by (auto simp add: dvd_eq_mod_eq_0 [symmetric] dvd_def)
17084
fb0a80aef0be classical rules must have names for ATP integration
paulson
parents: 16796
diff changeset
  1285
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1286
lemmas mod_eq_0D [dest!] = mod_eq_0_iff [THEN iffD1]
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1287
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1288
(*Loses information, namely we also have r<d provided d is nonzero*)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1289
lemma mod_eqD:
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1290
  fixes m d r q :: nat
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1291
  assumes "m mod d = r"
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1292
  shows "\<exists>q. m = r + q * d"
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1293
proof -
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1294
  from mod_div_equality obtain q where "q * d + m mod d = m" by blast
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1295
  with assms have "m = r + q * d" by simp
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1296
  then show ?thesis ..
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1297
qed
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1298
13152
2a54f99b44b3 Divides.ML -> Divides_lemmas.ML
nipkow
parents: 12338
diff changeset
  1299
lemma split_div:
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1300
 "P(n div k :: nat) =
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1301
 ((k = 0 \<longrightarrow> P 0) \<and> (k \<noteq> 0 \<longrightarrow> (!i. !j<k. n = k*i + j \<longrightarrow> P i)))"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1302
 (is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))")
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1303
proof
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1304
  assume P: ?P
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1305
  show ?Q
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1306
  proof (cases)
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1307
    assume "k = 0"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
  1308
    with P show ?Q by simp
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1309
  next
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1310
    assume not0: "k \<noteq> 0"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1311
    thus ?Q
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1312
    proof (simp, intro allI impI)
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1313
      fix i j
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1314
      assume n: "n = k*i + j" and j: "j < k"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1315
      show "P i"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1316
      proof (cases)
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1317
        assume "i = 0"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1318
        with n j P show "P i" by simp
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1319
      next
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1320
        assume "i \<noteq> 0"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1321
        with not0 n j P show "P i" by(simp add:ac_simps)
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1322
      qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1323
    qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1324
  qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1325
next
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1326
  assume Q: ?Q
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1327
  show ?P
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1328
  proof (cases)
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1329
    assume "k = 0"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
  1330
    with Q show ?P by simp
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1331
  next
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1332
    assume not0: "k \<noteq> 0"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1333
    with Q have R: ?R by simp
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1334
    from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"]
13517
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13189
diff changeset
  1335
    show ?P by simp
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1336
  qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1337
qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1338
13882
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1339
lemma split_div_lemma:
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1340
  assumes "0 < n"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1341
  shows "n * q \<le> m \<and> m < n * Suc q \<longleftrightarrow> q = ((m\<Colon>nat) div n)" (is "?lhs \<longleftrightarrow> ?rhs")
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1342
proof
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1343
  assume ?rhs
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1344
  with mult_div_cancel have nq: "n * q = m - (m mod n)" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1345
  then have A: "n * q \<le> m" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1346
  have "n - (m mod n) > 0" using mod_less_divisor assms by auto
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1347
  then have "m < m + (n - (m mod n))" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1348
  then have "m < n + (m - (m mod n))" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1349
  with nq have "m < n + n * q" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1350
  then have B: "m < n * Suc q" by simp
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1351
  from A B show ?lhs ..
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1352
next
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1353
  assume P: ?lhs
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1354
  then have "divmod_nat_rel m n (q, m - n * q)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1355
    unfolding divmod_nat_rel_def by (auto simp add: ac_simps)
33340
a165b97f3658 moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 33318
diff changeset
  1356
  with divmod_nat_rel_unique divmod_nat_rel [of m n]
30923
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
  1357
  have "(q, m - n * q) = (m div n, m mod n)" by auto
2697a1d1d34a more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents: 30840
diff changeset
  1358
  then show ?rhs by simp
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26072
diff changeset
  1359
qed
13882
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1360
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1361
theorem split_div':
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1362
  "P ((m::nat) div n) = ((n = 0 \<and> P 0) \<or>
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14208
diff changeset
  1363
   (\<exists>q. (n * q \<le> m \<and> m < n * (Suc q)) \<and> P q))"
13882
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1364
  apply (case_tac "0 < n")
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1365
  apply (simp only: add: split_div_lemma)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
  1366
  apply simp_all
13882
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1367
  done
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1368
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1369
lemma split_mod:
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1370
 "P(n mod k :: nat) =
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1371
 ((k = 0 \<longrightarrow> P n) \<and> (k \<noteq> 0 \<longrightarrow> (!i. !j<k. n = k*i + j \<longrightarrow> P j)))"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1372
 (is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))")
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1373
proof
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1374
  assume P: ?P
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1375
  show ?Q
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1376
  proof (cases)
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1377
    assume "k = 0"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
  1378
    with P show ?Q by simp
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1379
  next
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1380
    assume not0: "k \<noteq> 0"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1381
    thus ?Q
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1382
    proof (simp, intro allI impI)
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1383
      fix i j
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1384
      assume "n = k*i + j" "j < k"
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1385
      thus "P j" using not0 P by (simp add: ac_simps)
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1386
    qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1387
  qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1388
next
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1389
  assume Q: ?Q
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1390
  show ?P
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1391
  proof (cases)
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1392
    assume "k = 0"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27540
diff changeset
  1393
    with Q show ?P by simp
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1394
  next
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1395
    assume not0: "k \<noteq> 0"
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1396
    with Q have R: ?R by simp
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1397
    from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"]
13517
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13189
diff changeset
  1398
    show ?P by simp
13189
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1399
  qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1400
qed
81ed5c6de890 Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents: 13152
diff changeset
  1401
13882
2266550ab316 New theorems split_div' and mod_div_equality'.
berghofe
parents: 13517
diff changeset
  1402
theorem mod_div_equality': "(m::nat) mod n = m - (m div n) * n"
47138
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1403
  using mod_div_equality [of m n] by arith
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1404
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1405
lemma div_mod_equality': "(m::nat) div n * n = m - m mod n"
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1406
  using mod_div_equality [of m n] by arith
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1407
(* FIXME: very similar to mult_div_cancel *)
22800
eaf5e7ef35d9 added lemmatas
haftmann
parents: 22744
diff changeset
  1408
52398
656e5e171f19 added lemma
noschinl
parents: 51717
diff changeset
  1409
lemma div_eq_dividend_iff: "a \<noteq> 0 \<Longrightarrow> (a :: nat) div b = a \<longleftrightarrow> b = 1"
656e5e171f19 added lemma
noschinl
parents: 51717
diff changeset
  1410
  apply rule
656e5e171f19 added lemma
noschinl
parents: 51717
diff changeset
  1411
  apply (cases "b = 0")
656e5e171f19 added lemma
noschinl
parents: 51717
diff changeset
  1412
  apply simp_all
656e5e171f19 added lemma
noschinl
parents: 51717
diff changeset
  1413
  apply (metis (full_types) One_nat_def Suc_lessI div_less_dividend less_not_refl3)
656e5e171f19 added lemma
noschinl
parents: 51717
diff changeset
  1414
  done
656e5e171f19 added lemma
noschinl
parents: 51717
diff changeset
  1415
22800
eaf5e7ef35d9 added lemmatas
haftmann
parents: 22744
diff changeset
  1416
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1417
subsubsection {* An ``induction'' law for modulus arithmetic. *}
14640
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1418
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1419
lemma mod_induct_0:
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1420
  assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1421
  and base: "P i" and i: "i<p"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1422
  shows "P 0"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1423
proof (rule ccontr)
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1424
  assume contra: "\<not>(P 0)"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1425
  from i have p: "0<p" by simp
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1426
  have "\<forall>k. 0<k \<longrightarrow> \<not> P (p-k)" (is "\<forall>k. ?A k")
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1427
  proof
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1428
    fix k
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1429
    show "?A k"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1430
    proof (induct k)
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1431
      show "?A 0" by simp  -- "by contradiction"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1432
    next
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1433
      fix n
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1434
      assume ih: "?A n"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1435
      show "?A (Suc n)"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1436
      proof (clarsimp)
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1437
        assume y: "P (p - Suc n)"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1438
        have n: "Suc n < p"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1439
        proof (rule ccontr)
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1440
          assume "\<not>(Suc n < p)"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1441
          hence "p - Suc n = 0"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1442
            by simp
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1443
          with y contra show "False"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1444
            by simp
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1445
        qed
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1446
        hence n2: "Suc (p - Suc n) = p-n" by arith
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1447
        from p have "p - Suc n < p" by arith
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1448
        with y step have z: "P ((Suc (p - Suc n)) mod p)"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1449
          by blast
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1450
        show "False"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1451
        proof (cases "n=0")
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1452
          case True
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1453
          with z n2 contra show ?thesis by simp
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1454
        next
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1455
          case False
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1456
          with p have "p-n < p" by arith
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1457
          with z n2 False ih show ?thesis by simp
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1458
        qed
14640
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1459
      qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1460
    qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1461
  qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1462
  moreover
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1463
  from i obtain k where "0<k \<and> i+k=p"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1464
    by (blast dest: less_imp_add_positive)
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1465
  hence "0<k \<and> i=p-k" by auto
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1466
  moreover
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1467
  note base
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1468
  ultimately
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1469
  show "False" by blast
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1470
qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1471
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1472
lemma mod_induct:
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1473
  assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1474
  and base: "P i" and i: "i<p" and j: "j<p"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1475
  shows "P j"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1476
proof -
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1477
  have "\<forall>j<p. P j"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1478
  proof
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1479
    fix j
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1480
    show "j<p \<longrightarrow> P j" (is "?A j")
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1481
    proof (induct j)
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1482
      from step base i show "?A 0"
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1483
        by (auto elim: mod_induct_0)
14640
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1484
    next
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1485
      fix k
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1486
      assume ih: "?A k"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1487
      show "?A (Suc k)"
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1488
      proof
22718
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1489
        assume suc: "Suc k < p"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1490
        hence k: "k<p" by simp
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1491
        with ih have "P k" ..
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1492
        with step k have "P (Suc k mod p)"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1493
          by blast
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1494
        moreover
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1495
        from suc have "Suc k mod p = Suc k"
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1496
          by simp
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1497
        ultimately
936f7580937d tuned proofs;
wenzelm
parents: 22473
diff changeset
  1498
        show "P (Suc k)" by simp
14640
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1499
      qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1500
    qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1501
  qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1502
  with j show ?thesis by blast
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1503
qed
b31870c50c68 new lemmas
paulson
parents: 14437
diff changeset
  1504
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1505
lemma div2_Suc_Suc [simp]: "Suc (Suc m) div 2 = Suc (m div 2)"
47138
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1506
  by (simp add: numeral_2_eq_2 le_div_geq)
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1507
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1508
lemma mod2_Suc_Suc [simp]: "Suc (Suc m) mod 2 = m mod 2"
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1509
  by (simp add: numeral_2_eq_2 le_mod_geq)
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1510
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1511
lemma add_self_div_2 [simp]: "(m + m) div 2 = (m::nat)"
47217
501b9bbd0d6e removed redundant nat-specific copies of theorems
huffman
parents: 47167
diff changeset
  1512
by (simp add: mult_2 [symmetric])
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1513
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1514
lemma mod2_gr_0 [simp]: "0 < (m\<Colon>nat) mod 2 \<longleftrightarrow> m mod 2 = 1"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1515
proof -
35815
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  1516
  { fix n :: nat have  "(n::nat) < 2 \<Longrightarrow> n = 0 \<or> n = 1" by (cases n) simp_all }
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1517
  moreover have "m mod 2 < 2" by simp
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1518
  ultimately have "m mod 2 = 0 \<or> m mod 2 = 1" .
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1519
  then show ?thesis by auto
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1520
qed
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1521
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1522
text{*These lemmas collapse some needless occurrences of Suc:
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1523
    at least three Sucs, since two and fewer are rewritten back to Suc again!
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1524
    We already have some rules to simplify operands smaller than 3.*}
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1525
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1526
lemma div_Suc_eq_div_add3 [simp]: "m div (Suc (Suc (Suc n))) = m div (3+n)"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1527
by (simp add: Suc3_eq_add_3)
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1528
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1529
lemma mod_Suc_eq_mod_add3 [simp]: "m mod (Suc (Suc (Suc n))) = m mod (3+n)"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1530
by (simp add: Suc3_eq_add_3)
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1531
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1532
lemma Suc_div_eq_add3_div: "(Suc (Suc (Suc m))) div n = (3+m) div n"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1533
by (simp add: Suc3_eq_add_3)
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1534
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1535
lemma Suc_mod_eq_add3_mod: "(Suc (Suc (Suc m))) mod n = (3+m) mod n"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1536
by (simp add: Suc3_eq_add_3)
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1537
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1538
lemmas Suc_div_eq_add3_div_numeral [simp] = Suc_div_eq_add3_div [of _ "numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1539
lemmas Suc_mod_eq_add3_mod_numeral [simp] = Suc_mod_eq_add3_mod [of _ "numeral v"] for v
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33274
diff changeset
  1540
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1541
lemma Suc_times_mod_eq: "1<k ==> Suc (k * m) mod k = 1" 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1542
apply (induct "m")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1543
apply (simp_all add: mod_Suc)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1544
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1545
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1546
declare Suc_times_mod_eq [of "numeral w", simp] for w
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1547
47138
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1548
lemma Suc_div_le_mono [simp]: "n div k \<le> (Suc n) div k"
f8cf96545eed tuned proofs
huffman
parents: 47137
diff changeset
  1549
by (simp add: div_le_mono)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1550
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1551
lemma Suc_n_div_2_gt_zero [simp]: "(0::nat) < n ==> 0 < (n + 1) div 2"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1552
by (cases n) simp_all
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1553
35815
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  1554
lemma div_2_gt_zero [simp]: assumes A: "(1::nat) < n" shows "0 < n div 2"
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  1555
proof -
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  1556
  from A have B: "0 < n - 1" and C: "n - 1 + 1 = n" by simp_all
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  1557
  from Suc_n_div_2_gt_zero [OF B] C show ?thesis by simp 
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  1558
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1559
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1560
lemma mod_mult_self4 [simp]: "Suc (k*n + m) mod n = Suc m mod n"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1561
proof -
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1562
  have "Suc (k * n + m) mod n = (k * n + Suc m) mod n" by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1563
  also have "... = Suc m mod n" by (rule mod_mult_self3) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1564
  finally show ?thesis .
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1565
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1566
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1567
lemma mod_Suc_eq_Suc_mod: "Suc m mod n = Suc (m mod n) mod n"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1568
apply (subst mod_Suc [of m]) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1569
apply (subst mod_Suc [of "m mod n"], simp) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1570
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1571
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1572
lemma mod_2_not_eq_zero_eq_one_nat:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1573
  fixes n :: nat
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1574
  shows "n mod 2 \<noteq> 0 \<longleftrightarrow> n mod 2 = 1"
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1575
  by (fact not_mod_2_eq_0_eq_1)
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  1576
  
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1577
lemma even_Suc_div_two [simp]:
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1578
  "even n \<Longrightarrow> Suc n div 2 = n div 2"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1579
  using even_succ_div_two [of n] by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1580
  
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1581
lemma odd_Suc_div_two [simp]:
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1582
  "odd n \<Longrightarrow> Suc n div 2 = Suc (n div 2)"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1583
  using odd_succ_div_two [of n] by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1584
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1585
lemma odd_two_times_div_two_nat [simp]:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1586
  "odd n \<Longrightarrow> 2 * (n div 2) = n - (1 :: nat)"
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1587
  using odd_two_times_div_two_succ [of n] by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1588
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1589
lemma odd_Suc_minus_one [simp]:
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1590
  "odd n \<Longrightarrow> Suc (n - Suc 0) = n"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1591
  by (auto elim: oddE)
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1592
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1593
lemma parity_induct [case_names zero even odd]:
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1594
  assumes zero: "P 0"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1595
  assumes even: "\<And>n. P n \<Longrightarrow> P (2 * n)"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1596
  assumes odd: "\<And>n. P n \<Longrightarrow> P (Suc (2 * n))"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1597
  shows "P n"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1598
proof (induct n rule: less_induct)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1599
  case (less n)
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1600
  show "P n"
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1601
  proof (cases "n = 0")
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1602
    case True with zero show ?thesis by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1603
  next
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1604
    case False
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1605
    with less have hyp: "P (n div 2)" by simp
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1606
    show ?thesis
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1607
    proof (cases "even n")
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1608
      case True
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1609
      with hyp even [of "n div 2"] show ?thesis
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1610
        by simp
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1611
    next
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1612
      case False
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1613
      with hyp odd [of "n div 2"] show ?thesis 
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58786
diff changeset
  1614
        by simp
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1615
    qed
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1616
  qed
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1617
qed
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58710
diff changeset
  1618
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1619
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1620
subsection {* Division on @{typ int} *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1621
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1622
definition divmod_int_rel :: "int \<Rightarrow> int \<Rightarrow> int \<times> int \<Rightarrow> bool" where
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1623
    --{*definition of quotient and remainder*}
47139
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1624
  "divmod_int_rel a b = (\<lambda>(q, r). a = b * q + r \<and>
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1625
    (if 0 < b then 0 \<le> r \<and> r < b else if b < 0 then b < r \<and> r \<le> 0 else q = 0))"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1626
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1627
text {*
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1628
  The following algorithmic devlopment actually echos what has already
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1629
  been developed in class @{class semiring_numeral_div}.  In the long
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1630
  run it seems better to derive division on @{typ int} just from
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1631
  division on @{typ nat} and instantiate @{class semiring_numeral_div}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1632
  accordingly.
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1633
*}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  1634
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1635
definition adjust :: "int \<Rightarrow> int \<times> int \<Rightarrow> int \<times> int" where
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1636
    --{*for the division algorithm*}
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1637
    "adjust b = (\<lambda>(q, r). if 0 \<le> r - b then (2 * q + 1, r - b)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1638
                         else (2 * q, r))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1639
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1640
text{*algorithm for the case @{text "a\<ge>0, b>0"}*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1641
function posDivAlg :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1642
  "posDivAlg a b = (if a < b \<or>  b \<le> 0 then (0, a)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1643
     else adjust b (posDivAlg a (2 * b)))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1644
by auto
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1645
termination by (relation "measure (\<lambda>(a, b). nat (a - b + 1))")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1646
  (auto simp add: mult_2)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1647
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1648
text{*algorithm for the case @{text "a<0, b>0"}*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1649
function negDivAlg :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1650
  "negDivAlg a b = (if 0 \<le>a + b \<or> b \<le> 0  then (-1, a + b)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1651
     else adjust b (negDivAlg a (2 * b)))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1652
by auto
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1653
termination by (relation "measure (\<lambda>(a, b). nat (- a - b))")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1654
  (auto simp add: mult_2)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1655
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1656
text{*algorithm for the general case @{term "b\<noteq>0"}*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1657
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1658
definition divmod_int :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1659
    --{*The full division algorithm considers all possible signs for a, b
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1660
       including the special case @{text "a=0, b<0"} because 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1661
       @{term negDivAlg} requires @{term "a<0"}.*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1662
  "divmod_int a b = (if 0 \<le> a then if 0 \<le> b then posDivAlg a b
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1663
                  else if a = 0 then (0, 0)
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  1664
                       else apsnd uminus (negDivAlg (-a) (-b))
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1665
               else 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1666
                  if 0 < b then negDivAlg a b
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  1667
                  else apsnd uminus (posDivAlg (-a) (-b)))"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1668
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1669
instantiation int :: Divides.div
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1670
begin
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1671
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1672
definition div_int where
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1673
  "a div b = fst (divmod_int a b)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1674
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1675
lemma fst_divmod_int [simp]:
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1676
  "fst (divmod_int a b) = a div b"
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1677
  by (simp add: div_int_def)
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1678
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1679
definition mod_int where
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  1680
  "a mod b = snd (divmod_int a b)"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1681
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1682
lemma snd_divmod_int [simp]:
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1683
  "snd (divmod_int a b) = a mod b"
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1684
  by (simp add: mod_int_def)
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1685
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1686
instance ..
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1687
3366
2402c6ab1561 Moving div and mod from Arith to Divides
paulson
parents:
diff changeset
  1688
end
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1689
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1690
lemma divmod_int_mod_div:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1691
  "divmod_int p q = (p div q, p mod q)"
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1692
  by (simp add: prod_eq_iff)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1693
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1694
text{*
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1695
Here is the division algorithm in ML:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1696
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1697
\begin{verbatim}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1698
    fun posDivAlg (a,b) =
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1699
      if a<b then (0,a)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1700
      else let val (q,r) = posDivAlg(a, 2*b)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1701
               in  if 0\<le>r-b then (2*q+1, r-b) else (2*q, r)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1702
           end
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1703
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1704
    fun negDivAlg (a,b) =
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1705
      if 0\<le>a+b then (~1,a+b)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1706
      else let val (q,r) = negDivAlg(a, 2*b)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1707
               in  if 0\<le>r-b then (2*q+1, r-b) else (2*q, r)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1708
           end;
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1709
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1710
    fun negateSnd (q,r:int) = (q,~r);
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1711
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1712
    fun divmod (a,b) = if 0\<le>a then 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1713
                          if b>0 then posDivAlg (a,b) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1714
                           else if a=0 then (0,0)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1715
                                else negateSnd (negDivAlg (~a,~b))
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1716
                       else 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1717
                          if 0<b then negDivAlg (a,b)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1718
                          else        negateSnd (posDivAlg (~a,~b));
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1719
\end{verbatim}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1720
*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1721
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1722
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1723
subsubsection {* Uniqueness and Monotonicity of Quotients and Remainders *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1724
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1725
lemma unique_quotient_lemma:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1726
     "[| b*q' + r'  \<le> b*q + r;  0 \<le> r';  r' < b;  r < b |]  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1727
      ==> q' \<le> (q::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1728
apply (subgoal_tac "r' + b * (q'-q) \<le> r")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1729
 prefer 2 apply (simp add: right_diff_distrib)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1730
apply (subgoal_tac "0 < b * (1 + q - q') ")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1731
apply (erule_tac [2] order_le_less_trans)
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  1732
 prefer 2 apply (simp add: right_diff_distrib distrib_left)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1733
apply (subgoal_tac "b * q' < b * (1 + q) ")
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  1734
 prefer 2 apply (simp add: right_diff_distrib distrib_left)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1735
apply (simp add: mult_less_cancel_left)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1736
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1737
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1738
lemma unique_quotient_lemma_neg:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1739
     "[| b*q' + r' \<le> b*q + r;  r \<le> 0;  b < r;  b < r' |]  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1740
      ==> q \<le> (q'::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1741
by (rule_tac b = "-b" and r = "-r'" and r' = "-r" in unique_quotient_lemma, 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1742
    auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1743
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1744
lemma unique_quotient:
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  1745
     "[| divmod_int_rel a b (q, r); divmod_int_rel a b (q', r') |]  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1746
      ==> q = q'"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1747
apply (simp add: divmod_int_rel_def linorder_neq_iff split: split_if_asm)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1748
apply (blast intro: order_antisym
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1749
             dest: order_eq_refl [THEN unique_quotient_lemma] 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1750
             order_eq_refl [THEN unique_quotient_lemma_neg] sym)+
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1751
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1752
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1753
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1754
lemma unique_remainder:
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  1755
     "[| divmod_int_rel a b (q, r); divmod_int_rel a b (q', r') |]  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1756
      ==> r = r'"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1757
apply (subgoal_tac "q = q'")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1758
 apply (simp add: divmod_int_rel_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1759
apply (blast intro: unique_quotient)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1760
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1761
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1762
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1763
subsubsection {* Correctness of @{term posDivAlg}, the Algorithm for Non-Negative Dividends *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1764
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1765
text{*And positive divisors*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1766
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1767
lemma adjust_eq [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1768
     "adjust b (q, r) = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1769
      (let diff = r - b in  
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1770
        if 0 \<le> diff then (2 * q + 1, diff)   
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1771
                     else (2*q, r))"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  1772
  by (simp add: Let_def adjust_def)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1773
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1774
declare posDivAlg.simps [simp del]
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1775
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1776
text{*use with a simproc to avoid repeatedly proving the premise*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1777
lemma posDivAlg_eqn:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1778
     "0 < b ==>  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1779
      posDivAlg a b = (if a<b then (0,a) else adjust b (posDivAlg a (2*b)))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1780
by (rule posDivAlg.simps [THEN trans], simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1781
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1782
text{*Correctness of @{term posDivAlg}: it computes quotients correctly*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1783
theorem posDivAlg_correct:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1784
  assumes "0 \<le> a" and "0 < b"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1785
  shows "divmod_int_rel a b (posDivAlg a b)"
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1786
  using assms
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1787
  apply (induct a b rule: posDivAlg.induct)
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1788
  apply auto
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1789
  apply (simp add: divmod_int_rel_def)
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  1790
  apply (subst posDivAlg_eqn, simp add: distrib_left)
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1791
  apply (case_tac "a < b")
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1792
  apply simp_all
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1793
  apply (erule splitE)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1794
  apply (auto simp add: distrib_left Let_def ac_simps mult_2_right)
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1795
  done
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1796
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1797
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1798
subsubsection {* Correctness of @{term negDivAlg}, the Algorithm for Negative Dividends *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1799
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1800
text{*And positive divisors*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1801
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1802
declare negDivAlg.simps [simp del]
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1803
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1804
text{*use with a simproc to avoid repeatedly proving the premise*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1805
lemma negDivAlg_eqn:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1806
     "0 < b ==>  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1807
      negDivAlg a b =       
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1808
       (if 0\<le>a+b then (-1,a+b) else adjust b (negDivAlg a (2*b)))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1809
by (rule negDivAlg.simps [THEN trans], simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1810
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1811
(*Correctness of negDivAlg: it computes quotients correctly
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1812
  It doesn't work if a=0 because the 0/b equals 0, not -1*)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1813
lemma negDivAlg_correct:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1814
  assumes "a < 0" and "b > 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1815
  shows "divmod_int_rel a b (negDivAlg a b)"
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1816
  using assms
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1817
  apply (induct a b rule: negDivAlg.induct)
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1818
  apply (auto simp add: linorder_not_le)
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1819
  apply (simp add: divmod_int_rel_def)
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1820
  apply (subst negDivAlg_eqn, assumption)
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1821
  apply (case_tac "a + b < (0\<Colon>int)")
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1822
  apply simp_all
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1823
  apply (erule splitE)
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1824
  apply (auto simp add: distrib_left Let_def ac_simps mult_2_right)
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1825
  done
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1826
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1827
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1828
subsubsection {* Existence Shown by Proving the Division Algorithm to be Correct *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1829
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1830
(*the case a=0*)
47139
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1831
lemma divmod_int_rel_0: "divmod_int_rel 0 b (0, 0)"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1832
by (auto simp add: divmod_int_rel_def linorder_neq_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1833
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1834
lemma posDivAlg_0 [simp]: "posDivAlg 0 b = (0, 0)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1835
by (subst posDivAlg.simps, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1836
47139
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1837
lemma posDivAlg_0_right [simp]: "posDivAlg a 0 = (0, a)"
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1838
by (subst posDivAlg.simps, auto)
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1839
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 57514
diff changeset
  1840
lemma negDivAlg_minus1 [simp]: "negDivAlg (- 1) b = (- 1, b - 1)"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1841
by (subst negDivAlg.simps, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1842
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  1843
lemma divmod_int_rel_neg: "divmod_int_rel (-a) (-b) qr ==> divmod_int_rel a b (apsnd uminus qr)"
47139
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1844
by (auto simp add: divmod_int_rel_def)
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1845
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1846
lemma divmod_int_correct: "divmod_int_rel a b (divmod_int a b)"
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1847
apply (cases "b = 0", simp add: divmod_int_def divmod_int_rel_def)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1848
by (force simp add: linorder_neq_iff divmod_int_rel_0 divmod_int_def divmod_int_rel_neg
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1849
                    posDivAlg_correct negDivAlg_correct)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1850
47141
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1851
lemma divmod_int_unique:
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1852
  assumes "divmod_int_rel a b qr" 
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1853
  shows "divmod_int a b = qr"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1854
  using assms divmod_int_correct [of a b]
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1855
  using unique_quotient [of a b] unique_remainder [of a b]
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1856
  by (metis pair_collapse)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1857
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1858
lemma divmod_int_rel_div_mod: "divmod_int_rel a b (a div b, a mod b)"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1859
  using divmod_int_correct by (simp add: divmod_int_mod_div)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1860
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1861
lemma div_int_unique: "divmod_int_rel a b (q, r) \<Longrightarrow> a div b = q"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1862
  by (simp add: divmod_int_rel_div_mod [THEN unique_quotient])
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1863
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1864
lemma mod_int_unique: "divmod_int_rel a b (q, r) \<Longrightarrow> a mod b = r"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1865
  by (simp add: divmod_int_rel_div_mod [THEN unique_remainder])
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1866
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1867
instance int :: ring_div
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1868
proof
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1869
  fix a b :: int
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1870
  show "a div b * b + a mod b = a"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1871
    using divmod_int_rel_div_mod [of a b]
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1872
    unfolding divmod_int_rel_def by (simp add: mult.commute)
47141
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1873
next
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1874
  fix a b c :: int
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1875
  assume "b \<noteq> 0"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1876
  hence "divmod_int_rel (a + c * b) b (c + a div b, a mod b)"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1877
    using divmod_int_rel_div_mod [of a b]
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1878
    unfolding divmod_int_rel_def by (auto simp: algebra_simps)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1879
  thus "(a + c * b) div b = c + a div b"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1880
    by (rule div_int_unique)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1881
next
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1882
  fix a b c :: int
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1883
  assume "c \<noteq> 0"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1884
  hence "\<And>q r. divmod_int_rel a b (q, r)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1885
    \<Longrightarrow> divmod_int_rel (c * a) (c * b) (q, c * r)"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1886
    unfolding divmod_int_rel_def
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1887
    by - (rule linorder_cases [of 0 b], auto simp: algebra_simps
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1888
      mult_less_0_iff zero_less_mult_iff mult_strict_right_mono
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1889
      mult_strict_right_mono_neg zero_le_mult_iff mult_le_0_iff)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1890
  hence "divmod_int_rel (c * a) (c * b) (a div b, c * (a mod b))"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1891
    using divmod_int_rel_div_mod [of a b] .
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1892
  thus "(c * a) div (c * b) = a div b"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1893
    by (rule div_int_unique)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1894
next
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1895
  fix a :: int show "a div 0 = 0"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1896
    by (rule div_int_unique, simp add: divmod_int_rel_def)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1897
next
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1898
  fix a :: int show "0 div a = 0"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1899
    by (rule div_int_unique, auto simp add: divmod_int_rel_def)
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1900
qed
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1901
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1902
text{*Basic laws about division and remainder*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1903
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1904
lemma zmod_zdiv_equality: "(a::int) = b * (a div b) + (a mod b)"
47141
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1905
  by (fact mod_div_equality2 [symmetric])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1906
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1907
text {* Tool setup *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1908
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1909
ML {*
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 41792
diff changeset
  1910
structure Cancel_Div_Mod_Int = Cancel_Div_Mod
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1911
(
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1912
  val div_name = @{const_name div};
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1913
  val mod_name = @{const_name mod};
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1914
  val mk_binop = HOLogic.mk_binop;
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1915
  val mk_sum = Arith_Data.mk_sum HOLogic.intT;
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1916
  val dest_sum = Arith_Data.dest_sum;
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1917
47165
9344891b504b remove redundant lemmas
huffman
parents: 47164
diff changeset
  1918
  val div_mod_eqs = map mk_meta_eq [@{thm div_mod_equality}, @{thm div_mod_equality2}];
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1919
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1920
  val prove_eq_sums = Arith_Data.prove_conv2 all_tac (Arith_Data.simp_all_tac 
59556
aa2deef7cf47 eliminated technical fact alias
haftmann
parents: 59473
diff changeset
  1921
    (@{thm diff_conv_add_uminus} :: @{thms add_0_left add_0_right} @ @{thms ac_simps}))
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39489
diff changeset
  1922
)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1923
*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1924
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 41792
diff changeset
  1925
simproc_setup cancel_div_mod_int ("(k::int) + l") = {* K Cancel_Div_Mod_Int.proc *}
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 41792
diff changeset
  1926
47141
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1927
lemma pos_mod_conj: "(0::int) < b \<Longrightarrow> 0 \<le> a mod b \<and> a mod b < b"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1928
  using divmod_int_correct [of a b]
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1929
  by (auto simp add: divmod_int_rel_def prod_eq_iff)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1930
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45530
diff changeset
  1931
lemmas pos_mod_sign [simp] = pos_mod_conj [THEN conjunct1]
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45530
diff changeset
  1932
   and pos_mod_bound [simp] = pos_mod_conj [THEN conjunct2]
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1933
47141
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1934
lemma neg_mod_conj: "b < (0::int) \<Longrightarrow> a mod b \<le> 0 \<and> b < a mod b"
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1935
  using divmod_int_correct [of a b]
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  1936
  by (auto simp add: divmod_int_rel_def prod_eq_iff)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1937
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45530
diff changeset
  1938
lemmas neg_mod_sign [simp] = neg_mod_conj [THEN conjunct1]
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45530
diff changeset
  1939
   and neg_mod_bound [simp] = neg_mod_conj [THEN conjunct2]
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1940
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1941
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1942
subsubsection {* General Properties of div and mod *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1943
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1944
lemma div_pos_pos_trivial: "[| (0::int) \<le> a;  a < b |] ==> a div b = 0"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1945
apply (rule div_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1946
apply (auto simp add: divmod_int_rel_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1947
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1948
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1949
lemma div_neg_neg_trivial: "[| a \<le> (0::int);  b < a |] ==> a div b = 0"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1950
apply (rule div_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1951
apply (auto simp add: divmod_int_rel_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1952
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1953
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1954
lemma div_pos_neg_trivial: "[| (0::int) < a;  a+b \<le> 0 |] ==> a div b = -1"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1955
apply (rule div_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1956
apply (auto simp add: divmod_int_rel_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1957
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1958
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1959
(*There is no div_neg_pos_trivial because  0 div b = 0 would supersede it*)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1960
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1961
lemma mod_pos_pos_trivial: "[| (0::int) \<le> a;  a < b |] ==> a mod b = a"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1962
apply (rule_tac q = 0 in mod_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1963
apply (auto simp add: divmod_int_rel_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1964
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1965
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1966
lemma mod_neg_neg_trivial: "[| a \<le> (0::int);  b < a |] ==> a mod b = a"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1967
apply (rule_tac q = 0 in mod_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1968
apply (auto simp add: divmod_int_rel_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1969
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1970
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1971
lemma mod_pos_neg_trivial: "[| (0::int) < a;  a+b \<le> 0 |] ==> a mod b = a+b"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1972
apply (rule_tac q = "-1" in mod_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1973
apply (auto simp add: divmod_int_rel_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1974
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1975
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1976
text{*There is no @{text mod_neg_pos_trivial}.*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1977
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1978
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  1979
subsubsection {* Laws for div and mod with Unary Minus *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1980
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1981
lemma zminus1_lemma:
47139
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  1982
     "divmod_int_rel a b (q, r) ==> b \<noteq> 0
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1983
      ==> divmod_int_rel (-a) b (if r=0 then -q else -q - 1,  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1984
                          if r=0 then 0 else b-r)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1985
by (force simp add: split_ifs divmod_int_rel_def linorder_neq_iff right_diff_distrib)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1986
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1987
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1988
lemma zdiv_zminus1_eq_if:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1989
     "b \<noteq> (0::int)  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1990
      ==> (-a) div b =  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1991
          (if a mod b = 0 then - (a div b) else  - (a div b) - 1)"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1992
by (blast intro: divmod_int_rel_div_mod [THEN zminus1_lemma, THEN div_int_unique])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1993
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1994
lemma zmod_zminus1_eq_if:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1995
     "(-a::int) mod b = (if a mod b = 0 then 0 else  b - (a mod b))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1996
apply (case_tac "b = 0", simp)
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  1997
apply (blast intro: divmod_int_rel_div_mod [THEN zminus1_lemma, THEN mod_int_unique])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1998
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  1999
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2000
lemma zmod_zminus1_not_zero:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2001
  fixes k l :: int
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2002
  shows "- k mod l \<noteq> 0 \<Longrightarrow> k mod l \<noteq> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2003
  unfolding zmod_zminus1_eq_if by auto
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2004
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2005
lemma zdiv_zminus2_eq_if:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2006
     "b \<noteq> (0::int)  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2007
      ==> a div (-b) =  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2008
          (if a mod b = 0 then - (a div b) else  - (a div b) - 1)"
47159
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
  2009
by (simp add: zdiv_zminus1_eq_if div_minus_right)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2010
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2011
lemma zmod_zminus2_eq_if:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2012
     "a mod (-b::int) = (if a mod b = 0 then 0 else  (a mod b) - b)"
47159
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
  2013
by (simp add: zmod_zminus1_eq_if mod_minus_right)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2014
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2015
lemma zmod_zminus2_not_zero:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2016
  fixes k l :: int
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2017
  shows "k mod - l \<noteq> 0 \<Longrightarrow> k mod l \<noteq> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2018
  unfolding zmod_zminus2_eq_if by auto 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2019
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2020
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  2021
subsubsection {* Computation of Division and Remainder *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2022
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2023
lemma div_eq_minus1: "(0::int) < b ==> -1 div b = -1"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2024
by (simp add: div_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2025
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2026
lemma zmod_minus1: "(0::int) < b ==> -1 mod b = b - 1"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2027
by (simp add: mod_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2028
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2029
text{*a positive, b positive *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2030
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2031
lemma div_pos_pos: "[| 0 < a;  0 \<le> b |] ==> a div b = fst (posDivAlg a b)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2032
by (simp add: div_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2033
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2034
lemma mod_pos_pos: "[| 0 < a;  0 \<le> b |] ==> a mod b = snd (posDivAlg a b)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2035
by (simp add: mod_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2036
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2037
text{*a negative, b positive *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2038
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2039
lemma div_neg_pos: "[| a < 0;  0 < b |] ==> a div b = fst (negDivAlg a b)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2040
by (simp add: div_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2041
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2042
lemma mod_neg_pos: "[| a < 0;  0 < b |] ==> a mod b = snd (negDivAlg a b)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2043
by (simp add: mod_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2044
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2045
text{*a positive, b negative *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2046
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2047
lemma div_pos_neg:
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  2048
     "[| 0 < a;  b < 0 |] ==> a div b = fst (apsnd uminus (negDivAlg (-a) (-b)))"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2049
by (simp add: div_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2050
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2051
lemma mod_pos_neg:
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  2052
     "[| 0 < a;  b < 0 |] ==> a mod b = snd (apsnd uminus (negDivAlg (-a) (-b)))"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2053
by (simp add: mod_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2054
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2055
text{*a negative, b negative *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2056
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2057
lemma div_neg_neg:
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  2058
     "[| a < 0;  b \<le> 0 |] ==> a div b = fst (apsnd uminus (posDivAlg (-a) (-b)))"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2059
by (simp add: div_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2060
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2061
lemma mod_neg_neg:
46560
8e252a608765 remove constant negateSnd in favor of 'apsnd uminus' (from Florian Haftmann)
huffman
parents: 46552
diff changeset
  2062
     "[| a < 0;  b \<le> 0 |] ==> a mod b = snd (apsnd uminus (posDivAlg (-a) (-b)))"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2063
by (simp add: mod_int_def divmod_int_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2064
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2065
text {*Simplify expresions in which div and mod combine numerical constants*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2066
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2067
lemma int_div_pos_eq: "\<lbrakk>(a::int) = b * q + r; 0 \<le> r; r < b\<rbrakk> \<Longrightarrow> a div b = q"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2068
  by (rule div_int_unique [of a b q r]) (simp add: divmod_int_rel_def)
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2069
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2070
lemma int_div_neg_eq: "\<lbrakk>(a::int) = b * q + r; r \<le> 0; b < r\<rbrakk> \<Longrightarrow> a div b = q"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2071
  by (rule div_int_unique [of a b q r],
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  2072
    simp add: divmod_int_rel_def)
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2073
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2074
lemma int_mod_pos_eq: "\<lbrakk>(a::int) = b * q + r; 0 \<le> r; r < b\<rbrakk> \<Longrightarrow> a mod b = r"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2075
  by (rule mod_int_unique [of a b q r],
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  2076
    simp add: divmod_int_rel_def)
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2077
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2078
lemma int_mod_neg_eq: "\<lbrakk>(a::int) = b * q + r; r \<le> 0; b < r\<rbrakk> \<Longrightarrow> a mod b = r"
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2079
  by (rule mod_int_unique [of a b q r],
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  2080
    simp add: divmod_int_rel_def)
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2081
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2082
text {*
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2083
  numeral simprocs -- high chance that these can be replaced
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2084
  by divmod algorithm from @{class semiring_numeral_div}
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2085
*}
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2086
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2087
ML {*
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2088
local
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2089
  val mk_number = HOLogic.mk_number HOLogic.intT
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2090
  val plus = @{term "plus :: int \<Rightarrow> int \<Rightarrow> int"}
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2091
  val times = @{term "times :: int \<Rightarrow> int \<Rightarrow> int"}
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2092
  val zero = @{term "0 :: int"}
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2093
  val less = @{term "op < :: int \<Rightarrow> int \<Rightarrow> bool"}
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2094
  val le = @{term "op \<le> :: int \<Rightarrow> int \<Rightarrow> bool"}
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2095
  val simps = @{thms arith_simps} @ @{thms rel_simps} @ [@{thm numeral_1_eq_1 [symmetric]}]
58847
c44aff8ac894 avoid noise (cf. 03ff4d1e6784);
wenzelm
parents: 58834
diff changeset
  2096
  fun prove ctxt goal = Goal.prove ctxt [] [] (HOLogic.mk_Trueprop goal)
c44aff8ac894 avoid noise (cf. 03ff4d1e6784);
wenzelm
parents: 58834
diff changeset
  2097
    (K (ALLGOALS (full_simp_tac (put_simpset HOL_basic_ss ctxt addsimps simps))));
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51299
diff changeset
  2098
  fun binary_proc proc ctxt ct =
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2099
    (case Thm.term_of ct of
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2100
      _ $ t $ u =>
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2101
      (case try (apply2 (`(snd o HOLogic.dest_number))) (t, u) of
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51299
diff changeset
  2102
        SOME args => proc ctxt args
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2103
      | NONE => NONE)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2104
    | _ => NONE);
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2105
in
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2106
  fun divmod_proc posrule negrule =
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2107
    binary_proc (fn ctxt => fn ((a, t), (b, u)) =>
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2108
      if b = 0 then NONE
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2109
      else
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2110
        let
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2111
          val (q, r) = apply2 mk_number (Integer.div_mod a b)
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2112
          val goal1 = HOLogic.mk_eq (t, plus $ (times $ u $ q) $ r)
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2113
          val (goal2, goal3, rule) =
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2114
            if b > 0
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2115
            then (le $ zero $ r, less $ r $ u, posrule RS eq_reflection)
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2116
            else (le $ r $ zero, less $ u $ r, negrule RS eq_reflection)
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 59009
diff changeset
  2117
        in SOME (rule OF map (prove ctxt) [goal1, goal2, goal3]) end)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2118
end
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2119
*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2120
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2121
simproc_setup binary_int_div
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2122
  ("numeral m div numeral n :: int" |
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2123
   "numeral m div - numeral n :: int" |
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2124
   "- numeral m div numeral n :: int" |
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2125
   "- numeral m div - numeral n :: int") =
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2126
  {* K (divmod_proc @{thm int_div_pos_eq} @{thm int_div_neg_eq}) *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2127
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2128
simproc_setup binary_int_mod
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2129
  ("numeral m mod numeral n :: int" |
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2130
   "numeral m mod - numeral n :: int" |
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2131
   "- numeral m mod numeral n :: int" |
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2132
   "- numeral m mod - numeral n :: int") =
45530
0c4853bb77bf rewrite integer numeral div/mod simprocs to not return conditional rewrites; add regression tests
huffman
parents: 45231
diff changeset
  2133
  {* K (divmod_proc @{thm int_mod_pos_eq} @{thm int_mod_neg_eq}) *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2134
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2135
lemmas posDivAlg_eqn_numeral [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2136
    posDivAlg_eqn [of "numeral v" "numeral w", OF zero_less_numeral] for v w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2137
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2138
lemmas negDivAlg_eqn_numeral [simp] =
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2139
    negDivAlg_eqn [of "numeral v" "- numeral w", OF zero_less_numeral] for v w
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2140
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2141
55172
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2142
text {* Special-case simplification: @{text "\<plusminus>1 div z"} and @{text "\<plusminus>1 mod z"} *}
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2143
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2144
lemma [simp]:
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2145
  shows div_one_bit0: "1 div numeral (Num.Bit0 v) = (0 :: int)"
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2146
    and mod_one_bit0: "1 mod numeral (Num.Bit0 v) = (1 :: int)"
55439
db691cc79289 eliminated hard tabs (assuming tab-width=2);
wenzelm
parents: 55172
diff changeset
  2147
    and div_one_bit1: "1 div numeral (Num.Bit1 v) = (0 :: int)"
db691cc79289 eliminated hard tabs (assuming tab-width=2);
wenzelm
parents: 55172
diff changeset
  2148
    and mod_one_bit1: "1 mod numeral (Num.Bit1 v) = (1 :: int)"
db691cc79289 eliminated hard tabs (assuming tab-width=2);
wenzelm
parents: 55172
diff changeset
  2149
    and div_one_neg_numeral: "1 div - numeral v = (- 1 :: int)"
db691cc79289 eliminated hard tabs (assuming tab-width=2);
wenzelm
parents: 55172
diff changeset
  2150
    and mod_one_neg_numeral: "1 mod - numeral v = (1 :: int) - numeral v"
55172
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2151
  by (simp_all del: arith_special
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2152
    add: div_pos_pos mod_pos_pos div_pos_neg mod_pos_neg posDivAlg_eqn)
55439
db691cc79289 eliminated hard tabs (assuming tab-width=2);
wenzelm
parents: 55172
diff changeset
  2153
55172
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2154
lemma [simp]:
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2155
  shows div_neg_one_numeral: "- 1 div numeral v = (- 1 :: int)"
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2156
    and mod_neg_one_numeral: "- 1 mod numeral v = numeral v - (1 :: int)"
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2157
    and div_neg_one_neg_bit0: "- 1 div - numeral (Num.Bit0 v) = (0 :: int)"
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2158
    and mod_neg_one_neb_bit0: "- 1 mod - numeral (Num.Bit0 v) = (- 1 :: int)"
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2159
    and div_neg_one_neg_bit1: "- 1 div - numeral (Num.Bit1 v) = (0 :: int)"
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2160
    and mod_neg_one_neb_bit1: "- 1 mod - numeral (Num.Bit1 v) = (- 1 :: int)"
92735f0d5302 more direct simplification rules for 1 div/mod numeral;
haftmann
parents: 55085
diff changeset
  2161
  by (simp_all add: div_eq_minus1 zmod_minus1)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2162
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2163
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  2164
subsubsection {* Monotonicity in the First Argument (Dividend) *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2165
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2166
lemma zdiv_mono1: "[| a \<le> a';  0 < (b::int) |] ==> a div b \<le> a' div b"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2167
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2168
apply (cut_tac a = a' and b = b in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2169
apply (rule unique_quotient_lemma)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2170
apply (erule subst)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2171
apply (erule subst, simp_all)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2172
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2173
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2174
lemma zdiv_mono1_neg: "[| a \<le> a';  (b::int) < 0 |] ==> a' div b \<le> a div b"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2175
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2176
apply (cut_tac a = a' and b = b in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2177
apply (rule unique_quotient_lemma_neg)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2178
apply (erule subst)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2179
apply (erule subst, simp_all)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2180
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2181
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2182
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  2183
subsubsection {* Monotonicity in the Second Argument (Divisor) *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2184
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2185
lemma q_pos_lemma:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2186
     "[| 0 \<le> b'*q' + r'; r' < b';  0 < b' |] ==> 0 \<le> (q'::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2187
apply (subgoal_tac "0 < b'* (q' + 1) ")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2188
 apply (simp add: zero_less_mult_iff)
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  2189
apply (simp add: distrib_left)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2190
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2191
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2192
lemma zdiv_mono2_lemma:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2193
     "[| b*q + r = b'*q' + r';  0 \<le> b'*q' + r';   
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2194
         r' < b';  0 \<le> r;  0 < b';  b' \<le> b |]   
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2195
      ==> q \<le> (q'::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2196
apply (frule q_pos_lemma, assumption+) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2197
apply (subgoal_tac "b*q < b* (q' + 1) ")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2198
 apply (simp add: mult_less_cancel_left)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2199
apply (subgoal_tac "b*q = r' - r + b'*q'")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2200
 prefer 2 apply simp
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  2201
apply (simp (no_asm_simp) add: distrib_left)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  2202
apply (subst add.commute, rule add_less_le_mono, arith)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2203
apply (rule mult_right_mono, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2204
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2205
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2206
lemma zdiv_mono2:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2207
     "[| (0::int) \<le> a;  0 < b';  b' \<le> b |] ==> a div b \<le> a div b'"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2208
apply (subgoal_tac "b \<noteq> 0")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2209
 prefer 2 apply arith
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2210
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2211
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2212
apply (rule zdiv_mono2_lemma)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2213
apply (erule subst)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2214
apply (erule subst, simp_all)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2215
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2216
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2217
lemma q_neg_lemma:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2218
     "[| b'*q' + r' < 0;  0 \<le> r';  0 < b' |] ==> q' \<le> (0::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2219
apply (subgoal_tac "b'*q' < 0")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2220
 apply (simp add: mult_less_0_iff, arith)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2221
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2222
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2223
lemma zdiv_mono2_neg_lemma:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2224
     "[| b*q + r = b'*q' + r';  b'*q' + r' < 0;   
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2225
         r < b;  0 \<le> r';  0 < b';  b' \<le> b |]   
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2226
      ==> q' \<le> (q::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2227
apply (frule q_neg_lemma, assumption+) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2228
apply (subgoal_tac "b*q' < b* (q + 1) ")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2229
 apply (simp add: mult_less_cancel_left)
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  2230
apply (simp add: distrib_left)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2231
apply (subgoal_tac "b*q' \<le> b'*q'")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2232
 prefer 2 apply (simp add: mult_right_mono_neg, arith)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2233
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2234
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2235
lemma zdiv_mono2_neg:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2236
     "[| a < (0::int);  0 < b';  b' \<le> b |] ==> a div b' \<le> a div b"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2237
apply (cut_tac a = a and b = b in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2238
apply (cut_tac a = a and b = b' in zmod_zdiv_equality)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2239
apply (rule zdiv_mono2_neg_lemma)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2240
apply (erule subst)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2241
apply (erule subst, simp_all)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2242
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2243
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2244
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  2245
subsubsection {* More Algebraic Laws for div and mod *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2246
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2247
text{*proving (a*b) div c = a * (b div c) + a * (b mod c) *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2248
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2249
lemma zmult1_lemma:
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  2250
     "[| divmod_int_rel b c (q, r) |]  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2251
      ==> divmod_int_rel (a * b) c (a*q + a*r div c, a*r mod c)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  2252
by (auto simp add: split_ifs divmod_int_rel_def linorder_neq_iff distrib_left ac_simps)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2253
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2254
lemma zdiv_zmult1_eq: "(a*b) div c = a*(b div c) + a*(b mod c) div (c::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2255
apply (case_tac "c = 0", simp)
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2256
apply (blast intro: divmod_int_rel_div_mod [THEN zmult1_lemma, THEN div_int_unique])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2257
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2258
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2259
text{*proving (a+b) div c = a div c + b div c + ((a mod c + b mod c) div c) *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2260
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2261
lemma zadd1_lemma:
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  2262
     "[| divmod_int_rel a c (aq, ar);  divmod_int_rel b c (bq, br) |]  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2263
      ==> divmod_int_rel (a+b) c (aq + bq + (ar+br) div c, (ar+br) mod c)"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  2264
by (force simp add: split_ifs divmod_int_rel_def linorder_neq_iff distrib_left)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2265
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2266
(*NOT suitable for rewriting: the RHS has an instance of the LHS*)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2267
lemma zdiv_zadd1_eq:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2268
     "(a+b) div (c::int) = a div c + b div c + ((a mod c + b mod c) div c)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2269
apply (case_tac "c = 0", simp)
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2270
apply (blast intro: zadd1_lemma [OF divmod_int_rel_div_mod divmod_int_rel_div_mod] div_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2271
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2272
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2273
lemma posDivAlg_div_mod:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2274
  assumes "k \<ge> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2275
  and "l \<ge> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2276
  shows "posDivAlg k l = (k div l, k mod l)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2277
proof (cases "l = 0")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2278
  case True then show ?thesis by (simp add: posDivAlg.simps)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2279
next
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2280
  case False with assms posDivAlg_correct
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2281
    have "divmod_int_rel k l (fst (posDivAlg k l), snd (posDivAlg k l))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2282
    by simp
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2283
  from div_int_unique [OF this] mod_int_unique [OF this]
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2284
  show ?thesis by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2285
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2286
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2287
lemma negDivAlg_div_mod:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2288
  assumes "k < 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2289
  and "l > 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2290
  shows "negDivAlg k l = (k div l, k mod l)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2291
proof -
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2292
  from assms have "l \<noteq> 0" by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2293
  from assms negDivAlg_correct
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2294
    have "divmod_int_rel k l (fst (negDivAlg k l), snd (negDivAlg k l))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2295
    by simp
47140
97c3676c5c94 rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
huffman
parents: 47139
diff changeset
  2296
  from div_int_unique [OF this] mod_int_unique [OF this]
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2297
  show ?thesis by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2298
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2299
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2300
lemma zmod_eq_0_iff: "(m mod d = 0) = (EX q::int. m = d*q)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2301
by (simp add: dvd_eq_mod_eq_0 [symmetric] dvd_def)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2302
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2303
(* REVISIT: should this be generalized to all semiring_div types? *)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2304
lemmas zmod_eq_0D [dest!] = zmod_eq_0_iff [THEN iffD1]
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2305
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2306
lemma zmod_zdiv_equality':
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2307
  "(m\<Colon>int) mod n = m - (m div n) * n"
47141
02d6b816e4b3 move int::ring_div instance upward, simplify several proofs
huffman
parents: 47140
diff changeset
  2308
  using mod_div_equality [of m n] by arith
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2309
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2310
55085
0e8e4dc55866 moved 'fundef_cong' attribute (and other basic 'fun' stuff) up the dependency chain
blanchet
parents: 54489
diff changeset
  2311
subsubsection {* Proving  @{term "a div (b * c) = (a div b) div c"} *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2312
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2313
(*The condition c>0 seems necessary.  Consider that 7 div ~6 = ~2 but
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2314
  7 div 2 div ~3 = 3 div ~3 = ~1.  The subcase (a div b) mod c = 0 seems
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2315
  to cause particular problems.*)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2316
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2317
text{*first, four lemmas to bound the remainder for the cases b<0 and b>0 *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2318
55085
0e8e4dc55866 moved 'fundef_cong' attribute (and other basic 'fun' stuff) up the dependency chain
blanchet
parents: 54489
diff changeset
  2319
lemma zmult2_lemma_aux1: "[| (0::int) < c;  b < r;  r \<le> 0 |] ==> b * c < b * (q mod c) + r"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2320
apply (subgoal_tac "b * (c - q mod c) < r * 1")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2321
 apply (simp add: algebra_simps)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2322
apply (rule order_le_less_trans)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2323
 apply (erule_tac [2] mult_strict_right_mono)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2324
 apply (rule mult_left_mono_neg)
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35050
diff changeset
  2325
  using add1_zle_eq[of "q mod c"]apply(simp add: algebra_simps)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2326
 apply (simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2327
apply (simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2328
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2329
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2330
lemma zmult2_lemma_aux2:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2331
     "[| (0::int) < c;   b < r;  r \<le> 0 |] ==> b * (q mod c) + r \<le> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2332
apply (subgoal_tac "b * (q mod c) \<le> 0")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2333
 apply arith
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2334
apply (simp add: mult_le_0_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2335
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2336
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2337
lemma zmult2_lemma_aux3: "[| (0::int) < c;  0 \<le> r;  r < b |] ==> 0 \<le> b * (q mod c) + r"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2338
apply (subgoal_tac "0 \<le> b * (q mod c) ")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2339
apply arith
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2340
apply (simp add: zero_le_mult_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2341
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2342
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2343
lemma zmult2_lemma_aux4: "[| (0::int) < c; 0 \<le> r; r < b |] ==> b * (q mod c) + r < b * c"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2344
apply (subgoal_tac "r * 1 < b * (c - q mod c) ")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2345
 apply (simp add: right_diff_distrib)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2346
apply (rule order_less_le_trans)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2347
 apply (erule mult_strict_right_mono)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2348
 apply (rule_tac [2] mult_left_mono)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2349
  apply simp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35050
diff changeset
  2350
 using add1_zle_eq[of "q mod c"] apply (simp add: algebra_simps)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2351
apply simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2352
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2353
46552
5d33a3269029 removing some unnecessary premises from Divides
bulwahn
parents: 46551
diff changeset
  2354
lemma zmult2_lemma: "[| divmod_int_rel a b (q, r); 0 < c |]  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2355
      ==> divmod_int_rel a (b * c) (q div c, b*(q mod c) + r)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  2356
by (auto simp add: mult.assoc divmod_int_rel_def linorder_neq_iff
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 48891
diff changeset
  2357
                   zero_less_mult_iff distrib_left [symmetric] 
47139
98bddfa0f717 extend definition of divmod_int_rel to handle denominator=0 case
huffman
parents: 47138
diff changeset
  2358
                   zmult2_lemma_aux1 zmult2_lemma_aux2 zmult2_lemma_aux3 zmult2_lemma_aux4 mult_less_0_iff split: split_if_asm)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2359
53068
41fc65da66f1 relaxed preconditions
haftmann
parents: 53067
diff changeset
  2360
lemma zdiv_zmult2_eq:
41fc65da66f1 relaxed preconditions
haftmann
parents: 53067
diff changeset
  2361
  fixes a b c :: int
41fc65da66f1 relaxed preconditions
haftmann
parents: 53067
diff changeset
  2362
  shows "0 \<le> c \<Longrightarrow> a div (b * c) = (a div b) div c"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2363
apply (case_tac "b = 0", simp)
53068
41fc65da66f1 relaxed preconditions
haftmann
parents: 53067
diff changeset
  2364
apply (force simp add: le_less divmod_int_rel_div_mod [THEN zmult2_lemma, THEN div_int_unique])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2365
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2366
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2367
lemma zmod_zmult2_eq:
53068
41fc65da66f1 relaxed preconditions
haftmann
parents: 53067
diff changeset
  2368
  fixes a b c :: int
41fc65da66f1 relaxed preconditions
haftmann
parents: 53067
diff changeset
  2369
  shows "0 \<le> c \<Longrightarrow> a mod (b * c) = b * (a div b mod c) + a mod b"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2370
apply (case_tac "b = 0", simp)
53068
41fc65da66f1 relaxed preconditions
haftmann
parents: 53067
diff changeset
  2371
apply (force simp add: le_less divmod_int_rel_div_mod [THEN zmult2_lemma, THEN mod_int_unique])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2372
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2373
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2374
lemma div_pos_geq:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2375
  fixes k l :: int
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2376
  assumes "0 < l" and "l \<le> k"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2377
  shows "k div l = (k - l) div l + 1"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2378
proof -
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2379
  have "k = (k - l) + l" by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2380
  then obtain j where k: "k = j + l" ..
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2381
  with assms show ?thesis by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2382
qed
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2383
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2384
lemma mod_pos_geq:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2385
  fixes k l :: int
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2386
  assumes "0 < l" and "l \<le> k"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2387
  shows "k mod l = (k - l) mod l"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2388
proof -
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2389
  have "k = (k - l) + l" by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2390
  then obtain j where k: "k = j + l" ..
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2391
  with assms show ?thesis by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2392
qed
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2393
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2394
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  2395
subsubsection {* Splitting Rules for div and mod *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2396
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2397
text{*The proofs of the two lemmas below are essentially identical*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2398
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2399
lemma split_pos_lemma:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2400
 "0<k ==> 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2401
    P(n div k :: int)(n mod k) = (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i j)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2402
apply (rule iffI, clarify)
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59556
diff changeset
  2403
 apply (erule_tac P="P x y" for x y in rev_mp)  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2404
 apply (subst mod_add_eq) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2405
 apply (subst zdiv_zadd1_eq) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2406
 apply (simp add: div_pos_pos_trivial mod_pos_pos_trivial)  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2407
txt{*converse direction*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2408
apply (drule_tac x = "n div k" in spec) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2409
apply (drule_tac x = "n mod k" in spec, simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2410
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2411
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2412
lemma split_neg_lemma:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2413
 "k<0 ==>
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2414
    P(n div k :: int)(n mod k) = (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i j)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2415
apply (rule iffI, clarify)
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59556
diff changeset
  2416
 apply (erule_tac P="P x y" for x y in rev_mp)  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2417
 apply (subst mod_add_eq) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2418
 apply (subst zdiv_zadd1_eq) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2419
 apply (simp add: div_neg_neg_trivial mod_neg_neg_trivial)  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2420
txt{*converse direction*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2421
apply (drule_tac x = "n div k" in spec) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2422
apply (drule_tac x = "n mod k" in spec, simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2423
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2424
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2425
lemma split_zdiv:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2426
 "P(n div k :: int) =
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2427
  ((k = 0 --> P 0) & 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2428
   (0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i)) & 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2429
   (k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i)))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2430
apply (case_tac "k=0", simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2431
apply (simp only: linorder_neq_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2432
apply (erule disjE) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2433
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P x"] 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2434
                      split_neg_lemma [of concl: "%x y. P x"])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2435
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2436
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2437
lemma split_zmod:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2438
 "P(n mod k :: int) =
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2439
  ((k = 0 --> P n) & 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2440
   (0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P j)) & 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2441
   (k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P j)))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2442
apply (case_tac "k=0", simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2443
apply (simp only: linorder_neq_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2444
apply (erule disjE) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2445
 apply (simp_all add: split_pos_lemma [of concl: "%x y. P y"] 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2446
                      split_neg_lemma [of concl: "%x y. P y"])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2447
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2448
33730
1755ca4ec022 Fixed splitting of div and mod on integers (split theorem differed from implementation).
webertj
parents: 33728
diff changeset
  2449
text {* Enable (lin)arith to deal with @{const div} and @{const mod}
1755ca4ec022 Fixed splitting of div and mod on integers (split theorem differed from implementation).
webertj
parents: 33728
diff changeset
  2450
  when these are applied to some constant that is of the form
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2451
  @{term "numeral k"}: *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2452
declare split_zdiv [of _ _ "numeral k", arith_split] for k
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2453
declare split_zmod [of _ _ "numeral k", arith_split] for k
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2454
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2455
47166
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2456
subsubsection {* Computing @{text "div"} and @{text "mod"} with shifting *}
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2457
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2458
lemma pos_divmod_int_rel_mult_2:
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2459
  assumes "0 \<le> b"
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2460
  assumes "divmod_int_rel a b (q, r)"
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2461
  shows "divmod_int_rel (1 + 2*a) (2*b) (q, 1 + 2*r)"
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2462
  using assms unfolding divmod_int_rel_def by auto
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2463
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2464
declaration {* K (Lin_Arith.add_simps @{thms uminus_numeral_One}) *}
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
  2465
47166
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2466
lemma neg_divmod_int_rel_mult_2:
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2467
  assumes "b \<le> 0"
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2468
  assumes "divmod_int_rel (a + 1) b (q, r)"
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2469
  shows "divmod_int_rel (1 + 2*a) (2*b) (q, 2*r - 1)"
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2470
  using assms unfolding divmod_int_rel_def by auto
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2471
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2472
text{*computing div by shifting *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2473
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2474
lemma pos_zdiv_mult_2: "(0::int) \<le> a ==> (1 + 2*b) div (2*a) = b div a"
47166
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2475
  using pos_divmod_int_rel_mult_2 [OF _ divmod_int_rel_div_mod]
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2476
  by (rule div_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2477
35815
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  2478
lemma neg_zdiv_mult_2: 
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35673
diff changeset
  2479
  assumes A: "a \<le> (0::int)" shows "(1 + 2*b) div (2*a) = (b+1) div a"
47166
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2480
  using neg_divmod_int_rel_mult_2 [OF A divmod_int_rel_div_mod]
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2481
  by (rule div_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2482
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2483
(* FIXME: add rules for negative numerals *)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2484
lemma zdiv_numeral_Bit0 [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2485
  "numeral (Num.Bit0 v) div numeral (Num.Bit0 w) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2486
    numeral v div (numeral w :: int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2487
  unfolding numeral.simps unfolding mult_2 [symmetric]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2488
  by (rule div_mult_mult1, simp)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2489
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2490
lemma zdiv_numeral_Bit1 [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2491
  "numeral (Num.Bit1 v) div numeral (Num.Bit0 w) =  
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2492
    (numeral v div (numeral w :: int))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2493
  unfolding numeral.simps
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  2494
  unfolding mult_2 [symmetric] add.commute [of _ 1]
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2495
  by (rule pos_zdiv_mult_2, simp)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2496
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2497
lemma pos_zmod_mult_2:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2498
  fixes a b :: int
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2499
  assumes "0 \<le> a"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2500
  shows "(1 + 2 * b) mod (2 * a) = 1 + 2 * (b mod a)"
47166
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2501
  using pos_divmod_int_rel_mult_2 [OF assms divmod_int_rel_div_mod]
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2502
  by (rule mod_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2503
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2504
lemma neg_zmod_mult_2:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2505
  fixes a b :: int
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2506
  assumes "a \<le> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2507
  shows "(1 + 2 * b) mod (2 * a) = 2 * ((b + 1) mod a) - 1"
47166
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2508
  using neg_divmod_int_rel_mult_2 [OF assms divmod_int_rel_div_mod]
108bf76ca00c tuned proofs
huffman
parents: 47165
diff changeset
  2509
  by (rule mod_int_unique)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2510
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2511
(* FIXME: add rules for negative numerals *)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2512
lemma zmod_numeral_Bit0 [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2513
  "numeral (Num.Bit0 v) mod numeral (Num.Bit0 w) =  
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2514
    (2::int) * (numeral v mod numeral w)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2515
  unfolding numeral_Bit0 [of v] numeral_Bit0 [of w]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2516
  unfolding mult_2 [symmetric] by (rule mod_mult_mult1)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2517
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2518
lemma zmod_numeral_Bit1 [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2519
  "numeral (Num.Bit1 v) mod numeral (Num.Bit0 w) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2520
    2 * (numeral v mod numeral w) + (1::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2521
  unfolding numeral_Bit1 [of v] numeral_Bit0 [of w]
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  2522
  unfolding mult_2 [symmetric] add.commute [of _ 1]
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2523
  by (rule pos_zmod_mult_2, simp)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2524
39489
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2525
lemma zdiv_eq_0_iff:
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2526
 "(i::int) div k = 0 \<longleftrightarrow> k=0 \<or> 0\<le>i \<and> i<k \<or> i\<le>0 \<and> k<i" (is "?L = ?R")
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2527
proof
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2528
  assume ?L
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2529
  have "?L \<longrightarrow> ?R" by (rule split_zdiv[THEN iffD2]) simp
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2530
  with `?L` show ?R by blast
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2531
next
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2532
  assume ?R thus ?L
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2533
    by(auto simp: div_pos_pos_trivial div_neg_neg_trivial)
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2534
qed
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2535
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2536
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  2537
subsubsection {* Quotients of Signs *}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2538
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2539
lemma div_neg_pos_less0: "[| a < (0::int);  0 < b |] ==> a div b < 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2540
apply (subgoal_tac "a div b \<le> -1", force)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2541
apply (rule order_trans)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2542
apply (rule_tac a' = "-1" in zdiv_mono1)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2543
apply (auto simp add: div_eq_minus1)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2544
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2545
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2546
lemma div_nonneg_neg_le0: "[| (0::int) \<le> a; b < 0 |] ==> a div b \<le> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2547
by (drule zdiv_mono1_neg, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2548
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2549
lemma div_nonpos_pos_le0: "[| (a::int) \<le> 0; b > 0 |] ==> a div b \<le> 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2550
by (drule zdiv_mono1, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2551
33804
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2552
text{* Now for some equivalences of the form @{text"a div b >=< 0 \<longleftrightarrow> \<dots>"}
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2553
conditional upon the sign of @{text a} or @{text b}. There are many more.
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2554
They should all be simp rules unless that causes too much search. *}
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2555
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2556
lemma pos_imp_zdiv_nonneg_iff: "(0::int) < b ==> (0 \<le> a div b) = (0 \<le> a)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2557
apply auto
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2558
apply (drule_tac [2] zdiv_mono1)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2559
apply (auto simp add: linorder_neq_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2560
apply (simp (no_asm_use) add: linorder_not_less [symmetric])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2561
apply (blast intro: div_neg_pos_less0)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2562
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2563
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2564
lemma neg_imp_zdiv_nonneg_iff:
33804
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2565
  "b < (0::int) ==> (0 \<le> a div b) = (a \<le> (0::int))"
47159
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47142
diff changeset
  2566
apply (subst div_minus_minus [symmetric])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2567
apply (subst pos_imp_zdiv_nonneg_iff, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2568
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2569
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2570
(*But not (a div b \<le> 0 iff a\<le>0); consider a=1, b=2 when a div b = 0.*)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2571
lemma pos_imp_zdiv_neg_iff: "(0::int) < b ==> (a div b < 0) = (a < 0)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2572
by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2573
39489
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2574
lemma pos_imp_zdiv_pos_iff:
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2575
  "0<k \<Longrightarrow> 0 < (i::int) div k \<longleftrightarrow> k \<le> i"
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2576
using pos_imp_zdiv_nonneg_iff[of k i] zdiv_eq_0_iff[of i k]
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2577
by arith
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2578
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2579
(*Again the law fails for \<le>: consider a = -1, b = -2 when a div b = 0*)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2580
lemma neg_imp_zdiv_neg_iff: "b < (0::int) ==> (a div b < 0) = (0 < a)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2581
by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2582
33804
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2583
lemma nonneg1_imp_zdiv_pos_iff:
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2584
  "(0::int) <= a \<Longrightarrow> (a div b > 0) = (a >= b & b>0)"
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2585
apply rule
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2586
 apply rule
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2587
  using div_pos_pos_trivial[of a b]apply arith
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2588
 apply(cases "b=0")apply simp
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2589
 using div_nonneg_neg_le0[of a b]apply arith
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2590
using int_one_le_iff_zero_less[of "a div b"] zdiv_mono1[of b a b]apply simp
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2591
done
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
  2592
39489
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2593
lemma zmod_le_nonneg_dividend: "(m::int) \<ge> 0 ==> m mod k \<le> m"
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2594
apply (rule split_zmod[THEN iffD2])
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44766
diff changeset
  2595
apply(fastforce dest: q_pos_lemma intro: split_mult_pos_le)
39489
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2596
done
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2597
8bb7f32a3a08 added lemmas
nipkow
parents: 38715
diff changeset
  2598
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2599
subsubsection {* The Divides Relation *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2600
58953
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
  2601
lemma dvd_eq_mod_eq_0_numeral:
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
  2602
  "numeral x dvd (numeral y :: 'a) \<longleftrightarrow> numeral y mod numeral x = (0 :: 'a::semiring_div)"
2e19b392d9e3 self-contained simp rules for dvd on numerals
haftmann
parents: 58911
diff changeset
  2603
  by (fact dvd_eq_mod_eq_0)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2604
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2605
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2606
subsubsection {* Further properties *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2607
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2608
lemma zmult_div_cancel: "(n::int) * (m div n) = m - (m mod n)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2609
  using zmod_zdiv_equality[where a="m" and b="n"]
47142
d64fa2ca54b8 remove redundant lemmas
huffman
parents: 47141
diff changeset
  2610
  by (simp add: algebra_simps) (* FIXME: generalize *)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2611
58786
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  2612
instance int :: semiring_numeral_div
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  2613
  by intro_classes (auto intro: zmod_le_nonneg_dividend
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  2614
    simp add: zmult_div_cancel
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  2615
    pos_imp_zdiv_pos_iff div_pos_pos_trivial mod_pos_pos_trivial
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  2616
    zmod_zmult2_eq zdiv_zmult2_eq)
fa5b67fb70ad more simp rules;
haftmann
parents: 58778
diff changeset
  2617
  
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2618
lemma zdiv_int: "int (a div b) = (int a) div (int b)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2619
apply (subst split_div, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2620
apply (subst split_zdiv, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2621
apply (rule_tac a="int (b * i) + int j" and b="int b" and r="int j" and r'=ja in unique_quotient)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2622
apply (auto simp add: divmod_int_rel_def of_nat_mult)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2623
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2624
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2625
lemma zmod_int: "int (a mod b) = (int a) mod (int b)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2626
apply (subst split_mod, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2627
apply (subst split_zmod, auto)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2628
apply (rule_tac a="int (b * i) + int j" and b="int b" and q="int i" and q'=ia 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2629
       in unique_remainder)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2630
apply (auto simp add: divmod_int_rel_def of_nat_mult)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2631
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2632
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2633
lemma abs_div: "(y::int) dvd x \<Longrightarrow> abs (x div y) = abs x div abs y"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2634
by (unfold dvd_def, cases "y=0", auto simp add: abs_mult)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2635
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2636
text{*Suggested by Matthias Daum*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2637
lemma int_power_div_base:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2638
     "\<lbrakk>0 < m; 0 < k\<rbrakk> \<Longrightarrow> k ^ m div k = (k::int) ^ (m - Suc 0)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2639
apply (subgoal_tac "k ^ m = k ^ ((m - Suc 0) + Suc 0)")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2640
 apply (erule ssubst)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2641
 apply (simp only: power_add)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2642
 apply simp_all
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2643
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2644
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2645
text {* by Brian Huffman *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2646
lemma zminus_zmod: "- ((x::int) mod m) mod m = - x mod m"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2647
by (rule mod_minus_eq [symmetric])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2648
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2649
lemma zdiff_zmod_left: "(x mod m - y) mod m = (x - y) mod (m::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2650
by (rule mod_diff_left_eq [symmetric])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2651
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2652
lemma zdiff_zmod_right: "(x - y mod m) mod m = (x - y) mod (m::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2653
by (rule mod_diff_right_eq [symmetric])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2654
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2655
lemmas zmod_simps =
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2656
  mod_add_left_eq  [symmetric]
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2657
  mod_add_right_eq [symmetric]
47142
d64fa2ca54b8 remove redundant lemmas
huffman
parents: 47141
diff changeset
  2658
  mod_mult_right_eq[symmetric]
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2659
  mod_mult_left_eq [symmetric]
47164
6a4c479ba94f generalized lemma zpower_zmod
huffman
parents: 47163
diff changeset
  2660
  power_mod
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2661
  zminus_zmod zdiff_zmod_left zdiff_zmod_right
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2662
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2663
text {* Distributive laws for function @{text nat}. *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2664
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2665
lemma nat_div_distrib: "0 \<le> x \<Longrightarrow> nat (x div y) = nat x div nat y"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2666
apply (rule linorder_cases [of y 0])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2667
apply (simp add: div_nonneg_neg_le0)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2668
apply simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2669
apply (simp add: nat_eq_iff pos_imp_zdiv_nonneg_iff zdiv_int)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2670
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2671
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2672
(*Fails if y<0: the LHS collapses to (nat z) but the RHS doesn't*)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2673
lemma nat_mod_distrib:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2674
  "\<lbrakk>0 \<le> x; 0 \<le> y\<rbrakk> \<Longrightarrow> nat (x mod y) = nat x mod nat y"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2675
apply (case_tac "y = 0", simp)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2676
apply (simp add: nat_eq_iff zmod_int)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2677
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2678
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2679
text  {* transfer setup *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2680
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2681
lemma transfer_nat_int_functions:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2682
    "(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> (nat x) div (nat y) = nat (x div y)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2683
    "(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> (nat x) mod (nat y) = nat (x mod y)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2684
  by (auto simp add: nat_div_distrib nat_mod_distrib)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2685
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2686
lemma transfer_nat_int_function_closures:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2687
    "(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> x div y >= 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2688
    "(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> x mod y >= 0"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2689
  apply (cases "y = 0")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2690
  apply (auto simp add: pos_imp_zdiv_nonneg_iff)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2691
  apply (cases "y = 0")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2692
  apply auto
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2693
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2694
35644
d20cf282342e transfer: avoid camel case
haftmann
parents: 35367
diff changeset
  2695
declare transfer_morphism_nat_int [transfer add return:
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2696
  transfer_nat_int_functions
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2697
  transfer_nat_int_function_closures
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2698
]
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2699
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2700
lemma transfer_int_nat_functions:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2701
    "(int x) div (int y) = int (x div y)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2702
    "(int x) mod (int y) = int (x mod y)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2703
  by (auto simp add: zdiv_int zmod_int)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2704
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2705
lemma transfer_int_nat_function_closures:
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2706
    "is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> is_nat (x div y)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2707
    "is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> is_nat (x mod y)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2708
  by (simp_all only: is_nat_def transfer_nat_int_function_closures)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2709
35644
d20cf282342e transfer: avoid camel case
haftmann
parents: 35367
diff changeset
  2710
declare transfer_morphism_int_nat [transfer add return:
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2711
  transfer_int_nat_functions
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2712
  transfer_int_nat_function_closures
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2713
]
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2714
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2715
text{*Suggested by Matthias Daum*}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2716
lemma int_div_less_self: "\<lbrakk>0 < x; 1 < k\<rbrakk> \<Longrightarrow> x div k < (x::int)"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2717
apply (subgoal_tac "nat x div nat k < nat x")
34225
21c5405deb6b removed legacy asm_lr
nipkow
parents: 34126
diff changeset
  2718
 apply (simp add: nat_div_distrib [symmetric])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2719
apply (rule Divides.div_less_dividend, simp_all)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2720
done
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2721
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2722
lemma zmod_eq_dvd_iff: "(x::int) mod n = y mod n \<longleftrightarrow> n dvd x - y"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2723
proof
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2724
  assume H: "x mod n = y mod n"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2725
  hence "x mod n - y mod n = 0" by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2726
  hence "(x mod n - y mod n) mod n = 0" by simp 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2727
  hence "(x - y) mod n = 0" by (simp add: mod_diff_eq[symmetric])
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2728
  thus "n dvd x - y" by (simp add: dvd_eq_mod_eq_0)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2729
next
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2730
  assume H: "n dvd x - y"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2731
  then obtain k where k: "x-y = n*k" unfolding dvd_def by blast
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2732
  hence "x = n*k + y" by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2733
  hence "x mod n = (n*k + y) mod n" by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2734
  thus "x mod n = y mod n" by (simp add: mod_add_left_eq)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2735
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2736
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2737
lemma nat_mod_eq_lemma: assumes xyn: "(x::nat) mod n = y  mod n" and xy:"y \<le> x"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2738
  shows "\<exists>q. x = y + n * q"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2739
proof-
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2740
  from xy have th: "int x - int y = int (x - y)" by simp 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2741
  from xyn have "int x mod int n = int y mod int n" 
46551
866bce5442a3 simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
huffman
parents: 46026
diff changeset
  2742
    by (simp add: zmod_int [symmetric])
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2743
  hence "int n dvd int x - int y" by (simp only: zmod_eq_dvd_iff[symmetric]) 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2744
  hence "n dvd x - y" by (simp add: th zdvd_int)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2745
  then show ?thesis using xy unfolding dvd_def apply clarsimp apply (rule_tac x="k" in exI) by arith
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2746
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2747
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2748
lemma nat_mod_eq_iff: "(x::nat) mod n = y mod n \<longleftrightarrow> (\<exists>q1 q2. x + n * q1 = y + n * q2)" 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2749
  (is "?lhs = ?rhs")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2750
proof
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2751
  assume H: "x mod n = y mod n"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2752
  {assume xy: "x \<le> y"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2753
    from H have th: "y mod n = x mod n" by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2754
    from nat_mod_eq_lemma[OF th xy] have ?rhs 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2755
      apply clarify  apply (rule_tac x="q" in exI) by (rule exI[where x="0"], simp)}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2756
  moreover
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2757
  {assume xy: "y \<le> x"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2758
    from nat_mod_eq_lemma[OF H xy] have ?rhs 
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2759
      apply clarify  apply (rule_tac x="0" in exI) by (rule_tac x="q" in exI, simp)}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2760
  ultimately  show ?rhs using linear[of x y] by blast  
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2761
next
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2762
  assume ?rhs then obtain q1 q2 where q12: "x + n * q1 = y + n * q2" by blast
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2763
  hence "(x + n * q1) mod n = (y + n * q2) mod n" by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2764
  thus  ?lhs by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2765
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2766
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  2767
text {*
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  2768
  This re-embedding of natural division on integers goes back to the
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  2769
  time when numerals had been signed numerals.  It should
53070
6a3410845bb2 spelling and typos
haftmann
parents: 53069
diff changeset
  2770
  now be replaced by the algorithm developed in @{class semiring_numeral_div}.  
53067
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  2771
*}
ee0b7c2315d2 type class for generic division algorithm on numerals
haftmann
parents: 53066
diff changeset
  2772
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2773
lemma div_nat_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2774
  "(numeral v :: nat) div numeral v' = nat (numeral v div numeral v')"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2775
  by (simp add: nat_div_distrib)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2776
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2777
lemma one_div_nat_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2778
  "Suc 0 div numeral v' = nat (1 div numeral v')"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2779
  by (subst nat_div_distrib, simp_all)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2780
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2781
lemma mod_nat_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2782
  "(numeral v :: nat) mod numeral v' = nat (numeral v mod numeral v')"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2783
  by (simp add: nat_mod_distrib)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2784
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2785
lemma one_mod_nat_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2786
  "Suc 0 mod numeral v' = nat (1 mod numeral v')"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2787
  by (subst nat_mod_distrib) simp_all
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2788
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2789
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2790
subsubsection {* Tools setup *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2791
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2792
text {* Nitpick *}
34126
8a2c5d7aff51 polished Nitpick's binary integer support etc.;
blanchet
parents: 33804
diff changeset
  2793
41792
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41550
diff changeset
  2794
lemmas [nitpick_unfold] = dvd_eq_mod_eq_0 mod_div_equality' zmod_zdiv_equality'
34126
8a2c5d7aff51 polished Nitpick's binary integer support etc.;
blanchet
parents: 33804
diff changeset
  2795
35673
178caf872f95 weakend class ring_div; tuned
haftmann
parents: 35644
diff changeset
  2796
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2797
subsubsection {* Code generation *}
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2798
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2799
definition divmod_abs :: "int \<Rightarrow> int \<Rightarrow> int \<times> int"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2800
where
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2801
  "divmod_abs k l = (\<bar>k\<bar> div \<bar>l\<bar>, \<bar>k\<bar> mod \<bar>l\<bar>)"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2802
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2803
lemma fst_divmod_abs [simp]:
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2804
  "fst (divmod_abs k l) = \<bar>k\<bar> div \<bar>l\<bar>"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2805
  by (simp add: divmod_abs_def)
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2806
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2807
lemma snd_divmod_abs [simp]:
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2808
  "snd (divmod_abs k l) = \<bar>k\<bar> mod \<bar>l\<bar>"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2809
  by (simp add: divmod_abs_def)
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2810
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2811
lemma divmod_abs_code [code]:
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2812
  "divmod_abs (Int.Pos k) (Int.Pos l) = divmod k l"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2813
  "divmod_abs (Int.Neg k) (Int.Neg l) = divmod k l"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2814
  "divmod_abs (Int.Neg k) (Int.Pos l) = divmod k l"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2815
  "divmod_abs (Int.Pos k) (Int.Neg l) = divmod k l"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2816
  "divmod_abs j 0 = (0, \<bar>j\<bar>)"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2817
  "divmod_abs 0 j = (0, 0)"
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2818
  by (simp_all add: prod_eq_iff)
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2819
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2820
lemma divmod_int_divmod_abs:
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2821
  "divmod_int k l = (if k = 0 then (0, 0) else if l = 0 then (0, k) else
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2822
  apsnd ((op *) (sgn l)) (if 0 < l \<and> 0 \<le> k \<or> l < 0 \<and> k < 0
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2823
    then divmod_abs k l
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2824
    else (let (r, s) = divmod_abs k l in
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46560
diff changeset
  2825
       if s = 0 then (- r, 0) else (- r - 1, \<bar>l\<bar> - s))))"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2826
proof -
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2827
  have aux: "\<And>q::int. - k = l * q \<longleftrightarrow> k = l * - q" by auto
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2828
  show ?thesis
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2829
    by (simp add: prod_eq_iff split_def Let_def)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2830
      (auto simp add: aux not_less not_le zdiv_zminus1_eq_if
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2831
      zmod_zminus1_eq_if zdiv_zminus2_eq_if zmod_zminus2_eq_if)
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2832
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2833
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2834
lemma divmod_int_code [code]:
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2835
  "divmod_int k l = (if k = 0 then (0, 0) else if l = 0 then (0, k) else
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2836
  apsnd ((op *) (sgn l)) (if sgn k = sgn l
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2837
    then divmod_abs k l
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2838
    else (let (r, s) = divmod_abs k l in
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2839
      if s = 0 then (- r, 0) else (- r - 1, \<bar>l\<bar> - s))))"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2840
proof -
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2841
  have "k \<noteq> 0 \<Longrightarrow> l \<noteq> 0 \<Longrightarrow> 0 < l \<and> 0 \<le> k \<or> l < 0 \<and> k < 0 \<longleftrightarrow> sgn k = sgn l"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2842
    by (auto simp add: not_less sgn_if)
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2843
  then show ?thesis by (simp add: divmod_int_divmod_abs)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2844
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2845
53069
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2846
hide_const (open) divmod_abs
d165213e3924 execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents: 53068
diff changeset
  2847
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52398
diff changeset
  2848
code_identifier
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52398
diff changeset
  2849
  code_module Divides \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33361
diff changeset
  2850
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
  2851
end