src/HOL/NumberTheory/IntPrimes.thy
author haftmann
Mon, 14 Jul 2008 11:04:42 +0200
changeset 27556 292098f2efdf
parent 27368 9f90ac19e32b
child 27569 c8419e8a2d83
permissions -rw-r--r--
unified curried gcd, lcm, zgcd, zlcm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
     1
(*  Title:      HOL/NumberTheory/IntPrimes.thy
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
     2
    ID:         $Id$
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
     3
    Author:     Thomas M. Rasmussen
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
     4
    Copyright   2000  University of Cambridge
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
     5
*)
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
     6
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
     7
header {* Divisibility and prime numbers (on integers) *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
     8
25596
ad9e3594f3f3 tuned header
haftmann
parents: 24759
diff changeset
     9
theory IntPrimes
27368
9f90ac19e32b established Plain theory and image
haftmann
parents: 25596
diff changeset
    10
imports Main Primes
25596
ad9e3594f3f3 tuned header
haftmann
parents: 24759
diff changeset
    11
begin
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    12
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    13
text {*
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    14
  The @{text dvd} relation, GCD, Euclid's extended algorithm, primes,
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    15
  congruences (all on the Integers).  Comparable to theory @{text
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    16
  Primes}, but @{text dvd} is included here as it is not present in
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    17
  main HOL.  Also includes extended GCD and congruences not present in
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    18
  @{text Primes}.
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    19
*}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    20
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    21
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    22
subsection {* Definitions *}
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    23
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    24
consts
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    25
  xzgcda :: "int * int * int * int * int * int * int * int => int * int * int"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    26
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    27
recdef xzgcda
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    28
  "measure ((\<lambda>(m, n, r', r, s', s, t', t). nat r)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    29
    :: int * int * int * int *int * int * int * int => nat)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    30
  "xzgcda (m, n, r', r, s', s, t', t) =
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    31
	(if r \<le> 0 then (r', s', t')
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    32
	 else xzgcda (m, n, r, r' mod r, 
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    33
		      s, s' - (r' div r) * s, 
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    34
		      t, t' - (r' div r) * t))"
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    35
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 18369
diff changeset
    36
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 19670
diff changeset
    37
  zprime :: "int \<Rightarrow> bool" where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 18369
diff changeset
    38
  "zprime p = (1 < p \<and> (\<forall>m. 0 <= m & m dvd p --> m = 1 \<or> m = p))"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    39
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 19670
diff changeset
    40
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 19670
diff changeset
    41
  xzgcd :: "int => int => int * int * int" where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 18369
diff changeset
    42
  "xzgcd m n = xzgcda (m, n, m, n, 1, 0, 0, 1)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    43
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 19670
diff changeset
    44
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 19670
diff changeset
    45
  zcong :: "int => int => int => bool"  ("(1[_ = _] '(mod _'))") where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 18369
diff changeset
    46
  "[a = b] (mod m) = (m dvd (a - b))"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    47
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    48
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    49
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    50
text {* \medskip @{term gcd} lemmas *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    51
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    52
lemma gcd_add1_eq: "gcd (m + k) k = gcd (m + k) m"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    53
  by (simp add: gcd_commute)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    54
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    55
lemma gcd_diff2: "m \<le> n ==> gcd n (n - m) = gcd n m"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    56
  apply (subgoal_tac "n = m + (n - m)")
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    57
   apply (erule ssubst, rule gcd_add1_eq, simp)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    58
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    59
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    60
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    61
subsection {* Euclid's Algorithm and GCD *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    62
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    63
lemma zgcd_0 [simp]: "zgcd m 0 = abs m"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
    64
  by (simp add: zgcd_def abs_if)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    65
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    66
lemma zgcd_0_left [simp]: "zgcd 0 m = abs m"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
    67
  by (simp add: zgcd_def abs_if)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    68
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    69
lemma zgcd_zminus [simp]: "zgcd (-m) n = zgcd m n"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    70
  by (simp add: zgcd_def)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    71
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    72
lemma zgcd_zminus2 [simp]: "zgcd m (-n) = zgcd m n"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    73
  by (simp add: zgcd_def)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    74
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    75
lemma zgcd_non_0: "0 < n ==> zgcd m n = zgcd n (m mod n)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    76
  apply (frule_tac b = n and a = m in pos_mod_sign)
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
    77
  apply (simp del: pos_mod_sign add: zgcd_def abs_if nat_mod_distrib)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    78
  apply (auto simp add: gcd_non_0 nat_mod_distrib [symmetric] zmod_zminus1_eq_if)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    79
  apply (frule_tac a = m in pos_mod_bound)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    80
  apply (simp del: pos_mod_bound add: nat_diff_distrib gcd_diff2 nat_le_eq_zle)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    81
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    82
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    83
lemma zgcd_eq: "zgcd m n = zgcd n (m mod n)"
13183
c7290200b3f4 conversion of IntDiv.thy to Isar format
paulson
parents: 11868
diff changeset
    84
  apply (case_tac "n = 0", simp add: DIVISION_BY_ZERO)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    85
  apply (auto simp add: linorder_neq_iff zgcd_non_0)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
    86
  apply (cut_tac m = "-m" and n = "-n" in zgcd_non_0, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    87
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    88
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    89
lemma zgcd_1 [simp]: "zgcd m 1 = 1"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
    90
  by (simp add: zgcd_def abs_if)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    91
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    92
lemma zgcd_0_1_iff [simp]: "zgcd 0 m = 1 \<longleftrightarrow> abs m = 1"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
    93
  by (simp add: zgcd_def abs_if)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    94
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    95
lemma zgcd_zdvd1 [iff]: "zgcd m n dvd m"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
    96
  by (simp add: zgcd_def abs_if int_dvd_iff)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
    97
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
    98
lemma zgcd_zdvd2 [iff]: "zgcd m n dvd n"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
    99
  by (simp add: zgcd_def abs_if int_dvd_iff)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   100
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   101
lemma zgcd_greatest_iff: "k dvd zgcd m n \<longleftrightarrow> k dvd m \<and> k dvd n"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
   102
  by (simp add: zgcd_def abs_if int_dvd_iff dvd_int_iff nat_dvd_iff)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   103
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   104
lemma zgcd_commute: "zgcd m n = zgcd n m"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   105
  by (simp add: zgcd_def gcd_commute)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   106
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   107
lemma zgcd_1_left [simp]: "zgcd 1 m = 1"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   108
  by (simp add: zgcd_def gcd_1_left)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   109
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   110
lemma zgcd_assoc: "zgcd (zgcd k m) n = zgcd k (zgcd m n)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   111
  by (simp add: zgcd_def gcd_assoc)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   112
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   113
lemma zgcd_left_commute: "zgcd k (zgcd m n) = zgcd m (zgcd k n)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   114
  apply (rule zgcd_commute [THEN trans])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   115
  apply (rule zgcd_assoc [THEN trans])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   116
  apply (rule zgcd_commute [THEN arg_cong])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   117
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   118
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   119
lemmas zgcd_ac = zgcd_assoc zgcd_commute zgcd_left_commute
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   120
  -- {* addition is an AC-operator *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   121
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   122
lemma zgcd_zmult_distrib2: "0 \<le> k ==> k * zgcd m n = zgcd (k * m) (k * n)"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
   123
  by (simp del: minus_mult_right [symmetric]
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
   124
      add: minus_mult_right nat_mult_distrib zgcd_def abs_if
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14271
diff changeset
   125
          mult_less_0_iff gcd_mult_distrib2 [symmetric] zmult_int [symmetric])
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   126
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   127
lemma zgcd_zmult_distrib2_abs: "zgcd (k * m) (k * n) = abs k * zgcd m n"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14387
diff changeset
   128
  by (simp add: abs_if zgcd_zmult_distrib2)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   129
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   130
lemma zgcd_self [simp]: "0 \<le> m ==> zgcd m m = m"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   131
  by (cut_tac k = m and m = 1 and n = 1 in zgcd_zmult_distrib2, simp_all)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   132
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   133
lemma zgcd_zmult_eq_self [simp]: "0 \<le> k ==> zgcd k (k * n) = k"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   134
  by (cut_tac k = k and m = 1 and n = n in zgcd_zmult_distrib2, simp_all)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   135
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   136
lemma zgcd_zmult_eq_self2 [simp]: "0 \<le> k ==> zgcd (k * n) k = k"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   137
  by (cut_tac k = k and m = n and n = 1 in zgcd_zmult_distrib2, simp_all)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   138
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   139
lemma zrelprime_zdvd_zmult_aux:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   140
     "zgcd n k = 1 ==> k dvd m * n ==> 0 \<le> m ==> k dvd m"
24181
paulson
parents: 23839
diff changeset
   141
  by (metis abs_of_nonneg zdvd_triv_right zgcd_greatest_iff zgcd_zmult_distrib2_abs zmult_1_right)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   142
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   143
lemma zrelprime_zdvd_zmult: "zgcd n k = 1 ==> k dvd m * n ==> k dvd m"
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   144
  apply (case_tac "0 \<le> m")
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13517
diff changeset
   145
   apply (blast intro: zrelprime_zdvd_zmult_aux)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   146
  apply (subgoal_tac "k dvd -m")
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   147
   apply (rule_tac [2] zrelprime_zdvd_zmult_aux, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   148
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   149
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   150
lemma zgcd_geq_zero: "0 <= zgcd x y"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   151
  by (auto simp add: zgcd_def)
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   152
13837
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   153
text{*This is merely a sanity check on zprime, since the previous version
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   154
      denoted the empty set.*}
16663
13e9c402308b prime is a predicate now.
nipkow
parents: 16417
diff changeset
   155
lemma "zprime 2"
13837
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   156
  apply (auto simp add: zprime_def) 
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   157
  apply (frule zdvd_imp_le, simp) 
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   158
  apply (auto simp add: order_le_less dvd_def) 
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   159
  done
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   160
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   161
lemma zprime_imp_zrelprime:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   162
    "zprime p ==> \<not> p dvd n ==> zgcd n p = 1"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   163
  apply (auto simp add: zprime_def)
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   164
  apply (metis zgcd_commute zgcd_geq_zero zgcd_zdvd1 zgcd_zdvd2)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   165
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   166
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   167
lemma zless_zprime_imp_zrelprime:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   168
    "zprime p ==> 0 < n ==> n < p ==> zgcd n p = 1"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   169
  apply (erule zprime_imp_zrelprime)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   170
  apply (erule zdvd_not_zless, assumption)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   171
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   172
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   173
lemma zprime_zdvd_zmult:
16663
13e9c402308b prime is a predicate now.
nipkow
parents: 16417
diff changeset
   174
    "0 \<le> (m::int) ==> zprime p ==> p dvd m * n ==> p dvd m \<or> p dvd n"
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   175
  by (metis zgcd_dvd1 zgcd_dvd2 zgcd_pos zprime_def zrelprime_dvd_mult)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   176
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   177
lemma zgcd_zadd_zmult [simp]: "zgcd (m + n * k) n = zgcd m n"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   178
  apply (rule zgcd_eq [THEN trans])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   179
  apply (simp add: zmod_zadd1_eq)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   180
  apply (rule zgcd_eq [symmetric])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   181
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   182
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   183
lemma zgcd_zdvd_zgcd_zmult: "zgcd m n dvd zgcd (k * m) n"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   184
  apply (simp add: zgcd_greatest_iff)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   185
  apply (blast intro: zdvd_trans)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   186
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   187
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   188
lemma zgcd_zmult_zdvd_zgcd:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   189
  "zgcd k n = 1 ==> zgcd (k * m) n dvd zgcd m n"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   190
  apply (simp add: zgcd_greatest_iff)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   191
  apply (rule_tac n = k in zrelprime_zdvd_zmult)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   192
   prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   193
   apply (simp add: zmult_commute)
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   194
  apply (metis zgcd_1 zgcd_commute zgcd_left_commute)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   195
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   196
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   197
lemma zgcd_zmult_cancel: "zgcd k n = 1 ==> zgcd (k * m) n = zgcd m n"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   198
  by (simp add: zgcd_def nat_abs_mult_distrib gcd_mult_cancel)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   199
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   200
lemma zgcd_zgcd_zmult:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   201
  "zgcd k m = 1 ==> zgcd n m = 1 ==> zgcd (k * n) m = 1"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   202
  by (simp add: zgcd_zmult_cancel)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   203
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   204
lemma zdvd_iff_zgcd: "0 < m ==> m dvd n \<longleftrightarrow> zgcd n m = m"
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   205
  by (metis abs_of_pos zdvd_mult_div_cancel zgcd_0 zgcd_commute zgcd_geq_zero zgcd_zdvd2 zgcd_zmult_eq_self)
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   206
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   207
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   208
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   209
subsection {* Congruences *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   210
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   211
lemma zcong_1 [simp]: "[a = b] (mod 1)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   212
  by (unfold zcong_def, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   213
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   214
lemma zcong_refl [simp]: "[k = k] (mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   215
  by (unfold zcong_def, auto)
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   216
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   217
lemma zcong_sym: "[a = b] (mod m) = [b = a] (mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   218
  apply (unfold zcong_def dvd_def, auto)
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   219
   apply (rule_tac [!] x = "-k" in exI, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   220
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   221
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   222
lemma zcong_zadd:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   223
    "[a = b] (mod m) ==> [c = d] (mod m) ==> [a + c = b + d] (mod m)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   224
  apply (unfold zcong_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   225
  apply (rule_tac s = "(a - b) + (c - d)" in subst)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   226
   apply (rule_tac [2] zdvd_zadd, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   227
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   228
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   229
lemma zcong_zdiff:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   230
    "[a = b] (mod m) ==> [c = d] (mod m) ==> [a - c = b - d] (mod m)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   231
  apply (unfold zcong_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   232
  apply (rule_tac s = "(a - b) - (c - d)" in subst)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   233
   apply (rule_tac [2] zdvd_zdiff, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   234
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   235
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   236
lemma zcong_trans:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   237
    "[a = b] (mod m) ==> [b = c] (mod m) ==> [a = c] (mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   238
  apply (unfold zcong_def dvd_def, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   239
  apply (rule_tac x = "k + ka" in exI)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   240
  apply (simp add: zadd_ac zadd_zmult_distrib2)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   241
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   242
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   243
lemma zcong_zmult:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   244
    "[a = b] (mod m) ==> [c = d] (mod m) ==> [a * c = b * d] (mod m)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   245
  apply (rule_tac b = "b * c" in zcong_trans)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   246
   apply (unfold zcong_def)
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   247
  apply (metis zdiff_zmult_distrib2 zdvd_zmult zmult_commute)
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   248
  apply (metis zdiff_zmult_distrib2 zdvd_zmult)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   249
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   250
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   251
lemma zcong_scalar: "[a = b] (mod m) ==> [a * k = b * k] (mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   252
  by (rule zcong_zmult, simp_all)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   253
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   254
lemma zcong_scalar2: "[a = b] (mod m) ==> [k * a = k * b] (mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   255
  by (rule zcong_zmult, simp_all)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   256
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   257
lemma zcong_zmult_self: "[a * m = b * m] (mod m)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   258
  apply (unfold zcong_def)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   259
  apply (rule zdvd_zdiff, simp_all)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   260
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   261
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   262
lemma zcong_square:
16663
13e9c402308b prime is a predicate now.
nipkow
parents: 16417
diff changeset
   263
   "[| zprime p;  0 < a;  [a * a = 1] (mod p)|]
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   264
    ==> [a = 1] (mod p) \<or> [a = p - 1] (mod p)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   265
  apply (unfold zcong_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   266
  apply (rule zprime_zdvd_zmult)
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   267
    apply (rule_tac [3] s = "a * a - 1 + p * (1 - a)" in subst)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   268
     prefer 4
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   269
     apply (simp add: zdvd_reduce)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   270
    apply (simp_all add: zdiff_zmult_distrib zmult_commute zdiff_zmult_distrib2)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   271
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   272
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   273
lemma zcong_cancel:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   274
  "0 \<le> m ==>
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   275
    zgcd k m = 1 ==> [a * k = b * k] (mod m) = [a = b] (mod m)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   276
  apply safe
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   277
   prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   278
   apply (blast intro: zcong_scalar)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   279
  apply (case_tac "b < a")
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   280
   prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   281
   apply (subst zcong_sym)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   282
   apply (unfold zcong_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   283
   apply (rule_tac [!] zrelprime_zdvd_zmult)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   284
     apply (simp_all add: zdiff_zmult_distrib)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   285
  apply (subgoal_tac "m dvd (-(a * k - b * k))")
14271
8ed6989228bb Simplification of the development of Integers
paulson
parents: 14174
diff changeset
   286
   apply simp
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   287
  apply (subst zdvd_zminus_iff, assumption)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   288
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   289
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   290
lemma zcong_cancel2:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   291
  "0 \<le> m ==>
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   292
    zgcd k m = 1 ==> [k * a = k * b] (mod m) = [a = b] (mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   293
  by (simp add: zmult_commute zcong_cancel)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   294
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   295
lemma zcong_zgcd_zmult_zmod:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   296
  "[a = b] (mod m) ==> [a = b] (mod n) ==> zgcd m n = 1
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   297
    ==> [a = b] (mod m * n)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   298
  apply (unfold zcong_def dvd_def, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   299
  apply (subgoal_tac "m dvd n * ka")
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   300
   apply (subgoal_tac "m dvd ka")
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   301
    apply (case_tac [2] "0 \<le> ka")
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   302
  apply (metis zdvd_mult_div_cancel zdvd_refl zdvd_zminus2_iff zdvd_zmultD2 zgcd_zminus zmult_commute zmult_zminus zrelprime_zdvd_zmult)
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   303
  apply (metis IntDiv.zdvd_abs1 abs_of_nonneg zadd_0 zgcd_0_left zgcd_commute zgcd_zadd_zmult zgcd_zdvd_zgcd_zmult zgcd_zmult_distrib2_abs zmult_1_right zmult_commute)
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   304
  apply (metis abs_eq_0 int_0_neq_1 mult_le_0_iff  zdvd_mono zdvd_mult_cancel zdvd_mult_cancel1 zdvd_refl zdvd_triv_left zdvd_zmult2 zero_le_mult_iff zgcd_greatest_iff zle_anti_sym zle_linear zle_refl zmult_commute zrelprime_zdvd_zmult)
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   305
  apply (metis zdvd_triv_left)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   306
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   307
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   308
lemma zcong_zless_imp_eq:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   309
  "0 \<le> a ==>
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   310
    a < m ==> 0 \<le> b ==> b < m ==> [a = b] (mod m) ==> a = b"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   311
  apply (unfold zcong_def dvd_def, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   312
  apply (drule_tac f = "\<lambda>z. z mod m" in arg_cong)
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   313
  apply (metis diff_add_cancel mod_pos_pos_trivial zadd_0 zadd_commute zmod_eq_0_iff zmod_zadd_right_eq)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   314
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   315
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   316
lemma zcong_square_zless:
16663
13e9c402308b prime is a predicate now.
nipkow
parents: 16417
diff changeset
   317
  "zprime p ==> 0 < a ==> a < p ==>
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   318
    [a * a = 1] (mod p) ==> a = 1 \<or> a = p - 1"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   319
  apply (cut_tac p = p and a = a in zcong_square)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   320
     apply (simp add: zprime_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   321
    apply (auto intro: zcong_zless_imp_eq)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   322
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   323
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   324
lemma zcong_not:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   325
    "0 < a ==> a < m ==> 0 < b ==> b < a ==> \<not> [a = b] (mod m)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   326
  apply (unfold zcong_def)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   327
  apply (rule zdvd_not_zless, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   328
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   329
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   330
lemma zcong_zless_0:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   331
    "0 \<le> a ==> a < m ==> [a = 0] (mod m) ==> a = 0"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   332
  apply (unfold zcong_def dvd_def, auto)
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   333
  apply (metis div_pos_pos_trivial linorder_not_less zdiv_zmult_self2 zle_refl zle_trans)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   334
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   335
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   336
lemma zcong_zless_unique:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   337
    "0 < m ==> (\<exists>!b. 0 \<le> b \<and> b < m \<and> [a = b] (mod m))"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   338
  apply auto
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   339
   prefer 2 apply (metis zcong_sym zcong_trans zcong_zless_imp_eq)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   340
  apply (unfold zcong_def dvd_def)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   341
  apply (rule_tac x = "a mod m" in exI, auto)
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   342
  apply (metis zmult_div_cancel)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   343
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   344
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   345
lemma zcong_iff_lin: "([a = b] (mod m)) = (\<exists>k. b = a + m * k)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   346
  apply (unfold zcong_def dvd_def, auto)
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   347
   apply (rule_tac [!] x = "-k" in exI, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   348
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   349
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   350
lemma zgcd_zcong_zgcd:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   351
  "0 < m ==>
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   352
    zgcd a m = 1 ==> [a = b] (mod m) ==> zgcd b m = 1"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   353
  by (auto simp add: zcong_iff_lin)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   354
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   355
lemma zcong_zmod_aux:
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   356
     "a - b = (m::int) * (a div m - b div m) + (a mod m - b mod m)"
14271
8ed6989228bb Simplification of the development of Integers
paulson
parents: 14174
diff changeset
   357
  by(simp add: zdiff_zmult_distrib2 add_diff_eq eq_diff_eq add_ac)
13517
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13193
diff changeset
   358
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   359
lemma zcong_zmod: "[a = b] (mod m) = [a mod m = b mod m] (mod m)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   360
  apply (unfold zcong_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   361
  apply (rule_tac t = "a - b" in ssubst)
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13837
diff changeset
   362
  apply (rule_tac m = m in zcong_zmod_aux)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   363
  apply (rule trans)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   364
   apply (rule_tac [2] k = m and m = "a div m - b div m" in zdvd_reduce)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   365
  apply (simp add: zadd_commute)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   366
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   367
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   368
lemma zcong_zmod_eq: "0 < m ==> [a = b] (mod m) = (a mod m = b mod m)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   369
  apply auto
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   370
  apply (metis pos_mod_conj zcong_zless_imp_eq zcong_zmod)
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   371
  apply (metis zcong_refl zcong_zmod)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   372
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   373
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   374
lemma zcong_zminus [iff]: "[a = b] (mod -m) = [a = b] (mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   375
  by (auto simp add: zcong_def)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   376
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   377
lemma zcong_zero [iff]: "[a = b] (mod 0) = (a = b)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   378
  by (auto simp add: zcong_def)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   379
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   380
lemma "[a = b] (mod m) = (a mod m = b mod m)"
13183
c7290200b3f4 conversion of IntDiv.thy to Isar format
paulson
parents: 11868
diff changeset
   381
  apply (case_tac "m = 0", simp add: DIVISION_BY_ZERO)
13193
d5234c261813 finished an incomplete proof
paulson
parents: 13187
diff changeset
   382
  apply (simp add: linorder_neq_iff)
d5234c261813 finished an incomplete proof
paulson
parents: 13187
diff changeset
   383
  apply (erule disjE)  
d5234c261813 finished an incomplete proof
paulson
parents: 13187
diff changeset
   384
   prefer 2 apply (simp add: zcong_zmod_eq)
d5234c261813 finished an incomplete proof
paulson
parents: 13187
diff changeset
   385
  txt{*Remainding case: @{term "m<0"}*}
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   386
  apply (rule_tac t = m in zminus_zminus [THEN subst])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   387
  apply (subst zcong_zminus)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   388
  apply (subst zcong_zmod_eq, arith)
13193
d5234c261813 finished an incomplete proof
paulson
parents: 13187
diff changeset
   389
  apply (frule neg_mod_bound [of _ a], frule neg_mod_bound [of _ b]) 
13788
fd03c4ab89d4 pos/neg_mod_sign/bound are now simp rules.
nipkow
parents: 13630
diff changeset
   390
  apply (simp add: zmod_zminus2_eq_if del: neg_mod_bound)
13193
d5234c261813 finished an incomplete proof
paulson
parents: 13187
diff changeset
   391
  done
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   392
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   393
subsection {* Modulo *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   394
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   395
lemma zmod_zdvd_zmod:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   396
    "0 < (m::int) ==> m dvd b ==> (a mod b mod m) = (a mod m)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   397
  apply (unfold dvd_def, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   398
  apply (subst zcong_zmod_eq [symmetric])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   399
   prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   400
   apply (subst zcong_iff_lin)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   401
   apply (rule_tac x = "k * (a div (m * k))" in exI)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   402
   apply (simp add:zmult_assoc [symmetric], assumption)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   403
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   404
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   405
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   406
subsection {* Extended GCD *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   407
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   408
declare xzgcda.simps [simp del]
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   409
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13517
diff changeset
   410
lemma xzgcd_correct_aux1:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   411
  "zgcd r' r = k --> 0 < r -->
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   412
    (\<exists>sn tn. xzgcda (m, n, r', r, s', s, t', t) = (k, sn, tn))"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   413
  apply (rule_tac u = m and v = n and w = r' and x = r and y = s' and
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   414
    z = s and aa = t' and ab = t in xzgcda.induct)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   415
  apply (subst zgcd_eq)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   416
  apply (subst xzgcda.simps, auto)
24759
b448f94b1c88 fixed metis proof (Why did it stop working?);
wenzelm
parents: 24181
diff changeset
   417
  apply (case_tac "r' mod r = 0")
b448f94b1c88 fixed metis proof (Why did it stop working?);
wenzelm
parents: 24181
diff changeset
   418
   prefer 2
b448f94b1c88 fixed metis proof (Why did it stop working?);
wenzelm
parents: 24181
diff changeset
   419
   apply (frule_tac a = "r'" in pos_mod_sign, auto)
b448f94b1c88 fixed metis proof (Why did it stop working?);
wenzelm
parents: 24181
diff changeset
   420
  apply (rule exI)
b448f94b1c88 fixed metis proof (Why did it stop working?);
wenzelm
parents: 24181
diff changeset
   421
  apply (rule exI)
b448f94b1c88 fixed metis proof (Why did it stop working?);
wenzelm
parents: 24181
diff changeset
   422
  apply (subst xzgcda.simps, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   423
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   424
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13517
diff changeset
   425
lemma xzgcd_correct_aux2:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   426
  "(\<exists>sn tn. xzgcda (m, n, r', r, s', s, t', t) = (k, sn, tn)) --> 0 < r -->
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   427
    zgcd r' r = k"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   428
  apply (rule_tac u = m and v = n and w = r' and x = r and y = s' and
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   429
    z = s and aa = t' and ab = t in xzgcda.induct)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   430
  apply (subst zgcd_eq)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   431
  apply (subst xzgcda.simps)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   432
  apply (auto simp add: linorder_not_le)
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   433
  apply (case_tac "r' mod r = 0")
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   434
   prefer 2
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   435
   apply (frule_tac a = "r'" in pos_mod_sign, auto)
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   436
  apply (metis Pair_eq simps zle_refl)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   437
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   438
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   439
lemma xzgcd_correct:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   440
    "0 < n ==> zgcd m n = k \<longleftrightarrow> (\<exists>s t. xzgcd m n = (k, s, t))"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   441
  apply (unfold xzgcd_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   442
  apply (rule iffI)
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13517
diff changeset
   443
   apply (rule_tac [2] xzgcd_correct_aux2 [THEN mp, THEN mp])
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   444
    apply (rule xzgcd_correct_aux1 [THEN mp, THEN mp], auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   445
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   446
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   447
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   448
text {* \medskip @{term xzgcd} linear *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   449
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13517
diff changeset
   450
lemma xzgcda_linear_aux1:
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   451
  "(a - r * b) * m + (c - r * d) * (n::int) =
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   452
   (a * m + c * n) - r * (b * m + d * n)"
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   453
  by (simp add: zdiff_zmult_distrib zadd_zmult_distrib2 zmult_assoc)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   454
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13517
diff changeset
   455
lemma xzgcda_linear_aux2:
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   456
  "r' = s' * m + t' * n ==> r = s * m + t * n
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   457
    ==> (r' mod r) = (s' - (r' div r) * s) * m + (t' - (r' div r) * t) * (n::int)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   458
  apply (rule trans)
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13517
diff changeset
   459
   apply (rule_tac [2] xzgcda_linear_aux1 [symmetric])
14271
8ed6989228bb Simplification of the development of Integers
paulson
parents: 14174
diff changeset
   460
  apply (simp add: eq_diff_eq mult_commute)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   461
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   462
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   463
lemma order_le_neq_implies_less: "(x::'a::order) \<le> y ==> x \<noteq> y ==> x < y"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   464
  by (rule iffD2 [OF order_less_le conjI])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   465
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   466
lemma xzgcda_linear [rule_format]:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   467
  "0 < r --> xzgcda (m, n, r', r, s', s, t', t) = (rn, sn, tn) -->
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   468
    r' = s' * m + t' * n -->  r = s * m + t * n --> rn = sn * m + tn * n"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   469
  apply (rule_tac u = m and v = n and w = r' and x = r and y = s' and
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   470
    z = s and aa = t' and ab = t in xzgcda.induct)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   471
  apply (subst xzgcda.simps)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   472
  apply (simp (no_asm))
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   473
  apply (rule impI)+
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   474
  apply (case_tac "r' mod r = 0")
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   475
   apply (simp add: xzgcda.simps, clarify)
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   476
  apply (subgoal_tac "0 < r' mod r")
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   477
   apply (rule_tac [2] order_le_neq_implies_less)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   478
   apply (rule_tac [2] pos_mod_sign)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   479
    apply (cut_tac m = m and n = n and r' = r' and r = r and s' = s' and
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   480
      s = s and t' = t' and t = t in xzgcda_linear_aux2, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   481
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   482
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   483
lemma xzgcd_linear:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   484
    "0 < n ==> xzgcd m n = (r, s, t) ==> r = s * m + t * n"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   485
  apply (unfold xzgcd_def)
13837
8dd150d36c65 Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents: 13833
diff changeset
   486
  apply (erule xzgcda_linear, assumption, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   487
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   488
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   489
lemma zgcd_ex_linear:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   490
    "0 < n ==> zgcd m n = k ==> (\<exists>s t. k = s * m + t * n)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   491
  apply (simp add: xzgcd_correct, safe)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   492
  apply (rule exI)+
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   493
  apply (erule xzgcd_linear, auto)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   494
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   495
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   496
lemma zcong_lineq_ex:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   497
    "0 < n ==> zgcd a n = 1 ==> \<exists>x. [a * x = 1] (mod n)"
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   498
  apply (cut_tac m = a and n = n and k = 1 in zgcd_ex_linear, safe)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   499
  apply (rule_tac x = s in exI)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   500
  apply (rule_tac b = "s * a + t * n" in zcong_trans)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   501
   prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   502
   apply simp
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   503
  apply (unfold zcong_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   504
  apply (simp (no_asm) add: zmult_commute zdvd_zminus_iff)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   505
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   506
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   507
lemma zcong_lineq_unique:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   508
  "0 < n ==>
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 27368
diff changeset
   509
    zgcd a n = 1 ==> \<exists>!x. 0 \<le> x \<and> x < n \<and> [a * x = b] (mod n)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   510
  apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   511
   apply (rule_tac [2] zcong_zless_imp_eq)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   512
       apply (tactic {* stac (thm "zcong_cancel2" RS sym) 6 *})
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   513
         apply (rule_tac [8] zcong_trans)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   514
          apply (simp_all (no_asm_simp))
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   515
   prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   516
   apply (simp add: zcong_sym)
13833
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   517
  apply (cut_tac a = a and n = n in zcong_lineq_ex, auto)
f8dcb1d9ea68 zprime_def fixes by Jeremy Avigad
paulson
parents: 13788
diff changeset
   518
  apply (rule_tac x = "x * b mod n" in exI, safe)
13788
fd03c4ab89d4 pos/neg_mod_sign/bound are now simp rules.
nipkow
parents: 13630
diff changeset
   519
    apply (simp_all (no_asm_simp))
23839
d9fa0f457d9a tidying using metis
paulson
parents: 21404
diff changeset
   520
  apply (metis zcong_scalar zcong_zmod zmod_zmult1_eq zmult_1 zmult_assoc)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 10147
diff changeset
   521
  done
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   522
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   523
end