src/HOL/Parity.thy
author haftmann
Thu, 06 Aug 2015 23:56:48 +0200
changeset 60867 86e7560e07d0
parent 60758 d8d85a8172b5
child 61531 ab2e862263e7
permissions -rw-r--r--
slight cleanup of lemmas
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 36840
diff changeset
     1
(*  Title:      HOL/Parity.thy
b460124855b8 tuned headers;
wenzelm
parents: 36840
diff changeset
     2
    Author:     Jeremy Avigad
b460124855b8 tuned headers;
wenzelm
parents: 36840
diff changeset
     3
    Author:     Jacques D. Fleuriot
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     4
*)
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     5
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
     6
section \<open>Parity in rings and semirings\<close>
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     7
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
     8
theory Parity
58778
e29cae8eab1f even further downshift of theory Parity in the hierarchy
haftmann
parents: 58777
diff changeset
     9
imports Nat_Transfer
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    10
begin
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    11
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
    12
subsection \<open>Ring structures with parity and @{text even}/@{text odd} predicates\<close>
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    13
60562
24af00b010cf Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents: 60343
diff changeset
    14
class semiring_parity = comm_semiring_1_cancel + numeral +
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    15
  assumes odd_one [simp]: "\<not> 2 dvd 1"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    16
  assumes odd_even_add: "\<not> 2 dvd a \<Longrightarrow> \<not> 2 dvd b \<Longrightarrow> 2 dvd a + b"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    17
  assumes even_multD: "2 dvd a * b \<Longrightarrow> 2 dvd a \<or> 2 dvd b"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    18
  assumes odd_ex_decrement: "\<not> 2 dvd a \<Longrightarrow> \<exists>b. a = b + 1"
54227
63b441f49645 moving generic lemmas out of theory parity, disregarding some unused auxiliary lemmas;
haftmann
parents: 47225
diff changeset
    19
begin
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
    20
59816
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 58889
diff changeset
    21
subclass semiring_numeral ..
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 58889
diff changeset
    22
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
    23
abbreviation even :: "'a \<Rightarrow> bool"
54228
229282d53781 purely algebraic foundation for even/odd
haftmann
parents: 54227
diff changeset
    24
where
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
    25
  "even a \<equiv> 2 dvd a"
54228
229282d53781 purely algebraic foundation for even/odd
haftmann
parents: 54227
diff changeset
    26
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    27
abbreviation odd :: "'a \<Rightarrow> bool"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    28
where
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
    29
  "odd a \<equiv> \<not> 2 dvd a"
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    30
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    31
lemma even_zero [simp]:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    32
  "even 0"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    33
  by (fact dvd_0_right)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    34
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    35
lemma even_plus_one_iff [simp]:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    36
  "even (a + 1) \<longleftrightarrow> odd a"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    37
  by (auto simp add: dvd_add_right_iff intro: odd_even_add)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    38
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
    39
lemma evenE [elim?]:
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
    40
  assumes "even a"
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
    41
  obtains b where "a = 2 * b"
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
    42
  using assms by (rule dvdE)
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
    43
58681
a478a0742a8e legacy cleanup
haftmann
parents: 58680
diff changeset
    44
lemma oddE [elim?]:
58680
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    45
  assumes "odd a"
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    46
  obtains b where "a = 2 * b + 1"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    47
proof -
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    48
  from assms obtain b where *: "a = b + 1"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    49
    by (blast dest: odd_ex_decrement)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    50
  with assms have "even (b + 2)" by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    51
  then have "even b" by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    52
  then obtain c where "b = 2 * c" ..
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    53
  with * have "a = 2 * c + 1" by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    54
  with that show thesis .
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    55
qed
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    56
 
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
    57
lemma even_times_iff [simp]:
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    58
  "even (a * b) \<longleftrightarrow> even a \<or> even b"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    59
  by (auto dest: even_multD)
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    60
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    61
lemma even_numeral [simp]:
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    62
  "even (numeral (Num.Bit0 n))"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    63
proof -
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    64
  have "even (2 * numeral n)"
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
    65
    unfolding even_times_iff by simp
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    66
  then have "even (numeral n + numeral n)"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    67
    unfolding mult_2 .
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    68
  then show ?thesis
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    69
    unfolding numeral.simps .
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    70
qed
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    71
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    72
lemma odd_numeral [simp]:
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    73
  "odd (numeral (Num.Bit1 n))"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    74
proof
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    75
  assume "even (numeral (num.Bit1 n))"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    76
  then have "even (numeral n + numeral n + 1)"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    77
    unfolding numeral.simps .
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    78
  then have "even (2 * numeral n + 1)"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    79
    unfolding mult_2 .
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    80
  then have "2 dvd numeral n * 2 + 1"
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
    81
    by (simp add: ac_simps)
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    82
  with dvd_add_times_triv_left_iff [of 2 "numeral n" 1]
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    83
    have "2 dvd 1"
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    84
    by simp
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    85
  then show False by simp
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    86
qed
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
    87
58680
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    88
lemma even_add [simp]:
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    89
  "even (a + b) \<longleftrightarrow> (even a \<longleftrightarrow> even b)"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
    90
  by (auto simp add: dvd_add_right_iff dvd_add_left_iff odd_even_add)
58680
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    91
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    92
lemma odd_add [simp]:
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    93
  "odd (a + b) \<longleftrightarrow> (\<not> (odd a \<longleftrightarrow> odd b))"
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    94
  by simp
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    95
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
    96
lemma even_power [simp]:
58771
0997ea62e868 slight generalization and unification of simp rules for algebraic procedures
haftmann
parents: 58770
diff changeset
    97
  "even (a ^ n) \<longleftrightarrow> even a \<and> n > 0"
58680
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    98
  by (induct n) auto
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
    99
58678
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
   100
end
398e05aa84d4 purely algebraic characterization of even and odd
haftmann
parents: 58645
diff changeset
   101
59816
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 58889
diff changeset
   102
class ring_parity = ring + semiring_parity
58679
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   103
begin
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   104
59816
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 58889
diff changeset
   105
subclass comm_ring_1 ..
034b13f4efae distributivity of partial minus establishes desired properties of dvd in semirings
haftmann
parents: 58889
diff changeset
   106
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
   107
lemma even_minus [simp]:
58679
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   108
  "even (- a) \<longleftrightarrow> even a"
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
   109
  by (fact dvd_minus_iff)
58679
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   110
58680
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
   111
lemma even_diff [simp]:
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
   112
  "even (a - b) \<longleftrightarrow> even (a + b)"
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
   113
  using even_add [of a "- b"] by simp
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
   114
58679
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   115
end
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   116
58710
7216a10d69ba augmented and tuned facts on even/odd and division
haftmann
parents: 58709
diff changeset
   117
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   118
subsection \<open>Instances for @{typ nat} and @{typ int}\<close>
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   119
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   120
lemma even_Suc_Suc_iff [simp]:
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   121
  "2 dvd Suc (Suc n) \<longleftrightarrow> 2 dvd n"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   122
  using dvd_add_triv_right_iff [of 2 n] by simp
58687
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   123
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
   124
lemma even_Suc [simp]:
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   125
  "2 dvd Suc n \<longleftrightarrow> \<not> 2 dvd n"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   126
  by (induct n) auto
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   127
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   128
lemma even_diff_nat [simp]:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   129
  fixes m n :: nat
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   130
  shows "2 dvd (m - n) \<longleftrightarrow> m < n \<or> 2 dvd (m + n)"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   131
proof (cases "n \<le> m")
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   132
  case True
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   133
  then have "m - n + n * 2 = m + n" by (simp add: mult_2_right)
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   134
  moreover have "2 dvd (m - n) \<longleftrightarrow> 2 dvd (m - n + n * 2)" by simp
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   135
  ultimately have "2 dvd (m - n) \<longleftrightarrow> 2 dvd (m + n)" by (simp only:)
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   136
  then show ?thesis by auto
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   137
next
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   138
  case False
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   139
  then show ?thesis by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   140
qed 
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   141
  
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   142
instance nat :: semiring_parity
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   143
proof
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   144
  show "\<not> 2 dvd (1 :: nat)"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   145
    by (rule notI, erule dvdE) simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   146
next
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   147
  fix m n :: nat
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   148
  assume "\<not> 2 dvd m"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   149
  moreover assume "\<not> 2 dvd n"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   150
  ultimately have *: "2 dvd Suc m \<and> 2 dvd Suc n"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   151
    by simp
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   152
  then have "2 dvd (Suc m + Suc n)"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   153
    by (blast intro: dvd_add)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   154
  also have "Suc m + Suc n = m + n + 2"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   155
    by simp
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   156
  finally show "2 dvd (m + n)"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   157
    using dvd_add_triv_right_iff [of 2 "m + n"] by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   158
next
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   159
  fix m n :: nat
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   160
  assume *: "2 dvd (m * n)"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   161
  show "2 dvd m \<or> 2 dvd n"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   162
  proof (rule disjCI)
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   163
    assume "\<not> 2 dvd n"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   164
    then have "2 dvd (Suc n)" by simp
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   165
    then obtain r where "Suc n = 2 * r" ..
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   166
    moreover from * obtain s where "m * n = 2 * s" ..
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   167
    then have "2 * s + m = m * Suc n" by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   168
    ultimately have " 2 * s + m = 2 * (m * r)" by (simp add: algebra_simps)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   169
    then have "m = 2 * (m * r - s)" by simp
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   170
    then show "2 dvd m" ..
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   171
  qed
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   172
next
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   173
  fix n :: nat
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   174
  assume "\<not> 2 dvd n"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   175
  then show "\<exists>m. n = m + 1"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   176
    by (cases n) simp_all
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   177
qed
58687
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   178
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   179
lemma odd_pos: 
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   180
  "odd (n :: nat) \<Longrightarrow> 0 < n"
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
   181
  by (auto elim: oddE)
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   182
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   183
lemma even_diff_iff [simp]:
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   184
  fixes k l :: int
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   185
  shows "2 dvd (k - l) \<longleftrightarrow> 2 dvd (k + l)"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   186
  using dvd_add_times_triv_right_iff [of 2 "k - l" l] by (simp add: mult_2_right)
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   187
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   188
lemma even_abs_add_iff [simp]:
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   189
  fixes k l :: int
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   190
  shows "2 dvd (\<bar>k\<bar> + l) \<longleftrightarrow> 2 dvd (k + l)"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   191
  by (cases "k \<ge> 0") (simp_all add: ac_simps)
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   192
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   193
lemma even_add_abs_iff [simp]:
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   194
  fixes k l :: int
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   195
  shows "2 dvd (k + \<bar>l\<bar>) \<longleftrightarrow> 2 dvd (k + l)"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   196
  using even_abs_add_iff [of l k] by (simp add: ac_simps)
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   197
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60758
diff changeset
   198
lemma odd_Suc_minus_one [simp]:
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60758
diff changeset
   199
  "odd n \<Longrightarrow> Suc (n - Suc 0) = n"
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60758
diff changeset
   200
  by (auto elim: oddE)
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60758
diff changeset
   201
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   202
instance int :: ring_parity
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   203
proof
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   204
  show "\<not> 2 dvd (1 :: int)" by (simp add: dvd_int_unfold_dvd_nat)
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   205
  fix k l :: int
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   206
  assume "\<not> 2 dvd k"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   207
  moreover assume "\<not> 2 dvd l"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   208
  ultimately have "2 dvd (nat \<bar>k\<bar> + nat \<bar>l\<bar>)" 
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   209
    by (auto simp add: dvd_int_unfold_dvd_nat intro: odd_even_add)
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   210
  then have "2 dvd (\<bar>k\<bar> + \<bar>l\<bar>)"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   211
    by (simp add: dvd_int_unfold_dvd_nat nat_add_distrib)
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   212
  then show "2 dvd (k + l)"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   213
    by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   214
next
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   215
  fix k l :: int
60343
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   216
  assume "2 dvd (k * l)"
063698416239 correct sort constraints for abbreviations in type classes
haftmann
parents: 59816
diff changeset
   217
  then show "2 dvd k \<or> 2 dvd l"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   218
    by (simp add: dvd_int_unfold_dvd_nat even_multD nat_abs_mult_distrib)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   219
next
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   220
  fix k :: int
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   221
  have "k = (k - 1) + 1" by simp
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   222
  then show "\<exists>l. k = l + 1" ..
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   223
qed
58680
6b2fa479945f more algebraic deductions for facts on even/odd
haftmann
parents: 58679
diff changeset
   224
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   225
lemma even_int_iff [simp]:
58679
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   226
  "even (int n) \<longleftrightarrow> even n"
58740
cb9d84d3e7f2 turn even into an abbreviation
haftmann
parents: 58718
diff changeset
   227
  by (simp add: dvd_int_iff)
33318
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 31718
diff changeset
   228
58687
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   229
lemma even_nat_iff:
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   230
  "0 \<le> k \<Longrightarrow> even (nat k) \<longleftrightarrow> even k"
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   231
  by (simp add: even_int_iff [symmetric])
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   232
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   233
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   234
subsection \<open>Parity and powers\<close>
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   235
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   236
context comm_ring_1
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   237
begin
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   238
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   239
lemma power_minus_even [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   240
  "even n \<Longrightarrow> (- a) ^ n = a ^ n"
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
   241
  by (auto elim: evenE)
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   242
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   243
lemma power_minus_odd [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   244
  "odd n \<Longrightarrow> (- a) ^ n = - (a ^ n)"
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
   245
  by (auto elim: oddE)
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
   246
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   247
lemma neg_one_even_power [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   248
  "even n \<Longrightarrow> (- 1) ^ n = 1"
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
   249
  by simp
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   250
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   251
lemma neg_one_odd_power [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   252
  "odd n \<Longrightarrow> (- 1) ^ n = - 1"
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
   253
  by simp
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   254
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   255
end  
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   256
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   257
context linordered_idom
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   258
begin
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   259
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   260
lemma zero_le_even_power:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   261
  "even n \<Longrightarrow> 0 \<le> a ^ n"
58690
5c5c14844738 standard elimination rule for even
haftmann
parents: 58689
diff changeset
   262
  by (auto elim: evenE)
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   263
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   264
lemma zero_le_odd_power:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   265
  "odd n \<Longrightarrow> 0 \<le> a ^ n \<longleftrightarrow> 0 \<le> a"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   266
  by (auto simp add: power_even_eq zero_le_mult_iff elim: oddE)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   267
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
   268
lemma zero_le_power_eq:
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   269
  "0 \<le> a ^ n \<longleftrightarrow> even n \<or> odd n \<and> 0 \<le> a"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   270
  by (auto simp add: zero_le_even_power zero_le_odd_power)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   271
  
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
   272
lemma zero_less_power_eq:
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   273
  "0 < a ^ n \<longleftrightarrow> n = 0 \<or> even n \<and> a \<noteq> 0 \<or> odd n \<and> 0 < a"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   274
proof -
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   275
  have [simp]: "0 = a ^ n \<longleftrightarrow> a = 0 \<and> n > 0"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   276
    unfolding power_eq_0_iff [of a n, symmetric] by blast
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   277
  show ?thesis
58710
7216a10d69ba augmented and tuned facts on even/odd and division
haftmann
parents: 58709
diff changeset
   278
  unfolding less_le zero_le_power_eq by auto
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   279
qed
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   280
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58778
diff changeset
   281
lemma power_less_zero_eq [simp]:
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   282
  "a ^ n < 0 \<longleftrightarrow> odd n \<and> a < 0"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   283
  unfolding not_le [symmetric] zero_le_power_eq by auto
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   284
  
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
   285
lemma power_le_zero_eq:
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   286
  "a ^ n \<le> 0 \<longleftrightarrow> n > 0 \<and> (odd n \<and> a \<le> 0 \<or> even n \<and> a = 0)"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   287
  unfolding not_less [symmetric] zero_less_power_eq by auto 
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   288
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   289
lemma power_even_abs:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   290
  "even n \<Longrightarrow> \<bar>a\<bar> ^ n = a ^ n"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   291
  using power_abs [of a n] by (simp add: zero_le_even_power)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   292
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   293
lemma power_mono_even:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   294
  assumes "even n" and "\<bar>a\<bar> \<le> \<bar>b\<bar>"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   295
  shows "a ^ n \<le> b ^ n"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   296
proof -
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   297
  have "0 \<le> \<bar>a\<bar>" by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   298
  with \<open>\<bar>a\<bar> \<le> \<bar>b\<bar>\<close>
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   299
  have "\<bar>a\<bar> ^ n \<le> \<bar>b\<bar> ^ n" by (rule power_mono)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   300
  with \<open>even n\<close> show ?thesis by (simp add: power_even_abs)  
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   301
qed
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   302
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   303
lemma power_mono_odd:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   304
  assumes "odd n" and "a \<le> b"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   305
  shows "a ^ n \<le> b ^ n"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   306
proof (cases "b < 0")
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   307
  case True with \<open>a \<le> b\<close> have "- b \<le> - a" and "0 \<le> - b" by auto
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   308
  hence "(- b) ^ n \<le> (- a) ^ n" by (rule power_mono)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   309
  with \<open>odd n\<close> show ?thesis by simp
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   310
next
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   311
  case False then have "0 \<le> b" by auto
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   312
  show ?thesis
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   313
  proof (cases "a < 0")
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   314
    case True then have "n \<noteq> 0" and "a \<le> 0" using \<open>odd n\<close> [THEN odd_pos] by auto
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   315
    then have "a ^ n \<le> 0" unfolding power_le_zero_eq using \<open>odd n\<close> by auto
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   316
    moreover
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   317
    from \<open>0 \<le> b\<close> have "0 \<le> b ^ n" by auto
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   318
    ultimately show ?thesis by auto
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   319
  next
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   320
    case False then have "0 \<le> a" by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   321
    with \<open>a \<le> b\<close> show ?thesis using power_mono by auto
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   322
  qed
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   323
qed
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   324
 
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   325
text \<open>Simplify, when the exponent is a numeral\<close>
58689
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   326
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   327
lemma zero_le_power_eq_numeral [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   328
  "0 \<le> a ^ numeral w \<longleftrightarrow> even (numeral w :: nat) \<or> odd (numeral w :: nat) \<and> 0 \<le> a"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   329
  by (fact zero_le_power_eq)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   330
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   331
lemma zero_less_power_eq_numeral [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   332
  "0 < a ^ numeral w \<longleftrightarrow> numeral w = (0 :: nat)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   333
    \<or> even (numeral w :: nat) \<and> a \<noteq> 0 \<or> odd (numeral w :: nat) \<and> 0 < a"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   334
  by (fact zero_less_power_eq)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   335
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   336
lemma power_le_zero_eq_numeral [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   337
  "a ^ numeral w \<le> 0 \<longleftrightarrow> (0 :: nat) < numeral w
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   338
    \<and> (odd (numeral w :: nat) \<and> a \<le> 0 \<or> even (numeral w :: nat) \<and> a = 0)"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   339
  by (fact power_le_zero_eq)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   340
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   341
lemma power_less_zero_eq_numeral [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   342
  "a ^ numeral w < 0 \<longleftrightarrow> odd (numeral w :: nat) \<and> a < 0"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   343
  by (fact power_less_zero_eq)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   344
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   345
lemma power_even_abs_numeral [simp]:
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   346
  "even (numeral w :: nat) \<Longrightarrow> \<bar>a\<bar> ^ numeral w = a ^ numeral w"
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   347
  by (fact power_even_abs)
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   348
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   349
end
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   350
ee5bf401cfa7 tuned facts on even and power
haftmann
parents: 58688
diff changeset
   351
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60562
diff changeset
   352
subsubsection \<open>Tools setup\<close>
58687
5469874b0228 even more cleanup
haftmann
parents: 58681
diff changeset
   353
58679
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   354
declare transfer_morphism_int_nat [transfer add return:
33c90658448a more algebraic deductions for facts on even/odd
haftmann
parents: 58678
diff changeset
   355
  even_int_iff
33318
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 31718
diff changeset
   356
]
21256
47195501ecf7 moved theories Parity, GCD, Binomial to Library;
wenzelm
parents:
diff changeset
   357
58770
ae5e9b4f8daf downshift of theory Parity in the hierarchy
haftmann
parents: 58769
diff changeset
   358
end