src/HOL/Divides.thy
author haftmann
Sun, 11 Sep 2022 16:21:20 +0000
changeset 76120 3ae579092045
parent 76106 98cab94326d4
child 76141 e7497a1de8b9
permissions -rw-r--r--
dropped auxiliary lemma
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
64785
ae0bbc8e45ad moved euclidean ring to HOL
haftmann
parents: 64715
diff changeset
     6
section \<open>More on quotient and remainder\<close>
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
66817
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
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
66817
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
    12
subsection \<open>More on division\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60690
diff changeset
    13
75875
48d032035744 streamlined primitive definitions for integer division
haftmann
parents: 75669
diff changeset
    14
subsubsection \<open>Monotonicity in the First Argument (Dividend)\<close>
48d032035744 streamlined primitive definitions for integer division
haftmann
parents: 75669
diff changeset
    15
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    16
lemma unique_quotient_lemma:
68626
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    17
  assumes "b * q' + r' \<le> b * q + r" "0 \<le> r'" "r' < b" "r < b" shows "q' \<le> (q::int)"
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    18
proof -
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    19
  have "r' + b * (q'-q) \<le> r"
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    20
    using assms by (simp add: right_diff_distrib)
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    21
  moreover have "0 < b * (1 + q - q') "
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    22
    using assms by (simp add: right_diff_distrib distrib_left)
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    23
  moreover have "b * q' < b * (1 + q)"
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    24
    using assms by (simp add: right_diff_distrib distrib_left)
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    25
  ultimately show ?thesis
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    26
    using assms by (simp add: mult_less_cancel_left)
330c0ec897a4 de-applying
paulson <lp15@cam.ac.uk>
parents: 68260
diff changeset
    27
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    28
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    29
lemma unique_quotient_lemma_neg:
60868
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
    30
  "b * q' + r' \<le> b*q + r \<Longrightarrow> r \<le> 0 \<Longrightarrow> b < r \<Longrightarrow> b < r' \<Longrightarrow> q \<le> (q'::int)"
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
    31
  using unique_quotient_lemma[where b = "-b" and r = "-r'" and r'="-r"] by auto
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    32
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    33
lemma zdiv_mono1:
75875
48d032035744 streamlined primitive definitions for integer division
haftmann
parents: 75669
diff changeset
    34
  \<open>a div b \<le> a' div b\<close>
48d032035744 streamlined primitive definitions for integer division
haftmann
parents: 75669
diff changeset
    35
  if \<open>a \<le> a'\<close> \<open>0 < b\<close>
48d032035744 streamlined primitive definitions for integer division
haftmann
parents: 75669
diff changeset
    36
  for a b b' :: int
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    37
proof (rule unique_quotient_lemma)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    38
  show "b * (a div b) + a mod b \<le> b * (a' div b) + a' mod b"
75875
48d032035744 streamlined primitive definitions for integer division
haftmann
parents: 75669
diff changeset
    39
    using \<open>a \<le> a'\<close> by auto
48d032035744 streamlined primitive definitions for integer division
haftmann
parents: 75669
diff changeset
    40
qed (use that in auto)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    41
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    42
lemma zdiv_mono1_neg:
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    43
  fixes b::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    44
  assumes "a \<le> a'" "b < 0" shows "a' div b \<le> a div b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    45
proof (rule unique_quotient_lemma_neg)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    46
  show "b * (a div b) + a mod b \<le> b * (a' div b) + a' mod b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    47
    using assms(1) by auto
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    48
qed (use assms in auto)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    49
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    50
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60690
diff changeset
    51
subsubsection \<open>Monotonicity in the Second Argument (Divisor)\<close>
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    52
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    53
lemma q_pos_lemma:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    54
  fixes q'::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    55
  assumes "0 \<le> b'*q' + r'" "r' < b'" "0 < b'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    56
  shows "0 \<le> q'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    57
proof -
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    58
  have "0 < b'* (q' + 1)"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    59
    using assms by (simp add: distrib_left)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    60
  with assms show ?thesis
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    61
    by (simp add: zero_less_mult_iff)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    62
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    63
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    64
lemma zdiv_mono2_lemma:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    65
  fixes q'::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    66
  assumes eq: "b*q + r = b'*q' + r'" and le: "0 \<le> b'*q' + r'" and "r' < b'" "0 \<le> r" "0 < b'" "b' \<le> b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    67
  shows "q \<le> q'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    68
proof -
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    69
  have "0 \<le> q'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    70
    using q_pos_lemma le \<open>r' < b'\<close> \<open>0 < b'\<close> by blast
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    71
  moreover have "b*q = r' - r + b'*q'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    72
    using eq by linarith
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    73
  ultimately have "b*q < b* (q' + 1)"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    74
    using mult_right_mono assms unfolding distrib_left by fastforce
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    75
  with assms show ?thesis
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    76
    by (simp add: mult_less_cancel_left_pos)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    77
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    78
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    79
lemma zdiv_mono2:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    80
  fixes a::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    81
  assumes "0 \<le> a" "0 < b'" "b' \<le> b" shows "a div b \<le> a div b'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    82
proof (rule zdiv_mono2_lemma)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    83
  have "b \<noteq> 0"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    84
    using assms by linarith
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    85
  show "b * (a div b) + a mod b = b' * (a div b') + a mod b'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    86
    by simp
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    87
qed (use assms in auto)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    88
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
    89
lemma zdiv_mono2_neg_lemma:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    90
    fixes q'::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    91
    assumes "b*q + r = b'*q' + r'" "b'*q' + r' < 0" "r < b" "0 \<le> r'" "0 < b'" "b' \<le> b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    92
    shows "q' \<le> q"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    93
proof -
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    94
  have "b'*q' < 0"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    95
    using assms by linarith
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    96
  with assms have "q' \<le> 0"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    97
    by (simp add: mult_less_0_iff)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    98
  have "b*q' \<le> b'*q'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
    99
    by (simp add: \<open>q' \<le> 0\<close> assms(6) mult_right_mono_neg)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   100
  then have "b*q' < b* (q + 1)"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   101
    using assms by (simp add: distrib_left)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   102
  then show ?thesis
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   103
    using assms by (simp add: mult_less_cancel_left)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   104
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   105
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   106
lemma zdiv_mono2_neg:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   107
  fixes a::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   108
  assumes "a < 0" "0 < b'" "b' \<le> b" shows "a div b' \<le> a div b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   109
proof (rule zdiv_mono2_neg_lemma)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   110
  have "b \<noteq> 0"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   111
    using assms by linarith
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   112
  show "b * (a div b) + a mod b = b' * (a div b') + a mod b'"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   113
    by simp
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   114
qed (use assms in auto)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   115
75881
83e4b6a5e7de streamlined theorems
haftmann
parents: 75880
diff changeset
   116
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60690
diff changeset
   117
subsubsection \<open>Quotients of Signs\<close>
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   118
67083
6b2c0681ef28 new simp rule
haftmann
parents: 66886
diff changeset
   119
lemma div_eq_minus1: "0 < b \<Longrightarrow> - 1 div b = - 1" for b :: int
6b2c0681ef28 new simp rule
haftmann
parents: 66886
diff changeset
   120
  by (simp add: divide_int_def)
60868
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   121
67083
6b2c0681ef28 new simp rule
haftmann
parents: 66886
diff changeset
   122
lemma zmod_minus1: "0 < b \<Longrightarrow> - 1 mod b = b - 1" for b :: int
6b2c0681ef28 new simp rule
haftmann
parents: 66886
diff changeset
   123
  by (auto simp add: modulo_int_def)
60868
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   124
71991
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   125
lemma minus_mod_int_eq:
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   126
  \<open>- k mod l = l - 1 - (k - 1) mod l\<close> if \<open>l \<ge> 0\<close> for k l :: int
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   127
proof (cases \<open>l = 0\<close>)
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   128
  case True
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   129
  then show ?thesis
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   130
    by simp
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   131
next
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   132
  case False
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   133
  with that have \<open>l > 0\<close>
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   134
    by simp
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   135
  then show ?thesis
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   136
  proof (cases \<open>l dvd k\<close>)
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   137
    case True
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   138
    then obtain j where \<open>k = l * j\<close> ..
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   139
    moreover have \<open>(l * j mod l - 1) mod l = l - 1\<close>
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   140
      using \<open>l > 0\<close> by (simp add: zmod_minus1)
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   141
    then have \<open>(l * j - 1) mod l = l - 1\<close>
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   142
      by (simp only: mod_simps)
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   143
    ultimately show ?thesis
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   144
      by simp
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   145
  next
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   146
    case False
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   147
    moreover have 1: \<open>0 < k mod l\<close>
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   148
      using \<open>0 < l\<close> False le_less by fastforce
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   149
    moreover have 2: \<open>k mod l < 1 + l\<close>
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   150
      using \<open>0 < l\<close> pos_mod_bound[of l k] by linarith
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   151
    from 1 2 \<open>l > 0\<close> have \<open>(k mod l - 1) mod l = k mod l - 1\<close>
72610
paulson <lp15@cam.ac.uk>
parents: 72262
diff changeset
   152
      by (simp add: zmod_trivial_iff)
71991
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   153
    ultimately show ?thesis
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   154
      by (simp only: zmod_zminus1_eq_if)
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   155
         (simp add: mod_eq_0_iff_dvd algebra_simps mod_simps)
71991
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   156
  qed
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   157
qed
8bff286878bf misc lemma tuning
haftmann
parents: 71757
diff changeset
   158
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   159
lemma div_neg_pos_less0:
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   160
  fixes a::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   161
  assumes "a < 0" "0 < b" 
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   162
  shows "a div b < 0"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   163
proof -
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   164
  have "a div b \<le> - 1 div b"
68644
242d298526a3 de-applying and simplifying proofs
paulson <lp15@cam.ac.uk>
parents: 68631
diff changeset
   165
    using zdiv_mono1 assms by auto
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   166
  also have "... \<le> -1"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   167
    by (simp add: assms(2) div_eq_minus1)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   168
  finally show ?thesis 
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   169
    by force
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   170
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   171
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   172
lemma div_nonneg_neg_le0: "[| (0::int) \<le> a; b < 0 |] ==> a div b \<le> 0"
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   173
  by (drule zdiv_mono1_neg, auto)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   174
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   175
lemma div_nonpos_pos_le0: "[| (a::int) \<le> 0; b > 0 |] ==> a div b \<le> 0"
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   176
  by (drule zdiv_mono1, auto)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   177
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   178
text\<open>Now for some equivalences of the form \<open>a div b >=< 0 \<longleftrightarrow> \<dots>\<close>
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   179
conditional upon the sign of \<open>a\<close> or \<open>b\<close>. There are many more.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60690
diff changeset
   180
They should all be simp rules unless that causes too much search.\<close>
33804
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
   181
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   182
lemma pos_imp_zdiv_nonneg_iff:
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   183
      fixes a::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   184
      assumes "0 < b" 
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   185
      shows "(0 \<le> a div b) = (0 \<le> a)"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   186
proof
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   187
  show "0 \<le> a div b \<Longrightarrow> 0 \<le> a"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   188
    using assms
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   189
    by (simp add: linorder_not_less [symmetric]) (blast intro: div_neg_pos_less0)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   190
next
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   191
  assume "0 \<le> a"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   192
  then have "0 div b \<le> a div b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   193
    using zdiv_mono1 assms by blast
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   194
  then show "0 \<le> a div b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   195
    by auto
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   196
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   197
60868
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   198
lemma pos_imp_zdiv_pos_iff:
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   199
  "0<k \<Longrightarrow> 0 < (i::int) div k \<longleftrightarrow> k \<le> i"
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   200
  using pos_imp_zdiv_nonneg_iff[of k i] zdiv_eq_0_iff[of i k] by arith
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   201
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   202
lemma neg_imp_zdiv_nonneg_iff:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   203
  fixes a::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   204
  assumes "b < 0" 
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   205
  shows "(0 \<le> a div b) = (a \<le> 0)"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   206
  using assms by (simp add: div_minus_minus [of a, symmetric] pos_imp_zdiv_nonneg_iff del: div_minus_minus)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   207
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   208
(*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
   209
lemma pos_imp_zdiv_neg_iff: "(0::int) < b ==> (a div b < 0) = (a < 0)"
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   210
  by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   211
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   212
(*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
   213
lemma neg_imp_zdiv_neg_iff: "b < (0::int) ==> (a div b < 0) = (0 < a)"
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   214
  by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   215
33804
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
   216
lemma nonneg1_imp_zdiv_pos_iff:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   217
  fixes a::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   218
  assumes "0 \<le> a" 
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   219
  shows "a div b > 0 \<longleftrightarrow> a \<ge> b \<and> b>0"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   220
proof -
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   221
  have "0 < a div b \<Longrightarrow> b \<le> a"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   222
    using div_pos_pos_trivial[of a b] assms by arith
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   223
  moreover have "0 < a div b \<Longrightarrow> b > 0"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   224
    using assms div_nonneg_neg_le0[of a b]  by(cases "b=0"; force)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   225
  moreover have "b \<le> a \<and> 0 < b \<Longrightarrow> 0 < a div b"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   226
    using int_one_le_iff_zero_less[of "a div b"] zdiv_mono1[of b a b] by simp
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   227
  ultimately show ?thesis
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   228
    by blast
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   229
qed
33804
39b494e8c055 added lemma
nipkow
parents: 33730
diff changeset
   230
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   231
lemma zmod_le_nonneg_dividend: "(m::int) \<ge> 0 \<Longrightarrow> m mod k \<le> m"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   232
  by (rule split_zmod[THEN iffD2]) (fastforce dest: q_pos_lemma intro: split_mult_pos_le)
60930
dd8ab7252ba2 qualified adjust_*
haftmann
parents: 60868
diff changeset
   233
75876
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   234
lemma sgn_div_eq_sgn_mult:
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   235
  \<open>sgn (k div l) = of_bool (k div l \<noteq> 0) * sgn (k * l)\<close>
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   236
  for k l :: int
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   237
proof (cases \<open>k div l = 0\<close>)
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   238
  case True
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   239
  then show ?thesis
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   240
    by simp
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   241
next
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   242
  case False
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   243
  have \<open>0 \<le> \<bar>k\<bar> div \<bar>l\<bar>\<close>
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   244
    by (cases \<open>l = 0\<close>) (simp_all add: pos_imp_zdiv_nonneg_iff)
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   245
  then have \<open>\<bar>k\<bar> div \<bar>l\<bar> \<noteq> 0 \<longleftrightarrow> 0 < \<bar>k\<bar> div \<bar>l\<bar>\<close>
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   246
    by (simp add: less_le)
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   247
  also have \<open>\<dots> \<longleftrightarrow> \<bar>k\<bar> \<ge> \<bar>l\<bar>\<close>
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   248
    using False nonneg1_imp_zdiv_pos_iff by auto
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   249
  finally have *: \<open>\<bar>k\<bar> div \<bar>l\<bar> \<noteq> 0 \<longleftrightarrow> \<bar>l\<bar> \<le> \<bar>k\<bar>\<close> .
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   250
  show ?thesis
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   251
    using \<open>0 \<le> \<bar>k\<bar> div \<bar>l\<bar>\<close> False
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   252
  by (auto simp add: div_eq_div_abs [of k l] div_eq_sgn_abs [of k l]
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   253
    sgn_mult sgn_1_pos sgn_1_neg sgn_eq_0_iff nonneg1_imp_zdiv_pos_iff * dest: sgn_not_eq_imp)
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   254
qed
647879691c1c streamlined theorems and sections
haftmann
parents: 75875
diff changeset
   255
76053
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   256
lemma
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   257
  fixes a b q r :: int
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   258
  assumes \<open>a = b * q + r\<close> \<open>0 \<le> r\<close> \<open>r < b\<close>
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   259
  shows int_div_pos_eq:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   260
      \<open>a div b = q\<close> (is ?Q)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   261
    and int_mod_pos_eq:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   262
      \<open>a mod b = r\<close> (is ?R)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   263
proof -
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   264
  from assms have \<open>(a div b, a mod b) = (q, r)\<close>
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   265
    by (cases b q r a rule: euclidean_relationI)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   266
      (auto simp add: division_segment_int_def ac_simps dvd_add_left_iff dest: zdvd_imp_le)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   267
  then show ?Q and ?R
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   268
    by simp_all
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   269
qed
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   270
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   271
lemma int_div_neg_eq:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   272
  \<open>a div b = q\<close> if \<open>a = b * q + r\<close> \<open>r \<le> 0\<close> \<open>b < r\<close> for a b q r :: int
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   273
  using that int_div_pos_eq [of a \<open>- b\<close> \<open>- q\<close> \<open>- r\<close>] by simp_all
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   274
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   275
lemma int_mod_neg_eq:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   276
  \<open>a mod b = r\<close> if \<open>a = b * q + r\<close> \<open>r \<le> 0\<close> \<open>b < r\<close> for a b q r :: int
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   277
  using that int_div_neg_eq [of a b q r] by simp
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   278
60868
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   279
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   280
subsubsection \<open>Further properties\<close>
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   281
66817
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   282
lemma div_int_pos_iff:
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   283
  "k div l \<ge> 0 \<longleftrightarrow> k = 0 \<or> l = 0 \<or> k \<ge> 0 \<and> l \<ge> 0
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   284
    \<or> k < 0 \<and> l < 0"
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   285
  for k l :: int
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   286
proof (cases "k = 0 \<or> l = 0")
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   287
  case False
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   288
  then have *: "k \<noteq> 0" "l \<noteq> 0"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   289
    by auto
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   290
  then have "0 \<le> k div l \<Longrightarrow> \<not> k < 0 \<Longrightarrow> 0 \<le> l"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   291
    by (meson neg_imp_zdiv_neg_iff not_le not_less_iff_gr_or_eq)
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   292
  then show ?thesis
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   293
   using * by (auto simp add: pos_imp_zdiv_nonneg_iff neg_imp_zdiv_nonneg_iff)
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   294
qed auto
66817
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   295
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   296
lemma mod_int_pos_iff:
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   297
  "k mod l \<ge> 0 \<longleftrightarrow> l dvd k \<or> l = 0 \<and> k \<ge> 0 \<or> l > 0"
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   298
  for k l :: int
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   299
proof (cases "l > 0")
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   300
  case False
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   301
  then show ?thesis 
69695
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   302
    by (simp add: dvd_eq_mod_eq_0) (use neg_mod_sign [of l k] in \<open>auto simp add: le_less not_less\<close>)
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   303
qed auto
66817
0b12755ccbb2 euclidean rings need no normalization
haftmann
parents: 66816
diff changeset
   304
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   305
text \<open>Simplify expressions in which div and mod combine numerical constants\<close>
60868
dd18c33c001e direct bootstrap of integer division from natural division
haftmann
parents: 60867
diff changeset
   306
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   307
lemma abs_div: "(y::int) dvd x \<Longrightarrow> \<bar>x div y\<bar> = \<bar>x\<bar> div \<bar>y\<bar>"
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   308
  unfolding dvd_def by (cases "y=0") (auto simp add: abs_mult)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   309
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60690
diff changeset
   310
text\<open>Suggested by Matthias Daum\<close>
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   311
lemma int_power_div_base:
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   312
  fixes k :: int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   313
  assumes "0 < m" "0 < k"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   314
  shows "k ^ m div k = (k::int) ^ (m - Suc 0)"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   315
proof -
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   316
  have eq: "k ^ m = k ^ ((m - Suc 0) + Suc 0)"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   317
    by (simp add: assms)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   318
  show ?thesis
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   319
    using assms by (simp only: power_add eq) auto
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   320
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   321
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60690
diff changeset
   322
text\<open>Suggested by Matthias Daum\<close>
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   323
lemma int_div_less_self:
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   324
  fixes x::int
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   325
  assumes "0 < x" "1 < k"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   326
  shows  "x div k < x"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   327
proof -
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   328
  have "nat x div nat k < nat x"
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   329
    by (simp add: assms)
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   330
  with assms show ?thesis
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   331
    by (simp add: nat_div_distrib [symmetric])
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   332
qed
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   333
66837
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   334
lemma mod_eq_dvd_iff_nat:
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   335
  "m mod q = n mod q \<longleftrightarrow> q dvd m - n" if "m \<ge> n" for m n q :: nat
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   336
proof -
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   337
  have "int m mod int q = int n mod int q \<longleftrightarrow> int q dvd int m - int n"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   338
    by (simp add: mod_eq_dvd_iff)
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   339
  with that have "int (m mod q) = int (n mod q) \<longleftrightarrow> int q dvd int (m - n)"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   340
    by (simp only: of_nat_mod of_nat_diff)
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   341
  then show ?thesis
67118
ccab07d1196c more simplification rules
haftmann
parents: 67091
diff changeset
   342
    by simp
66837
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   343
qed
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   344
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   345
lemma mod_eq_nat1E:
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   346
  fixes m n q :: nat
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   347
  assumes "m mod q = n mod q" and "m \<ge> n"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   348
  obtains s where "m = n + q * s"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   349
proof -
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   350
  from assms have "q dvd m - n"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   351
    by (simp add: mod_eq_dvd_iff_nat)
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   352
  then obtain s where "m - n = q * s" ..
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   353
  with \<open>m \<ge> n\<close> have "m = n + q * s"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   354
    by simp
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   355
  with that show thesis .
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   356
qed
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   357
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   358
lemma mod_eq_nat2E:
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   359
  fixes m n q :: nat
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   360
  assumes "m mod q = n mod q" and "n \<ge> m"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   361
  obtains s where "n = m + q * s"
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   362
  using assms mod_eq_nat1E [of n q m] by (auto simp add: ac_simps)
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   363
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   364
lemma nat_mod_eq_lemma:
6ba663ff2b1c tuned proofs
haftmann
parents: 66817
diff changeset
   365
  assumes "(x::nat) mod n = y mod n" and "y \<le> x"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   366
  shows "\<exists>q. x = y + n * q"
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   367
  using assms by (rule mod_eq_nat1E) (rule exI)
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   368
60562
24af00b010cf Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents: 60517
diff changeset
   369
lemma nat_mod_eq_iff: "(x::nat) mod n = y mod n \<longleftrightarrow> (\<exists>q1 q2. x + n * q1 = y + n * q2)"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   370
  (is "?lhs = ?rhs")
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   371
proof
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   372
  assume H: "x mod n = y mod n"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   373
  {assume xy: "x \<le> y"
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   374
    from H have th: "y mod n = x mod n" by simp
60562
24af00b010cf Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents: 60517
diff changeset
   375
    from nat_mod_eq_lemma[OF th xy] have ?rhs
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   376
    proof
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   377
      fix q
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   378
      assume "y = x + n * q"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   379
      then have "x + n * q = y + n * 0"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   380
        by simp
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   381
      then show "\<exists>q1 q2. x + n * q1 = y + n * q2"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   382
        by blast
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   383
    qed}
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   384
  moreover
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   385
  {assume xy: "y \<le> x"
60562
24af00b010cf Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents: 60517
diff changeset
   386
    from nat_mod_eq_lemma[OF H xy] have ?rhs
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   387
    proof
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   388
      fix q
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   389
      assume "x = y + n * q"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   390
      then have "x + n * 0 = y + n * q"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   391
        by simp
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   392
      then show "\<exists>q1 q2. x + n * q1 = y + n * q2"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   393
        by blast
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 74101
diff changeset
   394
    qed}
60562
24af00b010cf Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents: 60517
diff changeset
   395
  ultimately  show ?rhs using linear[of x y] by blast
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   396
next
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   397
  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
   398
  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
   399
  thus  ?lhs by simp
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   400
qed
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   401
66808
1907167b6038 elementary definition of division on natural numbers
haftmann
parents: 66806
diff changeset
   402
76053
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   403
subsubsection \<open>Uniqueness rules\<close>
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   404
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   405
lemma euclidean_relation_intI [case_names by0 divides euclidean_relation]:
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   406
  \<open>(k div l, k mod l) = (q, r)\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   407
    if by0': \<open>l = 0 \<Longrightarrow> q = 0 \<and> r = k\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   408
    and divides': \<open>l \<noteq> 0 \<Longrightarrow> l dvd k \<Longrightarrow> r = 0 \<and> k = q * l\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   409
    and euclidean_relation': \<open>l \<noteq> 0 \<Longrightarrow> \<not> l dvd k \<Longrightarrow> sgn r = sgn l
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   410
      \<and> \<bar>r\<bar> < \<bar>l\<bar> \<and> k = q * l + r\<close> for k l :: int
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   411
proof (cases l q r k rule: euclidean_relationI)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   412
  case by0
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   413
  then show ?case
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   414
    by (rule by0')
76053
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   415
next
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   416
  case divides
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   417
  then show ?case
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   418
    by (rule divides')
76053
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   419
next
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   420
  case euclidean_relation
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   421
  with euclidean_relation' have \<open>sgn r = sgn l\<close> \<open>\<bar>r\<bar> < \<bar>l\<bar>\<close> \<open>k = q * l + r\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   422
    by simp_all
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   423
  from \<open>sgn r = sgn l\<close> \<open>l \<noteq> 0\<close> have \<open>division_segment r = division_segment l\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   424
    by (simp add: division_segment_int_def sgn_if split: if_splits)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   425
  with \<open>\<bar>r\<bar> < \<bar>l\<bar>\<close> \<open>k = q * l + r\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   426
  show ?case
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   427
    by simp
76053
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   428
qed
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   429
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   430
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   431
subsubsection \<open>Computing \<open>div\<close> and \<open>mod\<close> with shifting\<close>
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   432
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   433
lemma div_pos_geq:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   434
  fixes k l :: int
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   435
  assumes "0 < l" and "l \<le> k"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   436
  shows "k div l = (k - l) div l + 1"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   437
proof -
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   438
  have "k = (k - l) + l" by simp
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   439
  then obtain j where k: "k = j + l" ..
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   440
  with assms show ?thesis by (simp add: div_add_self2)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   441
qed
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   442
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   443
lemma mod_pos_geq:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   444
  fixes k l :: int
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   445
  assumes "0 < l" and "l \<le> k"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   446
  shows "k mod l = (k - l) mod l"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   447
proof -
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   448
  have "k = (k - l) + l" by simp
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   449
  then obtain j where k: "k = j + l" ..
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   450
  with assms show ?thesis by simp
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   451
qed
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   452
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   453
text\<open>computing div by shifting\<close>
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   454
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   455
lemma pos_zdiv_mult_2: \<open>(1 + 2 * b) div (2 * a) = b div a\<close> (is ?Q)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   456
  and pos_zmod_mult_2: \<open>(1 + 2 * b) mod (2 * a) = 1 + 2 * (b mod a)\<close> (is ?R)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   457
  if \<open>0 \<le> a\<close> for a b :: int
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   458
proof -
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   459
  have \<open>((1 + 2 * b) div (2 * a), (1 + 2 * b) mod (2 * a)) = (b div a, 1 + 2 * (b mod a))\<close>
76120
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   460
  proof (cases \<open>2 * a\<close> \<open>b div a\<close> \<open>1 + 2 * (b mod a)\<close> \<open>1 + 2 * b\<close> rule: euclidean_relation_intI)
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   461
    case by0
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   462
    then show ?case
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   463
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   464
  next
76120
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   465
    case divides
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   466
    have \<open>even (2 * a)\<close>
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   467
      by simp
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   468
    then have \<open>even (1 + 2 * b)\<close>
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   469
      using \<open>2 * a dvd 1 + 2 * b\<close> by (rule dvd_trans)
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   470
    then show ?case
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   471
      by simp
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   472
  next
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   473
    case euclidean_relation
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   474
    with that have \<open>a > 0\<close>
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   475
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   476
    moreover have \<open>b mod a < a\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   477
      using \<open>a > 0\<close> by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   478
    then have \<open>1 + 2 * (b mod a) < 2 * a\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   479
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   480
    moreover have \<open>2 * (b mod a) + a * (2 * (b div a)) = 2 * (b div a * a + b mod a)\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   481
      by (simp only: algebra_simps)
76120
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   482
    moreover have \<open>0 \<le> 2 * (b mod a)\<close>
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   483
      using \<open>a > 0\<close> by simp
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   484
    ultimately show ?case
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   485
      by (simp add: algebra_simps)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   486
  qed
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   487
  then show ?Q and ?R
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   488
    by simp_all
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   489
qed
76053
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   490
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   491
lemma neg_zdiv_mult_2: \<open>(1 + 2 * b) div (2 * a) = (b + 1) div a\<close> (is ?Q)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   492
  and neg_zmod_mult_2: \<open>(1 + 2 * b) mod (2 * a) = 2 * ((b + 1) mod a) - 1\<close> (is ?R)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   493
  if \<open>a \<le> 0\<close> for a b :: int
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   494
proof -
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   495
  have \<open>((1 + 2 * b) div (2 * a), (1 + 2 * b) mod (2 * a)) = ((b + 1) div a, 2 * ((b + 1) mod a) - 1)\<close>
76120
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   496
  proof (cases \<open>2 * a\<close> \<open>(b + 1) div a\<close> \<open>2 * ((b + 1) mod a) - 1\<close> \<open>1 + 2 * b\<close> rule: euclidean_relation_intI)
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   497
    case by0
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   498
    then show ?case
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   499
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   500
  next
76120
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   501
    case divides
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   502
    have \<open>even (2 * a)\<close>
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   503
      by simp
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   504
    then have \<open>even (1 + 2 * b)\<close>
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   505
      using \<open>2 * a dvd 1 + 2 * b\<close> by (rule dvd_trans)
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   506
    then show ?case
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   507
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   508
  next
76120
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   509
    case euclidean_relation
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   510
    with that have \<open>a < 0\<close>
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   511
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   512
    moreover have \<open>(b + 1) mod a > a\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   513
      using \<open>a < 0\<close> by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   514
    then have \<open>2 * ((b + 1) mod a) > 1 + 2 * a\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   515
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   516
    moreover have \<open>((1 + b) mod a) \<le> 0\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   517
      using \<open>a < 0\<close> by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   518
    then have \<open>2 * ((1 + b) mod a) \<le> 0\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   519
      by simp
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   520
    moreover have \<open>2 * ((1 + b) mod a) + a * (2 * ((1 + b) div a)) =
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   521
      2 * ((1 + b) div a * a + (1 + b) mod a)\<close>
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   522
      by (simp only: algebra_simps)
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   523
    ultimately show ?case
76120
3ae579092045 dropped auxiliary lemma
haftmann
parents: 76106
diff changeset
   524
      by (simp add: algebra_simps sgn_mult abs_mult)
76106
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   525
  qed
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   526
  then show ?Q and ?R
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   527
    by simp_all
98cab94326d4 less specialized euclidean relation on int
haftmann
parents: 76053
diff changeset
   528
qed
76053
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   529
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   530
lemma zdiv_numeral_Bit0 [simp]:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   531
  "numeral (Num.Bit0 v) div numeral (Num.Bit0 w) =
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   532
    numeral v div (numeral w :: int)"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   533
  unfolding numeral.simps unfolding mult_2 [symmetric]
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   534
  by (rule div_mult_mult1, simp)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   535
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   536
lemma zdiv_numeral_Bit1 [simp]:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   537
  "numeral (Num.Bit1 v) div numeral (Num.Bit0 w) =
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   538
    (numeral v div (numeral w :: int))"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   539
  unfolding numeral.simps
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   540
  unfolding mult_2 [symmetric] add.commute [of _ 1]
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   541
  by (rule pos_zdiv_mult_2, simp)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   542
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   543
lemma zmod_numeral_Bit0 [simp]:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   544
  "numeral (Num.Bit0 v) mod numeral (Num.Bit0 w) =
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   545
    (2::int) * (numeral v mod numeral w)"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   546
  unfolding numeral_Bit0 [of v] numeral_Bit0 [of w]
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   547
  unfolding mult_2 [symmetric] by (rule mod_mult_mult1)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   548
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   549
lemma zmod_numeral_Bit1 [simp]:
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   550
  "numeral (Num.Bit1 v) mod numeral (Num.Bit0 w) =
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   551
    2 * (numeral v mod numeral w) + (1::int)"
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   552
  unfolding numeral_Bit1 [of v] numeral_Bit0 [of w]
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   553
  unfolding mult_2 [symmetric] add.commute [of _ 1]
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   554
  by (rule pos_zmod_mult_2, simp)
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   555
3310317cc484 clarified generic euclidean relation
haftmann
parents: 75937
diff changeset
   556
  
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52398
diff changeset
   557
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
   558
  code_module Divides \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33361
diff changeset
   559
64246
15d1ee6e847b eliminated irregular aliasses
haftmann
parents: 64244
diff changeset
   560
68253
a8660a39e304 grouped material on numeral division
haftmann
parents: 68157
diff changeset
   561
subsection \<open>Lemmas of doubtful value\<close>
66808
1907167b6038 elementary definition of division on natural numbers
haftmann
parents: 66806
diff changeset
   562
75936
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   563
class unique_euclidean_semiring_numeral = unique_euclidean_semiring_with_nat + linordered_semidom +
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   564
  assumes div_less: "0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a div b = 0"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   565
    and mod_less: " 0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a mod b = a"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   566
    and div_positive: "0 < b \<Longrightarrow> b \<le> a \<Longrightarrow> a div b > 0"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   567
    and mod_less_eq_dividend: "0 \<le> a \<Longrightarrow> a mod b \<le> a"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   568
    and pos_mod_bound: "0 < b \<Longrightarrow> a mod b < b"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   569
    and pos_mod_sign: "0 < b \<Longrightarrow> 0 \<le> a mod b"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   570
    and mod_mult2_eq: "0 \<le> c \<Longrightarrow> a mod (b * c) = b * (a div b mod c) + a mod b"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   571
    and div_mult2_eq: "0 \<le> c \<Longrightarrow> a div (b * c) = a div b div c"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   572
  assumes discrete: "a < b \<longleftrightarrow> a + 1 \<le> b"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   573
begin
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   574
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   575
lemma divmod_digit_1:
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   576
  assumes "0 \<le> a" "0 < b" and "b \<le> a mod (2 * b)"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   577
  shows "2 * (a div (2 * b)) + 1 = a div b" (is "?P")
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   578
    and "a mod (2 * b) - b = a mod b" (is "?Q")
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   579
proof -
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   580
  from assms mod_less_eq_dividend [of a "2 * b"] have "b \<le> a"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   581
    by (auto intro: trans)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   582
  with \<open>0 < b\<close> have "0 < a div b" by (auto intro: div_positive)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   583
  then have [simp]: "1 \<le> a div b" by (simp add: discrete)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   584
  with \<open>0 < b\<close> have mod_less: "a mod b < b" by (simp add: pos_mod_bound)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   585
  define w where "w = a div b mod 2"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   586
  then have w_exhaust: "w = 0 \<or> w = 1" by auto
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   587
  have mod_w: "a mod (2 * b) = a mod b + b * w"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   588
    by (simp add: w_def mod_mult2_eq ac_simps)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   589
  from assms w_exhaust have "w = 1"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   590
    using mod_less by (auto simp add: mod_w)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   591
  with mod_w have mod: "a mod (2 * b) = a mod b + b" by simp
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   592
  have "2 * (a div (2 * b)) = a div b - w"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   593
    by (simp add: w_def div_mult2_eq minus_mod_eq_mult_div ac_simps)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   594
  with \<open>w = 1\<close> have div: "2 * (a div (2 * b)) = a div b - 1" by simp
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   595
  then show ?P and ?Q
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   596
    by (simp_all add: div mod add_implies_diff [symmetric])
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   597
qed
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   598
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   599
lemma divmod_digit_0:
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   600
  assumes "0 < b" and "a mod (2 * b) < b"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   601
  shows "2 * (a div (2 * b)) = a div b" (is "?P")
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   602
    and "a mod (2 * b) = a mod b" (is "?Q")
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   603
proof -
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   604
  define w where "w = a div b mod 2"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   605
  then have w_exhaust: "w = 0 \<or> w = 1" by auto
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   606
  have mod_w: "a mod (2 * b) = a mod b + b * w"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   607
    by (simp add: w_def mod_mult2_eq ac_simps)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   608
  moreover have "b \<le> a mod b + b"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   609
  proof -
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   610
    from \<open>0 < b\<close> pos_mod_sign have "0 \<le> a mod b" by blast
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   611
    then have "0 + b \<le> a mod b + b" by (rule add_right_mono)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   612
    then show ?thesis by simp
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   613
  qed
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   614
  moreover note assms w_exhaust
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   615
  ultimately have "w = 0" by auto
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   616
  with mod_w have mod: "a mod (2 * b) = a mod b" by simp
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   617
  have "2 * (a div (2 * b)) = a div b - w"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   618
    by (simp add: w_def div_mult2_eq minus_mod_eq_mult_div ac_simps)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   619
  with \<open>w = 0\<close> have div: "2 * (a div (2 * b)) = a div b" by simp
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   620
  then show ?P and ?Q
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   621
    by (simp_all add: div mod)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   622
qed
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   623
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   624
lemma mod_double_modulus:
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   625
  assumes "m > 0" "x \<ge> 0"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   626
  shows   "x mod (2 * m) = x mod m \<or> x mod (2 * m) = x mod m + m"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   627
proof (cases "x mod (2 * m) < m")
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   628
  case True
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   629
  thus ?thesis using assms using divmod_digit_0(2)[of m x] by auto
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   630
next
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   631
  case False
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   632
  hence *: "x mod (2 * m) - m = x mod m"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   633
    using assms by (intro divmod_digit_1) auto
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   634
  hence "x mod (2 * m) = x mod m + m"
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   635
    by (subst * [symmetric], subst le_add_diff_inverse2) (use False in auto)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   636
  thus ?thesis by simp
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   637
qed
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   638
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   639
end
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   640
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   641
hide_fact (open) div_less mod_less mod_less_eq_dividend mod_mult2_eq div_mult2_eq
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   642
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   643
instance nat :: unique_euclidean_semiring_numeral
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   644
  by standard
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   645
    (auto simp add: div_greater_zero_iff div_mult2_eq mod_mult2_eq)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   646
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   647
instance int :: unique_euclidean_semiring_numeral
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   648
  by standard (auto intro: zmod_le_nonneg_dividend simp add:
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   649
    pos_imp_zdiv_pos_iff zmod_zmult2_eq zdiv_zmult2_eq)
d2e6a1342c90 simplified computation algorithm construction
haftmann
parents: 75883
diff changeset
   650
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   651
lemma div_geq: "m div n = Suc ((m - n) div n)" if "0 < n" and " \<not> m < n" for m n :: nat
66808
1907167b6038 elementary definition of division on natural numbers
haftmann
parents: 66806
diff changeset
   652
  by (rule le_div_geq) (use that in \<open>simp_all add: not_less\<close>)
1907167b6038 elementary definition of division on natural numbers
haftmann
parents: 66806
diff changeset
   653
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   654
lemma mod_geq: "m mod n = (m - n) mod n" if "\<not> m < n" for m n :: nat
66808
1907167b6038 elementary definition of division on natural numbers
haftmann
parents: 66806
diff changeset
   655
  by (rule le_mod_geq) (use that in \<open>simp add: not_less\<close>)
1907167b6038 elementary definition of division on natural numbers
haftmann
parents: 66806
diff changeset
   656
68631
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   657
lemma mod_eq_0D: "\<exists>q. m = d * q" if "m mod d = 0" for m d :: nat
bc1369804692 de-applying
paulson <lp15@cam.ac.uk>
parents: 68626
diff changeset
   658
  using that by (auto simp add: mod_eq_0_iff_dvd)
66816
212a3334e7da more fundamental definition of div and mod on int
haftmann
parents: 66815
diff changeset
   659
69695
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   660
lemma pos_mod_conj: "0 < b \<Longrightarrow> 0 \<le> a mod b \<and> a mod b < b" for a b :: int
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   661
  by simp
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   662
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   663
lemma neg_mod_conj: "b < 0 \<Longrightarrow> a mod b \<le> 0 \<and> b < a mod b" for a b :: int
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   664
  by simp
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   665
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   666
lemma zmod_eq_0_iff: "m mod d = 0 \<longleftrightarrow> (\<exists>q. m = d * q)" for m d :: int
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   667
  by (auto simp add: mod_eq_0_iff_dvd)
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   668
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   669
(* REVISIT: should this be generalized to all semiring_div types? *)
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   670
lemma zmod_eq_0D [dest!]: "\<exists>q. m = d * q" if "m mod d = 0" for m d :: int
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   671
  using that by auto
753ae9e9773d algebraized more material from theory Divides
haftmann
parents: 69593
diff changeset
   672
75937
02b18f59f903 streamlined
haftmann
parents: 75936
diff changeset
   673
lemma div_positive_int:
02b18f59f903 streamlined
haftmann
parents: 75936
diff changeset
   674
  "k div l > 0" if "k \<ge> l" and "l > 0" for k l :: int
02b18f59f903 streamlined
haftmann
parents: 75936
diff changeset
   675
  using that by (simp add: nonneg1_imp_zdiv_pos_iff)
02b18f59f903 streamlined
haftmann
parents: 75936
diff changeset
   676
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33340
diff changeset
   677
end