src/HOL/IntDef.thy
author huffman
Tue, 15 Jan 2008 02:18:01 +0100
changeset 25913 e1b6521c1f94
parent 25762 c03e9d04b3e4
permissions -rw-r--r--
declare cpair_strict [simp]
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     1
(*  Title:      IntDef.thy
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     5
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     6
*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     7
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     8
header{*The Integers as Equivalence Classes over Pairs of Natural Numbers*} 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     9
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    10
theory IntDef
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    11
imports Equiv_Relations Nat
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    12
begin
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    13
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    14
text {* the equivalence relation underlying the integers *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    15
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    16
definition
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    17
  intrel :: "((nat \<times> nat) \<times> (nat \<times> nat)) set"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    18
where
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    19
  "intrel = {((x, y), (u, v)) | x y u v. x + v = u +y }"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    20
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    21
typedef (Integ)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    22
  int = "UNIV//intrel"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    23
  by (auto simp add: quotient_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    24
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25571
diff changeset
    25
instantiation int :: "{zero, one, plus, minus, uminus, times, ord, abs, sgn}"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    26
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    27
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    28
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    29
  Zero_int_def [code func del]: "0 = Abs_Integ (intrel `` {(0, 0)})"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    30
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    31
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    32
  One_int_def [code func del]: "1 = Abs_Integ (intrel `` {(1, 0)})"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    33
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    34
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    35
  add_int_def [code func del]: "z + w = Abs_Integ
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    36
    (\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u, v) \<in> Rep_Integ w.
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    37
      intrel `` {(x + u, y + v)})"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    38
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    39
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    40
  minus_int_def [code func del]:
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    41
    "- z = Abs_Integ (\<Union>(x, y) \<in> Rep_Integ z. intrel `` {(y, x)})"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    42
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    43
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    44
  diff_int_def [code func del]:  "z - w = z + (-w \<Colon> int)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    45
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    46
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    47
  mult_int_def [code func del]: "z * w = Abs_Integ
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    48
    (\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u,v ) \<in> Rep_Integ w.
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    49
      intrel `` {(x*u + y*v, x*v + y*u)})"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    50
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    51
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    52
  le_int_def [code func del]:
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    53
   "z \<le> w \<longleftrightarrow> (\<exists>x y u v. x+v \<le> u+y \<and> (x, y) \<in> Rep_Integ z \<and> (u, v) \<in> Rep_Integ w)"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    54
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    55
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    56
  less_int_def [code func del]: "(z\<Colon>int) < w \<longleftrightarrow> z \<le> w \<and> z \<noteq> w"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    57
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    58
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    59
  zabs_def: "\<bar>i\<Colon>int\<bar> = (if i < 0 then - i else i)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    60
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    61
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    62
  zsgn_def: "sgn (i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    63
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    64
instance ..
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    65
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    66
end
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    67
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    68
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    69
subsection{*Construction of the Integers*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    70
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    71
lemma intrel_iff [simp]: "(((x,y),(u,v)) \<in> intrel) = (x+v = u+y)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    72
by (simp add: intrel_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    73
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    74
lemma equiv_intrel: "equiv UNIV intrel"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    75
by (simp add: intrel_def equiv_def refl_def sym_def trans_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    76
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    77
text{*Reduces equality of equivalence classes to the @{term intrel} relation:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    78
  @{term "(intrel `` {x} = intrel `` {y}) = ((x,y) \<in> intrel)"} *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    79
lemmas equiv_intrel_iff [simp] = eq_equiv_class_iff [OF equiv_intrel UNIV_I UNIV_I]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    80
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    81
text{*All equivalence classes belong to set of representatives*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    82
lemma [simp]: "intrel``{(x,y)} \<in> Integ"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    83
by (auto simp add: Integ_def intrel_def quotient_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    84
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    85
text{*Reduces equality on abstractions to equality on representatives:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    86
  @{prop "\<lbrakk>x \<in> Integ; y \<in> Integ\<rbrakk> \<Longrightarrow> (Abs_Integ x = Abs_Integ y) = (x=y)"} *}
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24196
diff changeset
    87
declare Abs_Integ_inject [simp,noatp]  Abs_Integ_inverse [simp,noatp]
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    88
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    89
text{*Case analysis on the representation of an integer as an equivalence
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    90
      class of pairs of naturals.*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    91
lemma eq_Abs_Integ [case_names Abs_Integ, cases type: int]:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    92
     "(!!x y. z = Abs_Integ(intrel``{(x,y)}) ==> P) ==> P"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    93
apply (rule Abs_Integ_cases [of z]) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    94
apply (auto simp add: Integ_def quotient_def) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    95
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    96
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    97
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
    98
subsection{*Arithmetic Operations*}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    99
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   100
lemma minus: "- Abs_Integ(intrel``{(x,y)}) = Abs_Integ(intrel `` {(y,x)})"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   101
proof -
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   102
  have "(\<lambda>(x,y). intrel``{(y,x)}) respects intrel"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   103
    by (simp add: congruent_def) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   104
  thus ?thesis
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   105
    by (simp add: minus_int_def UN_equiv_class [OF equiv_intrel])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   106
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   107
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   108
lemma add:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   109
     "Abs_Integ (intrel``{(x,y)}) + Abs_Integ (intrel``{(u,v)}) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   110
      Abs_Integ (intrel``{(x+u, y+v)})"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   111
proof -
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   112
  have "(\<lambda>z w. (\<lambda>(x,y). (\<lambda>(u,v). intrel `` {(x+u, y+v)}) w) z) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   113
        respects2 intrel"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   114
    by (simp add: congruent2_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   115
  thus ?thesis
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   116
    by (simp add: add_int_def UN_UN_split_split_eq
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   117
                  UN_equiv_class2 [OF equiv_intrel equiv_intrel])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   118
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   119
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   120
text{*Congruence property for multiplication*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   121
lemma mult_congruent2:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   122
     "(%p1 p2. (%(x,y). (%(u,v). intrel``{(x*u + y*v, x*v + y*u)}) p2) p1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   123
      respects2 intrel"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   124
apply (rule equiv_intrel [THEN congruent2_commuteI])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   125
 apply (force simp add: mult_ac, clarify) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   126
apply (simp add: congruent_def mult_ac)  
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   127
apply (rename_tac u v w x y z)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   128
apply (subgoal_tac "u*y + x*y = w*y + v*y  &  u*z + x*z = w*z + v*z")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   129
apply (simp add: mult_ac)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   130
apply (simp add: add_mult_distrib [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   131
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   132
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   133
lemma mult:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   134
     "Abs_Integ((intrel``{(x,y)})) * Abs_Integ((intrel``{(u,v)})) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   135
      Abs_Integ(intrel `` {(x*u + y*v, x*v + y*u)})"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   136
by (simp add: mult_int_def UN_UN_split_split_eq mult_congruent2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   137
              UN_equiv_class2 [OF equiv_intrel equiv_intrel])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   138
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   139
text{*The integers form a @{text comm_ring_1}*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   140
instance int :: comm_ring_1
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   141
proof
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   142
  fix i j k :: int
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   143
  show "(i + j) + k = i + (j + k)"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   144
    by (cases i, cases j, cases k) (simp add: add add_assoc)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   145
  show "i + j = j + i" 
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   146
    by (cases i, cases j) (simp add: add_ac add)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   147
  show "0 + i = i"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   148
    by (cases i) (simp add: Zero_int_def add)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   149
  show "- i + i = 0"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   150
    by (cases i) (simp add: Zero_int_def minus add)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   151
  show "i - j = i + - j"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   152
    by (simp add: diff_int_def)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   153
  show "(i * j) * k = i * (j * k)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23438
diff changeset
   154
    by (cases i, cases j, cases k) (simp add: mult ring_simps)
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   155
  show "i * j = j * i"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23438
diff changeset
   156
    by (cases i, cases j) (simp add: mult ring_simps)
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   157
  show "1 * i = i"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   158
    by (cases i) (simp add: One_int_def mult)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   159
  show "(i + j) * k = i * k + j * k"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23438
diff changeset
   160
    by (cases i, cases j, cases k) (simp add: add mult ring_simps)
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   161
  show "0 \<noteq> (1::int)"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   162
    by (simp add: Zero_int_def One_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   163
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   164
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   165
lemma int_def: "of_nat m = Abs_Integ (intrel `` {(m, 0)})"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   166
by (induct m, simp_all add: Zero_int_def One_int_def add)
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   167
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   168
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   169
subsection{*The @{text "\<le>"} Ordering*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   170
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   171
lemma le:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   172
  "(Abs_Integ(intrel``{(x,y)}) \<le> Abs_Integ(intrel``{(u,v)})) = (x+v \<le> u+y)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   173
by (force simp add: le_int_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   174
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   175
lemma less:
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   176
  "(Abs_Integ(intrel``{(x,y)}) < Abs_Integ(intrel``{(u,v)})) = (x+v < u+y)"
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   177
by (simp add: less_int_def le order_less_le)
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   178
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   179
instance int :: linorder
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   180
proof
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   181
  fix i j k :: int
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   182
  show "(i < j) = (i \<le> j \<and> i \<noteq> j)"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   183
    by (simp add: less_int_def)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   184
  show "i \<le> i"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   185
    by (cases i) (simp add: le)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   186
  show "i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> i \<le> k"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   187
    by (cases i, cases j, cases k) (simp add: le)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   188
  show "i \<le> j \<Longrightarrow> j \<le> i \<Longrightarrow> i = j"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   189
    by (cases i, cases j) (simp add: le)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   190
  show "i \<le> j \<or> j \<le> i"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   191
    by (cases i, cases j) (simp add: le linorder_linear)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   192
qed
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   193
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   194
instance int :: pordered_cancel_ab_semigroup_add
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   195
proof
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   196
  fix i j k :: int
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   197
  show "i \<le> j \<Longrightarrow> k + i \<le> k + j"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   198
    by (cases i, cases j, cases k) (simp add: le add)
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   199
qed
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   200
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   201
text{*Strict Monotonicity of Multiplication*}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   202
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   203
text{*strict, in 1st argument; proof is by induction on k>0*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   204
lemma zmult_zless_mono2_lemma:
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   205
     "(i::int)<j ==> 0<k ==> of_nat k * i < of_nat k * j"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   206
apply (induct "k", simp)
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   207
apply (simp add: left_distrib)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   208
apply (case_tac "k=0")
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   209
apply (simp_all add: add_strict_mono)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   210
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   211
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   212
lemma zero_le_imp_eq_int: "(0::int) \<le> k ==> \<exists>n. k = of_nat n"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   213
apply (cases k)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   214
apply (auto simp add: le add int_def Zero_int_def)
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   215
apply (rule_tac x="x-y" in exI, simp)
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   216
done
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   217
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   218
lemma zero_less_imp_eq_int: "(0::int) < k ==> \<exists>n>0. k = of_nat n"
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   219
apply (cases k)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   220
apply (simp add: less int_def Zero_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   221
apply (rule_tac x="x-y" in exI, simp)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   222
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   223
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   224
lemma zmult_zless_mono2: "[| i<j;  (0::int) < k |] ==> k*i < k*j"
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   225
apply (drule zero_less_imp_eq_int)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   226
apply (auto simp add: zmult_zless_mono2_lemma)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   227
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   228
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   229
instantiation int :: distrib_lattice
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   230
begin
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   231
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   232
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   233
  "(inf \<Colon> int \<Rightarrow> int \<Rightarrow> int) = min"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   234
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   235
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   236
  "(sup \<Colon> int \<Rightarrow> int \<Rightarrow> int) = max"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   237
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   238
instance
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   239
  by intro_classes
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   240
    (auto simp add: inf_int_def sup_int_def min_max.sup_inf_distrib1)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   241
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   242
end
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   243
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   244
text{*The integers form an ordered integral domain*}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   245
instance int :: ordered_idom
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   246
proof
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   247
  fix i j k :: int
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   248
  show "i < j \<Longrightarrow> 0 < k \<Longrightarrow> k * i < k * j"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   249
    by (rule zmult_zless_mono2)
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   250
  show "\<bar>i\<bar> = (if i < 0 then -i else i)"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   251
    by (simp only: zabs_def)
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 24355
diff changeset
   252
  show "sgn(i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)"
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 24355
diff changeset
   253
    by (simp only: zsgn_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   254
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   255
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   256
lemma zless_imp_add1_zle: "w<z ==> w + (1::int) \<le> z"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   257
apply (cases w, cases z) 
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   258
apply (simp add: less le add One_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   259
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   260
23299
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   261
292b1cbd05dc remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents: 23282
diff changeset
   262
subsection{*Magnitude of an Integer, as a Natural Number: @{term nat}*}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   263
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   264
definition
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   265
  nat :: "int \<Rightarrow> nat"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   266
where
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   267
  [code func del]: "nat z = contents (\<Union>(x, y) \<in> Rep_Integ z. {x-y})"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   268
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   269
lemma nat: "nat (Abs_Integ (intrel``{(x,y)})) = x-y"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   270
proof -
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   271
  have "(\<lambda>(x,y). {x-y}) respects intrel"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   272
    by (simp add: congruent_def) arith
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   273
  thus ?thesis
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   274
    by (simp add: nat_def UN_equiv_class [OF equiv_intrel])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   275
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   276
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   277
lemma nat_int [simp]: "nat (of_nat n) = n"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   278
by (simp add: nat int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   279
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   280
lemma nat_zero [simp]: "nat 0 = 0"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   281
by (simp add: Zero_int_def nat)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   282
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   283
lemma int_nat_eq [simp]: "of_nat (nat z) = (if 0 \<le> z then z else 0)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   284
by (cases z, simp add: nat le int_def Zero_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   285
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   286
corollary nat_0_le: "0 \<le> z ==> of_nat (nat z) = z"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   287
by simp
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   288
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   289
lemma nat_le_0 [simp]: "z \<le> 0 ==> nat z = 0"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   290
by (cases z, simp add: nat le Zero_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   291
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   292
lemma nat_le_eq_zle: "0 < w | 0 \<le> z ==> (nat w \<le> nat z) = (w\<le>z)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   293
apply (cases w, cases z) 
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   294
apply (simp add: nat le linorder_not_le [symmetric] Zero_int_def, arith)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   295
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   296
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   297
text{*An alternative condition is @{term "0 \<le> w"} *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   298
corollary nat_mono_iff: "0 < z ==> (nat w < nat z) = (w < z)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   299
by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   300
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   301
corollary nat_less_eq_zless: "0 \<le> w ==> (nat w < nat z) = (w<z)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   302
by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   303
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   304
lemma zless_nat_conj [simp]: "(nat w < nat z) = (0 < z & w < z)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   305
apply (cases w, cases z) 
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   306
apply (simp add: nat le Zero_int_def linorder_not_le [symmetric], arith)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   307
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   308
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   309
lemma nonneg_eq_int:
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   310
  fixes z :: int
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   311
  assumes "0 \<le> z" and "\<And>m. z = of_nat m \<Longrightarrow> P"
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   312
  shows P
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   313
  using assms by (blast dest: nat_0_le sym)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   314
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   315
lemma nat_eq_iff: "(nat w = m) = (if 0 \<le> w then w = of_nat m else m=0)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   316
by (cases w, simp add: nat le int_def Zero_int_def, arith)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   317
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   318
corollary nat_eq_iff2: "(m = nat w) = (if 0 \<le> w then w = of_nat m else m=0)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   319
by (simp only: eq_commute [of m] nat_eq_iff)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   320
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   321
lemma nat_less_iff: "0 \<le> w ==> (nat w < m) = (w < of_nat m)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   322
apply (cases w)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   323
apply (simp add: nat le int_def Zero_int_def linorder_not_le [symmetric], arith)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   324
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   325
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   326
lemma int_eq_iff: "(of_nat m = z) = (m = nat z & 0 \<le> z)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   327
by (auto simp add: nat_eq_iff2)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   328
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   329
lemma zero_less_nat_eq [simp]: "(0 < nat z) = (0 < z)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   330
by (insert zless_nat_conj [of 0], auto)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   331
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   332
lemma nat_add_distrib:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   333
     "[| (0::int) \<le> z;  0 \<le> z' |] ==> nat (z+z') = nat z + nat z'"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   334
by (cases z, cases z', simp add: nat add le Zero_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   335
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   336
lemma nat_diff_distrib:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   337
     "[| (0::int) \<le> z';  z' \<le> z |] ==> nat (z-z') = nat z - nat z'"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   338
by (cases z, cases z', 
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   339
    simp add: nat add minus diff_minus le Zero_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   340
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   341
lemma nat_zminus_int [simp]: "nat (- (of_nat n)) = 0"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   342
by (simp add: int_def minus nat Zero_int_def) 
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   343
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   344
lemma zless_nat_eq_int_zless: "(m < nat z) = (of_nat m < z)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   345
by (cases z, simp add: nat less int_def, arith)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   346
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   347
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   348
subsection{*Lemmas about the Function @{term of_nat} and Orderings*}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   349
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   350
lemma negative_zless_0: "- (of_nat (Suc n)) < (0 \<Colon> int)"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   351
by (simp add: order_less_le del: of_nat_Suc)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   352
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   353
lemma negative_zless [iff]: "- (of_nat (Suc n)) < (of_nat m \<Colon> int)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   354
by (rule negative_zless_0 [THEN order_less_le_trans], simp)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   355
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   356
lemma negative_zle_0: "- of_nat n \<le> (0 \<Colon> int)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   357
by (simp add: minus_le_iff)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   358
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   359
lemma negative_zle [iff]: "- of_nat n \<le> (of_nat m \<Colon> int)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   360
by (rule order_trans [OF negative_zle_0 of_nat_0_le_iff])
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   361
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   362
lemma not_zle_0_negative [simp]: "~ (0 \<le> - (of_nat (Suc n) \<Colon> int))"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   363
by (subst le_minus_iff, simp del: of_nat_Suc)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   364
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   365
lemma int_zle_neg: "((of_nat n \<Colon> int) \<le> - of_nat m) = (n = 0 & m = 0)"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   366
by (simp add: int_def le minus Zero_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   367
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   368
lemma not_int_zless_negative [simp]: "~ ((of_nat n \<Colon> int) < - of_nat m)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   369
by (simp add: linorder_not_less)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   370
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   371
lemma negative_eq_positive [simp]: "((- of_nat n \<Colon> int) = of_nat m) = (n = 0 & m = 0)"
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   372
by (force simp add: order_eq_iff [of "- of_nat n"] int_zle_neg)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   373
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   374
lemma zle_iff_zadd: "(w\<Colon>int) \<le> z \<longleftrightarrow> (\<exists>n. z = w + of_nat n)"
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   375
proof -
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   376
  have "(w \<le> z) = (0 \<le> z - w)"
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   377
    by (simp only: le_diff_eq add_0_left)
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   378
  also have "\<dots> = (\<exists>n. z - w = of_nat n)"
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   379
    by (auto elim: zero_le_imp_eq_int)
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   380
  also have "\<dots> = (\<exists>n. z = w + of_nat n)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23438
diff changeset
   381
    by (simp only: group_simps)
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   382
  finally show ?thesis .
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   383
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   384
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   385
lemma zadd_int_left: "of_nat m + (of_nat n + z) = of_nat (m + n) + (z\<Colon>int)"
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   386
by simp
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   387
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   388
lemma int_Suc0_eq_1: "of_nat (Suc 0) = (1\<Colon>int)"
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   389
by simp
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   390
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   391
text{*This version is proved for all ordered rings, not just integers!
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   392
      It is proved here because attribute @{text arith_split} is not available
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   393
      in theory @{text Ring_and_Field}.
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   394
      But is it really better than just rewriting with @{text abs_if}?*}
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24196
diff changeset
   395
lemma abs_split [arith_split,noatp]:
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   396
     "P(abs(a::'a::ordered_idom)) = ((0 \<le> a --> P a) & (a < 0 --> P(-a)))"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   397
by (force dest: order_less_le_trans simp add: abs_if linorder_not_less)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   398
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   399
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   400
subsection {* Constants @{term neg} and @{term iszero} *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   401
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   402
definition
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   403
  neg  :: "'a\<Colon>ordered_idom \<Rightarrow> bool"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   404
where
25164
0fcb4775cbfb dropped superfluous inlining rule
haftmann
parents: 24728
diff changeset
   405
  "neg Z \<longleftrightarrow> Z < 0"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   406
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   407
definition (*for simplifying equalities*)
23276
a70934b63910 generalize of_nat and related constants to class semiring_1
huffman
parents: 23164
diff changeset
   408
  iszero :: "'a\<Colon>semiring_1 \<Rightarrow> bool"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   409
where
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   410
  "iszero z \<longleftrightarrow> z = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   411
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   412
lemma not_neg_int [simp]: "~ neg (of_nat n)"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   413
by (simp add: neg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   414
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   415
lemma neg_zminus_int [simp]: "neg (- (of_nat (Suc n)))"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   416
by (simp add: neg_def neg_less_0_iff_less del: of_nat_Suc)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   417
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   418
lemmas neg_eq_less_0 = neg_def
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   419
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   420
lemma not_neg_eq_ge_0: "(~neg x) = (0 \<le> x)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   421
by (simp add: neg_def linorder_not_less)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   422
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   423
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   424
text{*To simplify inequalities when Numeral1 can get simplified to 1*}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   425
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   426
lemma not_neg_0: "~ neg 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   427
by (simp add: One_int_def neg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   428
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   429
lemma not_neg_1: "~ neg 1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   430
by (simp add: neg_def linorder_not_less zero_le_one)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   431
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   432
lemma iszero_0: "iszero 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   433
by (simp add: iszero_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   434
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   435
lemma not_iszero_1: "~ iszero 1"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   436
by (simp add: iszero_def eq_commute)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   437
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   438
lemma neg_nat: "neg z ==> nat z = 0"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   439
by (simp add: neg_def order_less_imp_le) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   440
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   441
lemma not_neg_nat: "~ neg z ==> of_nat (nat z) = z"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   442
by (simp add: linorder_not_less neg_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   443
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   444
23852
3736cdf9398b moved set Nats to Nat.thy
haftmann
parents: 23705
diff changeset
   445
subsection{*Embedding of the Integers into any @{text ring_1}: @{term of_int}*}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   446
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   447
context ring_1
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   448
begin
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   449
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   450
term of_nat
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   451
23950
f54c0e339061 dropped axclass
haftmann
parents: 23879
diff changeset
   452
definition
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   453
  of_int :: "int \<Rightarrow> 'a"
23950
f54c0e339061 dropped axclass
haftmann
parents: 23879
diff changeset
   454
where
f54c0e339061 dropped axclass
haftmann
parents: 23879
diff changeset
   455
  "of_int z = contents (\<Union>(i, j) \<in> Rep_Integ z. { of_nat i - of_nat j })"
23852
3736cdf9398b moved set Nats to Nat.thy
haftmann
parents: 23705
diff changeset
   456
lemmas [code func del] = of_int_def
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   457
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   458
lemma of_int: "of_int (Abs_Integ (intrel `` {(i,j)})) = of_nat i - of_nat j"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   459
proof -
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   460
  have "(\<lambda>(i,j). { of_nat i - (of_nat j :: 'a) }) respects intrel"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   461
    by (simp add: congruent_def compare_rls of_nat_add [symmetric]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   462
            del: of_nat_add) 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   463
  thus ?thesis
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   464
    by (simp add: of_int_def UN_equiv_class [OF equiv_intrel])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   465
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   466
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   467
lemma of_int_0 [simp]: "of_int 0 = 0"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   468
by (simp add: of_int Zero_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   469
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   470
lemma of_int_1 [simp]: "of_int 1 = 1"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   471
by (simp add: of_int One_int_def)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   472
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   473
lemma of_int_add [simp]: "of_int (w+z) = of_int w + of_int z"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   474
by (cases w, cases z, simp add: compare_rls of_int add)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   475
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   476
lemma of_int_minus [simp]: "of_int (-z) = - (of_int z)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   477
by (cases z, simp add: compare_rls of_int minus)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   478
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   479
lemma of_int_mult [simp]: "of_int (w*z) = of_int w * of_int z"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   480
apply (cases w, cases z)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   481
apply (simp add: compare_rls of_int left_diff_distrib right_diff_distrib
23431
25ca91279a9b change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents: 23402
diff changeset
   482
                 mult add_ac of_nat_mult)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   483
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   484
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   485
text{*Collapse nested embeddings*}
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   486
lemma of_int_of_nat_eq [simp]: "of_int (Nat.of_nat n) = of_nat n"
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   487
  by (induct n, auto)
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   488
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   489
end
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   490
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   491
lemma of_int_diff [simp]: "of_int (w-z) = of_int w - of_int z"
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   492
by (simp add: diff_minus)
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   493
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   494
lemma of_int_le_iff [simp]:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   495
     "(of_int w \<le> (of_int z::'a::ordered_idom)) = (w \<le> z)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   496
apply (cases w)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   497
apply (cases z)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   498
apply (simp add: compare_rls of_int le diff_int_def add minus
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   499
                 of_nat_add [symmetric]   del: of_nat_add)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   500
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   501
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   502
text{*Special cases where either operand is zero*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   503
lemmas of_int_0_le_iff [simp] = of_int_le_iff [of 0, simplified]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   504
lemmas of_int_le_0_iff [simp] = of_int_le_iff [of _ 0, simplified]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   505
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   506
lemma of_int_less_iff [simp]:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   507
     "(of_int w < (of_int z::'a::ordered_idom)) = (w < z)"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   508
by (simp add: linorder_not_le [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   509
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   510
text{*Special cases where either operand is zero*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   511
lemmas of_int_0_less_iff [simp] = of_int_less_iff [of 0, simplified]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   512
lemmas of_int_less_0_iff [simp] = of_int_less_iff [of _ 0, simplified]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   513
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   514
text{*Class for unital rings with characteristic zero.
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   515
 Includes non-ordered rings like the complex numbers.*}
23950
f54c0e339061 dropped axclass
haftmann
parents: 23879
diff changeset
   516
class ring_char_0 = ring_1 + semiring_char_0
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   517
begin
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   518
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   519
lemma of_int_eq_iff [simp]:
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   520
   "of_int w = of_int z \<longleftrightarrow> w = z"
23282
dfc459989d24 add axclass semiring_char_0 for types where of_nat is injective
huffman
parents: 23276
diff changeset
   521
apply (cases w, cases z, simp add: of_int)
dfc459989d24 add axclass semiring_char_0 for types where of_nat is injective
huffman
parents: 23276
diff changeset
   522
apply (simp only: diff_eq_eq diff_add_eq eq_diff_eq)
dfc459989d24 add axclass semiring_char_0 for types where of_nat is injective
huffman
parents: 23276
diff changeset
   523
apply (simp only: of_nat_add [symmetric] of_nat_eq_iff)
dfc459989d24 add axclass semiring_char_0 for types where of_nat is injective
huffman
parents: 23276
diff changeset
   524
done
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   525
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   526
text{*Special cases where either operand is zero*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   527
lemmas of_int_0_eq_iff [simp] = of_int_eq_iff [of 0, simplified]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   528
lemmas of_int_eq_0_iff [simp] = of_int_eq_iff [of _ 0, simplified]
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   529
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   530
end
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   531
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   532
text{*Every @{text ordered_idom} has characteristic zero.*}
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   533
instance ordered_idom \<subseteq> ring_char_0 ..
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   534
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   535
lemma of_int_eq_id [simp]: "of_int = id"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   536
proof
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   537
  fix z show "of_int z = id z"
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   538
    by (cases z) (simp add: of_int add minus int_def diff_minus)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   539
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   540
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   541
context ring_1
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   542
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   543
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   544
lemma of_nat_nat: "0 \<le> z \<Longrightarrow> of_nat (nat z) = of_int z"
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   545
  by (cases z rule: eq_Abs_Integ)
23438
dd824e86fa8a remove simp attribute from of_nat_diff, for backward compatibility with zdiff_int
huffman
parents: 23431
diff changeset
   546
   (simp add: nat le of_int Zero_int_def of_nat_diff)
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   547
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   548
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   549
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   550
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   551
subsection{*The Set of Integers*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   552
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   553
context ring_1
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   554
begin
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   555
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   556
definition
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   557
  Ints  :: "'a set"
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   558
where
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   559
  "Ints = range of_int"
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   560
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   561
end
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   562
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   563
notation (xsymbols)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   564
  Ints  ("\<int>")
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   565
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   566
context ring_1
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   567
begin
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   568
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   569
lemma Ints_0 [simp]: "0 \<in> \<int>"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   570
apply (simp add: Ints_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   571
apply (rule range_eqI)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   572
apply (rule of_int_0 [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   573
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   574
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   575
lemma Ints_1 [simp]: "1 \<in> \<int>"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   576
apply (simp add: Ints_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   577
apply (rule range_eqI)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   578
apply (rule of_int_1 [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   579
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   580
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   581
lemma Ints_add [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a + b \<in> \<int>"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   582
apply (auto simp add: Ints_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   583
apply (rule range_eqI)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   584
apply (rule of_int_add [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   585
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   586
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   587
lemma Ints_minus [simp]: "a \<in> \<int> \<Longrightarrow> -a \<in> \<int>"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   588
apply (auto simp add: Ints_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   589
apply (rule range_eqI)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   590
apply (rule of_int_minus [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   591
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   592
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   593
lemma Ints_mult [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a * b \<in> \<int>"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   594
apply (auto simp add: Ints_def)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   595
apply (rule range_eqI)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   596
apply (rule of_int_mult [symmetric])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   597
done
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   598
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   599
lemma Ints_cases [cases set: Ints]:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   600
  assumes "q \<in> \<int>"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   601
  obtains (of_int) z where "q = of_int z"
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   602
  unfolding Ints_def
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   603
proof -
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   604
  from `q \<in> \<int>` have "q \<in> range of_int" unfolding Ints_def .
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   605
  then obtain z where "q = of_int z" ..
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   606
  then show thesis ..
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   607
qed
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   608
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   609
lemma Ints_induct [case_names of_int, induct set: Ints]:
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   610
  "q \<in> \<int> \<Longrightarrow> (\<And>z. P (of_int z)) \<Longrightarrow> P q"
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   611
  by (rule Ints_cases) auto
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   612
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   613
end
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   614
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   615
lemma Ints_diff [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a-b \<in> \<int>"
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   616
apply (auto simp add: Ints_def)
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   617
apply (rule range_eqI)
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   618
apply (rule of_int_diff [symmetric])
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   619
done
e2e1a4b00de3 various localizations
haftmann
parents: 25164
diff changeset
   620
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   621
24728
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   622
subsection {* @{term setsum} and @{term setprod} *}
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   623
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   624
text {*By Jeremy Avigad*}
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   625
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   626
lemma of_nat_setsum: "of_nat (setsum f A) = (\<Sum>x\<in>A. of_nat(f x))"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   627
  apply (cases "finite A")
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   628
  apply (erule finite_induct, auto)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   629
  done
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   630
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   631
lemma of_int_setsum: "of_int (setsum f A) = (\<Sum>x\<in>A. of_int(f x))"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   632
  apply (cases "finite A")
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   633
  apply (erule finite_induct, auto)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   634
  done
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   635
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   636
lemma of_nat_setprod: "of_nat (setprod f A) = (\<Prod>x\<in>A. of_nat(f x))"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   637
  apply (cases "finite A")
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   638
  apply (erule finite_induct, auto simp add: of_nat_mult)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   639
  done
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   640
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   641
lemma of_int_setprod: "of_int (setprod f A) = (\<Prod>x\<in>A. of_int(f x))"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   642
  apply (cases "finite A")
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   643
  apply (erule finite_induct, auto)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   644
  done
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   645
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   646
lemma setprod_nonzero_nat:
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   647
    "finite A ==> (\<forall>x \<in> A. f x \<noteq> (0::nat)) ==> setprod f A \<noteq> 0"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   648
  by (rule setprod_nonzero, auto)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   649
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   650
lemma setprod_zero_eq_nat:
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   651
    "finite A ==> (setprod f A = (0::nat)) = (\<exists>x \<in> A. f x = 0)"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   652
  by (rule setprod_zero_eq, auto)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   653
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   654
lemma setprod_nonzero_int:
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   655
    "finite A ==> (\<forall>x \<in> A. f x \<noteq> (0::int)) ==> setprod f A \<noteq> 0"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   656
  by (rule setprod_nonzero, auto)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   657
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   658
lemma setprod_zero_eq_int:
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   659
    "finite A ==> (setprod f A = (0::int)) = (\<exists>x \<in> A. f x = 0)"
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   660
  by (rule setprod_zero_eq, auto)
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   661
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   662
lemmas int_setsum = of_nat_setsum [where 'a=int]
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   663
lemmas int_setprod = of_nat_setprod [where 'a=int]
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   664
e2b3a1065676 moved Finite_Set before Datatype
haftmann
parents: 24506
diff changeset
   665
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   666
subsection {* Further properties *}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   667
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   668
text{*Now we replace the case analysis rule by a more conventional one:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   669
whether an integer is negative or not.*}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   670
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   671
lemma zless_iff_Suc_zadd:
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   672
  "(w \<Colon> int) < z \<longleftrightarrow> (\<exists>n. z = w + of_nat (Suc n))"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   673
apply (cases z, cases w)
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   674
apply (auto simp add: less add int_def)
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   675
apply (rename_tac a b c d) 
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   676
apply (rule_tac x="a+d - Suc(c+b)" in exI) 
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   677
apply arith
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   678
done
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   679
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   680
lemma negD: "(x \<Colon> int) < 0 \<Longrightarrow> \<exists>n. x = - (of_nat (Suc n))"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   681
apply (cases x)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   682
apply (auto simp add: le minus Zero_int_def int_def order_less_le)
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   683
apply (rule_tac x="y - Suc x" in exI, arith)
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   684
done
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   685
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   686
theorem int_cases [cases type: int, case_names nonneg neg]:
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   687
  "[|!! n. (z \<Colon> int) = of_nat n ==> P;  !! n. z =  - (of_nat (Suc n)) ==> P |] ==> P"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   688
apply (cases "z < 0", blast dest!: negD)
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   689
apply (simp add: linorder_not_less del: of_nat_Suc)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   690
apply (blast dest: nat_0_le [THEN sym])
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   691
done
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   692
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   693
theorem int_induct [induct type: int, case_names nonneg neg]:
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   694
     "[|!! n. P (of_nat n \<Colon> int);  !!n. P (- (of_nat (Suc n))) |] ==> P z"
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   695
  by (cases z rule: int_cases) auto
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   696
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   697
text{*Contributed by Brian Huffman*}
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   698
theorem int_diff_cases:
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   699
  obtains (diff) m n where "(z\<Colon>int) = of_nat m - of_nat n"
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   700
apply (cases z rule: eq_Abs_Integ)
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   701
apply (rule_tac m=x and n=y in diff)
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   702
apply (simp add: int_def diff_def minus add)
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   703
done
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   704
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   705
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   706
subsection {* Legacy theorems *}
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   707
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   708
lemmas zminus_zminus = minus_minus [of "z::int", standard]
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   709
lemmas zminus_0 = minus_zero [where 'a=int]
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   710
lemmas zminus_zadd_distrib = minus_add_distrib [of "z::int" "w", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   711
lemmas zadd_commute = add_commute [of "z::int" "w", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   712
lemmas zadd_assoc = add_assoc [of "z1::int" "z2" "z3", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   713
lemmas zadd_left_commute = add_left_commute [of "x::int" "y" "z", standard]
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   714
lemmas zadd_ac = zadd_assoc zadd_commute zadd_left_commute
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   715
lemmas zmult_ac = OrderedGroup.mult_ac
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   716
lemmas zadd_0 = OrderedGroup.add_0_left [of "z::int", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   717
lemmas zadd_0_right = OrderedGroup.add_0_left [of "z::int", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   718
lemmas zadd_zminus_inverse2 = left_minus [of "z::int", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   719
lemmas zmult_zminus = mult_minus_left [of "z::int" "w", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   720
lemmas zmult_commute = mult_commute [of "z::int" "w", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   721
lemmas zmult_assoc = mult_assoc [of "z1::int" "z2" "z3", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   722
lemmas zadd_zmult_distrib = left_distrib [of "z1::int" "z2" "w", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   723
lemmas zadd_zmult_distrib2 = right_distrib [of "w::int" "z1" "z2", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   724
lemmas zdiff_zmult_distrib = left_diff_distrib [of "z1::int" "z2" "w", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   725
lemmas zdiff_zmult_distrib2 = right_diff_distrib [of "w::int" "z1" "z2", standard]
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   726
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   727
lemmas int_distrib =
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   728
  zadd_zmult_distrib zadd_zmult_distrib2
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   729
  zdiff_zmult_distrib zdiff_zmult_distrib2
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   730
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   731
lemmas zmult_1 = mult_1_left [of "z::int", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   732
lemmas zmult_1_right = mult_1_right [of "z::int", standard]
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   733
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   734
lemmas zle_refl = order_refl [of "w::int", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   735
lemmas zle_trans = order_trans [where 'a=int and x="i" and y="j" and z="k", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   736
lemmas zle_anti_sym = order_antisym [of "z::int" "w", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   737
lemmas zle_linear = linorder_linear [of "z::int" "w", standard]
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   738
lemmas zless_linear = linorder_less_linear [where 'a = int]
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   739
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   740
lemmas zadd_left_mono = add_left_mono [of "i::int" "j" "k", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   741
lemmas zadd_strict_right_mono = add_strict_right_mono [of "i::int" "j" "k", standard]
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   742
lemmas zadd_zless_mono = add_less_le_mono [of "w'::int" "w" "z'" "z", standard]
23372
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   743
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   744
lemmas int_0_less_1 = zero_less_one [where 'a=int]
0035be079bee clean up instance proofs; reorganize section headings
huffman
parents: 23365
diff changeset
   745
lemmas int_0_neq_1 = zero_neq_one [where 'a=int]
23303
6091e530ff77 add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents: 23299
diff changeset
   746
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   747
lemmas inj_int = inj_of_nat [where 'a=int]
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   748
lemmas int_int_eq = of_nat_eq_iff [where 'a=int]
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   749
lemmas zadd_int = of_nat_add [where 'a=int, symmetric]
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   750
lemmas int_mult = of_nat_mult [where 'a=int]
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   751
lemmas zmult_int = of_nat_mult [where 'a=int, symmetric]
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   752
lemmas int_eq_0_conv = of_nat_eq_0_iff [where 'a=int and m="n", standard]
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   753
lemmas zless_int = of_nat_less_iff [where 'a=int]
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   754
lemmas int_less_0_conv = of_nat_less_0_iff [where 'a=int and m="k", standard]
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   755
lemmas zero_less_int_conv = of_nat_0_less_iff [where 'a=int]
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   756
lemmas zle_int = of_nat_le_iff [where 'a=int]
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   757
lemmas zero_zle_int = of_nat_0_le_iff [where 'a=int]
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   758
lemmas int_le_0_conv = of_nat_le_0_iff [where 'a=int and m="n", standard]
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   759
lemmas int_0 = of_nat_0 [where 'a=int]
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   760
lemmas int_1 = of_nat_1 [where 'a=int]
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   761
lemmas int_Suc = of_nat_Suc [where 'a=int]
25349
0d46bea01741 eliminated illegal schematic variables in where/of;
wenzelm
parents: 25230
diff changeset
   762
lemmas abs_int_eq = abs_of_nat [where 'a=int and n="m", standard]
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   763
lemmas of_int_int_eq = of_int_of_nat_eq [where 'a=int]
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   764
lemmas zdiff_int = of_nat_diff [where 'a=int, symmetric]
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   765
lemmas zless_le = less_int_def
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   766
lemmas int_eq_of_nat = TrueI
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   767
23365
f31794033ae1 removed constant int :: nat => int;
huffman
parents: 23308
diff changeset
   768
abbreviation
24196
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   769
  int :: "nat \<Rightarrow> int"
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   770
where
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   771
  "int \<equiv> of_nat"
f1dbfd7e3223 localized of_nat
haftmann
parents: 23950
diff changeset
   772
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   773
end