src/HOL/Library/Abstract_Rat.thy
author wenzelm
Wed, 07 Sep 2011 16:37:50 +0200
changeset 44779 98d597c4193d
parent 42463 f270e3e18be5
child 44780 a13cdb1e9e08
permissions -rw-r--r--
tuned proofs;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Library/Abstract_Rat.thy
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     2
    Author:     Amine Chaieb
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     3
*)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     4
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     5
header {* Abstract rational numbers *}
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     6
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     7
theory Abstract_Rat
36411
4cd87067791e canonical import
haftmann
parents: 36409
diff changeset
     8
imports Complex_Main
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
     9
begin
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    10
42463
f270e3e18be5 modernized specifications;
wenzelm
parents: 41528
diff changeset
    11
type_synonym Num = "int \<times> int"
25005
60e5516c7b06 replaced syntax/translations by abbreviation;
wenzelm
parents: 24197
diff changeset
    12
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    13
abbreviation Num0_syn :: Num ("0\<^sub>N")
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    14
  where "0\<^sub>N \<equiv> (0, 0)"
25005
60e5516c7b06 replaced syntax/translations by abbreviation;
wenzelm
parents: 24197
diff changeset
    15
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    16
abbreviation Numi_syn :: "int \<Rightarrow> Num" ("_\<^sub>N")
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    17
  where "i\<^sub>N \<equiv> (i, 1)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    18
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    19
definition isnormNum :: "Num \<Rightarrow> bool" where
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
    20
  "isnormNum = (\<lambda>(a,b). (if a = 0 then b = 0 else b > 0 \<and> gcd a b = 1))"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    21
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    22
definition normNum :: "Num \<Rightarrow> Num" where
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    23
  "normNum = (\<lambda>(a,b).
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    24
    (if a=0 \<or> b = 0 then (0,0) else
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    25
      (let g = gcd a b 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    26
       in if b > 0 then (a div g, b div g) else (- (a div g), - (b div g)))))"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    27
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    28
declare gcd_dvd1_int[presburger] gcd_dvd2_int[presburger]
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    29
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    30
lemma normNum_isnormNum [simp]: "isnormNum (normNum x)"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    31
proof -
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    32
  have " \<exists> a b. x = (a,b)" by auto
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    33
  then obtain a b where x[simp]: "x = (a,b)" by blast
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    34
  { assume "a=0 \<or> b = 0" hence ?thesis by (simp add: normNum_def isnormNum_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    35
  moreover
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    36
  { assume anz: "a \<noteq> 0" and bnz: "b \<noteq> 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
    37
    let ?g = "gcd a b"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    38
    let ?a' = "a div ?g"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    39
    let ?b' = "b div ?g"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
    40
    let ?g' = "gcd ?a' ?b'"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    41
    from anz bnz have "?g \<noteq> 0" by simp  with gcd_ge_0_int[of a b]
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
    42
    have gpos: "?g > 0" by arith
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    43
    have gdvd: "?g dvd a" "?g dvd b" by arith+
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    44
    from zdvd_mult_div_cancel[OF gdvd(1)] zdvd_mult_div_cancel[OF gdvd(2)] anz bnz
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    45
    have nz':"?a' \<noteq> 0" "?b' \<noteq> 0" by - (rule notI, simp)+
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    46
    from anz bnz have stupid: "a \<noteq> 0 \<or> b \<noteq> 0" by arith
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31706
diff changeset
    47
    from div_gcd_coprime_int[OF stupid] have gp1: "?g' = 1" .
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    48
    from bnz have "b < 0 \<or> b > 0" by arith
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    49
    moreover
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    50
    { assume b: "b > 0"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    51
      from b have "?b' \<ge> 0"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    52
        by (presburger add: pos_imp_zdiv_nonneg_iff[OF gpos])
27668
6eb20b2cecf8 Tuned and simplified proofs
chaieb
parents: 27567
diff changeset
    53
      with nz' have b': "?b' > 0" by arith 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    54
      from b b' anz bnz nz' gp1 have ?thesis 
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    55
        by (simp add: isnormNum_def normNum_def Let_def split_def)}
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    56
    moreover {
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    57
      assume b: "b < 0"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    58
      { assume b': "?b' \<ge> 0" 
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
    59
        from gpos have th: "?g \<ge> 0" by arith
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
    60
        from mult_nonneg_nonneg[OF th b'] zdvd_mult_div_cancel[OF gdvd(2)]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
    61
        have False using b by arith }
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    62
      hence b': "?b' < 0" by (presburger add: linorder_not_le[symmetric])
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    63
      from anz bnz nz' b b' gp1 have ?thesis 
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    64
        by (simp add: isnormNum_def normNum_def Let_def split_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    65
    ultimately have ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    66
  }
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    67
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    68
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    69
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    70
text {* Arithmetic over Num *}
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    71
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    72
definition Nadd :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "+\<^sub>N" 60) where
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    73
  "Nadd = (\<lambda>(a,b) (a',b'). if a = 0 \<or> b = 0 then normNum(a',b')
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    74
    else if a'=0 \<or> b' = 0 then normNum(a,b) 
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    75
    else normNum(a*b' + b*a', b*b'))"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    76
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    77
definition Nmul :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "*\<^sub>N" 60) where
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
    78
  "Nmul = (\<lambda>(a,b) (a',b'). let g = gcd (a*a') (b*b') 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    79
    in (a*a' div g, b*b' div g))"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    80
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    81
definition Nneg :: "Num \<Rightarrow> Num" ("~\<^sub>N")
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    82
  where "Nneg \<equiv> (\<lambda>(a,b). (-a,b))"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    83
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    84
definition Nsub :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "-\<^sub>N" 60)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    85
  where "Nsub = (\<lambda>a b. a +\<^sub>N ~\<^sub>N b)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    86
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    87
definition Ninv :: "Num \<Rightarrow> Num"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    88
  where "Ninv = (\<lambda>(a,b). if a < 0 then (-b, \<bar>a\<bar>) else (b,a))"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    89
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    90
definition Ndiv :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "\<div>\<^sub>N" 60)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    91
  where "Ndiv = (\<lambda>a b. a *\<^sub>N Ninv b)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    92
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    93
lemma Nneg_normN[simp]: "isnormNum x \<Longrightarrow> isnormNum (~\<^sub>N x)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    94
  by (simp add: isnormNum_def Nneg_def split_def)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    95
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    96
lemma Nadd_normN[simp]: "isnormNum (x +\<^sub>N y)"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    97
  by (simp add: Nadd_def split_def)
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
    98
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
    99
lemma Nsub_normN[simp]: "\<lbrakk> isnormNum y\<rbrakk> \<Longrightarrow> isnormNum (x -\<^sub>N y)"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   100
  by (simp add: Nsub_def split_def)
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   101
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   102
lemma Nmul_normN[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   103
  assumes xn:"isnormNum x" and yn: "isnormNum y"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   104
  shows "isnormNum (x *\<^sub>N y)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   105
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   106
  have "\<exists>a b. x = (a,b)" and "\<exists> a' b'. y = (a',b')" by auto
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   107
  then obtain a b a' b' where ab: "x = (a,b)"  and ab': "y = (a',b')" by blast
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   108
  {assume "a = 0"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   109
    hence ?thesis using xn ab ab'
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
   110
      by (simp add: isnormNum_def Let_def Nmul_def split_def)}
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   111
  moreover
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   112
  {assume "a' = 0"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   113
    hence ?thesis using yn ab ab' 
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
   114
      by (simp add: isnormNum_def Let_def Nmul_def split_def)}
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   115
  moreover
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   116
  {assume a: "a \<noteq>0" and a': "a'\<noteq>0"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   117
    hence bp: "b > 0" "b' > 0" using xn yn ab ab' by (simp_all add: isnormNum_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   118
    from mult_pos_pos[OF bp] have "x *\<^sub>N y = normNum (a*a', b*b')" 
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   119
      using ab ab' a a' bp by (simp add: Nmul_def Let_def split_def normNum_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   120
    hence ?thesis by simp}
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   121
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   122
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   123
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   124
lemma Ninv_normN[simp]: "isnormNum x \<Longrightarrow> isnormNum (Ninv x)"
25005
60e5516c7b06 replaced syntax/translations by abbreviation;
wenzelm
parents: 24197
diff changeset
   125
  by (simp add: Ninv_def isnormNum_def split_def)
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31706
diff changeset
   126
    (cases "fst x = 0", auto simp add: gcd_commute_int)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   127
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   128
lemma isnormNum_int[simp]: 
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
   129
  "isnormNum 0\<^sub>N" "isnormNum ((1::int)\<^sub>N)" "i \<noteq> 0 \<Longrightarrow> isnormNum (i\<^sub>N)"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
   130
  by (simp_all add: isnormNum_def)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   131
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   132
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   133
text {* Relations over Num *}
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   134
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   135
definition Nlt0:: "Num \<Rightarrow> bool" ("0>\<^sub>N")
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   136
  where "Nlt0 = (\<lambda>(a,b). a < 0)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   137
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   138
definition Nle0:: "Num \<Rightarrow> bool" ("0\<ge>\<^sub>N")
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   139
  where "Nle0 = (\<lambda>(a,b). a \<le> 0)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   140
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   141
definition Ngt0:: "Num \<Rightarrow> bool" ("0<\<^sub>N")
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   142
  where "Ngt0 = (\<lambda>(a,b). a > 0)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   143
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   144
definition Nge0:: "Num \<Rightarrow> bool" ("0\<le>\<^sub>N")
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   145
  where "Nge0 = (\<lambda>(a,b). a \<ge> 0)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   146
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   147
definition Nlt :: "Num \<Rightarrow> Num \<Rightarrow> bool" (infix "<\<^sub>N" 55)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   148
  where "Nlt = (\<lambda>a b. 0>\<^sub>N (a -\<^sub>N b))"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   149
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   150
definition Nle :: "Num \<Rightarrow> Num \<Rightarrow> bool"  (infix "\<le>\<^sub>N" 55)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   151
  where "Nle = (\<lambda>a b. 0\<ge>\<^sub>N (a -\<^sub>N b))"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   152
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   153
definition "INum = (\<lambda>(a,b). of_int a / of_int b)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   154
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
   155
lemma INum_int [simp]: "INum (i\<^sub>N) = ((of_int i) ::'a::field)" "INum 0\<^sub>N = (0::'a::field)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   156
  by (simp_all add: INum_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   157
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   158
lemma isnormNum_unique[simp]: 
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   159
  assumes na: "isnormNum x" and nb: "isnormNum y" 
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   160
  shows "((INum x ::'a::{field_char_0, field_inverse_zero}) = INum y) = (x = y)" (is "?lhs = ?rhs")
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   161
proof
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   162
  have "\<exists> a b a' b'. x = (a,b) \<and> y = (a',b')" by auto
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   163
  then obtain a b a' b' where xy[simp]: "x = (a,b)" "y=(a',b')" by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   164
  assume H: ?lhs 
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   165
  { assume "a = 0 \<or> b = 0 \<or> a' = 0 \<or> b' = 0"
32456
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 31967
diff changeset
   166
    hence ?rhs using na nb H
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   167
      by (simp add: INum_def split_def isnormNum_def split: split_if_asm) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   168
  moreover
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   169
  { assume az: "a \<noteq> 0" and bz: "b \<noteq> 0" and a'z: "a'\<noteq>0" and b'z: "b'\<noteq>0"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   170
    from az bz a'z b'z na nb have pos: "b > 0" "b' > 0" by (simp_all add: isnormNum_def)
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
   171
    from H bz b'z have eq:"a * b' = a'*b" 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   172
      by (simp add: INum_def  eq_divide_eq divide_eq_eq of_int_mult[symmetric] del: of_int_mult)
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
   173
    from az a'z na nb have gcd1: "gcd a b = 1" "gcd b a = 1" "gcd a' b' = 1" "gcd b' a' = 1"       
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31706
diff changeset
   174
      by (simp_all add: isnormNum_def add: gcd_commute_int)
27668
6eb20b2cecf8 Tuned and simplified proofs
chaieb
parents: 27567
diff changeset
   175
    from eq have raw_dvd: "a dvd a'*b" "b dvd b'*a" "a' dvd a*b'" "b' dvd b*a'"
6eb20b2cecf8 Tuned and simplified proofs
chaieb
parents: 27567
diff changeset
   176
      apply - 
6eb20b2cecf8 Tuned and simplified proofs
chaieb
parents: 27567
diff changeset
   177
      apply algebra
6eb20b2cecf8 Tuned and simplified proofs
chaieb
parents: 27567
diff changeset
   178
      apply algebra
6eb20b2cecf8 Tuned and simplified proofs
chaieb
parents: 27567
diff changeset
   179
      apply simp
6eb20b2cecf8 Tuned and simplified proofs
chaieb
parents: 27567
diff changeset
   180
      apply algebra
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   181
      done
33657
a4179bf442d1 renamed lemmas "anti_sym" -> "antisym"
nipkow
parents: 32960
diff changeset
   182
    from zdvd_antisym_abs[OF coprime_dvd_mult_int[OF gcd1(2) raw_dvd(2)]
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31706
diff changeset
   183
      coprime_dvd_mult_int[OF gcd1(4) raw_dvd(4)]]
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
   184
      have eq1: "b = b'" using pos by arith
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   185
      with eq have "a = a'" using pos by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   186
      with eq1 have ?rhs by simp}
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   187
  ultimately show ?rhs by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   188
next
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   189
  assume ?rhs thus ?lhs by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   190
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   191
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   192
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   193
lemma isnormNum0[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   194
    "isnormNum x \<Longrightarrow> (INum x = (0::'a::{field_char_0, field_inverse_zero})) = (x = 0\<^sub>N)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   195
  unfolding INum_int(2)[symmetric]
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   196
  by (rule isnormNum_unique) simp_all
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   197
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   198
lemma of_int_div_aux: "d ~= 0 ==> ((of_int x)::'a::field_char_0) / (of_int d) = 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   199
    of_int (x div d) + (of_int (x mod d)) / ((of_int d)::'a)"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   200
proof -
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   201
  assume "d ~= 0"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   202
  let ?t = "of_int (x div d) * ((of_int d)::'a) + of_int(x mod d)"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   203
  let ?f = "\<lambda>x. x / of_int d"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   204
  have "x = (x div d) * d + x mod d"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   205
    by auto
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   206
  then have eq: "of_int x = ?t"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   207
    by (simp only: of_int_mult[symmetric] of_int_add [symmetric])
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   208
  then have "of_int x / of_int d = ?t / of_int d" 
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   209
    using cong[OF refl[of ?f] eq] by simp
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
   210
  then show ?thesis by (simp add: add_divide_distrib algebra_simps `d ~= 0`)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   211
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   212
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   213
lemma of_int_div: "(d::int) ~= 0 ==> d dvd n ==>
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   214
    (of_int(n div d)::'a::field_char_0) = of_int n / of_int d"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   215
  apply (frule of_int_div_aux [of d n, where ?'a = 'a])
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   216
  apply simp
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 29667
diff changeset
   217
  apply (simp add: dvd_eq_mod_eq_0)
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   218
  done
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   219
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   220
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   221
lemma normNum[simp]: "INum (normNum x) = (INum x :: 'a::{field_char_0, field_inverse_zero})"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   222
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   223
  have "\<exists> a b. x = (a,b)" by auto
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   224
  then obtain a b where x: "x = (a,b)" by blast
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   225
  { assume "a=0 \<or> b = 0" hence ?thesis
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   226
      by (simp add: x INum_def normNum_def split_def Let_def)}
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   227
  moreover 
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   228
  { assume a: "a\<noteq>0" and b: "b\<noteq>0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
   229
    let ?g = "gcd a b"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   230
    from a b have g: "?g \<noteq> 0"by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   231
    from of_int_div[OF g, where ?'a = 'a]
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   232
    have ?thesis by (auto simp add: x INum_def normNum_def split_def Let_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   233
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   234
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   235
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   236
lemma INum_normNum_iff:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   237
  "(INum x ::'a::{field_char_0, field_inverse_zero}) = INum y \<longleftrightarrow> normNum x = normNum y"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   238
  (is "?lhs = ?rhs")
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   239
proof -
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   240
  have "normNum x = normNum y \<longleftrightarrow> (INum (normNum x) :: 'a) = INum (normNum y)"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   241
    by (simp del: normNum)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   242
  also have "\<dots> = ?lhs" by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   243
  finally show ?thesis by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   244
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   245
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   246
lemma Nadd[simp]: "INum (x +\<^sub>N y) = INum x + (INum y :: 'a :: {field_char_0, field_inverse_zero})"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   247
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   248
  let ?z = "0:: 'a"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   249
  have "\<exists>a b. x = (a,b)" " \<exists> a' b'. y = (a',b')" by auto
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   250
  then obtain a b a' b' where x: "x = (a,b)" 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   251
    and y[simp]: "y = (a',b')" by blast
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   252
  { assume "a=0 \<or> a'= 0 \<or> b =0 \<or> b' = 0"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   253
    hence ?thesis 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   254
      apply (cases "a=0", simp_all add: x Nadd_def)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   255
      apply (cases "b= 0", simp_all add: INum_def)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   256
       apply (cases "a'= 0", simp_all)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   257
       apply (cases "b'= 0", simp_all)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   258
       done }
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   259
  moreover 
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   260
  { assume aa':"a \<noteq> 0" "a'\<noteq> 0" and bb': "b \<noteq> 0" "b' \<noteq> 0" 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   261
    { assume z: "a * b' + b * a' = 0"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   262
      hence "of_int (a*b' + b*a') / (of_int b* of_int b') = ?z" by simp
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   263
      hence "of_int b' * of_int a / (of_int b * of_int b') + of_int b * of_int a' / (of_int b * of_int b') = ?z"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   264
        by (simp add:add_divide_distrib) 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   265
      hence th: "of_int a / of_int b + of_int a' / of_int b' = ?z" using bb' aa'
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   266
        by simp 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   267
      from z aa' bb' have ?thesis 
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   268
        by (simp add: x th Nadd_def normNum_def INum_def split_def) }
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   269
    moreover {
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   270
      assume z: "a * b' + b * a' \<noteq> 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
   271
      let ?g = "gcd (a * b' + b * a') (b*b')"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   272
      have gz: "?g \<noteq> 0" using z by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   273
      have ?thesis using aa' bb' z gz
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   274
        of_int_div[where ?'a = 'a, OF gz gcd_dvd1_int[where x="a * b' + b * a'" and y="b*b'"]]
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   275
        of_int_div[where ?'a = 'a, OF gz gcd_dvd2_int[where x="a * b' + b * a'" and y="b*b'"]]
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   276
        by (simp add: x Nadd_def INum_def normNum_def Let_def add_divide_distrib)}
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   277
    ultimately have ?thesis using aa' bb'
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   278
      by (simp add: x Nadd_def INum_def normNum_def Let_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   279
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   280
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   281
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   282
lemma Nmul[simp]: "INum (x *\<^sub>N y) = INum x * (INum y:: 'a :: {field_char_0, field_inverse_zero})"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   283
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   284
  let ?z = "0::'a"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   285
  have "\<exists>a b. x = (a,b)" " \<exists> a' b'. y = (a',b')" by auto
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   286
  then obtain a b a' b' where x: "x = (a,b)" and y: "y = (a',b')" by blast
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   287
  { assume "a=0 \<or> a'= 0 \<or> b = 0 \<or> b' = 0"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   288
    hence ?thesis 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   289
      apply (cases "a=0", simp_all add: x y Nmul_def INum_def Let_def)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   290
      apply (cases "b=0", simp_all)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   291
      apply (cases "a'=0", simp_all) 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   292
      done }
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   293
  moreover
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   294
  { assume z: "a \<noteq> 0" "a' \<noteq> 0" "b \<noteq> 0" "b' \<noteq> 0"
31706
1db0c8f235fb new GCD library, courtesy of Jeremy Avigad
huffman
parents: 30663
diff changeset
   295
    let ?g="gcd (a*a') (b*b')"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   296
    have gz: "?g \<noteq> 0" using z by simp
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   297
    from z of_int_div[where ?'a = 'a, OF gz gcd_dvd1_int[where x="a*a'" and y="b*b'"]]
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31706
diff changeset
   298
      of_int_div[where ?'a = 'a , OF gz gcd_dvd2_int[where x="a*a'" and y="b*b'"]] 
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   299
    have ?thesis by (simp add: Nmul_def x y Let_def INum_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   300
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   301
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   302
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   303
lemma Nneg[simp]: "INum (~\<^sub>N x) = - (INum x ::'a:: field)"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   304
  by (simp add: Nneg_def split_def INum_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   305
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   306
lemma Nsub[simp]: "INum (x -\<^sub>N y) = INum x - (INum y:: 'a :: {field_char_0, field_inverse_zero})"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   307
  by (simp add: Nsub_def split_def)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   308
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   309
lemma Ninv[simp]: "INum (Ninv x) = (1::'a :: field_inverse_zero) / (INum x)"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   310
  by (simp add: Ninv_def INum_def split_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   311
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   312
lemma Ndiv[simp]: "INum (x \<div>\<^sub>N y) = INum x / (INum y ::'a :: {field_char_0, field_inverse_zero})"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   313
  by (simp add: Ndiv_def)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   314
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   315
lemma Nlt0_iff[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   316
  assumes nx: "isnormNum x" 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   317
  shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero})< 0) = 0>\<^sub>N x"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   318
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   319
  have "\<exists> a b. x = (a,b)" by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   320
  then obtain a b where x[simp]:"x = (a,b)" by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   321
  {assume "a = 0" hence ?thesis by (simp add: Nlt0_def INum_def) }
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   322
  moreover
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   323
  { assume a: "a\<noteq>0" hence b: "(of_int b::'a) > 0" using nx by (simp add: isnormNum_def)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   324
    from pos_divide_less_eq[OF b, where b="of_int a" and a="0::'a"]
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   325
    have ?thesis by (simp add: Nlt0_def INum_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   326
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   327
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   328
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   329
lemma Nle0_iff[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   330
  assumes nx: "isnormNum x"
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   331
  shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero}) \<le> 0) = 0\<ge>\<^sub>N x"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   332
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   333
  have "\<exists>a b. x = (a,b)" by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   334
  then obtain a b where x[simp]:"x = (a,b)" by blast
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   335
  { assume "a = 0" hence ?thesis by (simp add: Nle0_def INum_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   336
  moreover
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   337
  { assume a: "a\<noteq>0" hence b: "(of_int b :: 'a) > 0" using nx by (simp add: isnormNum_def)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   338
    from pos_divide_le_eq[OF b, where b="of_int a" and a="0::'a"]
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   339
    have ?thesis by (simp add: Nle0_def INum_def)}
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   340
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   341
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   342
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   343
lemma Ngt0_iff[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   344
  assumes nx: "isnormNum x"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   345
  shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero})> 0) = 0<\<^sub>N x"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   346
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   347
  have "\<exists> a b. x = (a,b)" by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   348
  then obtain a b where x[simp]:"x = (a,b)" by blast
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   349
  { assume "a = 0" hence ?thesis by (simp add: Ngt0_def INum_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   350
  moreover
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   351
  { assume a: "a\<noteq>0" hence b: "(of_int b::'a) > 0" using nx
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   352
      by (simp add: isnormNum_def)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   353
    from pos_less_divide_eq[OF b, where b="of_int a" and a="0::'a"]
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   354
    have ?thesis by (simp add: Ngt0_def INum_def) }
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   355
  ultimately show ?thesis by blast
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   356
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   357
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   358
lemma Nge0_iff[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   359
  assumes nx: "isnormNum x"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   360
  shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero}) \<ge> 0) = 0\<le>\<^sub>N x"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   361
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   362
  have "\<exists> a b. x = (a,b)" by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   363
  then obtain a b where x[simp]:"x = (a,b)" by blast
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   364
  { assume "a = 0" hence ?thesis by (simp add: Nge0_def INum_def) }
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   365
  moreover
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   366
  { assume "a \<noteq> 0" hence b: "(of_int b::'a) > 0" using nx
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   367
      by (simp add: isnormNum_def)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   368
    from pos_le_divide_eq[OF b, where b="of_int a" and a="0::'a"]
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   369
    have ?thesis by (simp add: Nge0_def INum_def) }
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   370
  ultimately show ?thesis by blast
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   371
qed
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   372
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   373
lemma Nlt_iff[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   374
  assumes nx: "isnormNum x" and ny: "isnormNum y"
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   375
  shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero}) < INum y) = (x <\<^sub>N y)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   376
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   377
  let ?z = "0::'a"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   378
  have "((INum x ::'a) < INum y) = (INum (x -\<^sub>N y) < ?z)"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   379
    using nx ny by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   380
  also have "\<dots> = (0>\<^sub>N (x -\<^sub>N y))"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   381
    using Nlt0_iff[OF Nsub_normN[OF ny]] by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   382
  finally show ?thesis by (simp add: Nlt_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   383
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   384
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   385
lemma Nle_iff[simp]:
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   386
  assumes nx: "isnormNum x" and ny: "isnormNum y"
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   387
  shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero})\<le> INum y) = (x \<le>\<^sub>N y)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   388
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   389
  have "((INum x ::'a) \<le> INum y) = (INum (x -\<^sub>N y) \<le> (0::'a))"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   390
    using nx ny by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   391
  also have "\<dots> = (0\<ge>\<^sub>N (x -\<^sub>N y))"
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   392
    using Nle0_iff[OF Nsub_normN[OF ny]] by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   393
  finally show ?thesis by (simp add: Nle_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   394
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   395
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   396
lemma Nadd_commute:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   397
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   398
  shows "x +\<^sub>N y = y +\<^sub>N x"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   399
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   400
  have n: "isnormNum (x +\<^sub>N y)" "isnormNum (y +\<^sub>N x)" by simp_all
31964
chaieb
parents: 31963
diff changeset
   401
  have "(INum (x +\<^sub>N y)::'a) = INum (y +\<^sub>N x)" by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   402
  with isnormNum_unique[OF n] show ?thesis by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   403
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   404
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   405
lemma [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   406
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   407
  shows "(0, b) +\<^sub>N y = normNum y"
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   408
    and "(a, 0) +\<^sub>N y = normNum y" 
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   409
    and "x +\<^sub>N (0, b) = normNum x"
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   410
    and "x +\<^sub>N (a, 0) = normNum x"
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   411
  apply (simp add: Nadd_def split_def)
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   412
  apply (simp add: Nadd_def split_def)
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   413
  apply (subst Nadd_commute, simp add: Nadd_def split_def)
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   414
  apply (subst Nadd_commute, simp add: Nadd_def split_def)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   415
  done
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   416
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   417
lemma normNum_nilpotent_aux[simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   418
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   419
  assumes nx: "isnormNum x" 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   420
  shows "normNum x = x"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   421
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   422
  let ?a = "normNum x"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   423
  have n: "isnormNum ?a" by simp
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   424
  have th: "INum ?a = (INum x ::'a)" by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   425
  with isnormNum_unique[OF n nx] show ?thesis by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   426
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   427
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   428
lemma normNum_nilpotent[simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   429
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   430
  shows "normNum (normNum x) = normNum x"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   431
  by simp
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   432
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   433
lemma normNum0[simp]: "normNum (0,b) = 0\<^sub>N" "normNum (a,0) = 0\<^sub>N"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   434
  by (simp_all add: normNum_def)
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   435
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   436
lemma normNum_Nadd:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   437
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   438
  shows "normNum (x +\<^sub>N y) = x +\<^sub>N y" by simp
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   439
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   440
lemma Nadd_normNum1[simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   441
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   442
  shows "normNum x +\<^sub>N y = x +\<^sub>N y"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   443
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   444
  have n: "isnormNum (normNum x +\<^sub>N y)" "isnormNum (x +\<^sub>N y)" by simp_all
31964
chaieb
parents: 31963
diff changeset
   445
  have "INum (normNum x +\<^sub>N y) = INum x + (INum y :: 'a)" by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   446
  also have "\<dots> = INum (x +\<^sub>N y)" by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   447
  finally show ?thesis using isnormNum_unique[OF n] by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   448
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   449
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   450
lemma Nadd_normNum2[simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   451
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   452
  shows "x +\<^sub>N normNum y = x +\<^sub>N y"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   453
proof -
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   454
  have n: "isnormNum (x +\<^sub>N normNum y)" "isnormNum (x +\<^sub>N y)" by simp_all
31964
chaieb
parents: 31963
diff changeset
   455
  have "INum (x +\<^sub>N normNum y) = INum x + (INum y :: 'a)" by simp
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   456
  also have "\<dots> = INum (x +\<^sub>N y)" by simp
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   457
  finally show ?thesis using isnormNum_unique[OF n] by simp
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   458
qed
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   459
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   460
lemma Nadd_assoc:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   461
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   462
  shows "x +\<^sub>N y +\<^sub>N z = x +\<^sub>N (y +\<^sub>N z)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   463
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   464
  have n: "isnormNum (x +\<^sub>N y +\<^sub>N z)" "isnormNum (x +\<^sub>N (y +\<^sub>N z))" by simp_all
31964
chaieb
parents: 31963
diff changeset
   465
  have "INum (x +\<^sub>N y +\<^sub>N z) = (INum (x +\<^sub>N (y +\<^sub>N z)) :: 'a)" by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   466
  with isnormNum_unique[OF n] show ?thesis by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   467
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   468
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   469
lemma Nmul_commute: "isnormNum x \<Longrightarrow> isnormNum y \<Longrightarrow> x *\<^sub>N y = y *\<^sub>N x"
31952
40501bb2d57c renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents: 31706
diff changeset
   470
  by (simp add: Nmul_def split_def Let_def gcd_commute_int mult_commute)
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   471
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   472
lemma Nmul_assoc:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   473
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   474
  assumes nx: "isnormNum x" and ny:"isnormNum y" and nz:"isnormNum z"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   475
  shows "x *\<^sub>N y *\<^sub>N z = x *\<^sub>N (y *\<^sub>N z)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   476
proof -
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   477
  from nx ny nz have n: "isnormNum (x *\<^sub>N y *\<^sub>N z)" "isnormNum (x *\<^sub>N (y *\<^sub>N z))" 
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   478
    by simp_all
31964
chaieb
parents: 31963
diff changeset
   479
  have "INum (x +\<^sub>N y +\<^sub>N z) = (INum (x +\<^sub>N (y +\<^sub>N z)) :: 'a)" by simp
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   480
  with isnormNum_unique[OF n] show ?thesis by simp
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   481
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   482
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   483
lemma Nsub0:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   484
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   485
  assumes x: "isnormNum x" and y:"isnormNum y" shows "(x -\<^sub>N y = 0\<^sub>N) = (x = y)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   486
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   487
  fix h :: 'a
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   488
  from isnormNum_unique[where 'a = 'a, OF Nsub_normN[OF y], where y="0\<^sub>N"] 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   489
  have "(x -\<^sub>N y = 0\<^sub>N) = (INum (x -\<^sub>N y) = (INum 0\<^sub>N :: 'a)) " by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   490
  also have "\<dots> = (INum x = (INum y :: 'a))" by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   491
  also have "\<dots> = (x = y)" using x y by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   492
  finally show ?thesis .
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   493
qed
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   494
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   495
lemma Nmul0[simp]: "c *\<^sub>N 0\<^sub>N = 0\<^sub>N" " 0\<^sub>N *\<^sub>N c = 0\<^sub>N"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   496
  by (simp_all add: Nmul_def Let_def split_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   497
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   498
lemma Nmul_eq0[simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   499
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   500
  assumes nx:"isnormNum x" and ny: "isnormNum y"
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   501
  shows "(x*\<^sub>N y = 0\<^sub>N) = (x = 0\<^sub>N \<or> y = 0\<^sub>N)"
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   502
proof -
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   503
  fix h :: 'a
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   504
  have " \<exists> a b a' b'. x = (a,b) \<and> y= (a',b')" by auto
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   505
  then obtain a b a' b' where xy[simp]: "x = (a,b)" "y = (a',b')" by blast
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   506
  have n0: "isnormNum 0\<^sub>N" by simp
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   507
  show ?thesis using nx ny 
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   508
    apply (simp only: isnormNum_unique[where ?'a = 'a, OF  Nmul_normN[OF nx ny] n0, symmetric]
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   509
      Nmul[where ?'a = 'a])
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   510
    apply (simp add: INum_def split_def isnormNum_def split: split_if_asm)
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   511
    done
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   512
qed
44779
98d597c4193d tuned proofs;
wenzelm
parents: 42463
diff changeset
   513
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   514
lemma Nneg_Nneg[simp]: "~\<^sub>N (~\<^sub>N c) = c"
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   515
  by (simp add: Nneg_def split_def)
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   516
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   517
lemma Nmul1[simp]: 
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   518
  "isnormNum c \<Longrightarrow> 1\<^sub>N *\<^sub>N c = c" 
41528
276078f01ada eliminated global prems;
wenzelm
parents: 36411
diff changeset
   519
  "isnormNum c \<Longrightarrow> c *\<^sub>N (1\<^sub>N) = c" 
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   520
  apply (simp_all add: Nmul_def Let_def split_def isnormNum_def)
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   521
  apply (cases "fst c = 0", simp_all, cases c, simp_all)+
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   522
  done
24197
c9e3cb5e5681 proper implementation of rational numbers
haftmann
parents:
diff changeset
   523
28615
4c8fa015ec7f explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents: 27668
diff changeset
   524
end