src/HOL/Int.thy
author huffman
Fri, 30 Mar 2012 08:10:28 +0200
changeset 47207 9368aa814518
parent 47192 0c0501cb6da6
child 47226 ea712316fc87
permissions -rw-r--r--
move lemmas from Nat_Numeral to Int.thy and Num.thy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 40819
diff changeset
     1
(*  Title:      HOL/Int.thy
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
41959
b460124855b8 tuned headers;
wenzelm
parents: 40819
diff changeset
     3
    Author:     Tobias Nipkow, Florian Haftmann, TU Muenchen
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
     4
*)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
     5
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
     6
header {* The Integers as Equivalence Classes over Pairs of Natural Numbers *} 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
     7
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
     8
theory Int
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
     9
imports Equiv_Relations Wellfounded
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    10
uses
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    11
  ("Tools/numeral.ML")
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 31065
diff changeset
    12
  ("Tools/int_arith.ML")
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    13
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    14
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    15
subsection {* The equivalence relation underlying the integers *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    16
28661
a287d0e8aa9d slightly tuned
haftmann
parents: 28562
diff changeset
    17
definition intrel :: "((nat \<times> nat) \<times> (nat \<times> nat)) set" where
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    18
  "intrel = {((x, y), (u, v)) | x y u v. x + v = u +y }"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    19
45694
4a8743618257 prefer typedef without extra definition and alternative name;
wenzelm
parents: 45607
diff changeset
    20
definition "Integ = UNIV//intrel"
4a8743618257 prefer typedef without extra definition and alternative name;
wenzelm
parents: 45607
diff changeset
    21
4a8743618257 prefer typedef without extra definition and alternative name;
wenzelm
parents: 45607
diff changeset
    22
typedef (open) int = Integ
4a8743618257 prefer typedef without extra definition and alternative name;
wenzelm
parents: 45607
diff changeset
    23
  morphisms Rep_Integ Abs_Integ
4a8743618257 prefer typedef without extra definition and alternative name;
wenzelm
parents: 45607
diff changeset
    24
  unfolding Integ_def by (auto simp add: quotient_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    25
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    26
instantiation int :: "{zero, one, plus, minus, uminus, times, ord, abs, sgn}"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    27
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    28
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    29
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    30
  Zero_int_def: "0 = Abs_Integ (intrel `` {(0, 0)})"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    31
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    32
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    33
  One_int_def: "1 = Abs_Integ (intrel `` {(1, 0)})"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    34
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    35
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    36
  add_int_def: "z + w = Abs_Integ
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    37
    (\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u, v) \<in> Rep_Integ w.
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    38
      intrel `` {(x + u, y + v)})"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    39
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    40
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    41
  minus_int_def:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    42
    "- z = Abs_Integ (\<Union>(x, y) \<in> Rep_Integ z. intrel `` {(y, x)})"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    43
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    44
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    45
  diff_int_def:  "z - w = z + (-w \<Colon> int)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    46
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    47
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    48
  mult_int_def: "z * w = Abs_Integ
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    49
    (\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u,v ) \<in> Rep_Integ w.
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    50
      intrel `` {(x*u + y*v, x*v + y*u)})"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    51
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    52
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    53
  le_int_def:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    54
   "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)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    55
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    56
definition
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
    57
  less_int_def: "(z\<Colon>int) < w \<longleftrightarrow> z \<le> w \<and> z \<noteq> w"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    58
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    59
definition
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    60
  zabs_def: "\<bar>i\<Colon>int\<bar> = (if i < 0 then - i else i)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    61
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    62
definition
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    63
  zsgn_def: "sgn (i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    64
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    65
instance ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    66
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    67
end
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    68
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    69
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    70
subsection{*Construction of the Integers*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    71
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    72
lemma intrel_iff [simp]: "(((x,y),(u,v)) \<in> intrel) = (x+v = u+y)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    73
by (simp add: intrel_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    74
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    75
lemma equiv_intrel: "equiv UNIV intrel"
30198
922f944f03b2 name changes
nipkow
parents: 30079
diff changeset
    76
by (simp add: intrel_def equiv_def refl_on_def sym_def trans_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    77
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    78
text{*Reduces equality of equivalence classes to the @{term intrel} relation:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    79
  @{term "(intrel `` {x} = intrel `` {y}) = ((x,y) \<in> intrel)"} *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    80
lemmas equiv_intrel_iff [simp] = eq_equiv_class_iff [OF equiv_intrel UNIV_I UNIV_I]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    81
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    82
text{*All equivalence classes belong to set of representatives*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    83
lemma [simp]: "intrel``{(x,y)} \<in> Integ"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    84
by (auto simp add: Integ_def intrel_def quotient_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    85
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    86
text{*Reduces equality on abstractions to equality on representatives:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    87
  @{prop "\<lbrakk>x \<in> Integ; y \<in> Integ\<rbrakk> \<Longrightarrow> (Abs_Integ x = Abs_Integ y) = (x=y)"} *}
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
    88
declare Abs_Integ_inject [simp,no_atp]  Abs_Integ_inverse [simp,no_atp]
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    89
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    90
text{*Case analysis on the representation of an integer as an equivalence
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    91
      class of pairs of naturals.*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    92
lemma eq_Abs_Integ [case_names Abs_Integ, cases type: int]:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    93
     "(!!x y. z = Abs_Integ(intrel``{(x,y)}) ==> P) ==> P"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    94
apply (rule Abs_Integ_cases [of z]) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    95
apply (auto simp add: Integ_def quotient_def) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    96
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    97
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    98
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
    99
subsection {* Arithmetic Operations *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   100
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   101
lemma minus: "- Abs_Integ(intrel``{(x,y)}) = Abs_Integ(intrel `` {(y,x)})"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   102
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   103
  have "(\<lambda>(x,y). intrel``{(y,x)}) respects intrel"
40819
2ac5af6eb8a8 adapted proofs to slightly changed definitions of congruent(2)
haftmann
parents: 39910
diff changeset
   104
    by (auto simp add: congruent_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   105
  thus ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   106
    by (simp add: minus_int_def UN_equiv_class [OF equiv_intrel])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   107
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   108
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   109
lemma add:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   110
     "Abs_Integ (intrel``{(x,y)}) + Abs_Integ (intrel``{(u,v)}) =
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   111
      Abs_Integ (intrel``{(x+u, y+v)})"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   112
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   113
  have "(\<lambda>z w. (\<lambda>(x,y). (\<lambda>(u,v). intrel `` {(x+u, y+v)}) w) z) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   114
        respects2 intrel"
40819
2ac5af6eb8a8 adapted proofs to slightly changed definitions of congruent(2)
haftmann
parents: 39910
diff changeset
   115
    by (auto simp add: congruent2_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   116
  thus ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   117
    by (simp add: add_int_def UN_UN_split_split_eq
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   118
                  UN_equiv_class2 [OF equiv_intrel equiv_intrel])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   119
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   120
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   121
text{*Congruence property for multiplication*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   122
lemma mult_congruent2:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   123
     "(%p1 p2. (%(x,y). (%(u,v). intrel``{(x*u + y*v, x*v + y*u)}) p2) p1)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   124
      respects2 intrel"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   125
apply (rule equiv_intrel [THEN congruent2_commuteI])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   126
 apply (force simp add: mult_ac, clarify) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   127
apply (simp add: congruent_def mult_ac)  
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   128
apply (rename_tac u v w x y z)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   129
apply (subgoal_tac "u*y + x*y = w*y + v*y  &  u*z + x*z = w*z + v*z")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   130
apply (simp add: mult_ac)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   131
apply (simp add: add_mult_distrib [symmetric])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   132
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   133
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   134
lemma mult:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   135
     "Abs_Integ((intrel``{(x,y)})) * Abs_Integ((intrel``{(u,v)})) =
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   136
      Abs_Integ(intrel `` {(x*u + y*v, x*v + y*u)})"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   137
by (simp add: mult_int_def UN_UN_split_split_eq mult_congruent2
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   138
              UN_equiv_class2 [OF equiv_intrel equiv_intrel])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   139
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   140
text{*The integers form a @{text comm_ring_1}*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   141
instance int :: comm_ring_1
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   142
proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   143
  fix i j k :: int
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   144
  show "(i + j) + k = i + (j + k)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   145
    by (cases i, cases j, cases k) (simp add: add add_assoc)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   146
  show "i + j = j + i" 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   147
    by (cases i, cases j) (simp add: add_ac add)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   148
  show "0 + i = i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   149
    by (cases i) (simp add: Zero_int_def add)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   150
  show "- i + i = 0"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   151
    by (cases i) (simp add: Zero_int_def minus add)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   152
  show "i - j = i + - j"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   153
    by (simp add: diff_int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   154
  show "(i * j) * k = i * (j * k)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   155
    by (cases i, cases j, cases k) (simp add: mult algebra_simps)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   156
  show "i * j = j * i"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   157
    by (cases i, cases j) (simp add: mult algebra_simps)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   158
  show "1 * i = i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   159
    by (cases i) (simp add: One_int_def mult)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   160
  show "(i + j) * k = i * k + j * k"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   161
    by (cases i, cases j, cases k) (simp add: add mult algebra_simps)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   162
  show "0 \<noteq> (1::int)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   163
    by (simp add: Zero_int_def One_int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   164
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   165
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   166
abbreviation int :: "nat \<Rightarrow> int" where
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   167
  "int \<equiv> of_nat"
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   168
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   169
lemma int_def: "int m = Abs_Integ (intrel `` {(m, 0)})"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   170
by (induct m) (simp_all add: Zero_int_def One_int_def add)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   171
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   172
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   173
subsection {* The @{text "\<le>"} Ordering *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   174
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   175
lemma le:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   176
  "(Abs_Integ(intrel``{(x,y)}) \<le> Abs_Integ(intrel``{(u,v)})) = (x+v \<le> u+y)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   177
by (force simp add: le_int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   178
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   179
lemma less:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   180
  "(Abs_Integ(intrel``{(x,y)}) < Abs_Integ(intrel``{(u,v)})) = (x+v < u+y)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   181
by (simp add: less_int_def le order_less_le)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   182
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   183
instance int :: linorder
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   184
proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   185
  fix i j k :: int
27682
25aceefd4786 added class preorder
haftmann
parents: 27395
diff changeset
   186
  show antisym: "i \<le> j \<Longrightarrow> j \<le> i \<Longrightarrow> i = j"
25aceefd4786 added class preorder
haftmann
parents: 27395
diff changeset
   187
    by (cases i, cases j) (simp add: le)
25aceefd4786 added class preorder
haftmann
parents: 27395
diff changeset
   188
  show "(i < j) = (i \<le> j \<and> \<not> j \<le> i)"
25aceefd4786 added class preorder
haftmann
parents: 27395
diff changeset
   189
    by (auto simp add: less_int_def dest: antisym) 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   190
  show "i \<le> i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   191
    by (cases i) (simp add: le)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   192
  show "i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> i \<le> k"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   193
    by (cases i, cases j, cases k) (simp add: le)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   194
  show "i \<le> j \<or> j \<le> i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   195
    by (cases i, cases j) (simp add: le linorder_linear)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   196
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   197
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   198
instantiation int :: distrib_lattice
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   199
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   200
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   201
definition
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   202
  "(inf \<Colon> int \<Rightarrow> int \<Rightarrow> int) = min"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   203
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   204
definition
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   205
  "(sup \<Colon> int \<Rightarrow> int \<Rightarrow> int) = max"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   206
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   207
instance
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   208
  by intro_classes
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   209
    (auto simp add: inf_int_def sup_int_def min_max.sup_inf_distrib1)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   210
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   211
end
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   212
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34055
diff changeset
   213
instance int :: ordered_cancel_ab_semigroup_add
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   214
proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   215
  fix i j k :: int
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   216
  show "i \<le> j \<Longrightarrow> k + i \<le> k + j"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   217
    by (cases i, cases j, cases k) (simp add: le add)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   218
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   219
25961
ec39d7e40554 moved definition of power on ints to theory Int
haftmann
parents: 25928
diff changeset
   220
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   221
text{*Strict Monotonicity of Multiplication*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   222
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   223
text{*strict, in 1st argument; proof is by induction on k>0*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   224
lemma zmult_zless_mono2_lemma:
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   225
     "(i::int)<j ==> 0<k ==> int k * i < int k * j"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   226
apply (induct k)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   227
apply simp
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   228
apply (simp add: left_distrib)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   229
apply (case_tac "k=0")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   230
apply (simp_all add: add_strict_mono)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   231
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   232
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   233
lemma zero_le_imp_eq_int: "(0::int) \<le> k ==> \<exists>n. k = int n"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   234
apply (cases k)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   235
apply (auto simp add: le add int_def Zero_int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   236
apply (rule_tac x="x-y" in exI, simp)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   237
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   238
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   239
lemma zero_less_imp_eq_int: "(0::int) < k ==> \<exists>n>0. k = int n"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   240
apply (cases k)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   241
apply (simp add: less int_def Zero_int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   242
apply (rule_tac x="x-y" in exI, simp)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   243
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   244
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   245
lemma zmult_zless_mono2: "[| i<j;  (0::int) < k |] ==> k*i < k*j"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   246
apply (drule zero_less_imp_eq_int)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   247
apply (auto simp add: zmult_zless_mono2_lemma)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   248
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   249
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   250
text{*The integers form an ordered integral domain*}
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34055
diff changeset
   251
instance int :: linordered_idom
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   252
proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   253
  fix i j k :: int
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   254
  show "i < j \<Longrightarrow> 0 < k \<Longrightarrow> k * i < k * j"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   255
    by (rule zmult_zless_mono2)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   256
  show "\<bar>i\<bar> = (if i < 0 then -i else i)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   257
    by (simp only: zabs_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   258
  show "sgn (i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   259
    by (simp only: zsgn_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   260
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   261
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   262
lemma zless_imp_add1_zle: "w < z \<Longrightarrow> w + (1\<Colon>int) \<le> z"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   263
apply (cases w, cases z) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   264
apply (simp add: less le add One_int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   265
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   266
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   267
lemma zless_iff_Suc_zadd:
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   268
  "(w \<Colon> int) < z \<longleftrightarrow> (\<exists>n. z = w + int (Suc n))"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   269
apply (cases z, cases w)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   270
apply (auto simp add: less add int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   271
apply (rename_tac a b c d) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   272
apply (rule_tac x="a+d - Suc(c+b)" in exI) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   273
apply arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   274
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   275
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   276
lemmas int_distrib =
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
   277
  left_distrib [of z1 z2 w]
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
   278
  right_distrib [of w z1 z2]
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
   279
  left_diff_distrib [of z1 z2 w]
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
   280
  right_diff_distrib [of w z1 z2]
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
   281
  for z1 z2 w :: int
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   282
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   283
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   284
subsection {* Embedding of the Integers into any @{text ring_1}: @{text of_int}*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   285
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   286
context ring_1
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   287
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   288
31015
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
   289
definition of_int :: "int \<Rightarrow> 'a" where
39910
10097e0a9dbd constant `contents` renamed to `the_elem`
haftmann
parents: 38857
diff changeset
   290
  "of_int z = the_elem (\<Union>(i, j) \<in> Rep_Integ z. { of_nat i - of_nat j })"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   291
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   292
lemma of_int: "of_int (Abs_Integ (intrel `` {(i,j)})) = of_nat i - of_nat j"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   293
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   294
  have "(\<lambda>(i,j). { of_nat i - (of_nat j :: 'a) }) respects intrel"
40819
2ac5af6eb8a8 adapted proofs to slightly changed definitions of congruent(2)
haftmann
parents: 39910
diff changeset
   295
    by (auto simp add: congruent_def) (simp add: algebra_simps of_nat_add [symmetric]
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   296
            del: of_nat_add) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   297
  thus ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   298
    by (simp add: of_int_def UN_equiv_class [OF equiv_intrel])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   299
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   300
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   301
lemma of_int_0 [simp]: "of_int 0 = 0"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   302
by (simp add: of_int Zero_int_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   303
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   304
lemma of_int_1 [simp]: "of_int 1 = 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   305
by (simp add: of_int One_int_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   306
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   307
lemma of_int_add [simp]: "of_int (w+z) = of_int w + of_int z"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   308
by (cases w, cases z) (simp add: algebra_simps of_int add)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   309
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   310
lemma of_int_minus [simp]: "of_int (-z) = - (of_int z)"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   311
by (cases z) (simp add: algebra_simps of_int minus)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   312
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   313
lemma of_int_diff [simp]: "of_int (w - z) = of_int w - of_int z"
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35032
diff changeset
   314
by (simp add: diff_minus Groups.diff_minus)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   315
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   316
lemma of_int_mult [simp]: "of_int (w*z) = of_int w * of_int z"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   317
apply (cases w, cases z)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   318
apply (simp add: algebra_simps of_int mult of_nat_mult)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   319
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   320
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   321
text{*Collapse nested embeddings*}
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   322
lemma of_int_of_nat_eq [simp]: "of_int (int n) = of_nat n"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   323
by (induct n) auto
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   324
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   325
lemma of_int_numeral [simp, code_post]: "of_int (numeral k) = numeral k"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   326
  by (simp add: of_nat_numeral [symmetric] of_int_of_nat_eq [symmetric])
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   327
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   328
lemma of_int_neg_numeral [simp, code_post]: "of_int (neg_numeral k) = neg_numeral k"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   329
  unfolding neg_numeral_def neg_numeral_class.neg_numeral_def
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   330
  by (simp only: of_int_minus of_int_numeral)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   331
31015
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
   332
lemma of_int_power:
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
   333
  "of_int (z ^ n) = of_int z ^ n"
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
   334
  by (induct n) simp_all
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
   335
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   336
end
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   337
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   338
context ring_char_0
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   339
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   340
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   341
lemma of_int_eq_iff [simp]:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   342
   "of_int w = of_int z \<longleftrightarrow> w = z"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   343
apply (cases w, cases z)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   344
apply (simp add: of_int)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   345
apply (simp only: diff_eq_eq diff_add_eq eq_diff_eq)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   346
apply (simp only: of_nat_add [symmetric] of_nat_eq_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   347
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   348
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   349
text{*Special cases where either operand is zero*}
36424
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   350
lemma of_int_eq_0_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   351
  "of_int z = 0 \<longleftrightarrow> z = 0"
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   352
  using of_int_eq_iff [of z 0] by simp
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   353
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   354
lemma of_int_0_eq_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   355
  "0 = of_int z \<longleftrightarrow> z = 0"
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   356
  using of_int_eq_iff [of 0 z] by simp
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   357
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   358
end
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   359
36424
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   360
context linordered_idom
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   361
begin
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   362
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34055
diff changeset
   363
text{*Every @{text linordered_idom} has characteristic zero.*}
36424
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   364
subclass ring_char_0 ..
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   365
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   366
lemma of_int_le_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   367
  "of_int w \<le> of_int z \<longleftrightarrow> w \<le> z"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   368
  by (cases w, cases z)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   369
    (simp add: of_int le minus algebra_simps of_nat_add [symmetric] del: of_nat_add)
36424
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   370
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   371
lemma of_int_less_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   372
  "of_int w < of_int z \<longleftrightarrow> w < z"
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   373
  by (simp add: less_le order_less_le)
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   374
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   375
lemma of_int_0_le_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   376
  "0 \<le> of_int z \<longleftrightarrow> 0 \<le> z"
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   377
  using of_int_le_iff [of 0 z] by simp
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   378
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   379
lemma of_int_le_0_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   380
  "of_int z \<le> 0 \<longleftrightarrow> z \<le> 0"
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   381
  using of_int_le_iff [of z 0] by simp
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   382
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   383
lemma of_int_0_less_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   384
  "0 < of_int z \<longleftrightarrow> 0 < z"
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   385
  using of_int_less_iff [of 0 z] by simp
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   386
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   387
lemma of_int_less_0_iff [simp]:
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   388
  "of_int z < 0 \<longleftrightarrow> z < 0"
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   389
  using of_int_less_iff [of z 0] by simp
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   390
f3f389fc7974 got rid of [simplified]
haftmann
parents: 36409
diff changeset
   391
end
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   392
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   393
lemma of_int_eq_id [simp]: "of_int = id"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   394
proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   395
  fix z show "of_int z = id z"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   396
    by (cases z) (simp add: of_int add minus int_def diff_minus)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   397
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   398
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   399
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   400
subsection {* Magnitude of an Integer, as a Natural Number: @{text nat} *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   401
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
   402
definition nat :: "int \<Rightarrow> nat" where
39910
10097e0a9dbd constant `contents` renamed to `the_elem`
haftmann
parents: 38857
diff changeset
   403
  "nat z = the_elem (\<Union>(x, y) \<in> Rep_Integ z. {x-y})"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   404
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   405
lemma nat: "nat (Abs_Integ (intrel``{(x,y)})) = x-y"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   406
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   407
  have "(\<lambda>(x,y). {x-y}) respects intrel"
40819
2ac5af6eb8a8 adapted proofs to slightly changed definitions of congruent(2)
haftmann
parents: 39910
diff changeset
   408
    by (auto simp add: congruent_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   409
  thus ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   410
    by (simp add: nat_def UN_equiv_class [OF equiv_intrel])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   411
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   412
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   413
lemma nat_int [simp]: "nat (int n) = n"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   414
by (simp add: nat int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   415
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   416
lemma int_nat_eq [simp]: "int (nat z) = (if 0 \<le> z then z else 0)"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   417
by (cases z) (simp add: nat le int_def Zero_int_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   418
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   419
corollary nat_0_le: "0 \<le> z ==> int (nat z) = z"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   420
by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   421
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   422
lemma nat_le_0 [simp]: "z \<le> 0 ==> nat z = 0"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   423
by (cases z) (simp add: nat le Zero_int_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   424
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   425
lemma nat_le_eq_zle: "0 < w | 0 \<le> z ==> (nat w \<le> nat z) = (w\<le>z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   426
apply (cases w, cases z) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   427
apply (simp add: nat le linorder_not_le [symmetric] Zero_int_def, arith)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   428
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   429
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   430
text{*An alternative condition is @{term "0 \<le> w"} *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   431
corollary nat_mono_iff: "0 < z ==> (nat w < nat z) = (w < z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   432
by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   433
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   434
corollary nat_less_eq_zless: "0 \<le> w ==> (nat w < nat z) = (w<z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   435
by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   436
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   437
lemma zless_nat_conj [simp]: "(nat w < nat z) = (0 < z & w < z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   438
apply (cases w, cases z) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   439
apply (simp add: nat le Zero_int_def linorder_not_le [symmetric], arith)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   440
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   441
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   442
lemma nonneg_eq_int:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   443
  fixes z :: int
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   444
  assumes "0 \<le> z" and "\<And>m. z = int m \<Longrightarrow> P"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   445
  shows P
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   446
  using assms by (blast dest: nat_0_le sym)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   447
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   448
lemma nat_eq_iff: "(nat w = m) = (if 0 \<le> w then w = int m else m=0)"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   449
by (cases w) (simp add: nat le int_def Zero_int_def, arith)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   450
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   451
corollary nat_eq_iff2: "(m = nat w) = (if 0 \<le> w then w = int m else m=0)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   452
by (simp only: eq_commute [of m] nat_eq_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   453
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   454
lemma nat_less_iff: "0 \<le> w ==> (nat w < m) = (w < of_nat m)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   455
apply (cases w)
29700
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
   456
apply (simp add: nat le int_def Zero_int_def linorder_not_le[symmetric], arith)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   457
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   458
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   459
lemma nat_le_iff: "nat x \<le> n \<longleftrightarrow> x \<le> int n"
44707
487ae6317f7b move lemmas nat_le_iff and nat_mono into Int.thy
huffman
parents: 44695
diff changeset
   460
  by (cases x, simp add: nat le int_def le_diff_conv)
487ae6317f7b move lemmas nat_le_iff and nat_mono into Int.thy
huffman
parents: 44695
diff changeset
   461
487ae6317f7b move lemmas nat_le_iff and nat_mono into Int.thy
huffman
parents: 44695
diff changeset
   462
lemma nat_mono: "x \<le> y \<Longrightarrow> nat x \<le> nat y"
487ae6317f7b move lemmas nat_le_iff and nat_mono into Int.thy
huffman
parents: 44695
diff changeset
   463
  by (cases x, cases y, simp add: nat le)
487ae6317f7b move lemmas nat_le_iff and nat_mono into Int.thy
huffman
parents: 44695
diff changeset
   464
29700
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
   465
lemma nat_0_iff[simp]: "nat(i::int) = 0 \<longleftrightarrow> i\<le>0"
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
   466
by(simp add: nat_eq_iff) arith
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
   467
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   468
lemma int_eq_iff: "(of_nat m = z) = (m = nat z & 0 \<le> z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   469
by (auto simp add: nat_eq_iff2)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   470
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   471
lemma zero_less_nat_eq [simp]: "(0 < nat z) = (0 < z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   472
by (insert zless_nat_conj [of 0], auto)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   473
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   474
lemma nat_add_distrib:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   475
     "[| (0::int) \<le> z;  0 \<le> z' |] ==> nat (z+z') = nat z + nat z'"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   476
by (cases z, cases z') (simp add: nat add le Zero_int_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   477
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   478
lemma nat_diff_distrib:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   479
     "[| (0::int) \<le> z';  z' \<le> z |] ==> nat (z-z') = nat z - nat z'"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   480
by (cases z, cases z')
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   481
  (simp add: nat add minus diff_minus le Zero_int_def)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   482
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   483
lemma nat_zminus_int [simp]: "nat (- int n) = 0"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   484
by (simp add: int_def minus nat Zero_int_def) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   485
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   486
lemma zless_nat_eq_int_zless: "(m < nat z) = (int m < z)"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   487
by (cases z) (simp add: nat less int_def, arith)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   488
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   489
context ring_1
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   490
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   491
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   492
lemma of_nat_nat: "0 \<le> z \<Longrightarrow> of_nat (nat z) = of_int z"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   493
  by (cases z rule: eq_Abs_Integ)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   494
   (simp add: nat le of_int Zero_int_def of_nat_diff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   495
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   496
end
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   497
29779
2786b348c376 declare "nat o abs" as default measure for int
krauss
parents: 29700
diff changeset
   498
text {* For termination proofs: *}
2786b348c376 declare "nat o abs" as default measure for int
krauss
parents: 29700
diff changeset
   499
lemma measure_function_int[measure_function]: "is_measure (nat o abs)" ..
2786b348c376 declare "nat o abs" as default measure for int
krauss
parents: 29700
diff changeset
   500
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   501
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   502
subsection{*Lemmas about the Function @{term of_nat} and Orderings*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   503
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   504
lemma negative_zless_0: "- (int (Suc n)) < (0 \<Colon> int)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   505
by (simp add: order_less_le del: of_nat_Suc)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   506
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   507
lemma negative_zless [iff]: "- (int (Suc n)) < int m"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   508
by (rule negative_zless_0 [THEN order_less_le_trans], simp)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   509
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   510
lemma negative_zle_0: "- int n \<le> 0"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   511
by (simp add: minus_le_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   512
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   513
lemma negative_zle [iff]: "- int n \<le> int m"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   514
by (rule order_trans [OF negative_zle_0 of_nat_0_le_iff])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   515
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   516
lemma not_zle_0_negative [simp]: "~ (0 \<le> - (int (Suc n)))"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   517
by (subst le_minus_iff, simp del: of_nat_Suc)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   518
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   519
lemma int_zle_neg: "(int n \<le> - int m) = (n = 0 & m = 0)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   520
by (simp add: int_def le minus Zero_int_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   521
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   522
lemma not_int_zless_negative [simp]: "~ (int n < - int m)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   523
by (simp add: linorder_not_less)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   524
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   525
lemma negative_eq_positive [simp]: "(- int n = of_nat m) = (n = 0 & m = 0)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   526
by (force simp add: order_eq_iff [of "- of_nat n"] int_zle_neg)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   527
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   528
lemma zle_iff_zadd: "w \<le> z \<longleftrightarrow> (\<exists>n. z = w + int n)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   529
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   530
  have "(w \<le> z) = (0 \<le> z - w)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   531
    by (simp only: le_diff_eq add_0_left)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   532
  also have "\<dots> = (\<exists>n. z - w = of_nat n)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   533
    by (auto elim: zero_le_imp_eq_int)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   534
  also have "\<dots> = (\<exists>n. z = w + of_nat n)"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29046
diff changeset
   535
    by (simp only: algebra_simps)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   536
  finally show ?thesis .
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   537
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   538
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   539
lemma zadd_int_left: "int m + (int n + z) = int (m + n) + z"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   540
by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   541
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   542
lemma int_Suc0_eq_1: "int (Suc 0) = 1"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   543
by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   544
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   545
text{*This version is proved for all ordered rings, not just integers!
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   546
      It is proved here because attribute @{text arith_split} is not available
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35032
diff changeset
   547
      in theory @{text Rings}.
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   548
      But is it really better than just rewriting with @{text abs_if}?*}
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
   549
lemma abs_split [arith_split,no_atp]:
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34055
diff changeset
   550
     "P(abs(a::'a::linordered_idom)) = ((0 \<le> a --> P a) & (a < 0 --> P(-a)))"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   551
by (force dest: order_less_le_trans simp add: abs_if linorder_not_less)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   552
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   553
lemma negD: "x < 0 \<Longrightarrow> \<exists>n. x = - (int (Suc n))"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   554
apply (cases x)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   555
apply (auto simp add: le minus Zero_int_def int_def order_less_le)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   556
apply (rule_tac x="y - Suc x" in exI, arith)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   557
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   558
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   559
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   560
subsection {* Cases and induction *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   561
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   562
text{*Now we replace the case analysis rule by a more conventional one:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   563
whether an integer is negative or not.*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   564
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   565
theorem int_cases [case_names nonneg neg, cases type: int]:
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   566
  "[|!! n. z = int n ==> P;  !! n. z =  - (int (Suc n)) ==> P |] ==> P"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   567
apply (cases "z < 0")
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   568
apply (blast dest!: negD)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   569
apply (simp add: linorder_not_less del: of_nat_Suc)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   570
apply auto
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   571
apply (blast dest: nat_0_le [THEN sym])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   572
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   573
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   574
theorem int_of_nat_induct [case_names nonneg neg, induct type: int]:
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   575
     "[|!! n. P (int n);  !!n. P (- (int (Suc n))) |] ==> P z"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   576
  by (cases z) auto
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   577
47207
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   578
lemma nonneg_int_cases:
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   579
  assumes "0 \<le> k" obtains n where "k = int n"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   580
  using assms by (cases k, simp, simp del: of_nat_Suc)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   581
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   582
text{*Contributed by Brian Huffman*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   583
theorem int_diff_cases:
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   584
  obtains (diff) m n where "z = int m - int n"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   585
apply (cases z rule: eq_Abs_Integ)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   586
apply (rule_tac m=x and n=y in diff)
37887
2ae085b07f2f diff_minus subsumes diff_def
haftmann
parents: 37767
diff changeset
   587
apply (simp add: int_def minus add diff_minus)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   588
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   589
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   590
lemma Let_numeral [simp]: "Let (numeral v) f = f (numeral v)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   591
  -- {* Unfold all @{text let}s involving constants *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   592
  unfolding Let_def ..
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
   593
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   594
lemma Let_neg_numeral [simp]: "Let (neg_numeral v) f = f (neg_numeral v)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   595
  -- {* Unfold all @{text let}s involving constants *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   596
  unfolding Let_def ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   597
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   598
text {* Unfold @{text min} and @{text max} on numerals. *}
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   599
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   600
lemmas max_number_of [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   601
  max_def [of "numeral u" "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   602
  max_def [of "numeral u" "neg_numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   603
  max_def [of "neg_numeral u" "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   604
  max_def [of "neg_numeral u" "neg_numeral v"] for u v
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   605
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   606
lemmas min_number_of [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   607
  min_def [of "numeral u" "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   608
  min_def [of "numeral u" "neg_numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   609
  min_def [of "neg_numeral u" "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   610
  min_def [of "neg_numeral u" "neg_numeral v"] for u v
26075
815f3ccc0b45 added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
huffman
parents: 26072
diff changeset
   611
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   612
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   613
subsubsection {* Binary comparisons *}
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   614
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   615
text {* Preliminaries *}
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   616
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   617
lemma even_less_0_iff:
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34055
diff changeset
   618
  "a + a < 0 \<longleftrightarrow> a < (0::'a::linordered_idom)"
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   619
proof -
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   620
  have "a + a < 0 \<longleftrightarrow> (1+1)*a < 0" by (simp add: left_distrib del: one_add_one)
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   621
  also have "(1+1)*a < 0 \<longleftrightarrow> a < 0"
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   622
    by (simp add: mult_less_0_iff zero_less_two 
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   623
                  order_less_not_sym [OF zero_less_two])
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   624
  finally show ?thesis .
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   625
qed
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   626
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   627
lemma le_imp_0_less: 
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   628
  assumes le: "0 \<le> z"
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   629
  shows "(0::int) < 1 + z"
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   630
proof -
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   631
  have "0 \<le> z" by fact
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   632
  also have "... < z + 1" by (rule less_add_one)
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   633
  also have "... = 1 + z" by (simp add: add_ac)
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   634
  finally show "0 < 1 + z" .
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   635
qed
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   636
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   637
lemma odd_less_0_iff:
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   638
  "(1 + z + z < 0) = (z < (0::int))"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   639
proof (cases z)
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   640
  case (nonneg n)
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   641
  thus ?thesis by (simp add: linorder_not_less add_assoc add_increasing
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   642
                             le_imp_0_less [THEN order_less_imp_le])  
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   643
next
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   644
  case (neg n)
30079
293b896b9c25 make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents: 30000
diff changeset
   645
  thus ?thesis by (simp del: of_nat_Suc of_nat_add of_nat_1
293b896b9c25 make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents: 30000
diff changeset
   646
    add: algebra_simps of_nat_1 [where 'a=int, symmetric] of_nat_add [symmetric])
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   647
qed
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   648
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   649
subsubsection {* Comparisons, for Ordered Rings *}
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   650
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   651
lemmas double_eq_0_iff = double_zero
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   652
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   653
lemma odd_nonzero:
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
   654
  "1 + z + z \<noteq> (0::int)"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
   655
proof (cases z)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   656
  case (nonneg n)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   657
  have le: "0 \<le> z+z" by (simp add: nonneg add_increasing) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   658
  thus ?thesis using  le_imp_0_less [OF le]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   659
    by (auto simp add: add_assoc) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   660
next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   661
  case (neg n)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   662
  show ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   663
  proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   664
    assume eq: "1 + z + z = 0"
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   665
    have "(0::int) < 1 + (int n + int n)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   666
      by (simp add: le_imp_0_less add_increasing) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   667
    also have "... = - (1 + z + z)" 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   668
      by (simp add: neg add_assoc [symmetric]) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   669
    also have "... = 0" by (simp add: eq) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   670
    finally have "0<0" ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   671
    thus False by blast
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   672
  qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   673
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   674
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
   675
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   676
subsection {* The Set of Integers *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   677
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   678
context ring_1
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   679
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   680
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
   681
definition Ints  :: "'a set" where
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
   682
  "Ints = range of_int"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   683
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   684
notation (xsymbols)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   685
  Ints  ("\<int>")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   686
35634
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   687
lemma Ints_of_int [simp]: "of_int z \<in> \<int>"
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   688
  by (simp add: Ints_def)
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   689
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   690
lemma Ints_of_nat [simp]: "of_nat n \<in> \<int>"
45533
af3690f6bd79 simplify some proofs
huffman
parents: 45532
diff changeset
   691
  using Ints_of_int [of "of_nat n"] by simp
35634
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   692
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   693
lemma Ints_0 [simp]: "0 \<in> \<int>"
45533
af3690f6bd79 simplify some proofs
huffman
parents: 45532
diff changeset
   694
  using Ints_of_int [of "0"] by simp
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   695
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   696
lemma Ints_1 [simp]: "1 \<in> \<int>"
45533
af3690f6bd79 simplify some proofs
huffman
parents: 45532
diff changeset
   697
  using Ints_of_int [of "1"] by simp
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   698
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   699
lemma Ints_add [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a + b \<in> \<int>"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   700
apply (auto simp add: Ints_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   701
apply (rule range_eqI)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   702
apply (rule of_int_add [symmetric])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   703
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   704
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   705
lemma Ints_minus [simp]: "a \<in> \<int> \<Longrightarrow> -a \<in> \<int>"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   706
apply (auto simp add: Ints_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   707
apply (rule range_eqI)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   708
apply (rule of_int_minus [symmetric])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   709
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   710
35634
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   711
lemma Ints_diff [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a - b \<in> \<int>"
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   712
apply (auto simp add: Ints_def)
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   713
apply (rule range_eqI)
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   714
apply (rule of_int_diff [symmetric])
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   715
done
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   716
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   717
lemma Ints_mult [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a * b \<in> \<int>"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   718
apply (auto simp add: Ints_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   719
apply (rule range_eqI)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   720
apply (rule of_int_mult [symmetric])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   721
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   722
35634
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   723
lemma Ints_power [simp]: "a \<in> \<int> \<Longrightarrow> a ^ n \<in> \<int>"
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   724
by (induct n) simp_all
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   725
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   726
lemma Ints_cases [cases set: Ints]:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   727
  assumes "q \<in> \<int>"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   728
  obtains (of_int) z where "q = of_int z"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   729
  unfolding Ints_def
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   730
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   731
  from `q \<in> \<int>` have "q \<in> range of_int" unfolding Ints_def .
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   732
  then obtain z where "q = of_int z" ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   733
  then show thesis ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   734
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   735
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   736
lemma Ints_induct [case_names of_int, induct set: Ints]:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   737
  "q \<in> \<int> \<Longrightarrow> (\<And>z. P (of_int z)) \<Longrightarrow> P q"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   738
  by (rule Ints_cases) auto
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   739
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   740
end
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   741
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   742
text {* The premise involving @{term Ints} prevents @{term "a = 1/2"}. *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   743
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   744
lemma Ints_double_eq_0_iff:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   745
  assumes in_Ints: "a \<in> Ints"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   746
  shows "(a + a = 0) = (a = (0::'a::ring_char_0))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   747
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   748
  from in_Ints have "a \<in> range of_int" unfolding Ints_def [symmetric] .
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   749
  then obtain z where a: "a = of_int z" ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   750
  show ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   751
  proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   752
    assume "a = 0"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   753
    thus "a + a = 0" by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   754
  next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   755
    assume eq: "a + a = 0"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   756
    hence "of_int (z + z) = (of_int 0 :: 'a)" by (simp add: a)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   757
    hence "z + z = 0" by (simp only: of_int_eq_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   758
    hence "z = 0" by (simp only: double_eq_0_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   759
    thus "a = 0" by (simp add: a)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   760
  qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   761
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   762
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   763
lemma Ints_odd_nonzero:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   764
  assumes in_Ints: "a \<in> Ints"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   765
  shows "1 + a + a \<noteq> (0::'a::ring_char_0)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   766
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   767
  from in_Ints have "a \<in> range of_int" unfolding Ints_def [symmetric] .
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   768
  then obtain z where a: "a = of_int z" ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   769
  show ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   770
  proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   771
    assume eq: "1 + a + a = 0"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   772
    hence "of_int (1 + z + z) = (of_int 0 :: 'a)" by (simp add: a)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   773
    hence "1 + z + z = 0" by (simp only: of_int_eq_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   774
    with odd_nonzero show False by blast
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   775
  qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   776
qed 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   777
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   778
lemma Nats_numeral [simp]: "numeral w \<in> Nats"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   779
  using of_nat_in_Nats [of "numeral w"] by simp
35634
6fdfe37b84d6 add more simp rules for Ints
huffman
parents: 35216
diff changeset
   780
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   781
lemma Ints_odd_less_0: 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   782
  assumes in_Ints: "a \<in> Ints"
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34055
diff changeset
   783
  shows "(1 + a + a < 0) = (a < (0::'a::linordered_idom))"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   784
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   785
  from in_Ints have "a \<in> range of_int" unfolding Ints_def [symmetric] .
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   786
  then obtain z where a: "a = of_int z" ..
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   787
  hence "((1::'a) + a + a < 0) = (of_int (1 + z + z) < (of_int 0 :: 'a))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   788
    by (simp add: a)
45532
74b17a0881b3 Int.thy: remove duplicate lemmas double_less_0_iff and odd_less_0, use {even,odd}_less_0_iff instead
huffman
parents: 45219
diff changeset
   789
  also have "... = (z < 0)" by (simp only: of_int_less_iff odd_less_0_iff)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   790
  also have "... = (a < 0)" by (simp add: a)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   791
  finally show ?thesis .
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   792
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   793
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   794
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   795
subsection {* @{term setsum} and @{term setprod} *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   796
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   797
lemma of_nat_setsum: "of_nat (setsum f A) = (\<Sum>x\<in>A. of_nat(f x))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   798
  apply (cases "finite A")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   799
  apply (erule finite_induct, auto)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   800
  done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   801
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   802
lemma of_int_setsum: "of_int (setsum f A) = (\<Sum>x\<in>A. of_int(f x))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   803
  apply (cases "finite A")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   804
  apply (erule finite_induct, auto)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   805
  done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   806
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   807
lemma of_nat_setprod: "of_nat (setprod f A) = (\<Prod>x\<in>A. of_nat(f x))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   808
  apply (cases "finite A")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   809
  apply (erule finite_induct, auto simp add: of_nat_mult)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   810
  done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   811
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   812
lemma of_int_setprod: "of_int (setprod f A) = (\<Prod>x\<in>A. of_int(f x))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   813
  apply (cases "finite A")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   814
  apply (erule finite_induct, auto)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   815
  done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   816
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   817
lemmas int_setsum = of_nat_setsum [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   818
lemmas int_setprod = of_nat_setprod [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   819
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   820
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   821
text {* Legacy theorems *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   822
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   823
lemmas zle_int = of_nat_le_iff [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   824
lemmas int_int_eq = of_nat_eq_iff [where 'a=int]
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   825
lemmas numeral_1_eq_1 = numeral_One
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   826
30802
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   827
subsection {* Setting up simplification procedures *}
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   828
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   829
lemmas int_arith_rules =
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   830
  neg_le_iff_le numeral_One
30802
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   831
  minus_zero diff_minus left_minus right_minus
45219
29f6e990674d removed mult_Bit1 from int_arith_rules (cf. 882403378a41 and 3078fd2eec7b, where mult_num1 erroneously replaced mult_1)
huffman
parents: 45196
diff changeset
   832
  mult_zero_left mult_zero_right mult_1_left mult_1_right
30802
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   833
  mult_minus_left mult_minus_right
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   834
  minus_add_distrib minus_minus mult_assoc
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   835
  of_nat_0 of_nat_1 of_nat_Suc of_nat_add of_nat_mult
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   836
  of_int_0 of_int_1 of_int_add of_int_mult
f9e9e800d27e simplify theorem references
huffman
parents: 30796
diff changeset
   837
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   838
use "Tools/numeral.ML"
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28724
diff changeset
   839
use "Tools/int_arith.ML"
30496
7cdcc9dd95cb vague cleanup in arith proof tools setup: deleted dead code, more proper structures, clearer arrangement
haftmann
parents: 30273
diff changeset
   840
declaration {* K Int_Arith.setup *}
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   841
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   842
simproc_setup fast_arith ("(m::'a::linordered_idom) < n" |
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   843
  "(m::'a::linordered_idom) <= n" |
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   844
  "(m::'a::linordered_idom) = n") =
43595
7ae4a23b5be6 modernized some simproc setup;
wenzelm
parents: 43531
diff changeset
   845
  {* fn _ => fn ss => fn ct => Lin_Arith.simproc ss (term_of ct) *}
7ae4a23b5be6 modernized some simproc setup;
wenzelm
parents: 43531
diff changeset
   846
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 31021
diff changeset
   847
setup {*
33523
96730ad673be modernized structure Reorient_Proc;
wenzelm
parents: 33364
diff changeset
   848
  Reorient_Proc.add
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   849
    (fn Const (@{const_name numeral}, _) $ _ => true
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   850
    | Const (@{const_name neg_numeral}, _) $ _ => true
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   851
    | _ => false)
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 31021
diff changeset
   852
*}
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 31021
diff changeset
   853
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   854
simproc_setup reorient_numeral
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   855
  ("numeral w = x" | "neg_numeral w = y") = Reorient_Proc.proc
31024
0fdf666e08bf reimplement reorientation simproc using theory data
huffman
parents: 31021
diff changeset
   856
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   857
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   858
subsection{*Lemmas About Small Numerals*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   859
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   860
lemma abs_power_minus_one [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   861
  "abs(-1 ^ n) = (1::'a::linordered_idom)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   862
by (simp add: power_abs)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   863
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   864
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   865
subsection{*More Inequality Reasoning*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   866
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   867
lemma zless_add1_eq: "(w < z + (1::int)) = (w<z | w=z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   868
by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   869
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   870
lemma add1_zle_eq: "(w + (1::int) \<le> z) = (w<z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   871
by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   872
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   873
lemma zle_diff1_eq [simp]: "(w \<le> z - (1::int)) = (w<z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   874
by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   875
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   876
lemma zle_add1_eq_le [simp]: "(w < z + (1::int)) = (w\<le>z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   877
by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   878
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   879
lemma int_one_le_iff_zero_less: "((1::int) \<le> z) = (0 < z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   880
by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   881
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   882
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
   883
subsection{*The functions @{term nat} and @{term int}*}
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   884
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   885
text{*Simplify the terms @{term "int 0"}, @{term "int(Suc 0)"} and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   886
  @{term "w + - z"}*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   887
declare Zero_int_def [symmetric, simp]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   888
declare One_int_def [symmetric, simp]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   889
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   890
lemmas diff_int_def_symmetric = diff_int_def [symmetric, simp]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   891
44695
075327b8e841 remove duplicate lemma nat_zero in favor of nat_0
huffman
parents: 43595
diff changeset
   892
lemma nat_0 [simp]: "nat 0 = 0"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   893
by (simp add: nat_eq_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   894
47207
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   895
lemma nat_1 [simp]: "nat 1 = Suc 0"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   896
by (subst nat_eq_iff, simp)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   897
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   898
lemma nat_2: "nat 2 = Suc (Suc 0)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   899
by (subst nat_eq_iff, simp)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   900
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   901
lemma one_less_nat_eq [simp]: "(Suc 0 < nat z) = (1 < z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   902
apply (insert zless_nat_conj [of 1 z])
47207
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   903
apply auto
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   904
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   905
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   906
text{*This simplifies expressions of the form @{term "int n = z"} where
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   907
      z is an integer literal.*}
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
   908
lemmas int_eq_iff_numeral [simp] = int_eq_iff [of _ "numeral v"] for v
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   909
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   910
lemma split_nat [arith_split]:
44709
79f10d9e63c1 introduce abbreviation 'int' earlier in Int.thy
huffman
parents: 44707
diff changeset
   911
  "P(nat(i::int)) = ((\<forall>n. i = int n \<longrightarrow> P n) & (i < 0 \<longrightarrow> P 0))"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   912
  (is "?P = (?L & ?R)")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   913
proof (cases "i < 0")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   914
  case True thus ?thesis by auto
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   915
next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   916
  case False
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   917
  have "?P = ?L"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   918
  proof
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   919
    assume ?P thus ?L using False by clarsimp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   920
  next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   921
    assume ?L thus ?P using False by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   922
  qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   923
  with False show ?thesis by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   924
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   925
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   926
context ring_1
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   927
begin
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   928
33056
791a4655cae3 renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
blanchet
parents: 32437
diff changeset
   929
lemma of_int_of_nat [nitpick_simp]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   930
  "of_int k = (if k < 0 then - of_nat (nat (- k)) else of_nat (nat k))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   931
proof (cases "k < 0")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   932
  case True then have "0 \<le> - k" by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   933
  then have "of_nat (nat (- k)) = of_int (- k)" by (rule of_nat_nat)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   934
  with True show ?thesis by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   935
next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   936
  case False then show ?thesis by (simp add: not_less of_nat_nat)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   937
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   938
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   939
end
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   940
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   941
lemma nat_mult_distrib:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   942
  fixes z z' :: int
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   943
  assumes "0 \<le> z"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   944
  shows "nat (z * z') = nat z * nat z'"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   945
proof (cases "0 \<le> z'")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   946
  case False with assms have "z * z' \<le> 0"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   947
    by (simp add: not_le mult_le_0_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   948
  then have "nat (z * z') = 0" by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   949
  moreover from False have "nat z' = 0" by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   950
  ultimately show ?thesis by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   951
next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   952
  case True with assms have ge_0: "z * z' \<ge> 0" by (simp add: zero_le_mult_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   953
  show ?thesis
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   954
    by (rule injD [of "of_nat :: nat \<Rightarrow> int", OF inj_of_nat])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   955
      (simp only: of_nat_mult of_nat_nat [OF True]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   956
         of_nat_nat [OF assms] of_nat_nat [OF ge_0], simp)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   957
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   958
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   959
lemma nat_mult_distrib_neg: "z \<le> (0::int) ==> nat(z*z') = nat(-z) * nat(-z')"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   960
apply (rule trans)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   961
apply (rule_tac [2] nat_mult_distrib, auto)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   962
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   963
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   964
lemma nat_abs_mult_distrib: "nat (abs (w * z)) = nat (abs w) * nat (abs z)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   965
apply (cases "z=0 | w=0")
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   966
apply (auto simp add: abs_if nat_mult_distrib [symmetric] 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   967
                      nat_mult_distrib_neg [symmetric] mult_less_0_iff)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   968
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
   969
47207
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   970
lemma Suc_nat_eq_nat_zadd1: "(0::int) <= z ==> Suc (nat z) = nat (1 + z)"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   971
apply (rule sym)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   972
apply (simp add: nat_eq_iff)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   973
done
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   974
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   975
lemma diff_nat_eq_if:
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   976
     "nat z - nat z' =  
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   977
        (if z' < 0 then nat z   
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   978
         else let d = z-z' in     
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   979
              if d < 0 then 0 else nat d)"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   980
by (simp add: Let_def nat_diff_distrib [symmetric])
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   981
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   982
(* nat_diff_distrib has too-strong premises *)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   983
lemma nat_diff_distrib': "\<lbrakk>0 \<le> x; 0 \<le> y\<rbrakk> \<Longrightarrow> nat (x - y) = nat x - nat y"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   984
apply (rule int_int_eq [THEN iffD1], clarsimp)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   985
apply (subst of_nat_diff)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   986
apply (rule nat_mono, simp_all)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   987
done
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   988
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   989
lemma nat_numeral [simp, code_abbrev]:
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   990
  "nat (numeral k) = numeral k"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   991
  by (simp add: nat_eq_iff)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   992
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   993
lemma nat_neg_numeral [simp]:
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   994
  "nat (neg_numeral k) = 0"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   995
  by simp
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   996
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   997
lemma diff_nat_numeral [simp]: 
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   998
  "(numeral v :: nat) - numeral v' = nat (numeral v - numeral v')"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
   999
  by (simp only: nat_diff_distrib' zero_le_numeral nat_numeral)
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
  1000
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
  1001
lemma nat_numeral_diff_1 [simp]:
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
  1002
  "numeral v - (1::nat) = nat (numeral v - 1)"
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
  1003
  using diff_nat_numeral [of v Num.One] by simp
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
  1004
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1005
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1006
subsection "Induction principles for int"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1007
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1008
text{*Well-founded segments of the integers*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1009
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1010
definition
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1011
  int_ge_less_than  ::  "int => (int * int) set"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1012
where
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1013
  "int_ge_less_than d = {(z',z). d \<le> z' & z' < z}"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1014
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1015
theorem wf_int_ge_less_than: "wf (int_ge_less_than d)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1016
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1017
  have "int_ge_less_than d \<subseteq> measure (%z. nat (z-d))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1018
    by (auto simp add: int_ge_less_than_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1019
  thus ?thesis 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1020
    by (rule wf_subset [OF wf_measure]) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1021
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1022
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1023
text{*This variant looks odd, but is typical of the relations suggested
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1024
by RankFinder.*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1025
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1026
definition
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1027
  int_ge_less_than2 ::  "int => (int * int) set"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1028
where
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1029
  "int_ge_less_than2 d = {(z',z). d \<le> z & z' < z}"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1030
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1031
theorem wf_int_ge_less_than2: "wf (int_ge_less_than2 d)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1032
proof -
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1033
  have "int_ge_less_than2 d \<subseteq> measure (%z. nat (1+z-d))" 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1034
    by (auto simp add: int_ge_less_than2_def)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1035
  thus ?thesis 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1036
    by (rule wf_subset [OF wf_measure]) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1037
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1038
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1039
(* `set:int': dummy construction *)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1040
theorem int_ge_induct [case_names base step, induct set: int]:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1041
  fixes i :: int
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1042
  assumes ge: "k \<le> i" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1043
    base: "P k" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1044
    step: "\<And>i. k \<le> i \<Longrightarrow> P i \<Longrightarrow> P (i + 1)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1045
  shows "P i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1046
proof -
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1047
  { fix n
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1048
    have "\<And>i::int. n = nat (i - k) \<Longrightarrow> k \<le> i \<Longrightarrow> P i"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1049
    proof (induct n)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1050
      case 0
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1051
      hence "i = k" by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1052
      thus "P i" using base by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1053
    next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1054
      case (Suc n)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1055
      then have "n = nat((i - 1) - k)" by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1056
      moreover
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1057
      have ki1: "k \<le> i - 1" using Suc.prems by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1058
      ultimately
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1059
      have "P (i - 1)" by (rule Suc.hyps)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1060
      from step [OF ki1 this] show ?case by simp
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1061
    qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1062
  }
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1063
  with ge show ?thesis by fast
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1064
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1065
25928
042e877d9841 tuned code setup
haftmann
parents: 25919
diff changeset
  1066
(* `set:int': dummy construction *)
042e877d9841 tuned code setup
haftmann
parents: 25919
diff changeset
  1067
theorem int_gr_induct [case_names base step, induct set: int]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1068
  assumes gr: "k < (i::int)" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1069
        base: "P(k+1)" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1070
        step: "\<And>i. \<lbrakk>k < i; P i\<rbrakk> \<Longrightarrow> P(i+1)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1071
  shows "P i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1072
apply(rule int_ge_induct[of "k + 1"])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1073
  using gr apply arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1074
 apply(rule base)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1075
apply (rule step, simp+)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1076
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1077
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1078
theorem int_le_induct [consumes 1, case_names base step]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1079
  assumes le: "i \<le> (k::int)" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1080
        base: "P(k)" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1081
        step: "\<And>i. \<lbrakk>i \<le> k; P i\<rbrakk> \<Longrightarrow> P(i - 1)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1082
  shows "P i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1083
proof -
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1084
  { fix n
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1085
    have "\<And>i::int. n = nat(k-i) \<Longrightarrow> i \<le> k \<Longrightarrow> P i"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1086
    proof (induct n)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1087
      case 0
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1088
      hence "i = k" by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1089
      thus "P i" using base by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1090
    next
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1091
      case (Suc n)
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1092
      hence "n = nat (k - (i + 1))" by arith
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1093
      moreover
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1094
      have ki1: "i + 1 \<le> k" using Suc.prems by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1095
      ultimately
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1096
      have "P (i + 1)" by(rule Suc.hyps)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1097
      from step[OF ki1 this] show ?case by simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1098
    qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1099
  }
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1100
  with le show ?thesis by fast
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1101
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1102
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1103
theorem int_less_induct [consumes 1, case_names base step]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1104
  assumes less: "(i::int) < k" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1105
        base: "P(k - 1)" and
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1106
        step: "\<And>i. \<lbrakk>i < k; P i\<rbrakk> \<Longrightarrow> P(i - 1)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1107
  shows "P i"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1108
apply(rule int_le_induct[of _ "k - 1"])
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1109
  using less apply arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1110
 apply(rule base)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1111
apply (rule step, simp+)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1112
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1113
36811
4ab4aa5bee1c renamed former Int.int_induct to Int.int_of_nat_induct, former Presburger.int_induct to Int.int_induct: is more conservative and more natural than the intermediate solution
haftmann
parents: 36801
diff changeset
  1114
theorem int_induct [case_names base step1 step2]:
36801
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1115
  fixes k :: int
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1116
  assumes base: "P k"
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1117
    and step1: "\<And>i. k \<le> i \<Longrightarrow> P i \<Longrightarrow> P (i + 1)"
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1118
    and step2: "\<And>i. k \<ge> i \<Longrightarrow> P i \<Longrightarrow> P (i - 1)"
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1119
  shows "P i"
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1120
proof -
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1121
  have "i \<le> k \<or> i \<ge> k" by arith
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1122
  then show ?thesis
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1123
  proof
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1124
    assume "i \<ge> k"
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1125
    then show ?thesis using base
36801
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1126
      by (rule int_ge_induct) (fact step1)
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1127
  next
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1128
    assume "i \<le> k"
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1129
    then show ?thesis using base
36801
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1130
      by (rule int_le_induct) (fact step2)
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1131
  qed
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1132
qed
3560de0fe851 moved int induction lemma to theory Int as int_bidirectional_induct
haftmann
parents: 36749
diff changeset
  1133
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1134
subsection{*Intermediate value theorems*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1135
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1136
lemma int_val_lemma:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1137
     "(\<forall>i<n::nat. abs(f(i+1) - f i) \<le> 1) -->  
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1138
      f 0 \<le> k --> k \<le> f n --> (\<exists>i \<le> n. f i = (k::int))"
30079
293b896b9c25 make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents: 30000
diff changeset
  1139
unfolding One_nat_def
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1140
apply (induct n)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1141
apply simp
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1142
apply (intro strip)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1143
apply (erule impE, simp)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1144
apply (erule_tac x = n in allE, simp)
30079
293b896b9c25 make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents: 30000
diff changeset
  1145
apply (case_tac "k = f (Suc n)")
27106
ff27dc6e7d05 removed some dubious code lemmas
haftmann
parents: 26975
diff changeset
  1146
apply force
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1147
apply (erule impE)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1148
 apply (simp add: abs_if split add: split_if_asm)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1149
apply (blast intro: le_SucI)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1150
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1151
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1152
lemmas nat0_intermed_int_val = int_val_lemma [rule_format (no_asm)]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1153
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1154
lemma nat_intermed_int_val:
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1155
     "[| \<forall>i. m \<le> i & i < n --> abs(f(i + 1::nat) - f i) \<le> 1; m < n;  
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1156
         f m \<le> k; k \<le> f n |] ==> ? i. m \<le> i & i \<le> n & f i = (k::int)"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1157
apply (cut_tac n = "n-m" and f = "%i. f (i+m) " and k = k 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1158
       in int_val_lemma)
30079
293b896b9c25 make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents: 30000
diff changeset
  1159
unfolding One_nat_def
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1160
apply simp
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1161
apply (erule exE)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1162
apply (rule_tac x = "i+m" in exI, arith)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1163
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1164
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1165
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1166
subsection{*Products and 1, by T. M. Rasmussen*}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1167
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1168
lemma zabs_less_one_iff [simp]: "(\<bar>z\<bar> < 1) = (z = (0::int))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1169
by arith
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1170
34055
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1171
lemma abs_zmult_eq_1:
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1172
  assumes mn: "\<bar>m * n\<bar> = 1"
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1173
  shows "\<bar>m\<bar> = (1::int)"
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1174
proof -
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1175
  have 0: "m \<noteq> 0 & n \<noteq> 0" using mn
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1176
    by auto
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1177
  have "~ (2 \<le> \<bar>m\<bar>)"
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1178
  proof
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1179
    assume "2 \<le> \<bar>m\<bar>"
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1180
    hence "2*\<bar>n\<bar> \<le> \<bar>m\<bar>*\<bar>n\<bar>"
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1181
      by (simp add: mult_mono 0) 
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1182
    also have "... = \<bar>m*n\<bar>" 
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1183
      by (simp add: abs_mult)
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1184
    also have "... = 1"
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1185
      by (simp add: mn)
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1186
    finally have "2*\<bar>n\<bar> \<le> 1" .
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1187
    thus "False" using 0
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1188
      by arith
34055
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1189
  qed
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1190
  thus ?thesis using 0
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1191
    by auto
fdf294ee08b2 streamlined proofs
paulson
parents: 33657
diff changeset
  1192
qed
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1193
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1194
ML_val {* @{const_name neg_numeral} *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1195
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1196
lemma pos_zmult_eq_1_iff_lemma: "(m * n = 1) ==> m = (1::int) | m = -1"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1197
by (insert abs_zmult_eq_1 [of m n], arith)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1198
35815
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35634
diff changeset
  1199
lemma pos_zmult_eq_1_iff:
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35634
diff changeset
  1200
  assumes "0 < (m::int)" shows "(m * n = 1) = (m = 1 & n = 1)"
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35634
diff changeset
  1201
proof -
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35634
diff changeset
  1202
  from assms have "m * n = 1 ==> m = 1" by (auto dest: pos_zmult_eq_1_iff_lemma)
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35634
diff changeset
  1203
  thus ?thesis by (auto dest: pos_zmult_eq_1_iff_lemma)
10e723e54076 tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents: 35634
diff changeset
  1204
qed
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1205
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1206
lemma zmult_eq_1_iff: "(m*n = (1::int)) = ((m = 1 & n = 1) | (m = -1 & n = -1))"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1207
apply (rule iffI) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1208
 apply (frule pos_zmult_eq_1_iff_lemma)
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1209
 apply (simp add: mult_commute [of m]) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1210
 apply (frule pos_zmult_eq_1_iff_lemma, auto) 
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1211
done
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1212
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1213
lemma infinite_UNIV_int: "\<not> finite (UNIV::int set)"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1214
proof
33296
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1215
  assume "finite (UNIV::int set)"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1216
  moreover have "inj (\<lambda>i\<Colon>int. 2 * i)"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1217
    by (rule injI) simp
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1218
  ultimately have "surj (\<lambda>i\<Colon>int. 2 * i)"
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1219
    by (rule finite_UNIV_inj_surj)
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1220
  then obtain i :: int where "1 = 2 * i" by (rule surjE)
a3924d1069e5 moved theory Divides after theory Nat_Numeral; tuned some proof texts
haftmann
parents: 33056
diff changeset
  1221
  then show False by (simp add: pos_zmult_eq_1_iff)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1222
qed
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1223
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1224
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1225
subsection {* Further theorems on numerals *}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1226
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1227
subsubsection{*Special Simplification for Constants*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1228
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1229
text{*These distributive laws move literals inside sums and differences.*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1230
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1231
lemmas left_distrib_numeral [simp] = left_distrib [of _ _ "numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1232
lemmas right_distrib_numeral [simp] = right_distrib [of "numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1233
lemmas left_diff_distrib_numeral [simp] = left_diff_distrib [of _ _ "numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1234
lemmas right_diff_distrib_numeral [simp] = right_diff_distrib [of "numeral v"] for v
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1235
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1236
text{*These are actually for fields, like real: but where else to put them?*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1237
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1238
lemmas zero_less_divide_iff_numeral [simp, no_atp] = zero_less_divide_iff [of "numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1239
lemmas divide_less_0_iff_numeral [simp, no_atp] = divide_less_0_iff [of "numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1240
lemmas zero_le_divide_iff_numeral [simp, no_atp] = zero_le_divide_iff [of "numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1241
lemmas divide_le_0_iff_numeral [simp, no_atp] = divide_le_0_iff [of "numeral w"] for w
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1242
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1243
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1244
text {*Replaces @{text "inverse #nn"} by @{text "1/#nn"}.  It looks
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1245
  strange, but then other simprocs simplify the quotient.*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1246
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1247
lemmas inverse_eq_divide_numeral [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1248
  inverse_eq_divide [of "numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1249
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1250
lemmas inverse_eq_divide_neg_numeral [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1251
  inverse_eq_divide [of "neg_numeral w"] for w
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1252
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1253
text {*These laws simplify inequalities, moving unary minus from a term
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1254
into the literal.*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1255
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1256
lemmas le_minus_iff_numeral [simp, no_atp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1257
  le_minus_iff [of "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1258
  le_minus_iff [of "neg_numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1259
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1260
lemmas equation_minus_iff_numeral [simp, no_atp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1261
  equation_minus_iff [of "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1262
  equation_minus_iff [of "neg_numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1263
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1264
lemmas minus_less_iff_numeral [simp, no_atp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1265
  minus_less_iff [of _ "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1266
  minus_less_iff [of _ "neg_numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1267
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1268
lemmas minus_le_iff_numeral [simp, no_atp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1269
  minus_le_iff [of _ "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1270
  minus_le_iff [of _ "neg_numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1271
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1272
lemmas minus_equation_iff_numeral [simp, no_atp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1273
  minus_equation_iff [of _ "numeral v"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1274
  minus_equation_iff [of _ "neg_numeral v"] for v
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1275
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1276
text{*To Simplify Inequalities Where One Side is the Constant 1*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1277
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
  1278
lemma less_minus_iff_1 [simp,no_atp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1279
  fixes b::"'b::linordered_idom"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1280
  shows "(1 < - b) = (b < -1)"
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1281
by auto
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1282
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
  1283
lemma le_minus_iff_1 [simp,no_atp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1284
  fixes b::"'b::linordered_idom"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1285
  shows "(1 \<le> - b) = (b \<le> -1)"
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1286
by auto
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1287
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
  1288
lemma equation_minus_iff_1 [simp,no_atp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1289
  fixes b::"'b::ring_1"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1290
  shows "(1 = - b) = (b = -1)"
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1291
by (subst equation_minus_iff, auto)
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1292
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
  1293
lemma minus_less_iff_1 [simp,no_atp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1294
  fixes a::"'b::linordered_idom"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1295
  shows "(- a < 1) = (-1 < a)"
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1296
by auto
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1297
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
  1298
lemma minus_le_iff_1 [simp,no_atp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1299
  fixes a::"'b::linordered_idom"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1300
  shows "(- a \<le> 1) = (-1 \<le> a)"
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1301
by auto
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1302
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35634
diff changeset
  1303
lemma minus_equation_iff_1 [simp,no_atp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1304
  fixes a::"'b::ring_1"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1305
  shows "(- a = 1) = (a = -1)"
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1306
by (subst minus_equation_iff, auto)
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1307
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1308
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1309
text {*Cancellation of constant factors in comparisons (@{text "<"} and @{text "\<le>"}) *}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1310
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1311
lemmas mult_less_cancel_left_numeral [simp, no_atp] = mult_less_cancel_left [of "numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1312
lemmas mult_less_cancel_right_numeral [simp, no_atp] = mult_less_cancel_right [of _ "numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1313
lemmas mult_le_cancel_left_numeral [simp, no_atp] = mult_le_cancel_left [of "numeral v"] for v
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1314
lemmas mult_le_cancel_right_numeral [simp, no_atp] = mult_le_cancel_right [of _ "numeral v"] for v
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1315
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1316
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1317
text {*Multiplying out constant divisors in comparisons (@{text "<"}, @{text "\<le>"} and @{text "="}) *}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1318
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1319
lemmas le_divide_eq_numeral1 [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1320
  pos_le_divide_eq [of "numeral w", OF zero_less_numeral]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1321
  neg_le_divide_eq [of "neg_numeral w", OF neg_numeral_less_zero] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1322
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1323
lemmas divide_le_eq_numeral1 [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1324
  pos_divide_le_eq [of "numeral w", OF zero_less_numeral]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1325
  neg_divide_le_eq [of "neg_numeral w", OF neg_numeral_less_zero] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1326
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1327
lemmas less_divide_eq_numeral1 [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1328
  pos_less_divide_eq [of "numeral w", OF zero_less_numeral]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1329
  neg_less_divide_eq [of "neg_numeral w", OF neg_numeral_less_zero] for w
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1330
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1331
lemmas divide_less_eq_numeral1 [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1332
  pos_divide_less_eq [of "numeral w", OF zero_less_numeral]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1333
  neg_divide_less_eq [of "neg_numeral w", OF neg_numeral_less_zero] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1334
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1335
lemmas eq_divide_eq_numeral1 [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1336
  eq_divide_eq [of _ _ "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1337
  eq_divide_eq [of _ _ "neg_numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1338
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1339
lemmas divide_eq_eq_numeral1 [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1340
  divide_eq_eq [of _ "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1341
  divide_eq_eq [of _ "neg_numeral w"] for w
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1342
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1343
subsubsection{*Optional Simplification Rules Involving Constants*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1344
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1345
text{*Simplify quotients that are compared with a literal constant.*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1346
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1347
lemmas le_divide_eq_numeral =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1348
  le_divide_eq [of "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1349
  le_divide_eq [of "neg_numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1350
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1351
lemmas divide_le_eq_numeral =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1352
  divide_le_eq [of _ _ "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1353
  divide_le_eq [of _ _ "neg_numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1354
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1355
lemmas less_divide_eq_numeral =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1356
  less_divide_eq [of "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1357
  less_divide_eq [of "neg_numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1358
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1359
lemmas divide_less_eq_numeral =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1360
  divide_less_eq [of _ _ "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1361
  divide_less_eq [of _ _ "neg_numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1362
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1363
lemmas eq_divide_eq_numeral =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1364
  eq_divide_eq [of "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1365
  eq_divide_eq [of "neg_numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1366
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1367
lemmas divide_eq_eq_numeral =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1368
  divide_eq_eq [of _ _ "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1369
  divide_eq_eq [of _ _ "neg_numeral w"] for w
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1370
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1371
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1372
text{*Not good as automatic simprules because they cause case splits.*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1373
lemmas divide_const_simps =
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1374
  le_divide_eq_numeral divide_le_eq_numeral less_divide_eq_numeral
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1375
  divide_less_eq_numeral eq_divide_eq_numeral divide_eq_eq_numeral
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1376
  le_divide_eq_1 divide_le_eq_1 less_divide_eq_1 divide_less_eq_1
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1377
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1378
text{*Division By @{text "-1"}*}
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1379
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1380
lemma divide_minus1 [simp]: "(x::'a::field) / -1 = - x"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1381
  unfolding minus_one [symmetric]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1382
  unfolding nonzero_minus_divide_right [OF one_neq_zero, symmetric]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1383
  by simp
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1384
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1385
lemma minus1_divide [simp]: "-1 / (x::'a::field) = - (1 / x)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1386
  unfolding minus_one [symmetric] by (rule divide_minus_left)
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1387
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1388
lemma half_gt_zero_iff:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1389
     "(0 < r/2) = (0 < (r::'a::linordered_field_inverse_zero))"
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1390
by auto
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1391
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
  1392
lemmas half_gt_zero [simp] = half_gt_zero_iff [THEN iffD2]
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1393
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1394
lemma divide_Numeral1: "(x::'a::field) / Numeral1 = x"
36719
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36716
diff changeset
  1395
  by simp
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36716
diff changeset
  1396
30652
752329615264 distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
haftmann
parents: 30496
diff changeset
  1397
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1398
subsection {* The divides relation *}
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1399
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1400
lemma zdvd_antisym_nonneg:
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1401
    "0 <= m ==> 0 <= n ==> m dvd n ==> n dvd m ==> m = (n::int)"
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1402
  apply (simp add: dvd_def, auto)
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1403
  apply (auto simp add: mult_assoc zero_le_mult_iff zmult_eq_1_iff)
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1404
  done
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1405
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1406
lemma zdvd_antisym_abs: assumes "(a::int) dvd b" and "b dvd a" 
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1407
  shows "\<bar>a\<bar> = \<bar>b\<bar>"
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1408
proof cases
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1409
  assume "a = 0" with assms show ?thesis by simp
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1410
next
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 33523
diff changeset
  1411
  assume "a \<noteq> 0"
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1412
  from `a dvd b` obtain k where k:"b = a*k" unfolding dvd_def by blast 
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1413
  from `b dvd a` obtain k' where k':"a = b*k'" unfolding dvd_def by blast 
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1414
  from k k' have "a = a*k*k'" by simp
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1415
  with mult_cancel_left1[where c="a" and b="k*k'"]
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1416
  have kk':"k*k' = 1" using `a\<noteq>0` by (simp add: mult_assoc)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1417
  hence "k = 1 \<and> k' = 1 \<or> k = -1 \<and> k' = -1" by (simp add: zmult_eq_1_iff)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1418
  thus ?thesis using k k' by auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1419
qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1420
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1421
lemma zdvd_zdiffD: "k dvd m - n ==> k dvd n ==> k dvd (m::int)"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1422
  apply (subgoal_tac "m = n + (m - n)")
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1423
   apply (erule ssubst)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1424
   apply (blast intro: dvd_add, simp)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1425
  done
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1426
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1427
lemma zdvd_reduce: "(k dvd n + k * m) = (k dvd (n::int))"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1428
apply (rule iffI)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1429
 apply (erule_tac [2] dvd_add)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1430
 apply (subgoal_tac "n = (n + k * m) - k * m")
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1431
  apply (erule ssubst)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1432
  apply (erule dvd_diff)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1433
  apply(simp_all)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1434
done
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1435
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1436
lemma dvd_imp_le_int:
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1437
  fixes d i :: int
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1438
  assumes "i \<noteq> 0" and "d dvd i"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1439
  shows "\<bar>d\<bar> \<le> \<bar>i\<bar>"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1440
proof -
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1441
  from `d dvd i` obtain k where "i = d * k" ..
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1442
  with `i \<noteq> 0` have "k \<noteq> 0" by auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1443
  then have "1 \<le> \<bar>k\<bar>" and "0 \<le> \<bar>d\<bar>" by auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1444
  then have "\<bar>d\<bar> * 1 \<le> \<bar>d\<bar> * \<bar>k\<bar>" by (rule mult_left_mono)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1445
  with `i = d * k` show ?thesis by (simp add: abs_mult)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1446
qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1447
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1448
lemma zdvd_not_zless:
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1449
  fixes m n :: int
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1450
  assumes "0 < m" and "m < n"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1451
  shows "\<not> n dvd m"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1452
proof
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1453
  from assms have "0 < n" by auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1454
  assume "n dvd m" then obtain k where k: "m = n * k" ..
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1455
  with `0 < m` have "0 < n * k" by auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1456
  with `0 < n` have "0 < k" by (simp add: zero_less_mult_iff)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1457
  with k `0 < n` `m < n` have "n * k < n * 1" by simp
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1458
  with `0 < n` `0 < k` show False unfolding mult_less_cancel_left by auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1459
qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1460
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1461
lemma zdvd_mult_cancel: assumes d:"k * m dvd k * n" and kz:"k \<noteq> (0::int)"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1462
  shows "m dvd n"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1463
proof-
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1464
  from d obtain h where h: "k*n = k*m * h" unfolding dvd_def by blast
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1465
  {assume "n \<noteq> m*h" hence "k* n \<noteq> k* (m*h)" using kz by simp
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1466
    with h have False by (simp add: mult_assoc)}
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1467
  hence "n = m * h" by blast
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1468
  thus ?thesis by simp
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1469
qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1470
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1471
theorem zdvd_int: "(x dvd y) = (int x dvd int y)"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1472
proof -
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1473
  have "\<And>k. int y = int x * k \<Longrightarrow> x dvd y"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1474
  proof -
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1475
    fix k
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1476
    assume A: "int y = int x * k"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1477
    then show "x dvd y"
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1478
    proof (cases k)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1479
      case (nonneg n)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1480
      with A have "y = x * n" by (simp add: of_nat_mult [symmetric])
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1481
      then show ?thesis ..
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1482
    next
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1483
      case (neg n)
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1484
      with A have "int y = int x * (- int (Suc n))" by simp
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1485
      also have "\<dots> = - (int x * int (Suc n))" by (simp only: mult_minus_right)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1486
      also have "\<dots> = - int (x * Suc n)" by (simp only: of_nat_mult [symmetric])
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1487
      finally have "- int (x * Suc n) = int y" ..
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1488
      then show ?thesis by (simp only: negative_eq_positive) auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1489
    qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1490
  qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1491
  then show ?thesis by (auto elim!: dvdE simp only: dvd_triv_left of_nat_mult)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1492
qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1493
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1494
lemma zdvd1_eq[simp]: "(x::int) dvd 1 = (\<bar>x\<bar> = 1)"
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1495
proof
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1496
  assume d: "x dvd 1" hence "int (nat \<bar>x\<bar>) dvd int (nat 1)" by simp
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1497
  hence "nat \<bar>x\<bar> dvd 1" by (simp add: zdvd_int)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1498
  hence "nat \<bar>x\<bar> = 1"  by simp
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1499
  thus "\<bar>x\<bar> = 1" by (cases "x < 0") auto
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1500
next
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1501
  assume "\<bar>x\<bar>=1"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1502
  then have "x = 1 \<or> x = -1" by auto
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1503
  then show "x dvd 1" by (auto intro: dvdI)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1504
qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1505
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1506
lemma zdvd_mult_cancel1: 
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1507
  assumes mp:"m \<noteq>(0::int)" shows "(m * n dvd m) = (\<bar>n\<bar> = 1)"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1508
proof
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1509
  assume n1: "\<bar>n\<bar> = 1" thus "m * n dvd m" 
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1510
    by (cases "n >0") (auto simp add: minus_equation_iff)
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1511
next
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1512
  assume H: "m * n dvd m" hence H2: "m * n dvd m * 1" by simp
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1513
  from zdvd_mult_cancel[OF H2 mp] show "\<bar>n\<bar> = 1" by (simp only: zdvd1_eq)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1514
qed
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1515
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1516
lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1517
  unfolding zdvd_int by (cases "z \<ge> 0") simp_all
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1518
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1519
lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1520
  unfolding zdvd_int by (cases "z \<ge> 0") simp_all
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1521
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1522
lemma nat_dvd_iff: "(nat z dvd m) = (if 0 \<le> z then (z dvd int m) else m = 0)"
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1523
  by (auto simp add: dvd_int_iff)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1524
33341
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1525
lemma eq_nat_nat_iff:
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1526
  "0 \<le> z \<Longrightarrow> 0 \<le> z' \<Longrightarrow> nat z = nat z' \<longleftrightarrow> z = z'"
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1527
  by (auto elim!: nonneg_eq_int)
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1528
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1529
lemma nat_power_eq:
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1530
  "0 \<le> z \<Longrightarrow> nat (z ^ n) = nat z ^ n"
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1531
  by (induct n) (simp_all add: nat_mult_distrib)
5a989586d102 moved some dvd [int] facts to Int
haftmann
parents: 33320
diff changeset
  1532
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1533
lemma zdvd_imp_le: "[| z dvd n; 0 < n |] ==> z \<le> (n::int)"
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1534
  apply (cases n)
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1535
  apply (auto simp add: dvd_int_iff)
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1536
  apply (cases z)
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1537
  apply (auto simp add: dvd_imp_le)
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1538
  done
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1539
36749
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1540
lemma zdvd_period:
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1541
  fixes a d :: int
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1542
  assumes "a dvd d"
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1543
  shows "a dvd (x + t) \<longleftrightarrow> a dvd ((x + c * d) + t)"
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1544
proof -
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1545
  from assms obtain k where "d = a * k" by (rule dvdE)
42676
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1546
  show ?thesis
8724f20bf69c proper case_names for int_cases, int_of_nat_induct;
wenzelm
parents: 42411
diff changeset
  1547
  proof
36749
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1548
    assume "a dvd (x + t)"
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1549
    then obtain l where "x + t = a * l" by (rule dvdE)
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1550
    then have "x = a * l - t" by simp
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1551
    with `d = a * k` show "a dvd x + c * d + t" by simp
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1552
  next
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1553
    assume "a dvd x + c * d + t"
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1554
    then obtain l where "x + c * d + t = a * l" by (rule dvdE)
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1555
    then have "x = a * l - c * d - t" by simp
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1556
    with `d = a * k` show "a dvd (x + t)" by simp
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1557
  qed
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1558
qed
a8dc19a352e6 moved lemma zdvd_period to theory Int
haftmann
parents: 36719
diff changeset
  1559
33320
73998ef6ea91 moved some dvd [int] facts to Int
haftmann
parents: 33296
diff changeset
  1560
46756
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1561
subsection {* Finiteness of intervals *}
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1562
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1563
lemma finite_interval_int1 [iff]: "finite {i :: int. a <= i & i <= b}"
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1564
proof (cases "a <= b")
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1565
  case True
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1566
  from this show ?thesis
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1567
  proof (induct b rule: int_ge_induct)
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1568
    case base
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1569
    have "{i. a <= i & i <= a} = {a}" by auto
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1570
    from this show ?case by simp
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1571
  next
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1572
    case (step b)
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1573
    from this have "{i. a <= i & i <= b + 1} = {i. a <= i & i <= b} \<union> {b + 1}" by auto
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1574
    from this step show ?case by simp
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1575
  qed
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1576
next
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1577
  case False from this show ?thesis
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1578
    by (metis (lifting, no_types) Collect_empty_eq finite.emptyI order_trans)
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1579
qed
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1580
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1581
lemma finite_interval_int2 [iff]: "finite {i :: int. a <= i & i < b}"
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1582
by (rule rev_finite_subset[OF finite_interval_int1[of "a" "b"]]) auto
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1583
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1584
lemma finite_interval_int3 [iff]: "finite {i :: int. a < i & i <= b}"
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1585
by (rule rev_finite_subset[OF finite_interval_int1[of "a" "b"]]) auto
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1586
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1587
lemma finite_interval_int4 [iff]: "finite {i :: int. a < i & i < b}"
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1588
by (rule rev_finite_subset[OF finite_interval_int1[of "a" "b"]]) auto
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1589
faf62905cd53 adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
bulwahn
parents: 46027
diff changeset
  1590
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1591
subsection {* Configuration of the code generator *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1592
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1593
text {* Constructors *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1594
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1595
definition Pos :: "num \<Rightarrow> int" where
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1596
  [simp, code_abbrev]: "Pos = numeral"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1597
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1598
definition Neg :: "num \<Rightarrow> int" where
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1599
  [simp, code_abbrev]: "Neg = neg_numeral"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1600
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1601
code_datatype "0::int" Pos Neg
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1602
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1603
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1604
text {* Auxiliary operations *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1605
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1606
definition dup :: "int \<Rightarrow> int" where
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1607
  [simp]: "dup k = k + k"
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1608
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1609
lemma dup_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1610
  "dup 0 = 0"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1611
  "dup (Pos n) = Pos (Num.Bit0 n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1612
  "dup (Neg n) = Neg (Num.Bit0 n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1613
  unfolding Pos_def Neg_def neg_numeral_def
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1614
  by (simp_all add: numeral_Bit0)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1615
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1616
definition sub :: "num \<Rightarrow> num \<Rightarrow> int" where
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1617
  [simp]: "sub m n = numeral m - numeral n"
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1618
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1619
lemma sub_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1620
  "sub Num.One Num.One = 0"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1621
  "sub (Num.Bit0 m) Num.One = Pos (Num.BitM m)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1622
  "sub (Num.Bit1 m) Num.One = Pos (Num.Bit0 m)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1623
  "sub Num.One (Num.Bit0 n) = Neg (Num.BitM n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1624
  "sub Num.One (Num.Bit1 n) = Neg (Num.Bit0 n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1625
  "sub (Num.Bit0 m) (Num.Bit0 n) = dup (sub m n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1626
  "sub (Num.Bit1 m) (Num.Bit1 n) = dup (sub m n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1627
  "sub (Num.Bit1 m) (Num.Bit0 n) = dup (sub m n) + 1"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1628
  "sub (Num.Bit0 m) (Num.Bit1 n) = dup (sub m n) - 1"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1629
  unfolding sub_def dup_def numeral.simps Pos_def Neg_def
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1630
    neg_numeral_def numeral_BitM
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1631
  by (simp_all only: algebra_simps)
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1632
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1633
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1634
text {* Implementations *}
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1635
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1636
lemma one_int_code [code, code_unfold]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1637
  "1 = Pos Num.One"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1638
  by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1639
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1640
lemma plus_int_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1641
  "k + 0 = (k::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1642
  "0 + l = (l::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1643
  "Pos m + Pos n = Pos (m + n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1644
  "Pos m + Neg n = sub m n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1645
  "Neg m + Pos n = sub n m"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1646
  "Neg m + Neg n = Neg (m + n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1647
  by simp_all
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1648
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1649
lemma uminus_int_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1650
  "uminus 0 = (0::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1651
  "uminus (Pos m) = Neg m"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1652
  "uminus (Neg m) = Pos m"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1653
  by simp_all
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1654
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1655
lemma minus_int_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1656
  "k - 0 = (k::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1657
  "0 - l = uminus (l::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1658
  "Pos m - Pos n = sub m n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1659
  "Pos m - Neg n = Pos (m + n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1660
  "Neg m - Pos n = Neg (m + n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1661
  "Neg m - Neg n = sub n m"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1662
  by simp_all
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1663
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1664
lemma times_int_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1665
  "k * 0 = (0::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1666
  "0 * l = (0::int)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1667
  "Pos m * Pos n = Pos (m * n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1668
  "Pos m * Neg n = Neg (m * n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1669
  "Neg m * Pos n = Neg (m * n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1670
  "Neg m * Neg n = Pos (m * n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1671
  by simp_all
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1672
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37887
diff changeset
  1673
instantiation int :: equal
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1674
begin
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1675
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36811
diff changeset
  1676
definition
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1677
  "HOL.equal k l \<longleftrightarrow> k = (l::int)"
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37887
diff changeset
  1678
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1679
instance by default (rule equal_int_def)
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1680
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1681
end
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1682
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1683
lemma equal_int_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1684
  "HOL.equal 0 (0::int) \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1685
  "HOL.equal 0 (Pos l) \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1686
  "HOL.equal 0 (Neg l) \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1687
  "HOL.equal (Pos k) 0 \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1688
  "HOL.equal (Pos k) (Pos l) \<longleftrightarrow> HOL.equal k l"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1689
  "HOL.equal (Pos k) (Neg l) \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1690
  "HOL.equal (Neg k) 0 \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1691
  "HOL.equal (Neg k) (Pos l) \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1692
  "HOL.equal (Neg k) (Neg l) \<longleftrightarrow> HOL.equal k l"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1693
  by (auto simp add: equal)
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1694
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1695
lemma equal_int_refl [code nbe]:
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37887
diff changeset
  1696
  "HOL.equal (k::int) k \<longleftrightarrow> True"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1697
  by (fact equal_refl)
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1698
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
  1699
lemma less_eq_int_code [code]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1700
  "0 \<le> (0::int) \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1701
  "0 \<le> Pos l \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1702
  "0 \<le> Neg l \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1703
  "Pos k \<le> 0 \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1704
  "Pos k \<le> Pos l \<longleftrightarrow> k \<le> l"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1705
  "Pos k \<le> Neg l \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1706
  "Neg k \<le> 0 \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1707
  "Neg k \<le> Pos l \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1708
  "Neg k \<le> Neg l \<longleftrightarrow> l \<le> k"
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
  1709
  by simp_all
26507
6da615cef733 moved some code lemmas for Numerals here
haftmann
parents: 26300
diff changeset
  1710
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
  1711
lemma less_int_code [code]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1712
  "0 < (0::int) \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1713
  "0 < Pos l \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1714
  "0 < Neg l \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1715
  "Pos k < 0 \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1716
  "Pos k < Pos l \<longleftrightarrow> k < l"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1717
  "Pos k < Neg l \<longleftrightarrow> False"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1718
  "Neg k < 0 \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1719
  "Neg k < Pos l \<longleftrightarrow> True"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1720
  "Neg k < Neg l \<longleftrightarrow> l < k"
28958
74c60b78969c cleaned up subsection headings;
huffman
parents: 28952
diff changeset
  1721
  by simp_all
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1722
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1723
lemma nat_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1724
  "nat (Int.Neg k) = 0"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1725
  "nat 0 = 0"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1726
  "nat (Int.Pos k) = nat_of_num k"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1727
  by (simp_all add: nat_of_num_numeral nat_numeral)
25928
042e877d9841 tuned code setup
haftmann
parents: 25919
diff changeset
  1728
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1729
lemma (in ring_1) of_int_code [code]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1730
  "of_int (Int.Neg k) = neg_numeral k"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1731
  "of_int 0 = 0"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1732
  "of_int (Int.Pos k) = numeral k"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1733
  by simp_all
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1734
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1735
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1736
text {* Serializer setup *}
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1737
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1738
code_modulename SML
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33341
diff changeset
  1739
  Int Arith
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1740
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1741
code_modulename OCaml
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33341
diff changeset
  1742
  Int Arith
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1743
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1744
code_modulename Haskell
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33341
diff changeset
  1745
  Int Arith
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1746
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1747
quickcheck_params [default_type = int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1748
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46756
diff changeset
  1749
hide_const (open) Pos Neg sub dup
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1750
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1751
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1752
subsection {* Legacy theorems *}
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1753
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1754
lemmas inj_int = inj_of_nat [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1755
lemmas zadd_int = of_nat_add [where 'a=int, symmetric]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1756
lemmas int_mult = of_nat_mult [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1757
lemmas zmult_int = of_nat_mult [where 'a=int, symmetric]
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
  1758
lemmas int_eq_0_conv = of_nat_eq_0_iff [where 'a=int and m="n"] for n
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1759
lemmas zless_int = of_nat_less_iff [where 'a=int]
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
  1760
lemmas int_less_0_conv = of_nat_less_0_iff [where 'a=int and m="k"] for k
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1761
lemmas zero_less_int_conv = of_nat_0_less_iff [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1762
lemmas zero_zle_int = of_nat_0_le_iff [where 'a=int]
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
  1763
lemmas int_le_0_conv = of_nat_le_0_iff [where 'a=int and m="n"] for n
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1764
lemmas int_0 = of_nat_0 [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1765
lemmas int_1 = of_nat_1 [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1766
lemmas int_Suc = of_nat_Suc [where 'a=int]
47207
9368aa814518 move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents: 47192
diff changeset
  1767
lemmas int_numeral = of_nat_numeral [where 'a=int]
45607
16b4f5774621 eliminated obsolete "standard";
wenzelm
parents: 45533
diff changeset
  1768
lemmas abs_int_eq = abs_of_nat [where 'a=int and n="m"] for m
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1769
lemmas of_int_int_eq = of_int_of_nat_eq [where 'a=int]
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1770
lemmas zdiff_int = of_nat_diff [where 'a=int, symmetric]
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30843
diff changeset
  1771
31015
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1772
lemma zpower_zpower:
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1773
  "(x ^ y) ^ z = (x ^ (y * z)::int)"
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1774
  by (rule power_mult [symmetric])
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1775
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1776
lemma int_power:
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1777
  "int (m ^ n) = int m ^ n"
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1778
  by (rule of_nat_power)
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1779
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1780
lemmas zpower_int = int_power [symmetric]
555f4033cd97 reorganization of power lemmas
haftmann
parents: 31010
diff changeset
  1781
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents:
diff changeset
  1782
end