src/HOL/Old_Number_Theory/Chinese.thy
author haftmann
Sat, 05 Jul 2014 11:01:53 +0200
changeset 57514 bdc2c6b40bf2
parent 57492 74bf65a1910a
child 58889 5b7a9633cfa8
permissions -rw-r--r--
prefer ac_simps collections over separate name bindings for add and mult
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38159
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
     1
(*  Title:      HOL/Old_Number_Theory/Chinese.thy
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
     2
    Author:     Thomas M. Rasmussen
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
     3
    Copyright   2000  University of Cambridge
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
     4
*)
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
     5
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
     6
header {* The Chinese Remainder Theorem *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
     7
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 23894
diff changeset
     8
theory Chinese 
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 23894
diff changeset
     9
imports IntPrimes
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 23894
diff changeset
    10
begin
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    11
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    12
text {*
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    13
  The Chinese Remainder Theorem for an arbitrary finite number of
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    14
  equations.  (The one-equation case is included in theory @{text
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    15
  IntPrimes}.  Uses functions for indexing.\footnote{Maybe @{term
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    16
  funprod} and @{term funsum} should be based on general @{term fold}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    17
  on indices?}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    18
*}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    19
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    20
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    21
subsection {* Definitions *}
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    22
38159
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
    23
primrec funprod :: "(nat => int) => nat => nat => int"
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
    24
where
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    25
  "funprod f i 0 = f i"
38159
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
    26
| "funprod f i (Suc n) = f (Suc (i + n)) * funprod f i n"
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    27
38159
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
    28
primrec funsum :: "(nat => int) => nat => nat => int"
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
    29
where
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    30
  "funsum f i 0 = f i"
38159
e9b4835a54ee modernized specifications;
wenzelm
parents: 32479
diff changeset
    31
| "funsum f i (Suc n) = f (Suc (i + n)) + funsum f i n"
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    32
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    33
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    34
  m_cond :: "nat => (nat => int) => bool" where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    35
  "m_cond n mf =
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    36
    ((\<forall>i. i \<le> n --> 0 < mf i) \<and>
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 23894
diff changeset
    37
      (\<forall>i j. i \<le> n \<and> j \<le> n \<and> i \<noteq> j --> zgcd (mf i) (mf j) = 1))"
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    38
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    39
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    40
  km_cond :: "nat => (nat => int) => (nat => int) => bool" where
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 23894
diff changeset
    41
  "km_cond n kf mf = (\<forall>i. i \<le> n --> zgcd (kf i) (mf i) = 1)"
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    42
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    43
definition
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    44
  lincong_sol ::
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    45
    "nat => (nat => int) => (nat => int) => (nat => int) => int => bool" where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    46
  "lincong_sol n kf bf mf x = (\<forall>i. i \<le> n --> zcong (kf i * x) (bf i) (mf i))"
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    47
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    48
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    49
  mhf :: "(nat => int) => nat => nat => int" where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    50
  "mhf mf n i =
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    51
    (if i = 0 then funprod mf (Suc 0) (n - Suc 0)
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    52
     else if i = n then funprod mf 0 (n - Suc 0)
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    53
     else funprod mf 0 (i - Suc 0) * funprod mf (Suc i) (n - Suc 0 - i))"
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    54
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    55
definition
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    56
  xilin_sol ::
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    57
    "nat => nat => (nat => int) => (nat => int) => (nat => int) => int" where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    58
  "xilin_sol i n kf bf mf =
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    59
    (if 0 < n \<and> i \<le> n \<and> m_cond n mf \<and> km_cond n kf mf then
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    60
        (SOME x. 0 \<le> x \<and> x < mf i \<and> zcong (kf i * mhf mf n i * x) (bf i) (mf i))
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    61
     else 0)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    62
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    63
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20432
diff changeset
    64
  x_sol :: "nat => (nat => int) => (nat => int) => (nat => int) => int" where
19670
2e4a143c73c5 prefer 'definition' over low-level defs;
wenzelm
parents: 16417
diff changeset
    65
  "x_sol n kf bf mf = funsum (\<lambda>i. xilin_sol i n kf bf mf * mhf mf n i) 0 n"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    66
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    67
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    68
text {* \medskip @{term funprod} and @{term funsum} *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    69
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
    70
lemma funprod_pos: "(\<forall>i. i \<le> n --> 0 < mf i) ==> 0 < funprod mf 0 n"
56544
b60d5d119489 made mult_pos_pos a simp rule
nipkow
parents: 51717
diff changeset
    71
by (induct n) auto
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    72
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    73
lemma funprod_zgcd [rule_format (no_asm)]:
27556
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 23894
diff changeset
    74
  "(\<forall>i. k \<le> i \<and> i \<le> k + l --> zgcd (mf i) (mf m) = 1) -->
292098f2efdf unified curried gcd, lcm, zgcd, zlcm
haftmann
parents: 23894
diff changeset
    75
    zgcd (funprod mf k l) (mf m) = 1"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    76
  apply (induct l)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    77
   apply simp_all
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    78
  apply (rule impI)+
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    79
  apply (subst zgcd_zmult_cancel)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    80
  apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    81
  done
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
    82
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    83
lemma funprod_zdvd [rule_format]:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    84
    "k \<le> i --> i \<le> k + l --> mf i dvd funprod mf k l"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    85
  apply (induct l)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    86
   apply auto
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
    87
  apply (subgoal_tac "i = Suc (k + l)")
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
    88
   apply (simp_all (no_asm_simp))
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    89
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    90
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    91
lemma funsum_mod:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    92
    "funsum f k l mod m = funsum (\<lambda>i. (f i) mod m) k l mod m"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    93
  apply (induct l)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    94
   apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    95
  apply (rule trans)
29948
cdf12a1cb963 Cleaned up IntDiv and removed subsumed lemmas.
nipkow
parents: 27556
diff changeset
    96
   apply (rule mod_add_eq)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    97
  apply simp
30034
60f64f112174 removed redundant thms
nipkow
parents: 29948
diff changeset
    98
  apply (rule mod_add_right_eq [symmetric])
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
    99
  done
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   100
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   101
lemma funsum_zero [rule_format (no_asm)]:
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   102
    "(\<forall>i. k \<le> i \<and> i \<le> k + l --> f i = 0) --> (funsum f k l) = 0"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   103
  apply (induct l)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   104
   apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   105
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   106
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   107
lemma funsum_oneelem [rule_format (no_asm)]:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   108
  "k \<le> j --> j \<le> k + l -->
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   109
    (\<forall>i. k \<le> i \<and> i \<le> k + l \<and> i \<noteq> j --> f i = 0) -->
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   110
    funsum f k l = f j"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   111
  apply (induct l)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   112
   prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   113
   apply clarify
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   114
   defer
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   115
   apply clarify
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   116
   apply (subgoal_tac "k = j")
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   117
    apply (simp_all (no_asm_simp))
15236
f289e8ba2bb3 Proofs needed to be updated because induction now preserves name of
nipkow
parents: 15197
diff changeset
   118
  apply (case_tac "Suc (k + l) = j")
f289e8ba2bb3 Proofs needed to be updated because induction now preserves name of
nipkow
parents: 15197
diff changeset
   119
   apply (subgoal_tac "funsum f k l = 0")
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   120
    apply (rule_tac [2] funsum_zero)
15236
f289e8ba2bb3 Proofs needed to be updated because induction now preserves name of
nipkow
parents: 15197
diff changeset
   121
    apply (subgoal_tac [3] "f (Suc (k + l)) = 0")
f289e8ba2bb3 Proofs needed to be updated because induction now preserves name of
nipkow
parents: 15197
diff changeset
   122
     apply (subgoal_tac [3] "j \<le> k + l")
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   123
      prefer 4
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   124
      apply arith
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   125
     apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   126
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   127
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   128
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   129
subsection {* Chinese: uniqueness *}
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   130
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13187
diff changeset
   131
lemma zcong_funprod_aux:
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   132
  "m_cond n mf ==> km_cond n kf mf
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   133
    ==> lincong_sol n kf bf mf x ==> lincong_sol n kf bf mf y
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   134
    ==> [x = y] (mod mf n)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   135
  apply (unfold m_cond_def km_cond_def lincong_sol_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   136
  apply (rule iffD1)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   137
   apply (rule_tac k = "kf n" in zcong_cancel2)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   138
    apply (rule_tac [3] b = "bf n" in zcong_trans)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   139
     prefer 4
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   140
     apply (subst zcong_sym)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   141
     defer
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   142
     apply (rule order_less_imp_le)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   143
     apply simp_all
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   144
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   145
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   146
lemma zcong_funprod [rule_format]:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   147
  "m_cond n mf --> km_cond n kf mf -->
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   148
    lincong_sol n kf bf mf x --> lincong_sol n kf bf mf y -->
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   149
    [x = y] (mod funprod mf 0 n)"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   150
  apply (induct n)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   151
   apply (simp_all (no_asm))
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13187
diff changeset
   152
   apply (blast intro: zcong_funprod_aux)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   153
  apply (rule impI)+
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   154
  apply (rule zcong_zgcd_zmult_zmod)
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13187
diff changeset
   155
    apply (blast intro: zcong_funprod_aux)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   156
    prefer 2
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   157
    apply (subst zgcd_commute)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   158
    apply (rule funprod_zgcd)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   159
   apply (auto simp add: m_cond_def km_cond_def lincong_sol_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   160
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   161
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   162
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   163
subsection {* Chinese: existence *}
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   164
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   165
lemma unique_xi_sol:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   166
  "0 < n ==> i \<le> n ==> m_cond n mf ==> km_cond n kf mf
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   167
    ==> \<exists>!x. 0 \<le> x \<and> x < mf i \<and> [kf i * mhf mf n i * x = bf i] (mod mf i)"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   168
  apply (rule zcong_lineq_unique)
39159
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   169
   apply (tactic {* stac @{thm zgcd_zmult_cancel} 2 *})
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   170
    apply (unfold m_cond_def km_cond_def mhf_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   171
    apply (simp_all (no_asm_simp))
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   172
  apply safe
39159
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   173
    apply (tactic {* stac @{thm zgcd_zmult_cancel} 3 *})
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   174
     apply (rule_tac [!] funprod_zgcd)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   175
     apply safe
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   176
     apply simp_all
57492
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56544
diff changeset
   177
   apply (subgoal_tac "ia<n")
20432
07ec57376051 lin_arith_prover: splitting reverted because of performance loss
webertj
parents: 20272
diff changeset
   178
    prefer 2
07ec57376051 lin_arith_prover: splitting reverted because of performance loss
webertj
parents: 20272
diff changeset
   179
    apply arith
07ec57376051 lin_arith_prover: splitting reverted because of performance loss
webertj
parents: 20272
diff changeset
   180
   apply (case_tac [2] i)
07ec57376051 lin_arith_prover: splitting reverted because of performance loss
webertj
parents: 20272
diff changeset
   181
    apply simp_all
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   182
  done
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   183
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13187
diff changeset
   184
lemma x_sol_lin_aux:
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   185
    "0 < n ==> i \<le> n ==> j \<le> n ==> j \<noteq> i ==> mf j dvd mhf mf n i"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   186
  apply (unfold mhf_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   187
  apply (case_tac "i = 0")
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   188
   apply (case_tac [2] "i = n")
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   189
    apply (simp_all (no_asm_simp))
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   190
    apply (case_tac [3] "j < i")
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
   191
     apply (rule_tac [3] dvd_mult2)
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
   192
     apply (rule_tac [4] dvd_mult)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   193
     apply (rule_tac [!] funprod_zdvd)
23315
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   194
     apply arith
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   195
     apply arith
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   196
     apply arith
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   197
     apply arith
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   198
     apply arith
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   199
     apply arith
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   200
     apply arith
df3a7e9ebadb tuned Proof
chaieb
parents: 21404
diff changeset
   201
     apply arith
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   202
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   203
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   204
lemma x_sol_lin:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   205
  "0 < n ==> i \<le> n
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   206
    ==> x_sol n kf bf mf mod mf i =
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   207
      xilin_sol i n kf bf mf * mhf mf n i mod mf i"
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   208
  apply (unfold x_sol_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   209
  apply (subst funsum_mod)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   210
  apply (subst funsum_oneelem)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   211
     apply auto
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
   212
  apply (subst dvd_eq_mod_eq_0 [symmetric])
31039ee583fa Removed subsumed lemmas
nipkow
parents: 30034
diff changeset
   213
  apply (rule dvd_mult)
13524
604d0f3622d6 *** empty log message ***
wenzelm
parents: 13187
diff changeset
   214
  apply (rule x_sol_lin_aux)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   215
  apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   216
  done
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   217
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   218
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   219
subsection {* Chinese *}
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   220
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   221
lemma chinese_remainder:
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   222
  "0 < n ==> m_cond n mf ==> km_cond n kf mf
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   223
    ==> \<exists>!x. 0 \<le> x \<and> x < funprod mf 0 n \<and> lincong_sol n kf bf mf x"
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   224
  apply safe
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   225
   apply (rule_tac [2] m = "funprod mf 0 n" in zcong_zless_imp_eq)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   226
       apply (rule_tac [6] zcong_funprod)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   227
          apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   228
  apply (rule_tac x = "x_sol n kf bf mf mod funprod mf 0 n" in exI)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   229
  apply (unfold lincong_sol_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   230
  apply safe
39159
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   231
    apply (tactic {* stac @{thm zcong_zmod} 3 *})
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   232
    apply (tactic {* stac @{thm mod_mult_eq} 3 *})
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   233
    apply (tactic {* stac @{thm mod_mod_cancel} 3 *})
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   234
      apply (tactic {* stac @{thm x_sol_lin} 4 *})
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   235
        apply (tactic {* stac (@{thm mod_mult_eq} RS sym) 6 *})
0dec18004e75 more antiquotations;
wenzelm
parents: 38159
diff changeset
   236
        apply (tactic {* stac (@{thm zcong_zmod} RS sym) 6 *})
30034
60f64f112174 removed redundant thms
nipkow
parents: 29948
diff changeset
   237
        apply (subgoal_tac [6]
11868
56db9f3a6b3e Numerals now work for the integers: the binary numerals for 0 and 1 rewrite
paulson
parents: 11701
diff changeset
   238
          "0 \<le> xilin_sol i n kf bf mf \<and> xilin_sol i n kf bf mf < mf i
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   239
          \<and> [kf i * mhf mf n i * xilin_sol i n kf bf mf = bf i] (mod mf i)")
30034
60f64f112174 removed redundant thms
nipkow
parents: 29948
diff changeset
   240
         prefer 6
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57492
diff changeset
   241
         apply (simp add: ac_simps)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   242
        apply (unfold xilin_sol_def)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 44766
diff changeset
   243
        apply (tactic {* asm_simp_tac @{context} 6 *})
30034
60f64f112174 removed redundant thms
nipkow
parents: 29948
diff changeset
   244
        apply (rule_tac [6] ex1_implies_ex [THEN someI_ex])
60f64f112174 removed redundant thms
nipkow
parents: 29948
diff changeset
   245
        apply (rule_tac [6] unique_xi_sol)
60f64f112174 removed redundant thms
nipkow
parents: 29948
diff changeset
   246
           apply (rule_tac [3] funprod_zdvd)
11049
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   247
            apply (unfold m_cond_def)
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   248
            apply (rule funprod_pos [THEN pos_mod_sign])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   249
            apply (rule_tac [2] funprod_pos [THEN pos_mod_bound])
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   250
            apply auto
7eef34adb852 HOL-NumberTheory: converted to new-style format and proper document setup;
wenzelm
parents: 9508
diff changeset
   251
  done
9508
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   252
4d01dbf6ded7 Chinese Remainder Theorem, Wilsons Theorem, etc., by T M Masmussen
paulson
parents:
diff changeset
   253
end