src/HOL/GCD.thy
author haftmann
Wed, 08 Jul 2015 14:01:40 +0200
changeset 60687 33dbbcb6a8a3
parent 60686 ea5bc46c11e6
child 60688 01488b559910
permissions -rw-r--r--
eliminated some duplication
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32479
521cc9bf2958 some reorganization of number theory
haftmann
parents: 32415
diff changeset
     1
(*  Authors:    Christophe Tabacznyj, Lawrence C. Paulson, Amine Chaieb,
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
     2
                Thomas M. Rasmussen, Jeremy Avigad, Tobias Nipkow
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
     3
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
     4
32479
521cc9bf2958 some reorganization of number theory
haftmann
parents: 32415
diff changeset
     5
This file deals with the functions gcd and lcm.  Definitions and
521cc9bf2958 some reorganization of number theory
haftmann
parents: 32415
diff changeset
     6
lemmas are proved uniformly for the natural numbers and integers.
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
     7
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
     8
This file combines and revises a number of prior developments.
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
     9
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    10
The original theories "GCD" and "Primes" were by Christophe Tabacznyj
58623
2db1df2c8467 more bibtex entries;
wenzelm
parents: 57514
diff changeset
    11
and Lawrence C. Paulson, based on @{cite davenport92}. They introduced
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    12
gcd, lcm, and prime for the natural numbers.
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    13
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    14
The original theory "IntPrimes" was by Thomas M. Rasmussen, and
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    15
extended gcd, lcm, primes to the integers. Amine Chaieb provided
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    16
another extension of the notions to the integers, and added a number
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    17
of results to "Primes" and "GCD". IntPrimes also defined and developed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    18
the congruence relations on the integers. The notion was extended to
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
    19
the natural numbers by Chaieb.
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    20
32036
8a9228872fbd Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents: 31952
diff changeset
    21
Jeremy Avigad combined all of these, made everything uniform for the
8a9228872fbd Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents: 31952
diff changeset
    22
natural numbers and the integers, and added a number of new theorems.
8a9228872fbd Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents: 31952
diff changeset
    23
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
    24
Tobias Nipkow cleaned up a lot.
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    25
*)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    26
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    27
58889
5b7a9633cfa8 modernized header uniformly as section;
wenzelm
parents: 58834
diff changeset
    28
section {* Greatest common divisor and least common multiple *}
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    29
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    30
theory GCD
59667
651ea265d568 Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents: 59545
diff changeset
    31
imports Main
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    32
begin
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    33
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    34
context semidom_divide
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    35
begin
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    36
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    37
lemma divide_1 [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    38
  "a div 1 = a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    39
  using nonzero_mult_divide_cancel_left [of 1 a] by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    40
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    41
lemma dvd_mult_cancel_left [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    42
  assumes "a \<noteq> 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    43
  shows "a * b dvd a * c \<longleftrightarrow> b dvd c" (is "?P \<longleftrightarrow> ?Q")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    44
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    45
  assume ?P then obtain d where "a * c = a * b * d" ..
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    46
  with assms have "c = b * d" by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    47
  then show ?Q ..
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    48
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    49
  assume ?Q then obtain d where "c = b * d" .. 
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    50
  then have "a * c = a * b * d" by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    51
  then show ?P ..
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    52
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    53
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    54
lemma dvd_mult_cancel_right [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    55
  assumes "a \<noteq> 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    56
  shows "b * a dvd c * a \<longleftrightarrow> b dvd c" (is "?P \<longleftrightarrow> ?Q")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    57
using dvd_mult_cancel_left [of a b c] assms by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    58
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    59
lemma div_dvd_iff_mult:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    60
  assumes "b \<noteq> 0" and "b dvd a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    61
  shows "a div b dvd c \<longleftrightarrow> a dvd c * b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    62
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    63
  from \<open>b dvd a\<close> obtain d where "a = b * d" ..
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    64
  with \<open>b \<noteq> 0\<close> show ?thesis by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    65
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    66
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    67
lemma dvd_div_iff_mult:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    68
  assumes "c \<noteq> 0" and "c dvd b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    69
  shows "a dvd b div c \<longleftrightarrow> a * c dvd b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    70
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    71
  from \<open>c dvd b\<close> obtain d where "b = c * d" ..
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    72
  with \<open>c \<noteq> 0\<close> show ?thesis by (simp add: mult.commute [of a])
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    73
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    74
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    75
end
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    76
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    77
context algebraic_semidom
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    78
begin
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    79
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    80
lemma associated_1 [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    81
  "associated 1 a \<longleftrightarrow> is_unit a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    82
  "associated a 1 \<longleftrightarrow> is_unit a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    83
  by (auto simp add: associated_def)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    84
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    85
end
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    86
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    87
declare One_nat_def [simp del]
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    88
34030
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
    89
subsection {* GCD and LCM definitions *}
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    90
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
    91
class gcd = zero + one + dvd +
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
    92
  fixes gcd :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
    93
    and lcm :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    94
begin
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    95
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    96
abbreviation coprime :: "'a \<Rightarrow> 'a \<Rightarrow> bool"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
    97
  where "coprime x y \<equiv> gcd x y = 1"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    98
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
    99
end
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   100
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   101
class Gcd = gcd +
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   102
  fixes Gcd :: "'a set \<Rightarrow> 'a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   103
    and Lcm :: "'a set \<Rightarrow> 'a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   104
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   105
class semiring_gcd = normalization_semidom + gcd +
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   106
  assumes gcd_dvd1 [iff]: "gcd a b dvd a"
59977
ad2d1cd53877 eliminated hard tabs;
wenzelm
parents: 59807
diff changeset
   107
    and gcd_dvd2 [iff]: "gcd a b dvd b"
ad2d1cd53877 eliminated hard tabs;
wenzelm
parents: 59807
diff changeset
   108
    and gcd_greatest: "c dvd a \<Longrightarrow> c dvd b \<Longrightarrow> c dvd gcd a b"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   109
    and normalize_gcd [simp]: "normalize (gcd a b) = gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   110
    and lcm_gcd: "lcm a b = normalize (a * b) div gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   111
begin    
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   112
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   113
lemma gcd_greatest_iff [iff]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   114
  "a dvd gcd b c \<longleftrightarrow> a dvd b \<and> a dvd c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   115
  by (blast intro!: gcd_greatest intro: dvd_trans)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   116
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   117
lemma gcd_0_left [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   118
  "gcd 0 a = normalize a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   119
proof (rule associated_eqI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   120
  show "associated (gcd 0 a) (normalize a)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   121
    by (auto intro!: associatedI gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   122
  show "unit_factor (gcd 0 a) = 1" if "gcd 0 a \<noteq> 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   123
  proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   124
    from that have "unit_factor (normalize (gcd 0 a)) = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   125
      by (rule unit_factor_normalize)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   126
    then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   127
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   128
qed simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   129
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   130
lemma gcd_0_right [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   131
  "gcd a 0 = normalize a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   132
proof (rule associated_eqI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   133
  show "associated (gcd a 0) (normalize a)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   134
    by (auto intro!: associatedI gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   135
  show "unit_factor (gcd a 0) = 1" if "gcd a 0 \<noteq> 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   136
  proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   137
    from that have "unit_factor (normalize (gcd a 0)) = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   138
      by (rule unit_factor_normalize)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   139
    then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   140
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   141
qed simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   142
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   143
lemma gcd_eq_0_iff [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   144
  "gcd a b = 0 \<longleftrightarrow> a = 0 \<and> b = 0" (is "?P \<longleftrightarrow> ?Q")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   145
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   146
  assume ?P then have "0 dvd gcd a b" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   147
  then have "0 dvd a" and "0 dvd b" by (blast intro: dvd_trans)+
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   148
  then show ?Q by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   149
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   150
  assume ?Q then show ?P by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   151
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   152
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   153
lemma unit_factor_gcd:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   154
  "unit_factor (gcd a b) = (if a = 0 \<and> b = 0 then 0 else 1)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   155
proof (cases "gcd a b = 0")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   156
  case True then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   157
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   158
  case False
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   159
  have "unit_factor (gcd a b) * normalize (gcd a b) = gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   160
    by (rule unit_factor_mult_normalize)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   161
  then have "unit_factor (gcd a b) * gcd a b = gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   162
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   163
  then have "unit_factor (gcd a b) * gcd a b div gcd a b = gcd a b div gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   164
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   165
  with False show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   166
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   167
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   168
sublocale gcd!: abel_semigroup gcd
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   169
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   170
  fix a b c
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   171
  show "gcd a b = gcd b a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   172
    by (rule associated_eqI) (auto intro: associatedI gcd_greatest simp add: unit_factor_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   173
  from gcd_dvd1 have "gcd (gcd a b) c dvd a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   174
    by (rule dvd_trans) simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   175
  moreover from gcd_dvd1 have "gcd (gcd a b) c dvd b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   176
    by (rule dvd_trans) simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   177
  ultimately have P1: "gcd (gcd a b) c dvd gcd a (gcd b c)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   178
    by (auto intro!: gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   179
  from gcd_dvd2 have "gcd a (gcd b c) dvd b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   180
    by (rule dvd_trans) simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   181
  moreover from gcd_dvd2 have "gcd a (gcd b c) dvd c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   182
    by (rule dvd_trans) simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   183
  ultimately have P2: "gcd a (gcd b c) dvd gcd (gcd a b) c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   184
    by (auto intro!: gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   185
  from P1 P2 have "associated (gcd (gcd a b) c) (gcd a (gcd b c))"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   186
    by (rule associatedI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   187
  then show "gcd (gcd a b) c = gcd a (gcd b c)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   188
    by (rule associated_eqI) (simp_all add: unit_factor_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   189
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   190
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   191
lemma gcd_self [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   192
  "gcd a a = normalize a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   193
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   194
  have "a dvd gcd a a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   195
    by (rule gcd_greatest) simp_all
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   196
  then have "associated (gcd a a) (normalize a)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   197
    by (auto intro: associatedI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   198
  then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   199
    by (auto intro: associated_eqI simp add: unit_factor_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   200
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   201
    
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   202
lemma coprime_1_left [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   203
  "coprime 1 a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   204
  by (rule associated_eqI) (simp_all add: unit_factor_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   205
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   206
lemma coprime_1_right [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   207
  "coprime a 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   208
  using coprime_1_left [of a] by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   209
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   210
lemma gcd_mult_left:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   211
  "gcd (c * a) (c * b) = normalize c * gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   212
proof (cases "c = 0")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   213
  case True then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   214
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   215
  case False
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   216
  then have "c * gcd a b dvd gcd (c * a) (c * b)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   217
    by (auto intro: gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   218
  moreover from calculation False have "gcd (c * a) (c * b) dvd c * gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   219
    by (metis div_dvd_iff_mult dvd_mult_left gcd_dvd1 gcd_dvd2 gcd_greatest mult_commute)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   220
  ultimately have "normalize (gcd (c * a) (c * b)) = normalize (c * gcd a b)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   221
    by - (rule associated_eqI, auto intro: associated_eqI associatedI simp add: unit_factor_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   222
  then show ?thesis by (simp add: normalize_mult)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   223
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   224
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   225
lemma gcd_mult_right:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   226
  "gcd (a * c) (b * c) = gcd b a * normalize c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   227
  using gcd_mult_left [of c a b] by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   228
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   229
lemma mult_gcd_left:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   230
  "c * gcd a b = unit_factor c * gcd (c * a) (c * b)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   231
  by (simp add: gcd_mult_left mult.assoc [symmetric])
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   232
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   233
lemma mult_gcd_right:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   234
  "gcd a b * c = gcd (a * c) (b * c) * unit_factor c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   235
  using mult_gcd_left [of c a b] by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   236
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   237
lemma lcm_dvd1 [iff]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   238
  "a dvd lcm a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   239
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   240
  have "normalize (a * b) div gcd a b = normalize a * (normalize b div gcd a b)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   241
    by (simp add: lcm_gcd normalize_mult div_mult_swap)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   242
  then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   243
    by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   244
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   245
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   246
lemma lcm_dvd2 [iff]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   247
  "b dvd lcm a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   248
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   249
  have "normalize (a * b) div gcd a b = normalize b * (normalize a div gcd a b)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   250
    by (simp add: lcm_gcd normalize_mult div_mult_swap ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   251
  then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   252
    by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   253
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   254
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   255
lemma lcm_least:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   256
  assumes "a dvd c" and "b dvd c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   257
  shows "lcm a b dvd c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   258
proof (cases "c = 0")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   259
  case True then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   260
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   261
  case False then have U: "is_unit (unit_factor c)" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   262
  show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   263
  proof (cases "gcd a b = 0")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   264
    case True with assms show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   265
  next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   266
    case False then have "a \<noteq> 0 \<or> b \<noteq> 0" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   267
    with \<open>c \<noteq> 0\<close> assms have "a * b dvd a * c" "a * b dvd c * b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   268
      by (simp_all add: mult_dvd_mono)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   269
    then have "normalize (a * b) dvd gcd (a * c) (b * c)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   270
      by (auto intro: gcd_greatest simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   271
    then have "normalize (a * b) dvd gcd (a * c) (b * c) * unit_factor c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   272
      using U by (simp add: dvd_mult_unit_iff)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   273
    then have "normalize (a * b) dvd gcd a b * c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   274
      by (simp add: mult_gcd_right [of a b c])
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   275
    then have "normalize (a * b) div gcd a b dvd c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   276
      using False by (simp add: div_dvd_iff_mult ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   277
    then show ?thesis by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   278
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   279
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   280
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   281
lemma lcm_least_iff [iff]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   282
  "lcm a b dvd c \<longleftrightarrow> a dvd c \<and> b dvd c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   283
  by (blast intro!: lcm_least intro: dvd_trans)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   284
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   285
lemma normalize_lcm [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   286
  "normalize (lcm a b) = lcm a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   287
  by (simp add: lcm_gcd dvd_normalize_div)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   288
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   289
lemma lcm_0_left [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   290
  "lcm 0 a = 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   291
  by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   292
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   293
lemma lcm_0_right [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   294
  "lcm a 0 = 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   295
  by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   296
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   297
lemma lcm_eq_0_iff:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   298
  "lcm a b = 0 \<longleftrightarrow> a = 0 \<or> b = 0" (is "?P \<longleftrightarrow> ?Q")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   299
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   300
  assume ?P then have "0 dvd lcm a b" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   301
  then have "0 dvd normalize (a * b) div gcd a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   302
    by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   303
  then have "0 * gcd a b dvd normalize (a * b)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   304
    using dvd_div_iff_mult [of "gcd a b" _ 0] by (cases "gcd a b = 0") simp_all
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   305
  then have "normalize (a * b) = 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   306
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   307
  then show ?Q by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   308
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   309
  assume ?Q then show ?P by auto
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   310
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   311
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   312
lemma unit_factor_lcm :
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   313
  "unit_factor (lcm a b) = (if a = 0 \<or> b = 0 then 0 else 1)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   314
  by (simp add: unit_factor_gcd dvd_unit_factor_div lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   315
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   316
sublocale lcm!: abel_semigroup lcm
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   317
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   318
  fix a b c
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   319
  show "lcm a b = lcm b a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   320
    by (simp add: lcm_gcd ac_simps normalize_mult dvd_normalize_div)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   321
  have "associated (lcm (lcm a b) c) (lcm a (lcm b c))"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   322
    by (auto intro!: associatedI lcm_least
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   323
      dvd_trans [of b "lcm b c" "lcm a (lcm b c)"]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   324
      dvd_trans [of c "lcm b c" "lcm a (lcm b c)"]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   325
      dvd_trans [of a "lcm a b" "lcm (lcm a b) c"]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   326
      dvd_trans [of b "lcm a b" "lcm (lcm a b) c"])
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   327
  then show "lcm (lcm a b) c = lcm a (lcm b c)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   328
    by (rule associated_eqI) (simp_all add: unit_factor_lcm lcm_eq_0_iff)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   329
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   330
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   331
lemma lcm_self [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   332
  "lcm a a = normalize a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   333
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   334
  have "lcm a a dvd a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   335
    by (rule lcm_least) simp_all
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   336
  then have "associated (lcm a a) (normalize a)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   337
    by (auto intro: associatedI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   338
  then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   339
    by (rule associated_eqI) (auto simp add: unit_factor_lcm)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   340
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   341
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   342
lemma gcd_mult_lcm [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   343
  "gcd a b * lcm a b = normalize a * normalize b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   344
  by (simp add: lcm_gcd normalize_mult)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   345
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   346
lemma lcm_mult_gcd [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   347
  "lcm a b * gcd a b = normalize a * normalize b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   348
  using gcd_mult_lcm [of a b] by (simp add: ac_simps) 
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   349
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   350
lemma gcd_lcm:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   351
  assumes "a \<noteq> 0" and "b \<noteq> 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   352
  shows "gcd a b = normalize (a * b) div lcm a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   353
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   354
  from assms have "lcm a b \<noteq> 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   355
    by (simp add: lcm_eq_0_iff)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   356
  have "gcd a b * lcm a b = normalize a * normalize b" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   357
  then have "gcd a b * lcm a b div lcm a b = normalize (a * b) div lcm a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   358
    by (simp_all add: normalize_mult)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   359
  with \<open>lcm a b \<noteq> 0\<close> show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   360
    using nonzero_mult_divide_cancel_right [of "lcm a b" "gcd a b"] by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   361
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   362
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   363
lemma lcm_1_left [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   364
  "lcm 1 a = normalize a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   365
  by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   366
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   367
lemma lcm_1_right [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   368
  "lcm a 1 = normalize a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   369
  by (simp add: lcm_gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   370
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   371
lemma lcm_mult_left:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   372
  "lcm (c * a) (c * b) = normalize c * lcm a b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   373
  by (cases "c = 0")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   374
    (simp_all add: gcd_mult_right lcm_gcd div_mult_swap normalize_mult ac_simps,
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   375
      simp add: dvd_div_mult2_eq mult.left_commute [of "normalize c", symmetric])
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   376
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   377
lemma lcm_mult_right:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   378
  "lcm (a * c) (b * c) = lcm b a * normalize c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   379
  using lcm_mult_left [of c a b] by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   380
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   381
lemma mult_lcm_left:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   382
  "c * lcm a b = unit_factor c * lcm (c * a) (c * b)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   383
  by (simp add: lcm_mult_left mult.assoc [symmetric])
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   384
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   385
lemma mult_lcm_right:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   386
  "lcm a b * c = lcm (a * c) (b * c) * unit_factor c"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   387
  using mult_lcm_left [of c a b] by (simp add: ac_simps)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   388
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   389
end
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   390
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   391
class semiring_Gcd = semiring_gcd + Gcd +
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   392
  assumes Gcd_dvd: "a \<in> A \<Longrightarrow> Gcd A dvd a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   393
    and Gcd_greatest: "(\<And>b. b \<in> A \<Longrightarrow> a dvd b) \<Longrightarrow> a dvd Gcd A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   394
    and normalize_Gcd [simp]: "normalize (Gcd A) = Gcd A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   395
begin
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   396
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   397
lemma Gcd_empty [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   398
  "Gcd {} = 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   399
  by (rule dvd_0_left, rule Gcd_greatest) simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   400
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   401
lemma Gcd_0_iff [simp]:
60687
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   402
  "Gcd A = 0 \<longleftrightarrow> A \<subseteq> {0}" (is "?P \<longleftrightarrow> ?Q")
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   403
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   404
  assume ?P
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   405
  show ?Q
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   406
  proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   407
    fix a
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   408
    assume "a \<in> A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   409
    then have "Gcd A dvd a" by (rule Gcd_dvd)
60687
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   410
    with \<open>?P\<close> have "a = 0" by simp
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   411
    then show "a \<in> {0}" by simp
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   412
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   413
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   414
  assume ?Q
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   415
  have "0 dvd Gcd A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   416
  proof (rule Gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   417
    fix a
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   418
    assume "a \<in> A"
60687
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   419
    with \<open>?Q\<close> have "a = 0" by auto
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   420
    then show "0 dvd a" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   421
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   422
  then show ?P by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   423
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   424
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   425
lemma unit_factor_Gcd:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   426
  "unit_factor (Gcd A) = (if \<forall>a\<in>A. a = 0 then 0 else 1)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   427
proof (cases "Gcd A = 0")
60687
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   428
  case True then show ?thesis by auto
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   429
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   430
  case False
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   431
  from unit_factor_mult_normalize
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   432
  have "unit_factor (Gcd A) * normalize (Gcd A) = Gcd A" .
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   433
  then have "unit_factor (Gcd A) * Gcd A = Gcd A" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   434
  then have "unit_factor (Gcd A) * Gcd A div Gcd A = Gcd A div Gcd A" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   435
  with False have "unit_factor (Gcd A) = 1" by simp
60687
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   436
  with False show ?thesis by auto
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   437
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   438
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   439
lemma Gcd_UNIV [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   440
  "Gcd UNIV = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   441
  by (rule associated_eqI) (auto intro: Gcd_dvd simp add: unit_factor_Gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   442
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   443
lemma Gcd_eq_1_I:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   444
  assumes "is_unit a" and "a \<in> A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   445
  shows "Gcd A = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   446
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   447
  from assms have "is_unit (Gcd A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   448
    by (blast intro: Gcd_dvd dvd_unit_imp_unit)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   449
  then have "normalize (Gcd A) = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   450
    by (rule is_unit_normalize)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   451
  then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   452
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   453
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   454
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   455
lemma Gcd_insert [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   456
  "Gcd (insert a A) = gcd a (Gcd A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   457
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   458
  have "Gcd (insert a A) dvd gcd a (Gcd A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   459
    by (auto intro: Gcd_dvd Gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   460
  moreover have "gcd a (Gcd A) dvd Gcd (insert a A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   461
  proof (rule Gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   462
    fix b
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   463
    assume "b \<in> insert a A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   464
    then show "gcd a (Gcd A) dvd b"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   465
    proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   466
      assume "b = a" then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   467
    next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   468
      assume "b \<in> A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   469
      then have "Gcd A dvd b" by (rule Gcd_dvd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   470
      moreover have "gcd a (Gcd A) dvd Gcd A" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   471
      ultimately show ?thesis by (blast intro: dvd_trans)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   472
    qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   473
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   474
  ultimately have "associated (Gcd (insert a A)) (gcd a (Gcd A))"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   475
    by (rule associatedI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   476
  then show ?thesis
60687
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   477
    by (rule associated_eqI) (auto simp add: unit_factor_gcd unit_factor_Gcd)
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   478
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   479
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   480
lemma dvd_Gcd: -- \<open>FIXME remove\<close>
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   481
  "\<forall>b\<in>A. a dvd b \<Longrightarrow> a dvd Gcd A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   482
  by (blast intro: Gcd_greatest)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   483
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   484
lemma Gcd_set [code_unfold]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   485
  "Gcd (set as) = foldr gcd as 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   486
  by (induct as) simp_all
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   487
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   488
end  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   489
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   490
class semiring_Lcm = semiring_Gcd +
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   491
  assumes Lcm_Gcd: "Lcm A = Gcd {b. \<forall>a\<in>A. a dvd b}"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   492
begin
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   493
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   494
lemma dvd_Lcm:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   495
  assumes "a \<in> A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   496
  shows "a dvd Lcm A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   497
  using assms by (auto intro: Gcd_greatest simp add: Lcm_Gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   498
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   499
lemma Gcd_image_normalize [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   500
  "Gcd (normalize ` A) = Gcd A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   501
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   502
  have "Gcd (normalize ` A) dvd a" if "a \<in> A" for a
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   503
  proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   504
    from that obtain B where "A = insert a B" by blast
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   505
    moreover have " gcd (normalize a) (Gcd (normalize ` B)) dvd normalize a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   506
      by (rule gcd_dvd1)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   507
    ultimately show "Gcd (normalize ` A) dvd a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   508
      by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   509
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   510
  then have "associated (Gcd (normalize ` A)) (Gcd A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   511
    by (auto intro!: associatedI Gcd_greatest intro: Gcd_dvd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   512
  then show ?thesis
60687
33dbbcb6a8a3 eliminated some duplication
haftmann
parents: 60686
diff changeset
   513
    by (rule associated_eqI) (simp_all add: unit_factor_Gcd, auto dest!: bspec)
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   514
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   515
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   516
lemma Lcm_least:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   517
  assumes "\<And>b. b \<in> A \<Longrightarrow> b dvd a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   518
  shows "Lcm A dvd a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   519
  using assms by (auto intro: Gcd_dvd simp add: Lcm_Gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   520
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   521
lemma normalize_Lcm [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   522
  "normalize (Lcm A) = Lcm A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   523
  by (simp add: Lcm_Gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   524
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   525
lemma unit_factor_Lcm:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   526
  "unit_factor (Lcm A) = (if Lcm A = 0 then 0 else 1)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   527
proof (cases "Lcm A = 0")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   528
  case True then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   529
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   530
  case False
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   531
  with unit_factor_normalize have "unit_factor (normalize (Lcm A)) = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   532
    by blast
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   533
  with False show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   534
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   535
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   536
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   537
lemma Lcm_empty [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   538
  "Lcm {} = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   539
  by (simp add: Lcm_Gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   540
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   541
lemma Lcm_1_iff [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   542
  "Lcm A = 1 \<longleftrightarrow> (\<forall>a\<in>A. is_unit a)" (is "?P \<longleftrightarrow> ?Q")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   543
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   544
  assume ?P
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   545
  show ?Q
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   546
  proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   547
    fix a
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   548
    assume "a \<in> A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   549
    then have "a dvd Lcm A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   550
      by (rule dvd_Lcm)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   551
    with \<open>?P\<close> show "is_unit a"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   552
      by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   553
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   554
next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   555
  assume ?Q
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   556
  then have "is_unit (Lcm A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   557
    by (blast intro: Lcm_least)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   558
  then have "normalize (Lcm A) = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   559
    by (rule is_unit_normalize)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   560
  then show ?P
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   561
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   562
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   563
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   564
lemma Lcm_UNIV [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   565
  "Lcm UNIV = 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   566
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   567
  have "0 dvd Lcm UNIV"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   568
    by (rule dvd_Lcm) simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   569
  then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   570
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   571
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   572
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   573
lemma Lcm_eq_0_I:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   574
  assumes "0 \<in> A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   575
  shows "Lcm A = 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   576
proof -
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   577
  from assms have "0 dvd Lcm A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   578
    by (rule dvd_Lcm)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   579
  then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   580
    by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   581
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   582
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   583
lemma Gcd_Lcm:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   584
  "Gcd A = Lcm {b. \<forall>a\<in>A. b dvd a}"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   585
  by (rule associated_eqI) (auto intro: associatedI Gcd_dvd dvd_Lcm Gcd_greatest Lcm_least
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   586
    simp add: unit_factor_Gcd unit_factor_Lcm)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   587
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   588
lemma Lcm_insert [simp]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   589
  "Lcm (insert a A) = lcm a (Lcm A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   590
proof (rule sym)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   591
  have "lcm a (Lcm A) dvd Lcm (insert a A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   592
    by (auto intro: dvd_Lcm Lcm_least)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   593
  moreover have "Lcm (insert a A) dvd lcm a (Lcm A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   594
  proof (rule Lcm_least)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   595
    fix b
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   596
    assume "b \<in> insert a A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   597
    then show "b dvd lcm a (Lcm A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   598
    proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   599
      assume "b = a" then show ?thesis by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   600
    next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   601
      assume "b \<in> A"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   602
      then have "b dvd Lcm A" by (rule dvd_Lcm)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   603
      moreover have "Lcm A dvd lcm a (Lcm A)" by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   604
      ultimately show ?thesis by (blast intro: dvd_trans)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   605
    qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   606
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   607
  ultimately have "associated (lcm a (Lcm A)) (Lcm (insert a A))"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   608
    by (rule associatedI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   609
  then show "lcm a (Lcm A) = Lcm (insert a A)"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   610
    by (rule associated_eqI) (simp_all add: unit_factor_lcm unit_factor_Lcm lcm_eq_0_iff)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   611
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   612
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   613
lemma Lcm_set [code_unfold]:
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   614
  "Lcm (set as) = foldr lcm as 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   615
  by (induct as) simp_all
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   616
  
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   617
end
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   618
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   619
class ring_gcd = comm_ring_1 + semiring_gcd
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   620
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   621
instantiation nat :: gcd
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   622
begin
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   623
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   624
fun
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   625
  gcd_nat  :: "nat \<Rightarrow> nat \<Rightarrow> nat"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   626
where
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   627
  "gcd_nat x y =
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   628
   (if y = 0 then x else gcd y (x mod y))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   629
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   630
definition
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   631
  lcm_nat :: "nat \<Rightarrow> nat \<Rightarrow> nat"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   632
where
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   633
  "lcm_nat x y = x * y div (gcd x y)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   634
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   635
instance proof qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   636
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   637
end
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   638
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   639
instantiation int :: gcd
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   640
begin
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   641
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   642
definition
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   643
  gcd_int  :: "int \<Rightarrow> int \<Rightarrow> int"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   644
where
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   645
  "gcd_int x y = int (gcd (nat (abs x)) (nat (abs y)))"
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   646
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   647
definition
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   648
  lcm_int :: "int \<Rightarrow> int \<Rightarrow> int"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   649
where
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   650
  "lcm_int x y = int (lcm (nat (abs x)) (nat (abs y)))"
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   651
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   652
instance proof qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   653
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   654
end
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   655
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   656
34030
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
   657
subsection {* Transfer setup *}
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   658
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   659
lemma transfer_nat_int_gcd:
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   660
  "(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> gcd (nat x) (nat y) = nat (gcd x y)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   661
  "(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> lcm (nat x) (nat y) = nat (lcm x y)"
32479
521cc9bf2958 some reorganization of number theory
haftmann
parents: 32415
diff changeset
   662
  unfolding gcd_int_def lcm_int_def
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   663
  by auto
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   664
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   665
lemma transfer_nat_int_gcd_closures:
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   666
  "x >= (0::int) \<Longrightarrow> y >= 0 \<Longrightarrow> gcd x y >= 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   667
  "x >= (0::int) \<Longrightarrow> y >= 0 \<Longrightarrow> lcm x y >= 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   668
  by (auto simp add: gcd_int_def lcm_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   669
35644
d20cf282342e transfer: avoid camel case
haftmann
parents: 35368
diff changeset
   670
declare transfer_morphism_nat_int[transfer add return:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   671
    transfer_nat_int_gcd transfer_nat_int_gcd_closures]
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   672
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   673
lemma transfer_int_nat_gcd:
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   674
  "gcd (int x) (int y) = int (gcd x y)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   675
  "lcm (int x) (int y) = int (lcm x y)"
32479
521cc9bf2958 some reorganization of number theory
haftmann
parents: 32415
diff changeset
   676
  by (unfold gcd_int_def lcm_int_def, auto)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   677
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   678
lemma transfer_int_nat_gcd_closures:
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   679
  "is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> gcd x y >= 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   680
  "is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> lcm x y >= 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   681
  by (auto simp add: gcd_int_def lcm_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   682
35644
d20cf282342e transfer: avoid camel case
haftmann
parents: 35368
diff changeset
   683
declare transfer_morphism_int_nat[transfer add return:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   684
    transfer_int_nat_gcd transfer_int_nat_gcd_closures]
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   685
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   686
34030
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
   687
subsection {* GCD properties *}
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   688
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   689
(* was gcd_induct *)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   690
lemma gcd_nat_induct:
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   691
  fixes m n :: nat
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   692
  assumes "\<And>m. P m 0"
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   693
    and "\<And>m n. 0 < n \<Longrightarrow> P n (m mod n) \<Longrightarrow> P m n"
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   694
  shows "P m n"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   695
  apply (rule gcd_nat.induct)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   696
  apply (case_tac "y = 0")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   697
  using assms apply simp_all
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   698
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   699
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   700
(* specific to int *)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   701
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   702
lemma gcd_neg1_int [simp]: "gcd (-x::int) y = gcd x y"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   703
  by (simp add: gcd_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   704
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   705
lemma gcd_neg2_int [simp]: "gcd (x::int) (-y) = gcd x y"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   706
  by (simp add: gcd_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   707
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   708
lemma gcd_neg_numeral_1_int [simp]:
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   709
  "gcd (- numeral n :: int) x = gcd (numeral n) x"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   710
  by (fact gcd_neg1_int)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   711
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   712
lemma gcd_neg_numeral_2_int [simp]:
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   713
  "gcd x (- numeral n :: int) = gcd x (numeral n)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   714
  by (fact gcd_neg2_int)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54437
diff changeset
   715
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   716
lemma abs_gcd_int[simp]: "abs(gcd (x::int) y) = gcd x y"
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   717
by(simp add: gcd_int_def)
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   718
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   719
lemma gcd_abs_int: "gcd (x::int) y = gcd (abs x) (abs y)"
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   720
by (simp add: gcd_int_def)
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   721
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   722
lemma gcd_abs1_int[simp]: "gcd (abs x) (y::int) = gcd x y"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   723
by (metis abs_idempotent gcd_abs_int)
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   724
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   725
lemma gcd_abs2_int[simp]: "gcd x (abs y::int) = gcd x y"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   726
by (metis abs_idempotent gcd_abs_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   727
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   728
lemma gcd_cases_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   729
  fixes x :: int and y
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   730
  assumes "x >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (gcd x y)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   731
      and "x >= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (gcd x (-y))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   732
      and "x <= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (gcd (-x) y)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   733
      and "x <= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (gcd (-x) (-y))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   734
  shows "P (gcd x y)"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
   735
by (insert assms, auto, arith)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   736
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   737
lemma gcd_ge_0_int [simp]: "gcd (x::int) y >= 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   738
  by (simp add: gcd_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   739
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   740
lemma lcm_neg1_int: "lcm (-x::int) y = lcm x y"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   741
  by (simp add: lcm_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   742
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   743
lemma lcm_neg2_int: "lcm (x::int) (-y) = lcm x y"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   744
  by (simp add: lcm_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   745
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   746
lemma lcm_abs_int: "lcm (x::int) y = lcm (abs x) (abs y)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   747
  by (simp add: lcm_int_def)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   748
31814
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   749
lemma abs_lcm_int [simp]: "abs (lcm i j::int) = lcm i j"
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   750
by(simp add:lcm_int_def)
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   751
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   752
lemma lcm_abs1_int[simp]: "lcm (abs x) (y::int) = lcm x y"
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   753
by (metis abs_idempotent lcm_int_def)
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   754
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   755
lemma lcm_abs2_int[simp]: "lcm x (abs y::int) = lcm x y"
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   756
by (metis abs_idempotent lcm_int_def)
7c122634da81 lcm abs lemmas
nipkow
parents: 31813
diff changeset
   757
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   758
lemma lcm_cases_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   759
  fixes x :: int and y
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   760
  assumes "x >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (lcm x y)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   761
      and "x >= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (lcm x (-y))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   762
      and "x <= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (lcm (-x) y)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   763
      and "x <= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (lcm (-x) (-y))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   764
  shows "P (lcm x y)"
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
   765
  using assms by (auto simp add: lcm_neg1_int lcm_neg2_int) arith
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   766
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   767
lemma lcm_ge_0_int [simp]: "lcm (x::int) y >= 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   768
  by (simp add: lcm_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   769
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   770
(* was gcd_0, etc. *)
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   771
lemma gcd_0_nat: "gcd (x::nat) 0 = x"
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   772
  by simp
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   773
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   774
(* was igcd_0, etc. *)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   775
lemma gcd_0_int [simp]: "gcd (x::int) 0 = abs x"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   776
  by (unfold gcd_int_def, auto)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   777
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   778
lemma gcd_0_left_nat: "gcd 0 (x::nat) = x"
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   779
  by simp
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
   780
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   781
lemma gcd_0_left_int [simp]: "gcd 0 (x::int) = abs x"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   782
  by (unfold gcd_int_def, auto)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   783
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   784
lemma gcd_red_nat: "gcd (x::nat) y = gcd y (x mod y)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   785
  by (case_tac "y = 0", auto)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   786
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   787
(* weaker, but useful for the simplifier *)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   788
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   789
lemma gcd_non_0_nat: "y ~= (0::nat) \<Longrightarrow> gcd (x::nat) y = gcd y (x mod y)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   790
  by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   791
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   792
lemma gcd_1_nat [simp]: "gcd (m::nat) 1 = 1"
21263
wenzelm
parents: 21256
diff changeset
   793
  by simp
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   794
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   795
lemma gcd_Suc_0 [simp]: "gcd (m::nat) (Suc 0) = Suc 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   796
  by (simp add: One_nat_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   797
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   798
lemma gcd_1_int [simp]: "gcd (m::int) 1 = 1"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   799
  by (simp add: gcd_int_def)
30082
43c5b7bfc791 make more proofs work whether or not One_nat_def is a simp rule
huffman
parents: 30042
diff changeset
   800
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   801
lemma gcd_idem_nat: "gcd (x::nat) x = x"
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
   802
by simp
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   803
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   804
lemma gcd_idem_int: "gcd (x::int) x = abs x"
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   805
by (auto simp add: gcd_int_def)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   806
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   807
declare gcd_nat.simps [simp del]
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   808
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   809
text {*
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27487
diff changeset
   810
  \medskip @{term "gcd m n"} divides @{text m} and @{text n}.  The
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   811
  conjunctions don't seem provable separately.
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   812
*}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   813
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   814
instance nat :: semiring_gcd
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   815
proof
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   816
  fix m n :: nat
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   817
  show "gcd m n dvd m" and "gcd m n dvd n"
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   818
  proof (induct m n rule: gcd_nat_induct)
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   819
    fix m n :: nat
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   820
    assume "gcd n (m mod n) dvd m mod n" and "gcd n (m mod n) dvd n"
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   821
    then have "gcd n (m mod n) dvd m"
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   822
      by (rule dvd_mod_imp_dvd)
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   823
    moreover assume "0 < n"
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   824
    ultimately show "gcd m n dvd m"
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   825
      by (simp add: gcd_non_0_nat)
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   826
  qed (simp_all add: gcd_0_nat gcd_non_0_nat)
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   827
next
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   828
  fix m n k :: nat
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   829
  assume "k dvd m" and "k dvd n"
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   830
  then show "k dvd gcd m n"
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   831
    by (induct m n rule: gcd_nat_induct) (simp_all add: gcd_non_0_nat dvd_mod gcd_0_nat)
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   832
qed (simp_all add: lcm_nat_def)
59667
651ea265d568 Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents: 59545
diff changeset
   833
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   834
instance int :: ring_gcd
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   835
  by standard
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   836
    (simp_all add: dvd_int_unfold_dvd_nat gcd_int_def lcm_int_def zdiv_int nat_abs_mult_distrib [symmetric] lcm_gcd gcd_greatest)
59667
651ea265d568 Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents: 59545
diff changeset
   837
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   838
lemma dvd_gcd_D1_nat: "k dvd gcd m n \<Longrightarrow> (k::nat) dvd m"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   839
  by (metis gcd_dvd1 dvd_trans)
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   840
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   841
lemma dvd_gcd_D2_nat: "k dvd gcd m n \<Longrightarrow> (k::nat) dvd n"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   842
  by (metis gcd_dvd2 dvd_trans)
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   843
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   844
lemma dvd_gcd_D1_int: "i dvd gcd m n \<Longrightarrow> (i::int) dvd m"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   845
  by (metis gcd_dvd1 dvd_trans)
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   846
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   847
lemma dvd_gcd_D2_int: "i dvd gcd m n \<Longrightarrow> (i::int) dvd n"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   848
  by (metis gcd_dvd2 dvd_trans)
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
   849
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   850
lemma gcd_le1_nat [simp]: "a \<noteq> 0 \<Longrightarrow> gcd (a::nat) b \<le> a"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   851
  by (rule dvd_imp_le, auto)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   852
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   853
lemma gcd_le2_nat [simp]: "b \<noteq> 0 \<Longrightarrow> gcd (a::nat) b \<le> b"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   854
  by (rule dvd_imp_le, auto)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   855
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   856
lemma gcd_le1_int [simp]: "a > 0 \<Longrightarrow> gcd (a::int) b \<le> a"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   857
  by (rule zdvd_imp_le, auto)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   858
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   859
lemma gcd_le2_int [simp]: "b > 0 \<Longrightarrow> gcd (a::int) b \<le> b"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   860
  by (rule zdvd_imp_le, auto)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   861
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   862
lemma gcd_greatest_iff_nat [iff]: "(k dvd gcd (m::nat) n) =
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   863
    (k dvd m & k dvd n)"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   864
  by (blast intro!: gcd_greatest intro: dvd_trans)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   865
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   866
lemma gcd_greatest_iff_int: "((k::int) dvd gcd m n) = (k dvd m & k dvd n)"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   867
  by (blast intro!: gcd_greatest intro: dvd_trans)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   868
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   869
lemma gcd_zero_nat [simp]: "(gcd (m::nat) n = 0) = (m = 0 & n = 0)"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   870
  by (simp only: dvd_0_left_iff [symmetric] gcd_greatest_iff_nat)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   871
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   872
lemma gcd_zero_int [simp]: "(gcd (m::int) n = 0) = (m = 0 & n = 0)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   873
  by (auto simp add: gcd_int_def)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   874
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   875
lemma gcd_pos_nat [simp]: "(gcd (m::nat) n > 0) = (m ~= 0 | n ~= 0)"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   876
  by (insert gcd_zero_nat [of m n], arith)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   877
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   878
lemma gcd_pos_int [simp]: "(gcd (m::int) n > 0) = (m ~= 0 | n ~= 0)"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   879
  by (insert gcd_zero_int [of m n], insert gcd_ge_0_int [of m n], arith)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   880
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   881
lemma gcd_unique_nat: "(d::nat) dvd a \<and> d dvd b \<and>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   882
    (\<forall>e. e dvd a \<and> e dvd b \<longrightarrow> e dvd d) \<longleftrightarrow> d = gcd a b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   883
  apply auto
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33318
diff changeset
   884
  apply (rule dvd_antisym)
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   885
  apply (erule (1) gcd_greatest)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   886
  apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   887
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   888
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   889
lemma gcd_unique_int: "d >= 0 & (d::int) dvd a \<and> d dvd b \<and>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   890
    (\<forall>e. e dvd a \<and> e dvd b \<longrightarrow> e dvd d) \<longleftrightarrow> d = gcd a b"
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33318
diff changeset
   891
apply (case_tac "d = 0")
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33318
diff changeset
   892
 apply simp
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33318
diff changeset
   893
apply (rule iffI)
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33318
diff changeset
   894
 apply (rule zdvd_antisym_nonneg)
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   895
 apply (auto intro: gcd_greatest)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   896
done
30082
43c5b7bfc791 make more proofs work whether or not One_nat_def is a simp rule
huffman
parents: 30042
diff changeset
   897
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   898
interpretation gcd_nat: abel_semigroup "gcd :: nat \<Rightarrow> nat \<Rightarrow> nat"
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   899
  + gcd_nat: semilattice_neutr_order "gcd :: nat \<Rightarrow> nat \<Rightarrow> nat" 0 "op dvd" "(\<lambda>m n. m dvd n \<and> \<not> n dvd m)"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   900
apply standard
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   901
apply (auto intro: dvd_antisym dvd_trans)[2]
59545
12a6088ed195 explicit equivalence for strict order on lattices
haftmann
parents: 59497
diff changeset
   902
apply (metis dvd.dual_order.refl gcd_unique_nat)+
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   903
done
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   904
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   905
interpretation gcd_int: abel_semigroup "gcd :: int \<Rightarrow> int \<Rightarrow> int" ..
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   906
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   907
lemmas gcd_assoc_nat = gcd.assoc [where ?'a = nat]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   908
lemmas gcd_commute_nat = gcd.commute [where ?'a = nat]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   909
lemmas gcd_left_commute_nat = gcd.left_commute [where ?'a = nat]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   910
lemmas gcd_assoc_int = gcd.assoc [where ?'a = int]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   911
lemmas gcd_commute_int = gcd.commute [where ?'a = int]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
   912
lemmas gcd_left_commute_int = gcd.left_commute [where ?'a = int]
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   913
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   914
lemmas gcd_ac_nat = gcd_assoc_nat gcd_commute_nat gcd_left_commute_nat
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   915
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   916
lemmas gcd_ac_int = gcd_assoc_int gcd_commute_int gcd_left_commute_int
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   917
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
   918
lemma gcd_proj1_if_dvd_nat [simp]: "(x::nat) dvd y \<Longrightarrow> gcd x y = x"
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   919
  by (fact gcd_nat.absorb1)
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
   920
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
   921
lemma gcd_proj2_if_dvd_nat [simp]: "(y::nat) dvd x \<Longrightarrow> gcd x y = y"
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   922
  by (fact gcd_nat.absorb2)
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
   923
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   924
lemma gcd_proj1_if_dvd_int [simp]: "x dvd y \<Longrightarrow> gcd (x::int) y = abs x"
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   925
  by (metis abs_dvd_iff gcd_0_left_int gcd_abs_int gcd_unique_int)
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
   926
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   927
lemma gcd_proj2_if_dvd_int [simp]: "y dvd x \<Longrightarrow> gcd (x::int) y = abs y"
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
   928
  by (metis gcd_proj1_if_dvd_int gcd_commute_int)
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
   929
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   930
text {*
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   931
  \medskip Multiplication laws
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   932
*}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   933
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   934
lemma gcd_mult_distrib_nat: "(k::nat) * gcd m n = gcd (k * m) (k * n)"
58623
2db1df2c8467 more bibtex entries;
wenzelm
parents: 57514
diff changeset
   935
    -- {* @{cite \<open>page 27\<close> davenport92} *}
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   936
  apply (induct m n rule: gcd_nat_induct)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   937
  apply simp
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   938
  apply (case_tac "k = 0")
45270
d5b5c9259afd fix bug in cancel_factor simprocs so they will work on goals like 'x * y < x * z' where the common term is already on the left
huffman
parents: 45264
diff changeset
   939
  apply (simp_all add: gcd_non_0_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   940
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   941
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   942
lemma gcd_mult_distrib_int: "abs (k::int) * gcd m n = gcd (k * m) (k * n)"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   943
  apply (subst (1 2) gcd_abs_int)
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   944
  apply (subst (1 2) abs_mult)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   945
  apply (rule gcd_mult_distrib_nat [transferred])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   946
  apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   947
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   948
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   949
lemma coprime_dvd_mult_nat: "coprime (k::nat) n \<Longrightarrow> k dvd m * n \<Longrightarrow> k dvd m"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   950
  apply (insert gcd_mult_distrib_nat [of m k n])
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   951
  apply simp
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   952
  apply (erule_tac t = m in ssubst)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   953
  apply simp
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   954
  done
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   955
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   956
lemma coprime_dvd_mult_int:
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   957
  "coprime (k::int) n \<Longrightarrow> k dvd m * n \<Longrightarrow> k dvd m"
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   958
apply (subst abs_dvd_iff [symmetric])
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   959
apply (subst dvd_abs_iff [symmetric])
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   960
apply (subst (asm) gcd_abs_int)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   961
apply (rule coprime_dvd_mult_nat [transferred])
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   962
    prefer 4 apply assumption
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   963
   apply auto
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   964
apply (subst abs_mult [symmetric], auto)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   965
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   966
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   967
lemma coprime_dvd_mult_iff_nat: "coprime (k::nat) n \<Longrightarrow>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   968
    (k dvd m * n) = (k dvd m)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   969
  by (auto intro: coprime_dvd_mult_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   970
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   971
lemma coprime_dvd_mult_iff_int: "coprime (k::int) n \<Longrightarrow>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   972
    (k dvd m * n) = (k dvd m)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   973
  by (auto intro: coprime_dvd_mult_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   974
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   975
lemma gcd_mult_cancel_nat: "coprime k n \<Longrightarrow> gcd ((k::nat) * m) n = gcd m n"
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33318
diff changeset
   976
  apply (rule dvd_antisym)
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
   977
  apply (rule gcd_greatest)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   978
  apply (rule_tac n = k in coprime_dvd_mult_nat)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   979
  apply (simp add: gcd_assoc_nat)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   980
  apply (simp add: gcd_commute_nat)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
   981
  apply (simp_all add: mult.commute)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   982
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   983
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   984
lemma gcd_mult_cancel_int:
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   985
  "coprime (k::int) n \<Longrightarrow> gcd (k * m) n = gcd m n"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   986
apply (subst (1 2) gcd_abs_int)
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
   987
apply (subst abs_mult)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
   988
apply (rule gcd_mult_cancel_nat [transferred], auto)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
   989
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   990
35368
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   991
lemma coprime_crossproduct_nat:
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   992
  fixes a b c d :: nat
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   993
  assumes "coprime a d" and "coprime b c"
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   994
  shows "a * c = b * d \<longleftrightarrow> a = b \<and> c = d" (is "?lhs \<longleftrightarrow> ?rhs")
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   995
proof
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   996
  assume ?rhs then show ?lhs by simp
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   997
next
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   998
  assume ?lhs
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
   999
  from `?lhs` have "a dvd b * d" by (auto intro: dvdI dest: sym)
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1000
  with `coprime a d` have "a dvd b" by (simp add: coprime_dvd_mult_iff_nat)
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1001
  from `?lhs` have "b dvd a * c" by (auto intro: dvdI dest: sym)
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1002
  with `coprime b c` have "b dvd a" by (simp add: coprime_dvd_mult_iff_nat)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1003
  from `?lhs` have "c dvd d * b" by (auto intro: dvdI dest: sym simp add: mult.commute)
35368
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1004
  with `coprime b c` have "c dvd d" by (simp add: coprime_dvd_mult_iff_nat gcd_commute_nat)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1005
  from `?lhs` have "d dvd c * a" by (auto intro: dvdI dest: sym simp add: mult.commute)
35368
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1006
  with `coprime a d` have "d dvd c" by (simp add: coprime_dvd_mult_iff_nat gcd_commute_nat)
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1007
  from `a dvd b` `b dvd a` have "a = b" by (rule Nat.dvd.antisym)
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1008
  moreover from `c dvd d` `d dvd c` have "c = d" by (rule Nat.dvd.antisym)
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1009
  ultimately show ?rhs ..
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1010
qed
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1011
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1012
lemma coprime_crossproduct_int:
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1013
  fixes a b c d :: int
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1014
  assumes "coprime a d" and "coprime b c"
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1015
  shows "\<bar>a\<bar> * \<bar>c\<bar> = \<bar>b\<bar> * \<bar>d\<bar> \<longleftrightarrow> \<bar>a\<bar> = \<bar>b\<bar> \<and> \<bar>c\<bar> = \<bar>d\<bar>"
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1016
  using assms by (intro coprime_crossproduct_nat [transferred]) auto
19b340c3f1ff crossproduct coprimality lemmas
haftmann
parents: 35216
diff changeset
  1017
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
  1018
text {* \medskip Addition laws *}
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
  1019
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1020
lemma gcd_add1_nat [simp]: "gcd ((m::nat) + n) n = gcd m n"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1021
  apply (case_tac "n = 0")
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1022
  apply (simp_all add: gcd_non_0_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1023
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1024
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1025
lemma gcd_add2_nat [simp]: "gcd (m::nat) (m + n) = gcd m n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1026
  apply (subst (1 2) gcd_commute_nat)
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1027
  apply (subst add.commute)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1028
  apply simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1029
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1030
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1031
(* to do: add the other variations? *)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1032
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1033
lemma gcd_diff1_nat: "(m::nat) >= n \<Longrightarrow> gcd (m - n) n = gcd m n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1034
  by (subst gcd_add1_nat [symmetric], auto)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1035
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1036
lemma gcd_diff2_nat: "(n::nat) >= m \<Longrightarrow> gcd (n - m) n = gcd m n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1037
  apply (subst gcd_commute_nat)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1038
  apply (subst gcd_diff1_nat [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1039
  apply auto
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1040
  apply (subst gcd_commute_nat)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1041
  apply (subst gcd_diff1_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1042
  apply assumption
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1043
  apply (rule gcd_commute_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1044
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1045
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1046
lemma gcd_non_0_int: "(y::int) > 0 \<Longrightarrow> gcd x y = gcd y (x mod y)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1047
  apply (frule_tac b = y and a = x in pos_mod_sign)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1048
  apply (simp del: pos_mod_sign add: gcd_int_def abs_if nat_mod_distrib)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1049
  apply (auto simp add: gcd_non_0_nat nat_mod_distrib [symmetric]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1050
    zmod_zminus1_eq_if)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1051
  apply (frule_tac a = x in pos_mod_bound)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1052
  apply (subst (1 2) gcd_commute_nat)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1053
  apply (simp del: pos_mod_bound add: nat_diff_distrib gcd_diff2_nat
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1054
    nat_le_eq_zle)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1055
done
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
  1056
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1057
lemma gcd_red_int: "gcd (x::int) y = gcd y (x mod y)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1058
  apply (case_tac "y = 0")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1059
  apply force
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1060
  apply (case_tac "y > 0")
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1061
  apply (subst gcd_non_0_int, auto)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1062
  apply (insert gcd_non_0_int [of "-y" "-x"])
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  1063
  apply auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1064
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1065
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1066
lemma gcd_add1_int [simp]: "gcd ((m::int) + n) n = gcd m n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1067
by (metis gcd_red_int mod_add_self1 add.commute)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1068
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1069
lemma gcd_add2_int [simp]: "gcd m ((m::int) + n) = gcd m n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1070
by (metis gcd_add1_int gcd_commute_int add.commute)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
  1071
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1072
lemma gcd_add_mult_nat: "gcd (m::nat) (k * m + n) = gcd m n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1073
by (metis mod_mult_self3 gcd_commute_nat gcd_red_nat)
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
  1074
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1075
lemma gcd_add_mult_int: "gcd (m::int) (k * m + n) = gcd m n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1076
by (metis gcd_commute_int gcd_red_int mod_mult_self1 add.commute)
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1077
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
  1078
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1079
(* to do: differences, and all variations of addition rules
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1080
    as simplification rules for nat and int *)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1081
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1082
(* FIXME remove iff *)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1083
lemma gcd_dvd_prod_nat [iff]: "gcd (m::nat) n dvd k * n"
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1084
  using mult_dvd_mono [of 1] by auto
22027
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1085
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1086
(* to do: add the three variations of these, and for ints? *)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1087
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1088
lemma finite_divisors_nat[simp]:
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1089
  assumes "(m::nat) ~= 0" shows "finite{d. d dvd m}"
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1090
proof-
60512
e0169291b31c tuned proofs -- slightly faster;
wenzelm
parents: 60357
diff changeset
  1091
  have "finite{d. d <= m}"
e0169291b31c tuned proofs -- slightly faster;
wenzelm
parents: 60357
diff changeset
  1092
    by (blast intro: bounded_nat_set_is_finite)
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1093
  from finite_subset[OF _ this] show ?thesis using assms
60512
e0169291b31c tuned proofs -- slightly faster;
wenzelm
parents: 60357
diff changeset
  1094
    by (metis Collect_mono dvd_imp_le neq0_conv)
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1095
qed
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1096
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1097
lemma finite_divisors_int[simp]:
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1098
  assumes "(i::int) ~= 0" shows "finite{d. d dvd i}"
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1099
proof-
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1100
  have "{d. abs d <= abs i} = {- abs i .. abs i}" by(auto simp:abs_if)
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1101
  hence "finite{d. abs d <= abs i}" by simp
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1102
  from finite_subset[OF _ this] show ?thesis using assms
60512
e0169291b31c tuned proofs -- slightly faster;
wenzelm
parents: 60357
diff changeset
  1103
    by (simp add: dvd_imp_le_int subset_iff)
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1104
qed
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1105
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1106
lemma Max_divisors_self_nat[simp]: "n\<noteq>0 \<Longrightarrow> Max{d::nat. d dvd n} = n"
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1107
apply(rule antisym)
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44845
diff changeset
  1108
 apply (fastforce intro: Max_le_iff[THEN iffD2] simp: dvd_imp_le)
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1109
apply simp
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1110
done
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1111
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1112
lemma Max_divisors_self_int[simp]: "n\<noteq>0 \<Longrightarrow> Max{d::int. d dvd n} = abs n"
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1113
apply(rule antisym)
44278
1220ecb81e8f observe distinction between sets and predicates more properly
haftmann
parents: 42871
diff changeset
  1114
 apply(rule Max_le_iff [THEN iffD2])
1220ecb81e8f observe distinction between sets and predicates more properly
haftmann
parents: 42871
diff changeset
  1115
  apply (auto intro: abs_le_D1 dvd_imp_le_int)
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1116
done
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1117
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1118
lemma gcd_is_Max_divisors_nat:
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1119
  "m ~= 0 \<Longrightarrow> n ~= 0 \<Longrightarrow> gcd (m::nat) n = (Max {d. d dvd m & d dvd n})"
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1120
apply(rule Max_eqI[THEN sym])
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1121
  apply (metis finite_Collect_conjI finite_divisors_nat)
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1122
 apply simp
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1123
 apply(metis Suc_diff_1 Suc_neq_Zero dvd_imp_le gcd_greatest_iff_nat gcd_pos_nat)
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1124
apply simp
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1125
done
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1126
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1127
lemma gcd_is_Max_divisors_int:
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1128
  "m ~= 0 ==> n ~= 0 ==> gcd (m::int) n = (Max {d. d dvd m & d dvd n})"
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1129
apply(rule Max_eqI[THEN sym])
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1130
  apply (metis finite_Collect_conjI finite_divisors_int)
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1131
 apply simp
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1132
 apply (metis gcd_greatest_iff_int gcd_pos_int zdvd_imp_le)
31734
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1133
apply simp
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1134
done
a4a79836d07b new lemmas
nipkow
parents: 31730
diff changeset
  1135
34030
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
  1136
lemma gcd_code_int [code]:
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
  1137
  "gcd k l = \<bar>if l = (0::int) then k else gcd l (\<bar>k\<bar> mod \<bar>l\<bar>)\<bar>"
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
  1138
  by (simp add: gcd_int_def nat_mod_distrib gcd_non_0_nat)
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
  1139
22027
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1140
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1141
subsection {* Coprimality *}
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1142
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1143
lemma div_gcd_coprime_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1144
  assumes nz: "(a::nat) \<noteq> 0 \<or> b \<noteq> 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1145
  shows "coprime (a div gcd a b) (b div gcd a b)"
22367
6860f09242bf tuned document;
wenzelm
parents: 22027
diff changeset
  1146
proof -
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27487
diff changeset
  1147
  let ?g = "gcd a b"
22027
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1148
  let ?a' = "a div ?g"
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1149
  let ?b' = "b div ?g"
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27487
diff changeset
  1150
  let ?g' = "gcd ?a' ?b'"
22027
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1151
  have dvdg: "?g dvd a" "?g dvd b" by simp_all
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1152
  have dvdg': "?g' dvd ?a'" "?g' dvd ?b'" by simp_all
22367
6860f09242bf tuned document;
wenzelm
parents: 22027
diff changeset
  1153
  from dvdg dvdg' obtain ka kb ka' kb' where
6860f09242bf tuned document;
wenzelm
parents: 22027
diff changeset
  1154
      kab: "a = ?g * ka" "b = ?g * kb" "?a' = ?g' * ka'" "?b' = ?g' * kb'"
22027
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1155
    unfolding dvd_def by blast
58834
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58787
diff changeset
  1156
  from this [symmetric] have "?g * ?a' = (?g * ?g') * ka'" "?g * ?b' = (?g * ?g') * kb'"
773b378d9313 more simp rules concerning dvd and even/odd
haftmann
parents: 58787
diff changeset
  1157
    by (simp_all add: mult.assoc mult.left_commute [of "gcd a b"])
22367
6860f09242bf tuned document;
wenzelm
parents: 22027
diff changeset
  1158
  then have dvdgg':"?g * ?g' dvd a" "?g* ?g' dvd b"
6860f09242bf tuned document;
wenzelm
parents: 22027
diff changeset
  1159
    by (auto simp add: dvd_mult_div_cancel [OF dvdg(1)]
6860f09242bf tuned document;
wenzelm
parents: 22027
diff changeset
  1160
      dvd_mult_div_cancel [OF dvdg(2)] dvd_def)
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  1161
  have "?g \<noteq> 0" using nz by simp
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1162
  then have gp: "?g > 0" by arith
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  1163
  from gcd_greatest [OF dvdgg'] have "?g * ?g' dvd ?g" .
22367
6860f09242bf tuned document;
wenzelm
parents: 22027
diff changeset
  1164
  with dvd_mult_cancel1 [OF gp] show "?g' = 1" by simp
22027
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1165
qed
e4a08629c4bd A few lemmas about relative primes when dividing trough gcd
chaieb
parents: 21404
diff changeset
  1166
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1167
lemma div_gcd_coprime_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1168
  assumes nz: "(a::int) \<noteq> 0 \<or> b \<noteq> 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1169
  shows "coprime (a div gcd a b) (b div gcd a b)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1170
apply (subst (1 2 3) gcd_abs_int)
31813
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
  1171
apply (subst (1 2) abs_div)
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
  1172
  apply simp
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
  1173
 apply simp
4df828bbc411 gcd abs lemmas
nipkow
parents: 31798
diff changeset
  1174
apply(subst (1 2) abs_gcd_int)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1175
apply (rule div_gcd_coprime_nat [transferred])
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1176
using nz apply (auto simp add: gcd_abs_int [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1177
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1178
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1179
lemma coprime_nat: "coprime (a::nat) b \<longleftrightarrow> (\<forall>d. d dvd a \<and> d dvd b \<longleftrightarrow> d = 1)"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1180
  using gcd_unique_nat[of 1 a b, simplified] by auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1181
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1182
lemma coprime_Suc_0_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1183
    "coprime (a::nat) b \<longleftrightarrow> (\<forall>d. d dvd a \<and> d dvd b \<longleftrightarrow> d = Suc 0)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1184
  using coprime_nat by (simp add: One_nat_def)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1185
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1186
lemma coprime_int: "coprime (a::int) b \<longleftrightarrow>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1187
    (\<forall>d. d >= 0 \<and> d dvd a \<and> d dvd b \<longleftrightarrow> d = 1)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1188
  using gcd_unique_int [of 1 a b]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1189
  apply clarsimp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1190
  apply (erule subst)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1191
  apply (rule iffI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1192
  apply force
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59667
diff changeset
  1193
  apply (drule_tac x = "abs e" for e in exI)
22bc39064290 prefer local fixes;
wenzelm
parents: 59667
diff changeset
  1194
  apply (case_tac "e >= 0" for e :: int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1195
  apply force
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1196
  apply force
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59667
diff changeset
  1197
  done
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1198
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1199
lemma gcd_coprime_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1200
  assumes z: "gcd (a::nat) b \<noteq> 0" and a: "a = a' * gcd a b" and
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1201
    b: "b = b' * gcd a b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1202
  shows    "coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1203
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1204
  apply (subgoal_tac "a' = a div gcd a b")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1205
  apply (erule ssubst)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1206
  apply (subgoal_tac "b' = b div gcd a b")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1207
  apply (erule ssubst)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1208
  apply (rule div_gcd_coprime_nat)
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
  1209
  using z apply force
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1210
  apply (subst (1) b)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1211
  using z apply force
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1212
  apply (subst (1) a)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1213
  using z apply force
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
  1214
  done
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1215
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1216
lemma gcd_coprime_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1217
  assumes z: "gcd (a::int) b \<noteq> 0" and a: "a = a' * gcd a b" and
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1218
    b: "b = b' * gcd a b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1219
  shows    "coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1220
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1221
  apply (subgoal_tac "a' = a div gcd a b")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1222
  apply (erule ssubst)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1223
  apply (subgoal_tac "b' = b div gcd a b")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1224
  apply (erule ssubst)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1225
  apply (rule div_gcd_coprime_int)
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
  1226
  using z apply force
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1227
  apply (subst (1) b)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1228
  using z apply force
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1229
  apply (subst (1) a)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1230
  using z apply force
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
  1231
  done
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1232
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1233
lemma coprime_mult_nat: assumes da: "coprime (d::nat) a" and db: "coprime d b"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1234
    shows "coprime d (a * b)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1235
  apply (subst gcd_commute_nat)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1236
  using da apply (subst gcd_mult_cancel_nat)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1237
  apply (subst gcd_commute_nat, assumption)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1238
  apply (subst gcd_commute_nat, rule db)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1239
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1240
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1241
lemma coprime_mult_int: assumes da: "coprime (d::int) a" and db: "coprime d b"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1242
    shows "coprime d (a * b)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1243
  apply (subst gcd_commute_int)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1244
  using da apply (subst gcd_mult_cancel_int)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1245
  apply (subst gcd_commute_int, assumption)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1246
  apply (subst gcd_commute_int, rule db)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1247
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1248
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1249
lemma coprime_lmult_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1250
  assumes dab: "coprime (d::nat) (a * b)" shows "coprime d a"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1251
proof -
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1252
  have "gcd d a dvd gcd d (a * b)"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  1253
    by (rule gcd_greatest, auto)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1254
  with dab show ?thesis
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1255
    by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1256
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1257
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1258
lemma coprime_lmult_int:
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1259
  assumes "coprime (d::int) (a * b)" shows "coprime d a"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1260
proof -
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1261
  have "gcd d a dvd gcd d (a * b)"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  1262
    by (rule gcd_greatest, auto)
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1263
  with assms show ?thesis
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1264
    by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1265
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1266
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1267
lemma coprime_rmult_nat:
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1268
  assumes "coprime (d::nat) (a * b)" shows "coprime d b"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1269
proof -
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1270
  have "gcd d b dvd gcd d (a * b)"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  1271
    by (rule gcd_greatest, auto intro: dvd_mult)
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1272
  with assms show ?thesis
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1273
    by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1274
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1275
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1276
lemma coprime_rmult_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1277
  assumes dab: "coprime (d::int) (a * b)" shows "coprime d b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1278
proof -
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1279
  have "gcd d b dvd gcd d (a * b)"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  1280
    by (rule gcd_greatest, auto intro: dvd_mult)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1281
  with dab show ?thesis
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1282
    by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1283
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1284
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1285
lemma coprime_mul_eq_nat: "coprime (d::nat) (a * b) \<longleftrightarrow>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1286
    coprime d a \<and>  coprime d b"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1287
  using coprime_rmult_nat[of d a b] coprime_lmult_nat[of d a b]
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1288
    coprime_mult_nat[of d a b]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1289
  by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1290
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1291
lemma coprime_mul_eq_int: "coprime (d::int) (a * b) \<longleftrightarrow>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1292
    coprime d a \<and>  coprime d b"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1293
  using coprime_rmult_int[of d a b] coprime_lmult_int[of d a b]
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1294
    coprime_mult_int[of d a b]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1295
  by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1296
52397
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1297
lemma coprime_power_int:
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1298
  assumes "0 < n" shows "coprime (a :: int) (b ^ n) \<longleftrightarrow> coprime a b"
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1299
  using assms
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1300
proof (induct n)
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1301
  case (Suc n) then show ?case
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1302
    by (cases n) (simp_all add: coprime_mul_eq_int)
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1303
qed simp
e95f6b4b1bcf added coprimality lemma
noschinl
parents: 51547
diff changeset
  1304
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1305
lemma gcd_coprime_exists_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1306
    assumes nz: "gcd (a::nat) b \<noteq> 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1307
    shows "\<exists>a' b'. a = a' * gcd a b \<and> b = b' * gcd a b \<and> coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1308
  apply (rule_tac x = "a div gcd a b" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1309
  apply (rule_tac x = "b div gcd a b" in exI)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1310
  using nz apply (auto simp add: div_gcd_coprime_nat dvd_div_mult)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1311
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1312
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1313
lemma gcd_coprime_exists_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1314
    assumes nz: "gcd (a::int) b \<noteq> 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1315
    shows "\<exists>a' b'. a = a' * gcd a b \<and> b = b' * gcd a b \<and> coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1316
  apply (rule_tac x = "a div gcd a b" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1317
  apply (rule_tac x = "b div gcd a b" in exI)
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  1318
  using nz apply (auto simp add: div_gcd_coprime_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1319
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1320
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1321
lemma coprime_exp_nat: "coprime (d::nat) a \<Longrightarrow> coprime d (a^n)"
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  1322
  by (induct n) (simp_all add: coprime_mult_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1323
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1324
lemma coprime_exp_int: "coprime (d::int) a \<Longrightarrow> coprime d (a^n)"
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  1325
  by (induct n) (simp_all add: coprime_mult_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1326
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1327
lemma coprime_exp2_nat [intro]: "coprime (a::nat) b \<Longrightarrow> coprime (a^n) (b^m)"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1328
  by (simp add: coprime_exp_nat ac_simps)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1329
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1330
lemma coprime_exp2_int [intro]: "coprime (a::int) b \<Longrightarrow> coprime (a^n) (b^m)"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1331
  by (simp add: coprime_exp_int ac_simps)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1332
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1333
lemma gcd_exp_nat: "gcd ((a::nat)^n) (b^n) = (gcd a b)^n"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1334
proof (cases)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1335
  assume "a = 0 & b = 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1336
  thus ?thesis by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1337
  next assume "~(a = 0 & b = 0)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1338
  hence "coprime ((a div gcd a b)^n) ((b div gcd a b)^n)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1339
    by (auto simp:div_gcd_coprime_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1340
  hence "gcd ((a div gcd a b)^n * (gcd a b)^n)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1341
      ((b div gcd a b)^n * (gcd a b)^n) = (gcd a b)^n"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1342
    by (metis gcd_mult_distrib_nat mult.commute mult.right_neutral)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1343
  also have "(a div gcd a b)^n * (gcd a b)^n = a^n"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1344
    by (metis dvd_div_mult_self gcd_unique_nat power_mult_distrib)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1345
  also have "(b div gcd a b)^n * (gcd a b)^n = b^n"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1346
    by (metis dvd_div_mult_self gcd_unique_nat power_mult_distrib)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1347
  finally show ?thesis .
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1348
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1349
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1350
lemma gcd_exp_int: "gcd ((a::int)^n) (b^n) = (gcd a b)^n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1351
  apply (subst (1 2) gcd_abs_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1352
  apply (subst (1 2) power_abs)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1353
  apply (rule gcd_exp_nat [where n = n, transferred])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1354
  apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1355
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1356
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1357
lemma division_decomp_nat: assumes dc: "(a::nat) dvd b * c"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1358
  shows "\<exists>b' c'. a = b' * c' \<and> b' dvd b \<and> c' dvd c"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1359
proof-
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1360
  let ?g = "gcd a b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1361
  {assume "?g = 0" with dc have ?thesis by auto}
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1362
  moreover
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1363
  {assume z: "?g \<noteq> 0"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1364
    from gcd_coprime_exists_nat[OF z]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1365
    obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1366
      by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1367
    have thb: "?g dvd b" by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1368
    from ab'(1) have "a' dvd a"  unfolding dvd_def by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1369
    with dc have th0: "a' dvd b*c" using dvd_trans[of a' a "b*c"] by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1370
    from dc ab'(1,2) have "a'*?g dvd (b'*?g) *c" by auto
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1371
    hence "?g*a' dvd ?g * (b' * c)" by (simp add: mult.assoc)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1372
    with z have th_1: "a' dvd b' * c" by auto
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1373
    from coprime_dvd_mult_nat[OF ab'(3)] th_1
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1374
    have thc: "a' dvd c" by (subst (asm) mult.commute, blast)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1375
    from ab' have "a = ?g*a'" by algebra
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1376
    with thb thc have ?thesis by blast }
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1377
  ultimately show ?thesis by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1378
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1379
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1380
lemma division_decomp_int: assumes dc: "(a::int) dvd b * c"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1381
  shows "\<exists>b' c'. a = b' * c' \<and> b' dvd b \<and> c' dvd c"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1382
proof-
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1383
  let ?g = "gcd a b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1384
  {assume "?g = 0" with dc have ?thesis by auto}
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1385
  moreover
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1386
  {assume z: "?g \<noteq> 0"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1387
    from gcd_coprime_exists_int[OF z]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1388
    obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1389
      by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1390
    have thb: "?g dvd b" by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1391
    from ab'(1) have "a' dvd a"  unfolding dvd_def by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1392
    with dc have th0: "a' dvd b*c"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1393
      using dvd_trans[of a' a "b*c"] by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1394
    from dc ab'(1,2) have "a'*?g dvd (b'*?g) *c" by auto
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1395
    hence "?g*a' dvd ?g * (b' * c)" by (simp add: mult.assoc)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1396
    with z have th_1: "a' dvd b' * c" by auto
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1397
    from coprime_dvd_mult_int[OF ab'(3)] th_1
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1398
    have thc: "a' dvd c" by (subst (asm) mult.commute, blast)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1399
    from ab' have "a = ?g*a'" by algebra
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1400
    with thb thc have ?thesis by blast }
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1401
  ultimately show ?thesis by blast
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1402
qed
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1403
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1404
lemma pow_divides_pow_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1405
  assumes ab: "(a::nat) ^ n dvd b ^n" and n:"n \<noteq> 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1406
  shows "a dvd b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1407
proof-
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1408
  let ?g = "gcd a b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1409
  from n obtain m where m: "n = Suc m" by (cases n, simp_all)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1410
  {assume "?g = 0" with ab n have ?thesis by auto }
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1411
  moreover
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1412
  {assume z: "?g \<noteq> 0"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  1413
    hence zn: "?g ^ n \<noteq> 0" using n by simp
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1414
    from gcd_coprime_exists_nat[OF z]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1415
    obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1416
      by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1417
    from ab have "(a' * ?g) ^ n dvd (b' * ?g)^n"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1418
      by (simp add: ab'(1,2)[symmetric])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1419
    hence "?g^n*a'^n dvd ?g^n *b'^n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1420
      by (simp only: power_mult_distrib mult.commute)
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58776
diff changeset
  1421
    then have th0: "a'^n dvd b'^n"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58776
diff changeset
  1422
      using zn by auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1423
    have "a' dvd a'^n" by (simp add: m)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1424
    with th0 have "a' dvd b'^n" using dvd_trans[of a' "a'^n" "b'^n"] by simp
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1425
    hence th1: "a' dvd b'^m * b'" by (simp add: m mult.commute)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1426
    from coprime_dvd_mult_nat[OF coprime_exp_nat [OF ab'(3), of m]] th1
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1427
    have "a' dvd b'" by (subst (asm) mult.commute, blast)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1428
    hence "a'*?g dvd b'*?g" by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1429
    with ab'(1,2)  have ?thesis by simp }
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1430
  ultimately show ?thesis by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1431
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1432
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1433
lemma pow_divides_pow_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1434
  assumes ab: "(a::int) ^ n dvd b ^n" and n:"n \<noteq> 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1435
  shows "a dvd b"
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1436
proof-
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1437
  let ?g = "gcd a b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1438
  from n obtain m where m: "n = Suc m" by (cases n, simp_all)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1439
  {assume "?g = 0" with ab n have ?thesis by auto }
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1440
  moreover
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1441
  {assume z: "?g \<noteq> 0"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  1442
    hence zn: "?g ^ n \<noteq> 0" using n by simp
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1443
    from gcd_coprime_exists_int[OF z]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1444
    obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1445
      by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1446
    from ab have "(a' * ?g) ^ n dvd (b' * ?g)^n"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1447
      by (simp add: ab'(1,2)[symmetric])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1448
    hence "?g^n*a'^n dvd ?g^n *b'^n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1449
      by (simp only: power_mult_distrib mult.commute)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1450
    with zn z n have th0:"a'^n dvd b'^n" by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1451
    have "a' dvd a'^n" by (simp add: m)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1452
    with th0 have "a' dvd b'^n"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1453
      using dvd_trans[of a' "a'^n" "b'^n"] by simp
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  1454
    hence th1: "a' dvd b'^m * b'" by (simp add: m mult.commute)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1455
    from coprime_dvd_mult_int[OF coprime_exp_int [OF ab'(3), of m]] th1
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1456
    have "a' dvd b'" by (subst (asm) mult.commute, blast)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1457
    hence "a'*?g dvd b'*?g" by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1458
    with ab'(1,2)  have ?thesis by simp }
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1459
  ultimately show ?thesis by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1460
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1461
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1462
lemma pow_divides_eq_nat [simp]: "n ~= 0 \<Longrightarrow> ((a::nat)^n dvd b^n) = (a dvd b)"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1463
  by (auto intro: pow_divides_pow_nat dvd_power_same)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1464
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1465
lemma pow_divides_eq_int [simp]: "n ~= 0 \<Longrightarrow> ((a::int)^n dvd b^n) = (a dvd b)"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1466
  by (auto intro: pow_divides_pow_int dvd_power_same)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1467
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1468
lemma divides_mult_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1469
  assumes mr: "(m::nat) dvd r" and nr: "n dvd r" and mn:"coprime m n"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1470
  shows "m * n dvd r"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1471
proof-
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1472
  from mr nr obtain m' n' where m': "r = m*m'" and n': "r = n*n'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1473
    unfolding dvd_def by blast
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1474
  from mr n' have "m dvd n'*n" by (simp add: mult.commute)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1475
  hence "m dvd n'" using coprime_dvd_mult_iff_nat[OF mn] by simp
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1476
  then obtain k where k: "n' = m*k" unfolding dvd_def by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1477
  from n' k show ?thesis unfolding dvd_def by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1478
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1479
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1480
lemma divides_mult_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1481
  assumes mr: "(m::int) dvd r" and nr: "n dvd r" and mn:"coprime m n"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1482
  shows "m * n dvd r"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1483
proof-
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1484
  from mr nr obtain m' n' where m': "r = m*m'" and n': "r = n*n'"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1485
    unfolding dvd_def by blast
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1486
  from mr n' have "m dvd n'*n" by (simp add: mult.commute)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1487
  hence "m dvd n'" using coprime_dvd_mult_iff_int[OF mn] by simp
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1488
  then obtain k where k: "n' = m*k" unfolding dvd_def by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1489
  from n' k show ?thesis unfolding dvd_def by auto
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1490
qed
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1491
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1492
lemma coprime_plus_one_nat [simp]: "coprime ((n::nat) + 1) n"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1493
  by (simp add: gcd.commute)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1494
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1495
lemma coprime_Suc_nat [simp]: "coprime (Suc n) n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1496
  using coprime_plus_one_nat by (simp add: One_nat_def)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1497
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1498
lemma coprime_plus_one_int [simp]: "coprime ((n::int) + 1) n"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1499
  by (simp add: gcd.commute)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1500
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1501
lemma coprime_minus_one_nat: "(n::nat) \<noteq> 0 \<Longrightarrow> coprime (n - 1) n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1502
  using coprime_plus_one_nat [of "n - 1"]
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1503
    gcd_commute_nat [of "n - 1" n] by auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1504
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1505
lemma coprime_minus_one_int: "coprime ((n::int) - 1) n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1506
  using coprime_plus_one_int [of "n - 1"]
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1507
    gcd_commute_int [of "n - 1" n] by auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1508
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1509
lemma setprod_coprime_nat [rule_format]:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1510
    "(ALL i: A. coprime (f i) (x::nat)) --> coprime (PROD i:A. f i) x"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1511
  apply (case_tac "finite A")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1512
  apply (induct set: finite)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1513
  apply (auto simp add: gcd_mult_cancel_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1514
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1515
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1516
lemma setprod_coprime_int [rule_format]:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1517
    "(ALL i: A. coprime (f i) (x::int)) --> coprime (PROD i:A. f i) x"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1518
  apply (case_tac "finite A")
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1519
  apply (induct set: finite)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1520
  apply (auto simp add: gcd_mult_cancel_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1521
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1522
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1523
lemma coprime_common_divisor_nat: 
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1524
  "coprime (a::nat) b \<Longrightarrow> x dvd a \<Longrightarrow> x dvd b \<Longrightarrow> x = 1"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1525
  by (metis gcd_greatest_iff_nat nat_dvd_1_iff_1)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1526
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1527
lemma coprime_common_divisor_int:
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1528
  "coprime (a::int) b \<Longrightarrow> x dvd a \<Longrightarrow> x dvd b \<Longrightarrow> abs x = 1"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1529
  using gcd_greatest_iff [of x a b] by auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1530
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1531
lemma coprime_divisors_nat:
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1532
    "(d::int) dvd a \<Longrightarrow> e dvd b \<Longrightarrow> coprime a b \<Longrightarrow> coprime d e"
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1533
  by (meson coprime_int dvd_trans gcd_dvd1 gcd_dvd2 gcd_ge_0_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1534
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1535
lemma invertible_coprime_nat: "(x::nat) * y mod m = 1 \<Longrightarrow> coprime x m"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1536
by (metis coprime_lmult_nat gcd_1_nat gcd_commute_nat gcd_red_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1537
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1538
lemma invertible_coprime_int: "(x::int) * y mod m = 1 \<Longrightarrow> coprime x m"
60162
645058aa9d6f tidying some messy proofs
paulson <lp15@cam.ac.uk>
parents: 59977
diff changeset
  1539
by (metis coprime_lmult_int gcd_1_int gcd_commute_int gcd_red_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1540
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1541
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1542
subsection {* Bezout's theorem *}
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1543
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1544
(* Function bezw returns a pair of witnesses to Bezout's theorem --
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1545
   see the theorems that follow the definition. *)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1546
fun
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1547
  bezw  :: "nat \<Rightarrow> nat \<Rightarrow> int * int"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1548
where
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1549
  "bezw x y =
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1550
  (if y = 0 then (1, 0) else
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1551
      (snd (bezw y (x mod y)),
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1552
       fst (bezw y (x mod y)) - snd (bezw y (x mod y)) * int(x div y)))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1553
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1554
lemma bezw_0 [simp]: "bezw x 0 = (1, 0)" by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1555
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1556
lemma bezw_non_0: "y > 0 \<Longrightarrow> bezw x y = (snd (bezw y (x mod y)),
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1557
       fst (bezw y (x mod y)) - snd (bezw y (x mod y)) * int(x div y))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1558
  by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1559
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1560
declare bezw.simps [simp del]
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1561
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1562
lemma bezw_aux [rule_format]:
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1563
    "fst (bezw x y) * int x + snd (bezw x y) * int y = int (gcd x y)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1564
proof (induct x y rule: gcd_nat_induct)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1565
  fix m :: nat
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1566
  show "fst (bezw m 0) * int m + snd (bezw m 0) * int 0 = int (gcd m 0)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1567
    by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1568
  next fix m :: nat and n
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1569
    assume ngt0: "n > 0" and
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1570
      ih: "fst (bezw n (m mod n)) * int n +
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1571
        snd (bezw n (m mod n)) * int (m mod n) =
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1572
        int (gcd n (m mod n))"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1573
    thus "fst (bezw m n) * int m + snd (bezw m n) * int n = int (gcd m n)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1574
      apply (simp add: bezw_non_0 gcd_non_0_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1575
      apply (erule subst)
36350
bc7982c54e37 dropped group_simps, ring_simps, field_eq_simps
haftmann
parents: 35726
diff changeset
  1576
      apply (simp add: field_simps)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1577
      apply (subst mod_div_equality [of m n, symmetric])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1578
      (* applying simp here undoes the last substitution!
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1579
         what is procedure cancel_div_mod? *)
58776
95e58e04e534 use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
hoelzl
parents: 58770
diff changeset
  1580
      apply (simp only: NO_MATCH_def field_simps of_nat_add of_nat_mult)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1581
      done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1582
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1583
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1584
lemma bezout_int:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1585
  fixes x y
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1586
  shows "EX u v. u * (x::int) + v * y = gcd x y"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1587
proof -
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1588
  have bezout_aux: "!!x y. x \<ge> (0::int) \<Longrightarrow> y \<ge> 0 \<Longrightarrow>
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1589
      EX u v. u * x + v * y = gcd x y"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1590
    apply (rule_tac x = "fst (bezw (nat x) (nat y))" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1591
    apply (rule_tac x = "snd (bezw (nat x) (nat y))" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1592
    apply (unfold gcd_int_def)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1593
    apply simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1594
    apply (subst bezw_aux [symmetric])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1595
    apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1596
    done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1597
  have "(x \<ge> 0 \<and> y \<ge> 0) | (x \<ge> 0 \<and> y \<le> 0) | (x \<le> 0 \<and> y \<ge> 0) |
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1598
      (x \<le> 0 \<and> y \<le> 0)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1599
    by auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1600
  moreover have "x \<ge> 0 \<Longrightarrow> y \<ge> 0 \<Longrightarrow> ?thesis"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1601
    by (erule (1) bezout_aux)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1602
  moreover have "x >= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> ?thesis"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1603
    apply (insert bezout_aux [of x "-y"])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1604
    apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1605
    apply (rule_tac x = u in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1606
    apply (rule_tac x = "-v" in exI)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1607
    apply (subst gcd_neg2_int [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1608
    apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1609
    done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1610
  moreover have "x <= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> ?thesis"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1611
    apply (insert bezout_aux [of "-x" y])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1612
    apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1613
    apply (rule_tac x = "-u" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1614
    apply (rule_tac x = v in exI)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1615
    apply (subst gcd_neg1_int [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1616
    apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1617
    done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1618
  moreover have "x <= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> ?thesis"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1619
    apply (insert bezout_aux [of "-x" "-y"])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1620
    apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1621
    apply (rule_tac x = "-u" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1622
    apply (rule_tac x = "-v" in exI)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1623
    apply (subst gcd_neg1_int [symmetric])
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1624
    apply (subst gcd_neg2_int [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1625
    apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1626
    done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1627
  ultimately show ?thesis by blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1628
qed
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1629
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1630
text {* versions of Bezout for nat, by Amine Chaieb *}
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1631
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1632
lemma ind_euclid:
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1633
  assumes c: " \<forall>a b. P (a::nat) b \<longleftrightarrow> P b a" and z: "\<forall>a. P a 0"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1634
  and add: "\<forall>a b. P a b \<longrightarrow> P a (a + b)"
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1635
  shows "P a b"
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1636
proof(induct "a + b" arbitrary: a b rule: less_induct)
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1637
  case less
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1638
  have "a = b \<or> a < b \<or> b < a" by arith
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1639
  moreover {assume eq: "a= b"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1640
    from add[rule_format, OF z[rule_format, of a]] have "P a b" using eq
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1641
    by simp}
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1642
  moreover
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1643
  {assume lt: "a < b"
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1644
    hence "a + b - a < a + b \<or> a = 0" by arith
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1645
    moreover
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1646
    {assume "a =0" with z c have "P a b" by blast }
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1647
    moreover
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1648
    {assume "a + b - a < a + b"
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1649
      also have th0: "a + b - a = a + (b - a)" using lt by arith
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1650
      finally have "a + (b - a) < a + b" .
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1651
      then have "P a (a + (b - a))" by (rule add[rule_format, OF less])
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1652
      then have "P a b" by (simp add: th0[symmetric])}
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1653
    ultimately have "P a b" by blast}
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1654
  moreover
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1655
  {assume lt: "a > b"
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1656
    hence "b + a - b < a + b \<or> b = 0" by arith
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1657
    moreover
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1658
    {assume "b =0" with z c have "P a b" by blast }
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1659
    moreover
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1660
    {assume "b + a - b < a + b"
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1661
      also have th0: "b + a - b = b + (a - b)" using lt by arith
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1662
      finally have "b + (a - b) < a + b" .
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1663
      then have "P b (b + (a - b))" by (rule add[rule_format, OF less])
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 34223
diff changeset
  1664
      then have "P b a" by (simp add: th0[symmetric])
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1665
      hence "P a b" using c by blast }
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1666
    ultimately have "P a b" by blast}
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1667
ultimately  show "P a b" by blast
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1668
qed
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1669
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1670
lemma bezout_lemma_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1671
  assumes ex: "\<exists>(d::nat) x y. d dvd a \<and> d dvd b \<and>
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1672
    (a * x = b * y + d \<or> b * x = a * y + d)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1673
  shows "\<exists>d x y. d dvd a \<and> d dvd a + b \<and>
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1674
    (a * x = (a + b) * y + d \<or> (a + b) * x = a * y + d)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1675
  using ex
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1676
  apply clarsimp
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  1677
  apply (rule_tac x="d" in exI, simp)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1678
  apply (case_tac "a * x = b * y + d" , simp_all)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1679
  apply (rule_tac x="x + y" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1680
  apply (rule_tac x="y" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1681
  apply algebra
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1682
  apply (rule_tac x="x" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1683
  apply (rule_tac x="x + y" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1684
  apply algebra
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1685
done
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1686
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1687
lemma bezout_add_nat: "\<exists>(d::nat) x y. d dvd a \<and> d dvd b \<and>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1688
    (a * x = b * y + d \<or> b * x = a * y + d)"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1689
  apply(induct a b rule: ind_euclid)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1690
  apply blast
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1691
  apply clarify
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  1692
  apply (rule_tac x="a" in exI, simp)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1693
  apply clarsimp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1694
  apply (rule_tac x="d" in exI)
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  1695
  apply (case_tac "a * x = b * y + d", simp_all)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1696
  apply (rule_tac x="x+y" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1697
  apply (rule_tac x="y" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1698
  apply algebra
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1699
  apply (rule_tac x="x" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1700
  apply (rule_tac x="x+y" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1701
  apply algebra
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1702
done
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1703
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1704
lemma bezout1_nat: "\<exists>(d::nat) x y. d dvd a \<and> d dvd b \<and>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1705
    (a * x - b * y = d \<or> b * x - a * y = d)"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1706
  using bezout_add_nat[of a b]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1707
  apply clarsimp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1708
  apply (rule_tac x="d" in exI, simp)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1709
  apply (rule_tac x="x" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1710
  apply (rule_tac x="y" in exI)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1711
  apply auto
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1712
done
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1713
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1714
lemma bezout_add_strong_nat: assumes nz: "a \<noteq> (0::nat)"
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1715
  shows "\<exists>d x y. d dvd a \<and> d dvd b \<and> a * x = b * y + d"
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1716
proof-
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1717
 from nz have ap: "a > 0" by simp
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1718
 from bezout_add_nat[of a b]
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1719
 have "(\<exists>d x y. d dvd a \<and> d dvd b \<and> a * x = b * y + d) \<or>
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1720
   (\<exists>d x y. d dvd a \<and> d dvd b \<and> b * x = a * y + d)" by blast
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1721
 moreover
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1722
    {fix d x y assume H: "d dvd a" "d dvd b" "a * x = b * y + d"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1723
     from H have ?thesis by blast }
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1724
 moreover
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1725
 {fix d x y assume H: "d dvd a" "d dvd b" "b * x = a * y + d"
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1726
   {assume b0: "b = 0" with H  have ?thesis by simp}
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1727
   moreover
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1728
   {assume b: "b \<noteq> 0" hence bp: "b > 0" by simp
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1729
     from b dvd_imp_le [OF H(2)] have "d < b \<or> d = b"
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1730
       by auto
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1731
     moreover
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1732
     {assume db: "d=b"
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
  1733
       with nz H have ?thesis apply simp
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1734
         apply (rule exI[where x = b], simp)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1735
         apply (rule exI[where x = b])
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1736
        by (rule exI[where x = "a - 1"], simp add: diff_mult_distrib2)}
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1737
    moreover
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1738
    {assume db: "d < b"
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 37770
diff changeset
  1739
        {assume "x=0" hence ?thesis using nz H by simp }
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1740
        moreover
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1741
        {assume x0: "x \<noteq> 0" hence xp: "x > 0" by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1742
          from db have "d \<le> b - 1" by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1743
          hence "d*b \<le> b*(b - 1)" by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1744
          with xp mult_mono[of "1" "x" "d*b" "b*(b - 1)"]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1745
          have dble: "d*b \<le> x*b*(b - 1)" using bp by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1746
          from H (3) have "d + (b - 1) * (b*x) = d + (b - 1) * (a*y + d)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1747
            by simp
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1748
          hence "d + (b - 1) * a * y + (b - 1) * d = d + (b - 1) * b * x"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  1749
            by (simp only: mult.assoc distrib_left)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1750
          hence "a * ((b - 1) * y) + d * (b - 1 + 1) = d + x*b*(b - 1)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1751
            by algebra
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1752
          hence "a * ((b - 1) * y) = d + x*b*(b - 1) - d*b" using bp by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1753
          hence "a * ((b - 1) * y) = d + (x*b*(b - 1) - d*b)"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1754
            by (simp only: diff_add_assoc[OF dble, of d, symmetric])
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1755
          hence "a * ((b - 1) * y) = b*(x*(b - 1) - d) + d"
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  1756
            by (simp only: diff_mult_distrib2 ac_simps)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1757
          hence ?thesis using H(1,2)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1758
            apply -
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1759
            apply (rule exI[where x=d], simp)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1760
            apply (rule exI[where x="(b - 1) * y"])
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1761
            by (rule exI[where x="x*(b - 1) - d"], simp)}
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32879
diff changeset
  1762
        ultimately have ?thesis by blast}
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1763
    ultimately have ?thesis by blast}
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1764
  ultimately have ?thesis by blast}
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1765
 ultimately show ?thesis by blast
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1766
qed
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1767
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1768
lemma bezout_nat: assumes a: "(a::nat) \<noteq> 0"
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1769
  shows "\<exists>x y. a * x = b * y + gcd a b"
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1770
proof-
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1771
  let ?g = "gcd a b"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1772
  from bezout_add_strong_nat[OF a, of b]
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1773
  obtain d x y where d: "d dvd a" "d dvd b" "a * x = b * y + d" by blast
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1774
  from d(1,2) have "d dvd ?g" by simp
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1775
  then obtain k where k: "?g = d*k" unfolding dvd_def by blast
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1776
  from d(3) have "a * x * k = (b * y + d) *k " by auto
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1777
  hence "a * (x * k) = b * (y*k) + ?g" by (algebra add: k)
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1778
  thus ?thesis by blast
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1779
qed
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1780
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1781
34030
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
  1782
subsection {* LCM properties *}
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1783
34030
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
  1784
lemma lcm_altdef_int [code]: "lcm (a::int) b = (abs a) * (abs b) div gcd a b"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1785
  by (simp add: lcm_int_def lcm_nat_def zdiv_int
44821
a92f65e174cf avoid using legacy theorem names
huffman
parents: 44766
diff changeset
  1786
    of_nat_mult gcd_int_def)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1787
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1788
lemma prod_gcd_lcm_nat: "(m::nat) * n = gcd m n * lcm m n"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1789
  unfolding lcm_nat_def
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1790
  by (simp add: dvd_mult_div_cancel [OF gcd_dvd_prod_nat])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1791
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1792
lemma prod_gcd_lcm_int: "abs(m::int) * abs n = gcd m n * lcm m n"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1793
  unfolding lcm_int_def gcd_int_def
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1794
  apply (subst int_mult [symmetric])
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1795
  apply (subst prod_gcd_lcm_nat [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1796
  apply (subst nat_abs_mult_distrib [symmetric])
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1797
  apply (simp, simp add: abs_mult)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1798
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1799
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1800
lemma lcm_0_nat [simp]: "lcm (m::nat) 0 = 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1801
  unfolding lcm_nat_def by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1802
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1803
lemma lcm_0_int [simp]: "lcm (m::int) 0 = 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1804
  unfolding lcm_int_def by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1805
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1806
lemma lcm_0_left_nat [simp]: "lcm (0::nat) n = 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1807
  unfolding lcm_nat_def by simp
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1808
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1809
lemma lcm_0_left_int [simp]: "lcm (0::int) n = 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1810
  unfolding lcm_int_def by simp
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1811
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1812
lemma lcm_pos_nat:
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1813
  "(m::nat) > 0 \<Longrightarrow> n>0 \<Longrightarrow> lcm m n > 0"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1814
by (metis gr0I mult_is_0 prod_gcd_lcm_nat)
27669
4b1642284dd7 Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents: 27651
diff changeset
  1815
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1816
lemma lcm_pos_int:
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1817
  "(m::int) ~= 0 \<Longrightarrow> n ~= 0 \<Longrightarrow> lcm m n > 0"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1818
  apply (subst lcm_abs_int)
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1819
  apply (rule lcm_pos_nat [transferred])
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1820
  apply auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1821
done
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1822
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1823
lemma dvd_pos_nat:
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1824
  fixes n m :: nat
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1825
  assumes "n > 0" and "m dvd n"
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1826
  shows "m > 0"
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1827
using assms by (cases m) auto
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1828
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1829
lemma lcm_least_nat:
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1830
  assumes "(m::nat) dvd k" and "n dvd k"
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27487
diff changeset
  1831
  shows "lcm m n dvd k"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1832
  using assms by (rule lcm_least)
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1833
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1834
lemma lcm_least_int:
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1835
  "(m::int) dvd k \<Longrightarrow> n dvd k \<Longrightarrow> lcm m n dvd k"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1836
  by (rule lcm_least)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1837
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1838
lemma lcm_dvd1_nat: "(m::nat) dvd lcm m n"
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1839
proof (cases m)
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1840
  case 0 then show ?thesis by simp
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1841
next
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1842
  case (Suc _)
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1843
  then have mpos: "m > 0" by simp
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1844
  show ?thesis
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1845
  proof (cases n)
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1846
    case 0 then show ?thesis by simp
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1847
  next
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1848
    case (Suc _)
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1849
    then have npos: "n > 0" by simp
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27487
diff changeset
  1850
    have "gcd m n dvd n" by simp
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27487
diff changeset
  1851
    then obtain k where "n = gcd m n * k" using dvd_def by auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1852
    then have "m * n div gcd m n = m * (gcd m n * k) div gcd m n"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1853
      by (simp add: ac_simps)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1854
    also have "\<dots> = m * k" using mpos npos gcd_zero_nat by simp
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1855
    finally show ?thesis by (simp add: lcm_nat_def)
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1856
  qed
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1857
qed
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1858
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1859
lemma lcm_dvd1_int: "(m::int) dvd lcm m n"
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1860
  apply (subst lcm_abs_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1861
  apply (rule dvd_trans)
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1862
  prefer 2
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1863
  apply (rule lcm_dvd1_nat [transferred])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1864
  apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1865
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1866
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1867
lemma lcm_dvd2_nat: "(n::nat) dvd lcm m n"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1868
  by (rule lcm_dvd2)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1869
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1870
lemma lcm_dvd2_int: "(n::int) dvd lcm m n"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1871
  by (rule lcm_dvd2)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1872
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
  1873
lemma dvd_lcm_I1_nat[simp]: "(k::nat) dvd m \<Longrightarrow> k dvd lcm m n"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1874
by(metis lcm_dvd1_nat dvd_trans)
31729
b9299916d618 new lemmas and tuning
nipkow
parents: 31709
diff changeset
  1875
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
  1876
lemma dvd_lcm_I2_nat[simp]: "(k::nat) dvd n \<Longrightarrow> k dvd lcm m n"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1877
by(metis lcm_dvd2_nat dvd_trans)
31729
b9299916d618 new lemmas and tuning
nipkow
parents: 31709
diff changeset
  1878
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
  1879
lemma dvd_lcm_I1_int[simp]: "(i::int) dvd m \<Longrightarrow> i dvd lcm m n"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1880
by(metis lcm_dvd1_int dvd_trans)
31729
b9299916d618 new lemmas and tuning
nipkow
parents: 31709
diff changeset
  1881
31730
d74830dc3e4a added lemmas; tuned
nipkow
parents: 31729
diff changeset
  1882
lemma dvd_lcm_I2_int[simp]: "(i::int) dvd n \<Longrightarrow> i dvd lcm m n"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1883
by(metis lcm_dvd2_int dvd_trans)
31729
b9299916d618 new lemmas and tuning
nipkow
parents: 31709
diff changeset
  1884
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1885
lemma lcm_unique_nat: "(a::nat) dvd d \<and> b dvd d \<and>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1886
    (\<forall>e. a dvd e \<and> b dvd e \<longrightarrow> d dvd e) \<longleftrightarrow> d = lcm a b"
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33318
diff changeset
  1887
  by (auto intro: dvd_antisym lcm_least_nat lcm_dvd1_nat lcm_dvd2_nat)
27568
9949dc7a24de Theorem names as in IntPrimes.thy, also several theorems moved from there
chaieb
parents: 27556
diff changeset
  1888
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1889
lemma lcm_unique_int: "d >= 0 \<and> (a::int) dvd d \<and> b dvd d \<and>
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1890
    (\<forall>e. a dvd e \<and> b dvd e \<longrightarrow> d dvd e) \<longleftrightarrow> d = lcm a b"
60357
bc0827281dc1 tuned proof;
wenzelm
parents: 60162
diff changeset
  1891
  using lcm_least_int zdvd_antisym_nonneg by auto
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1892
37770
cddb3106adb8 avoid explicit mandatory prefix markers when prefixes are mandatory implicitly
haftmann
parents: 36350
diff changeset
  1893
interpretation lcm_nat: abel_semigroup "lcm :: nat \<Rightarrow> nat \<Rightarrow> nat"
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
  1894
  + lcm_nat: semilattice_neutr "lcm :: nat \<Rightarrow> nat \<Rightarrow> nat" 1
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1895
  by standard simp_all
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1896
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1897
interpretation lcm_int: abel_semigroup "lcm :: int \<Rightarrow> int \<Rightarrow> int" ..
34973
ae634fad947e dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents: 34915
diff changeset
  1898
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1899
lemmas lcm_assoc_nat = lcm.assoc [where ?'a = nat]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1900
lemmas lcm_commute_nat = lcm.commute [where ?'a = nat]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1901
lemmas lcm_left_commute_nat = lcm.left_commute [where ?'a = nat]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1902
lemmas lcm_assoc_int = lcm.assoc [where ?'a = int]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1903
lemmas lcm_commute_int = lcm.commute [where ?'a = int]
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1904
lemmas lcm_left_commute_int = lcm.left_commute [where ?'a = int]
34973
ae634fad947e dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents: 34915
diff changeset
  1905
ae634fad947e dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents: 34915
diff changeset
  1906
lemmas lcm_ac_nat = lcm_assoc_nat lcm_commute_nat lcm_left_commute_nat
ae634fad947e dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents: 34915
diff changeset
  1907
lemmas lcm_ac_int = lcm_assoc_int lcm_commute_int lcm_left_commute_int
ae634fad947e dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents: 34915
diff changeset
  1908
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1909
lemma lcm_proj2_if_dvd_nat [simp]: "(x::nat) dvd y \<Longrightarrow> lcm x y = y"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1910
  apply (rule sym)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1911
  apply (subst lcm_unique_nat [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1912
  apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1913
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1914
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1915
lemma lcm_proj2_if_dvd_int [simp]: "(x::int) dvd y \<Longrightarrow> lcm x y = abs y"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1916
  apply (rule sym)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1917
  apply (subst lcm_unique_int [symmetric])
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1918
  apply auto
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1919
done
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1920
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1921
lemma lcm_proj1_if_dvd_nat [simp]: "(x::nat) dvd y \<Longrightarrow> lcm y x = y"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1922
by (subst lcm_commute_nat, erule lcm_proj2_if_dvd_nat)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1923
31798
fe9a3043d36c Cleaned up GCD
nipkow
parents: 31766
diff changeset
  1924
lemma lcm_proj1_if_dvd_int [simp]: "(x::int) dvd y \<Longrightarrow> lcm y x = abs y"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31814
diff changeset
  1925
by (subst lcm_commute_int, erule lcm_proj2_if_dvd_int)
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30738
diff changeset
  1926
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1927
lemma lcm_proj1_iff_nat[simp]: "lcm m n = (m::nat) \<longleftrightarrow> n dvd m"
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1928
by (metis lcm_proj1_if_dvd_nat lcm_unique_nat)
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1929
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1930
lemma lcm_proj2_iff_nat[simp]: "lcm m n = (n::nat) \<longleftrightarrow> m dvd n"
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1931
by (metis lcm_proj2_if_dvd_nat lcm_unique_nat)
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1932
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1933
lemma lcm_proj1_iff_int[simp]: "lcm m n = abs(m::int) \<longleftrightarrow> n dvd m"
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1934
by (metis dvd_abs_iff lcm_proj1_if_dvd_int lcm_unique_int)
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1935
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1936
lemma lcm_proj2_iff_int[simp]: "lcm m n = abs(n::int) \<longleftrightarrow> m dvd n"
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1937
by (metis dvd_abs_iff lcm_proj2_if_dvd_int lcm_unique_int)
27568
9949dc7a24de Theorem names as in IntPrimes.thy, also several theorems moved from there
chaieb
parents: 27556
diff changeset
  1938
42871
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 41792
diff changeset
  1939
lemma comp_fun_idem_gcd_nat: "comp_fun_idem (gcd :: nat\<Rightarrow>nat\<Rightarrow>nat)"
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1940
proof qed (auto simp add: gcd_ac_nat)
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1941
42871
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 41792
diff changeset
  1942
lemma comp_fun_idem_gcd_int: "comp_fun_idem (gcd :: int\<Rightarrow>int\<Rightarrow>int)"
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1943
proof qed (auto simp add: gcd_ac_int)
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1944
42871
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 41792
diff changeset
  1945
lemma comp_fun_idem_lcm_nat: "comp_fun_idem (lcm :: nat\<Rightarrow>nat\<Rightarrow>nat)"
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1946
proof qed (auto simp add: lcm_ac_nat)
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1947
42871
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 41792
diff changeset
  1948
lemma comp_fun_idem_lcm_int: "comp_fun_idem (lcm :: int\<Rightarrow>int\<Rightarrow>int)"
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1949
proof qed (auto simp add: lcm_ac_int)
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 31952
diff changeset
  1950
23687
06884f7ffb18 extended - convers now basic lcm properties also
haftmann
parents: 23431
diff changeset
  1951
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1952
(* FIXME introduce selimattice_bot/top and derive the following lemmas in there: *)
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1953
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1954
lemma lcm_0_iff_nat[simp]: "lcm (m::nat) n = 0 \<longleftrightarrow> m=0 \<or> n=0"
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1955
by (metis lcm_0_left_nat lcm_0_nat mult_is_0 prod_gcd_lcm_nat)
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1956
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1957
lemma lcm_0_iff_int[simp]: "lcm (m::int) n = 0 \<longleftrightarrow> m=0 \<or> n=0"
44766
d4d33a4d7548 avoid using legacy theorem names
huffman
parents: 44278
diff changeset
  1958
by (metis lcm_0_int lcm_0_left_int lcm_pos_int less_le)
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1959
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1960
lemma lcm_1_iff_nat[simp]: "lcm (m::nat) n = 1 \<longleftrightarrow> m=1 \<and> n=1"
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1961
by (metis gcd_1_nat lcm_unique_nat nat_mult_1 prod_gcd_lcm_nat)
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1962
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1963
lemma lcm_1_iff_int[simp]: "lcm (m::int) n = 1 \<longleftrightarrow> (m=1 \<or> m = -1) \<and> (n=1 \<or> n = -1)"
31996
1d93369079c4 Tuned proof of lcm_1_iff_int, because metis produced enormous proof term.
berghofe
parents: 31995
diff changeset
  1964
by (auto simp add: abs_mult_self trans [OF lcm_unique_int eq_commute, symmetric] zmult_eq_1_iff)
31995
8f37cf60b885 more gcd/lcm lemmas
nipkow
parents: 31992
diff changeset
  1965
34030
829eb528b226 resorted code equations from "old" number theory version
haftmann
parents: 33946
diff changeset
  1966
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  1967
subsection {* The complete divisibility lattice *}
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  1968
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60512
diff changeset
  1969
interpretation gcd_semilattice_nat: semilattice_inf gcd "op dvd" "(\<lambda>m n::nat. m dvd n \<and> \<not> n dvd m)"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1970
  by standard simp_all
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  1971
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60512
diff changeset
  1972
interpretation lcm_semilattice_nat: semilattice_sup lcm "op dvd" "(\<lambda>m n::nat. m dvd n \<and> \<not> n dvd m)"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  1973
  by standard simp_all
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  1974
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60512
diff changeset
  1975
interpretation gcd_lcm_lattice_nat: lattice gcd "op dvd" "(\<lambda>m n::nat. m dvd n & ~ n dvd m)" lcm ..
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  1976
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  1977
text{* Lifting gcd and lcm to sets (Gcd/Lcm).
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  1978
Gcd is defined via Lcm to facilitate the proof that we have a complete lattice.
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  1979
*}
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  1980
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  1981
instantiation nat :: Gcd
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  1982
begin
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  1983
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  1984
definition
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1985
  "Lcm (M::nat set) = (if finite M then semilattice_neutr_set.F lcm 1 M else 0)"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1986
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
  1987
interpretation semilattice_neutr_set lcm "1::nat" ..
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
  1988
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1989
lemma Lcm_nat_infinite:
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1990
  "\<not> finite M \<Longrightarrow> Lcm M = (0::nat)"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1991
  by (simp add: Lcm_nat_def)
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1992
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1993
lemma Lcm_nat_empty:
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1994
  "Lcm {} = (1::nat)"
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
  1995
  by (simp add: Lcm_nat_def)
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1996
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1997
lemma Lcm_nat_insert:
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  1998
  "Lcm (insert n M) = lcm (n::nat) (Lcm M)"
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
  1999
  by (cases "finite M") (simp_all add: Lcm_nat_def Lcm_nat_infinite)
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2000
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2001
definition
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2002
  "Gcd (M::nat set) = Lcm {d. \<forall>m\<in>M. d dvd m}"
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2003
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2004
instance ..
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2005
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2006
end
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2007
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2008
lemma dvd_Lcm_nat [simp]:
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2009
  fixes M :: "nat set"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2010
  assumes "m \<in> M"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2011
  shows "m dvd Lcm M"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2012
proof (cases "finite M")
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2013
  case False then show ?thesis by (simp add: Lcm_nat_infinite)
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2014
next
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2015
  case True then show ?thesis using assms by (induct M) (auto simp add: Lcm_nat_insert)
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2016
qed
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2017
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2018
lemma Lcm_dvd_nat [simp]:
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2019
  fixes M :: "nat set"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2020
  assumes "\<forall>m\<in>M. m dvd n"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2021
  shows "Lcm M dvd n"
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2022
proof (cases "n = 0")
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2023
  assume "n \<noteq> 0"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2024
  hence "finite {d. d dvd n}" by (rule finite_divisors_nat)
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2025
  moreover have "M \<subseteq> {d. d dvd n}" using assms by fast
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2026
  ultimately have "finite M" by (rule rev_finite_subset)
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 49962
diff changeset
  2027
  then show ?thesis using assms by (induct M) (simp_all add: Lcm_nat_empty Lcm_nat_insert)
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2028
qed simp
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2029
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2030
interpretation gcd_lcm_complete_lattice_nat:
51547
604d73671fa7 avoid odd foundational terms after interpretation;
haftmann
parents: 51489
diff changeset
  2031
  complete_lattice Gcd Lcm gcd Rings.dvd "\<lambda>m n. m dvd n \<and> \<not> n dvd m" lcm 1 "0::nat"
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60512
diff changeset
  2032
where "Inf.INFIMUM Gcd A f = Gcd (f ` A :: nat set)"
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56166
diff changeset
  2033
  and "Sup.SUPREMUM Lcm A f = Lcm (f ` A)"
51547
604d73671fa7 avoid odd foundational terms after interpretation;
haftmann
parents: 51489
diff changeset
  2034
proof -
604d73671fa7 avoid odd foundational terms after interpretation;
haftmann
parents: 51489
diff changeset
  2035
  show "class.complete_lattice Gcd Lcm gcd Rings.dvd (\<lambda>m n. m dvd n \<and> \<not> n dvd m) lcm 1 (0::nat)"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2036
    by default (auto simp add: Gcd_nat_def Lcm_nat_empty Lcm_nat_infinite)
51547
604d73671fa7 avoid odd foundational terms after interpretation;
haftmann
parents: 51489
diff changeset
  2037
  then interpret gcd_lcm_complete_lattice_nat:
604d73671fa7 avoid odd foundational terms after interpretation;
haftmann
parents: 51489
diff changeset
  2038
    complete_lattice Gcd Lcm gcd Rings.dvd "\<lambda>m n. m dvd n \<and> \<not> n dvd m" lcm 1 "0::nat" .
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56166
diff changeset
  2039
  from gcd_lcm_complete_lattice_nat.INF_def show "Inf.INFIMUM Gcd A f = Gcd (f ` A)" .
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56166
diff changeset
  2040
  from gcd_lcm_complete_lattice_nat.SUP_def show "Sup.SUPREMUM Lcm A f = Lcm (f ` A)" .
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2041
qed
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2042
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 54867
diff changeset
  2043
declare gcd_lcm_complete_lattice_nat.Inf_image_eq [simp del]
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 54867
diff changeset
  2044
declare gcd_lcm_complete_lattice_nat.Sup_image_eq [simp del]
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 54867
diff changeset
  2045
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2046
lemma Lcm_empty_nat: "Lcm {} = (1::nat)"
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
  2047
  by (fact Lcm_nat_empty)
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2048
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2049
lemma Lcm_insert_nat [simp]:
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2050
  shows "Lcm (insert (n::nat) N) = lcm n (Lcm N)"
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2051
  by (fact gcd_lcm_complete_lattice_nat.Sup_insert)
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2052
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2053
lemma Lcm0_iff[simp]: "finite (M::nat set) \<Longrightarrow> M \<noteq> {} \<Longrightarrow> Lcm M = 0 \<longleftrightarrow> 0 : M"
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2054
by(induct rule:finite_ne_induct) auto
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2055
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2056
lemma Lcm_eq_0[simp]: "finite (M::nat set) \<Longrightarrow> 0 : M \<Longrightarrow> Lcm M = 0"
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2057
by (metis Lcm0_iff empty_iff)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2058
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2059
instance nat :: semiring_Gcd
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2060
proof
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2061
  show "Gcd N dvd n" if "n \<in> N" for N and n :: nat
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2062
    using that by (fact gcd_lcm_complete_lattice_nat.Inf_lower)
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2063
next
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2064
  show "n dvd Gcd N" if "\<And>m. m \<in> N \<Longrightarrow> n dvd m" for N and n :: nat
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2065
    using that by (simp only: gcd_lcm_complete_lattice_nat.Inf_greatest)
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2066
next
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2067
  show "normalize (Gcd N) = Gcd N" for N :: "nat set"
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2068
    by simp
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2069
qed
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2070
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2071
instance nat :: semiring_Lcm
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2072
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2073
  have uf: "unit_factor (Lcm N) = 1" if "0 < Lcm N" for N :: "nat set"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2074
  proof (cases "finite N")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2075
    case False with that show ?thesis by (simp add: Lcm_nat_infinite)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2076
  next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2077
    case True then show ?thesis
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2078
    using that proof (induct N)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2079
      case empty then show ?case by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2080
    next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2081
      case (insert n N)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2082
      have "lcm n (Lcm N) \<noteq> 0 \<longleftrightarrow> n \<noteq> 0 \<and> Lcm N \<noteq> 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2083
        using lcm_eq_0_iff [of n "Lcm N"] by simp
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2084
      then have "lcm n (Lcm N) > 0 \<longleftrightarrow> n > 0 \<and> Lcm N > 0"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2085
        unfolding neq0_conv .
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2086
      with insert show ?case
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2087
        by (simp add: Lcm_nat_insert unit_factor_lcm)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2088
    qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2089
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2090
  show "Lcm N = Gcd {m. \<forall>n\<in>N. n dvd m}" for N :: "nat set"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2091
    by (rule associated_eqI) (auto intro!: associatedI Gcd_dvd Gcd_greatest
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2092
      simp add: unit_factor_Gcd uf)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2093
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2094
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2095
text{* Alternative characterizations of Gcd: *}
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2096
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2097
lemma Gcd_eq_Max: "finite(M::nat set) \<Longrightarrow> M \<noteq> {} \<Longrightarrow> 0 \<notin> M \<Longrightarrow> Gcd M = Max(\<Inter>m\<in>M. {d. d dvd m})"
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2098
apply(rule antisym)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2099
 apply(rule Max_ge)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2100
  apply (metis all_not_in_conv finite_divisors_nat finite_INT)
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2101
 apply (simp add: Gcd_dvd)
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2102
apply (rule Max_le_iff[THEN iffD2])
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2103
  apply (metis all_not_in_conv finite_divisors_nat finite_INT)
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44845
diff changeset
  2104
 apply fastforce
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2105
apply clarsimp
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2106
apply (metis Gcd_dvd Max_in dvd_0_left dvd_Gcd dvd_imp_le linorder_antisym_conv3 not_less0)
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2107
done
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2108
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2109
lemma Gcd_remove0_nat: "finite M \<Longrightarrow> Gcd M = Gcd (M - {0::nat})"
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2110
apply(induct pred:finite)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2111
 apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2112
apply(case_tac "x=0")
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2113
 apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2114
apply(subgoal_tac "insert x F - {0} = insert x (F - {0})")
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2115
 apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2116
apply blast
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2117
done
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2118
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2119
lemma Lcm_in_lcm_closed_set_nat:
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2120
  "finite M \<Longrightarrow> M \<noteq> {} \<Longrightarrow> ALL m n :: nat. m:M \<longrightarrow> n:M \<longrightarrow> lcm m n : M \<Longrightarrow> Lcm M : M"
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2121
apply(induct rule:finite_linorder_min_induct)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2122
 apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2123
apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2124
apply(subgoal_tac "ALL m n :: nat. m:A \<longrightarrow> n:A \<longrightarrow> lcm m n : A")
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2125
 apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2126
 apply(case_tac "A={}")
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2127
  apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2128
 apply simp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2129
apply (metis lcm_pos_nat lcm_unique_nat linorder_neq_iff nat_dvd_not_less not_less0)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2130
done
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2131
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2132
lemma Lcm_eq_Max_nat:
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2133
  "finite M \<Longrightarrow> M \<noteq> {} \<Longrightarrow> 0 \<notin> M \<Longrightarrow> ALL m n :: nat. m:M \<longrightarrow> n:M \<longrightarrow> lcm m n : M \<Longrightarrow> Lcm M = Max M"
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2134
apply(rule antisym)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2135
 apply(rule Max_ge, assumption)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2136
 apply(erule (2) Lcm_in_lcm_closed_set_nat)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2137
apply clarsimp
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2138
apply (metis Lcm0_iff dvd_Lcm_nat dvd_imp_le neq0_conv)
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2139
done
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2140
54437
0060957404c7 proper code equations for Gcd and Lcm on nat and int
haftmann
parents: 54257
diff changeset
  2141
lemma Lcm_set_nat [code, code_unfold]:
45992
15d14fa805b2 prefer canonical fold on lists
haftmann
parents: 45270
diff changeset
  2142
  "Lcm (set ns) = fold lcm ns (1::nat)"
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2143
  by (fact gcd_lcm_complete_lattice_nat.Sup_set_fold)
32112
6da9c2a49fed Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents: 32111
diff changeset
  2144
60597
2da9b632069b tuned code setup
haftmann
parents: 60596
diff changeset
  2145
lemma Gcd_set_nat [code]:
45992
15d14fa805b2 prefer canonical fold on lists
haftmann
parents: 45270
diff changeset
  2146
  "Gcd (set ns) = fold gcd ns (0::nat)"
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2147
  by (fact gcd_lcm_complete_lattice_nat.Inf_set_fold)
34222
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2148
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2149
lemma mult_inj_if_coprime_nat:
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2150
  "inj_on f A \<Longrightarrow> inj_on g B \<Longrightarrow> ALL a:A. ALL b:B. coprime (f a) (g b)
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2151
   \<Longrightarrow> inj_on (%(a,b). f a * g b::nat) (A \<times> B)"
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2152
apply(auto simp add:inj_on_def)
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
  2153
apply (metis coprime_dvd_mult_iff_nat dvd.neq_le_trans dvd_triv_left)
34223
dce32a1e05fe added lemmas
nipkow
parents: 34222
diff changeset
  2154
apply (metis gcd_semilattice_nat.inf_commute coprime_dvd_mult_iff_nat
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 56218
diff changeset
  2155
             dvd.neq_le_trans dvd_triv_right mult.commute)
34222
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2156
done
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2157
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2158
text{* Nitpick: *}
e33ee7369ecb added lemma
nipkow
parents: 34221
diff changeset
  2159
41792
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41550
diff changeset
  2160
lemma gcd_eq_nitpick_gcd [nitpick_unfold]: "gcd x y = Nitpick.nat_gcd x y"
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41550
diff changeset
  2161
by (induct x y rule: nat_gcd.induct)
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41550
diff changeset
  2162
   (simp add: gcd_nat.simps Nitpick.nat_gcd.simps)
33197
de6285ebcc05 continuation of Nitpick's integration into Isabelle;
blanchet
parents: 32960
diff changeset
  2163
41792
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41550
diff changeset
  2164
lemma lcm_eq_nitpick_lcm [nitpick_unfold]: "lcm x y = Nitpick.nat_lcm x y"
33197
de6285ebcc05 continuation of Nitpick's integration into Isabelle;
blanchet
parents: 32960
diff changeset
  2165
by (simp only: lcm_nat_def Nitpick.nat_lcm_def gcd_eq_nitpick_gcd)
de6285ebcc05 continuation of Nitpick's integration into Isabelle;
blanchet
parents: 32960
diff changeset
  2166
54867
c21a2465cac1 prefer ephemeral interpretation over interpretation in proof contexts;
haftmann
parents: 54489
diff changeset
  2167
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2168
subsubsection {* Setwise gcd and lcm for integers *}
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2169
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2170
instantiation int :: Gcd
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2171
begin
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2172
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2173
definition
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2174
  "Lcm M = int (Lcm (nat ` abs ` M))"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2175
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2176
definition
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2177
  "Gcd M = int (Gcd (nat ` abs ` M))"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2178
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2179
instance ..
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2180
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
  2181
end
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2182
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2183
instance int :: semiring_Gcd
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2184
  by standard (auto intro!: Gcd_dvd Gcd_greatest simp add: Gcd_int_def Lcm_int_def int_dvd_iff dvd_int_iff
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2185
    dvd_int_unfold_dvd_nat [symmetric])
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2186
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2187
instance int :: semiring_Lcm
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2188
proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2189
  fix K :: "int set"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2190
  have "{n. \<forall>k\<in>K. nat \<bar>k\<bar> dvd n} = ((\<lambda>k. nat \<bar>k\<bar>) ` {l. \<forall>k\<in>K. k dvd l})"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2191
  proof (rule set_eqI)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2192
    fix n
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2193
    have "(\<forall>k\<in>K. nat \<bar>k\<bar> dvd n) \<longleftrightarrow> (\<exists>l. (\<forall>k\<in>K. k dvd l) \<and> n = nat \<bar>l\<bar>)" (is "?P \<longleftrightarrow> ?Q")
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2194
    proof
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2195
      assume ?P
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2196
      then have "(\<forall>k\<in>K. k dvd int n) \<and> n = nat \<bar>int n\<bar>"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2197
        by (auto simp add: dvd_int_unfold_dvd_nat)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2198
      then show ?Q by blast
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2199
    next
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2200
      assume ?Q then show ?P
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2201
        by (auto simp add: dvd_int_unfold_dvd_nat)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2202
    qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2203
    then show "n \<in> {n. \<forall>k\<in>K. nat \<bar>k\<bar> dvd n} \<longleftrightarrow> n \<in> (\<lambda>k. nat \<bar>k\<bar>) ` {l. \<forall>k\<in>K. k dvd l}"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2204
      by auto
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2205
  qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2206
  then show "Lcm K = Gcd {l. \<forall>k\<in>K. k dvd l}"
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2207
    by (simp add: Gcd_int_def Lcm_int_def Lcm_Gcd)
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2208
qed
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2209
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2210
lemma Lcm_empty_int [simp]: "Lcm {} = (1::int)"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2211
  by (simp add: Lcm_int_def)
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2212
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2213
lemma Lcm_insert_int [simp]:
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2214
  shows "Lcm (insert (n::int) N) = lcm n (Lcm N)"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2215
  by (simp add: Lcm_int_def lcm_int_def)
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2216
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2217
lemma dvd_int_iff: "x dvd y \<longleftrightarrow> nat (abs x) dvd nat (abs y)"
60686
ea5bc46c11e6 more algebraic properties for gcd/lcm
haftmann
parents: 60597
diff changeset
  2218
  by (fact dvd_int_unfold_dvd_nat)
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2219
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2220
lemma dvd_Lcm_int [simp]:
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2221
  fixes M :: "int set" assumes "m \<in> M" shows "m dvd Lcm M"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2222
  using assms by (simp add: Lcm_int_def dvd_int_iff)
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2223
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2224
lemma Lcm_dvd_int [simp]:
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2225
  fixes M :: "int set"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2226
  assumes "\<forall>m\<in>M. m dvd n" shows "Lcm M dvd n"
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2227
  using assms by (simp add: Lcm_int_def dvd_int_iff)
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2228
54437
0060957404c7 proper code equations for Gcd and Lcm on nat and int
haftmann
parents: 54257
diff changeset
  2229
lemma Lcm_set_int [code, code_unfold]:
51547
604d73671fa7 avoid odd foundational terms after interpretation;
haftmann
parents: 51489
diff changeset
  2230
  "Lcm (set xs) = fold lcm xs (1::int)"
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 54867
diff changeset
  2231
  by (induct xs rule: rev_induct) (simp_all add: lcm_commute_int)
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2232
60597
2da9b632069b tuned code setup
haftmann
parents: 60596
diff changeset
  2233
lemma Gcd_set_int [code]:
51547
604d73671fa7 avoid odd foundational terms after interpretation;
haftmann
parents: 51489
diff changeset
  2234
  "Gcd (set xs) = fold gcd xs (0::int)"
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 54867
diff changeset
  2235
  by (induct xs rule: rev_induct) (simp_all add: gcd_commute_int)
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2236
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2237
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2238
text \<open>Fact aliasses\<close>
59667
651ea265d568 Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents: 59545
diff changeset
  2239
651ea265d568 Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents: 59545
diff changeset
  2240
lemmas gcd_dvd1_nat = gcd_dvd1 [where ?'a = nat]
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2241
  and gcd_dvd2_nat = gcd_dvd2 [where ?'a = nat]
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2242
  and gcd_greatest_nat = gcd_greatest [where ?'a = nat]
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2243
59667
651ea265d568 Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
paulson <lp15@cam.ac.uk>
parents: 59545
diff changeset
  2244
lemmas gcd_dvd1_int = gcd_dvd1 [where ?'a = int]
59008
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2245
  and gcd_dvd2_int = gcd_dvd2 [where ?'a = int]
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2246
  and gcd_greatest_int = gcd_greatest [where ?'a = int]
f61482b0f240 formally self-contained gcd type classes
haftmann
parents: 58889
diff changeset
  2247
60596
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2248
lemmas Gcd_dvd_nat [simp] = Gcd_dvd [where ?'a = nat]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2249
  and dvd_Gcd_nat [simp] = dvd_Gcd [where ?'a = nat]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2250
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2251
lemmas Gcd_dvd_int [simp] = Gcd_dvd [where ?'a = int]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2252
  and dvd_Gcd_int [simp] = dvd_Gcd [where ?'a = int]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2253
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2254
lemmas Gcd_empty_nat = Gcd_empty [where ?'a = nat]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2255
  and Gcd_insert_nat = Gcd_insert [where ?'a = nat]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2256
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2257
lemmas Gcd_empty_int = Gcd_empty [where ?'a = int]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2258
  and Gcd_insert_int = Gcd_insert [where ?'a = int]
54168997757f algebraic specification for set gcd
haftmann
parents: 60580
diff changeset
  2259
45264
3b2c770f6631 merge Gcd/GCD and Lcm/LCM
huffman
parents: 44890
diff changeset
  2260
end