src/HOL/Power.thy
author wenzelm
Sun, 02 Nov 2014 18:21:45 +0100
changeset 58889 5b7a9633cfa8
parent 58787 af9eb5e566dd
child 59009 348561aa3869
permissions -rw-r--r--
modernized header uniformly as section;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3390
0c7625196d95 New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Power.thy
0c7625196d95 New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
0c7625196d95 New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff changeset
     3
    Copyright   1997  University of Cambridge
0c7625196d95 New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff changeset
     4
*)
0c7625196d95 New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff changeset
     5
58889
5b7a9633cfa8 modernized header uniformly as section;
wenzelm
parents: 58787
diff changeset
     6
section {* Exponentiation *}
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15066
diff changeset
     8
theory Power
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
     9
imports Num Equiv_Relations
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15066
diff changeset
    10
begin
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    11
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    12
subsection {* Powers for Arbitrary Monoids *}
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    13
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    14
class power = one + times
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    15
begin
24996
ebd5f4cc7118 moved class power to theory Power
haftmann
parents: 24376
diff changeset
    16
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    17
primrec power :: "'a \<Rightarrow> nat \<Rightarrow> 'a" (infixr "^" 80) where
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    18
    power_0: "a ^ 0 = 1"
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    19
  | power_Suc: "a ^ Suc n = a * a ^ n"
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    20
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    21
notation (latex output)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    22
  power ("(_\<^bsup>_\<^esup>)" [1000] 1000)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    23
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    24
notation (HTML output)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    25
  power ("(_\<^bsup>_\<^esup>)" [1000] 1000)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    26
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    27
text {* Special syntax for squares. *}
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    28
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    29
abbreviation (xsymbols)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
    30
  power2 :: "'a \<Rightarrow> 'a"  ("(_\<^sup>2)" [1000] 999) where
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
    31
  "x\<^sup>2 \<equiv> x ^ 2"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    32
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    33
notation (latex output)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
    34
  power2  ("(_\<^sup>2)" [1000] 999)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    35
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    36
notation (HTML output)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
    37
  power2  ("(_\<^sup>2)" [1000] 999)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    38
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    39
end
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    40
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    41
context monoid_mult
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    42
begin
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    43
39438
c5ece2a7a86e Isar "default" step needs to fail for solved problems, for clear distinction of '.' and '..' for example -- amending lapse introduced in 9de4d64eee3b (April 2004);
wenzelm
parents: 36409
diff changeset
    44
subclass power .
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    45
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    46
lemma power_one [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    47
  "1 ^ n = 1"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
    48
  by (induct n) simp_all
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    49
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    50
lemma power_one_right [simp]:
31001
7e6ffd8f51a9 cleaned up theory power further
haftmann
parents: 30997
diff changeset
    51
  "a ^ 1 = a"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    52
  by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    53
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    54
lemma power_commutes:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    55
  "a ^ n * a = a * a ^ n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
    56
  by (induct n) (simp_all add: mult.assoc)
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 17149
diff changeset
    57
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    58
lemma power_Suc2:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    59
  "a ^ Suc n = a ^ n * a"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
    60
  by (simp add: power_commutes)
28131
3130d7b3149d add lemma power_Suc2; generalize power_minus from class comm_ring_1 to ring_1
huffman
parents: 25874
diff changeset
    61
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    62
lemma power_add:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    63
  "a ^ (m + n) = a ^ m * a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    64
  by (induct m) (simp_all add: algebra_simps)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    65
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    66
lemma power_mult:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    67
  "a ^ (m * n) = (a ^ m) ^ n"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
    68
  by (induct n) (simp_all add: power_add)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    69
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
    70
lemma power2_eq_square: "a\<^sup>2 = a * a"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    71
  by (simp add: numeral_2_eq_2)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    72
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    73
lemma power3_eq_cube: "a ^ 3 = a * a * a"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
    74
  by (simp add: numeral_3_eq_3 mult.assoc)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    75
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    76
lemma power_even_eq:
53076
47c9aff07725 more symbols;
wenzelm
parents: 53015
diff changeset
    77
  "a ^ (2 * n) = (a ^ n)\<^sup>2"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
    78
  by (subst mult.commute) (simp add: power_mult)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    79
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    80
lemma power_odd_eq:
53076
47c9aff07725 more symbols;
wenzelm
parents: 53015
diff changeset
    81
  "a ^ Suc (2*n) = a * (a ^ n)\<^sup>2"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    82
  by (simp add: power_even_eq)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    83
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    84
lemma power_numeral_even:
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    85
  "z ^ numeral (Num.Bit0 w) = (let w = z ^ (numeral w) in w * w)"
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    86
  unfolding numeral_Bit0 power_add Let_def ..
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    87
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    88
lemma power_numeral_odd:
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    89
  "z ^ numeral (Num.Bit1 w) = (let w = z ^ (numeral w) in z * w * w)"
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    90
  unfolding numeral_Bit1 One_nat_def add_Suc_right add_0_right
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
    91
  unfolding power_Suc power_add Let_def mult.assoc ..
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    92
49824
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    93
lemma funpow_times_power:
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    94
  "(times x ^^ f x) = times (x ^ f x)"
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    95
proof (induct "f x" arbitrary: f)
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    96
  case 0 then show ?case by (simp add: fun_eq_iff)
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    97
next
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    98
  case (Suc n)
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    99
  def g \<equiv> "\<lambda>x. f x - 1"
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
   100
  with Suc have "n = g x" by simp
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
   101
  with Suc have "times x ^^ g x = times (x ^ g x)" by simp
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
   102
  moreover from Suc g_def have "f x = g x + 1" by simp
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   103
  ultimately show ?case by (simp add: power_add funpow_add fun_eq_iff mult.assoc)
49824
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
   104
qed
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
   105
58656
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   106
lemma power_commuting_commutes:
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   107
  assumes "x * y = y * x"
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   108
  shows "x ^ n * y = y * x ^n"
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   109
proof (induct n)
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   110
  case (Suc n)
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   111
  have "x ^ Suc n * y = x ^ n * y * x"
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   112
    by (subst power_Suc2) (simp add: assms ac_simps)
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   113
  also have "\<dots> = y * x ^ Suc n"
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   114
    unfolding Suc power_Suc2
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   115
    by (simp add: ac_simps)
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   116
  finally show ?case .
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   117
qed simp
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   118
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   119
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   120
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   121
context comm_monoid_mult
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   122
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   123
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 55811
diff changeset
   124
lemma power_mult_distrib [field_simps]:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   125
  "(a * b) ^ n = (a ^ n) * (b ^ n)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   126
  by (induct n) (simp_all add: ac_simps)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   127
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   128
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   129
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   130
context semiring_numeral
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   131
begin
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   132
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   133
lemma numeral_sqr: "numeral (Num.sqr k) = numeral k * numeral k"
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   134
  by (simp only: sqr_conv_mult numeral_mult)
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   135
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   136
lemma numeral_pow: "numeral (Num.pow k l) = numeral k ^ numeral l"
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   137
  by (induct l, simp_all only: numeral_class.numeral.simps pow.simps
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   138
    numeral_sqr numeral_mult power_add power_one_right)
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   139
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   140
lemma power_numeral [simp]: "numeral k ^ numeral l = numeral (Num.pow k l)"
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   141
  by (rule numeral_pow [symmetric])
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   142
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   143
end
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   144
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   145
context semiring_1
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   146
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   147
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   148
lemma of_nat_power:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   149
  "of_nat (m ^ n) = of_nat m ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   150
  by (induct n) (simp_all add: of_nat_mult)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   151
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   152
lemma power_zero_numeral [simp]: "(0::'a) ^ numeral k = 0"
47209
4893907fe872 add constant pred_numeral k = numeral k - (1::nat);
huffman
parents: 47192
diff changeset
   153
  by (simp add: numeral_eq_Suc)
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   154
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   155
lemma zero_power2: "0\<^sup>2 = 0" (* delete? *)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   156
  by (rule power_zero_numeral)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   157
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   158
lemma one_power2: "1\<^sup>2 = 1" (* delete? *)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   159
  by (rule power_one)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   160
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   161
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   162
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   163
context comm_semiring_1
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   164
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   165
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   166
text {* The divides relation *}
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   167
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   168
lemma le_imp_power_dvd:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   169
  assumes "m \<le> n" shows "a ^ m dvd a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   170
proof
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   171
  have "a ^ n = a ^ (m + (n - m))"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   172
    using `m \<le> n` by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   173
  also have "\<dots> = a ^ m * a ^ (n - m)"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   174
    by (rule power_add)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   175
  finally show "a ^ n = a ^ m * a ^ (n - m)" .
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   176
qed
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   177
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   178
lemma power_le_dvd:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   179
  "a ^ n dvd b \<Longrightarrow> m \<le> n \<Longrightarrow> a ^ m dvd b"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   180
  by (rule dvd_trans [OF le_imp_power_dvd])
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   181
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   182
lemma dvd_power_same:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   183
  "x dvd y \<Longrightarrow> x ^ n dvd y ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   184
  by (induct n) (auto simp add: mult_dvd_mono)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   185
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   186
lemma dvd_power_le:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   187
  "x dvd y \<Longrightarrow> m \<ge> n \<Longrightarrow> x ^ n dvd y ^ m"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   188
  by (rule power_le_dvd [OF dvd_power_same])
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   189
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   190
lemma dvd_power [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   191
  assumes "n > (0::nat) \<or> x = 1"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   192
  shows "x dvd (x ^ n)"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   193
using assms proof
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   194
  assume "0 < n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   195
  then have "x ^ n = x ^ Suc (n - 1)" by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   196
  then show "x dvd (x ^ n)" by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   197
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   198
  assume "x = 1"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   199
  then show "x dvd (x ^ n)" by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   200
qed
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   201
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   202
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   203
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   204
context ring_1
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   205
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   206
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   207
lemma power_minus:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   208
  "(- a) ^ n = (- 1) ^ n * a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   209
proof (induct n)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   210
  case 0 show ?case by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   211
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   212
  case (Suc n) then show ?case
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   213
    by (simp del: power_Suc add: power_Suc2 mult.assoc)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   214
qed
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   215
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   216
lemma power_minus_Bit0:
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   217
  "(- x) ^ numeral (Num.Bit0 k) = x ^ numeral (Num.Bit0 k)"
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   218
  by (induct k, simp_all only: numeral_class.numeral.simps power_add
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   219
    power_one_right mult_minus_left mult_minus_right minus_minus)
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   220
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   221
lemma power_minus_Bit1:
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   222
  "(- x) ^ numeral (Num.Bit1 k) = - (x ^ numeral (Num.Bit1 k))"
47220
52426c62b5d0 replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents: 47209
diff changeset
   223
  by (simp only: eval_nat_numeral(3) power_Suc power_minus_Bit0 mult_minus_left)
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   224
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   225
lemma power2_minus [simp]:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   226
  "(- a)\<^sup>2 = a\<^sup>2"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   227
  by (rule power_minus_Bit0)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   228
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   229
lemma power_minus1_even [simp]:
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58157
diff changeset
   230
  "(- 1) ^ (2*n) = 1"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   231
proof (induct n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   232
  case 0 show ?case by simp
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   233
next
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   234
  case (Suc n) then show ?case by (simp add: power_add power2_eq_square)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   235
qed
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   236
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   237
lemma power_minus1_odd:
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58157
diff changeset
   238
  "(- 1) ^ Suc (2*n) = -1"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   239
  by simp
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   240
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   241
lemma power_minus_even [simp]:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   242
  "(-a) ^ (2*n) = a ^ (2*n)"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   243
  by (simp add: power_minus [of a])
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   244
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   245
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   246
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   247
lemma power_eq_0_nat_iff [simp]:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   248
  fixes m n :: nat
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   249
  shows "m ^ n = 0 \<longleftrightarrow> m = 0 \<and> n > 0"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   250
  by (induct n) auto
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   251
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   252
context ring_1_no_zero_divisors
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   253
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   254
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   255
lemma power_eq_0_iff [simp]:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   256
  "a ^ n = 0 \<longleftrightarrow> a = 0 \<and> n > 0"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   257
  by (induct n) auto
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   258
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   259
lemma field_power_not_zero:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   260
  "a \<noteq> 0 \<Longrightarrow> a ^ n \<noteq> 0"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   261
  by (induct n) auto
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   262
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   263
lemma zero_eq_power2 [simp]:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   264
  "a\<^sup>2 = 0 \<longleftrightarrow> a = 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   265
  unfolding power2_eq_square by simp
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   266
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   267
lemma power2_eq_1_iff:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   268
  "a\<^sup>2 = 1 \<longleftrightarrow> a = 1 \<or> a = - 1"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   269
  unfolding power2_eq_square by (rule square_eq_1_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   270
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   271
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   272
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   273
context idom
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   274
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   275
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   276
lemma power2_eq_iff: "x\<^sup>2 = y\<^sup>2 \<longleftrightarrow> x = y \<or> x = - y"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   277
  unfolding power2_eq_square by (rule square_eq_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   278
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   279
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   280
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   281
context division_ring
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   282
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   283
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   284
text {* FIXME reorient or rename to @{text nonzero_inverse_power} *}
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   285
lemma nonzero_power_inverse:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   286
  "a \<noteq> 0 \<Longrightarrow> inverse (a ^ n) = (inverse a) ^ n"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   287
  by (induct n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   288
    (simp_all add: nonzero_inverse_mult_distrib power_commutes field_power_not_zero)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   289
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   290
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   291
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   292
context field
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   293
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   294
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   295
lemma nonzero_power_divide:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   296
  "b \<noteq> 0 \<Longrightarrow> (a / b) ^ n = a ^ n / b ^ n"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   297
  by (simp add: divide_inverse power_mult_distrib nonzero_power_inverse)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   298
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   299
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   300
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   301
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   302
subsection {* Exponentiation on ordered types *}
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   303
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   304
context linordered_ring (* TODO: move *)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   305
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   306
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   307
lemma sum_squares_ge_zero:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   308
  "0 \<le> x * x + y * y"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   309
  by (intro add_nonneg_nonneg zero_le_square)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   310
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   311
lemma not_sum_squares_lt_zero:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   312
  "\<not> x * x + y * y < 0"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   313
  by (simp add: not_less sum_squares_ge_zero)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   314
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   315
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   316
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 33364
diff changeset
   317
context linordered_semidom
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   318
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   319
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   320
lemma zero_less_power [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   321
  "0 < a \<Longrightarrow> 0 < a ^ n"
56544
b60d5d119489 made mult_pos_pos a simp rule
nipkow
parents: 56536
diff changeset
   322
  by (induct n) simp_all
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   323
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   324
lemma zero_le_power [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   325
  "0 \<le> a \<Longrightarrow> 0 \<le> a ^ n"
56536
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 56481
diff changeset
   326
  by (induct n) simp_all
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   327
47241
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   328
lemma power_mono:
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   329
  "a \<le> b \<Longrightarrow> 0 \<le> a \<Longrightarrow> a ^ n \<le> b ^ n"
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   330
  by (induct n) (auto intro: mult_mono order_trans [of 0 a b])
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   331
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   332
lemma one_le_power [simp]: "1 \<le> a \<Longrightarrow> 1 \<le> a ^ n"
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   333
  using power_mono [of 1 a n] by simp
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   334
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   335
lemma power_le_one: "\<lbrakk>0 \<le> a; a \<le> 1\<rbrakk> \<Longrightarrow> a ^ n \<le> 1"
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   336
  using power_mono [of a 1 n] by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   337
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   338
lemma power_gt1_lemma:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   339
  assumes gt1: "1 < a"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   340
  shows "1 < a * a ^ n"
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   341
proof -
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   342
  from gt1 have "0 \<le> a"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   343
    by (fact order_trans [OF zero_le_one less_imp_le])
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   344
  have "1 * 1 < a * 1" using gt1 by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   345
  also have "\<dots> \<le> a * a ^ n" using gt1
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   346
    by (simp only: mult_mono `0 \<le> a` one_le_power order_less_imp_le
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   347
        zero_le_one order_refl)
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   348
  finally show ?thesis by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   349
qed
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   350
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   351
lemma power_gt1:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   352
  "1 < a \<Longrightarrow> 1 < a ^ Suc n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   353
  by (simp add: power_gt1_lemma)
24376
e403ab5c9415 add lemma one_less_power
huffman
parents: 24286
diff changeset
   354
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   355
lemma one_less_power [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   356
  "1 < a \<Longrightarrow> 0 < n \<Longrightarrow> 1 < a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   357
  by (cases n) (simp_all add: power_gt1_lemma)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   358
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   359
lemma power_le_imp_le_exp:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   360
  assumes gt1: "1 < a"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   361
  shows "a ^ m \<le> a ^ n \<Longrightarrow> m \<le> n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   362
proof (induct m arbitrary: n)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   363
  case 0
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   364
  show ?case by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   365
next
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   366
  case (Suc m)
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   367
  show ?case
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   368
  proof (cases n)
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   369
    case 0
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   370
    with Suc.prems Suc.hyps have "a * a ^ m \<le> 1" by simp
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   371
    with gt1 show ?thesis
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   372
      by (force simp only: power_gt1_lemma
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   373
          not_less [symmetric])
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   374
  next
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   375
    case (Suc n)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   376
    with Suc.prems Suc.hyps show ?thesis
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   377
      by (force dest: mult_left_le_imp_le
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   378
          simp add: less_trans [OF zero_less_one gt1])
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   379
  qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   380
qed
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   381
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   382
text{*Surely we can strengthen this? It holds for @{text "0<a<1"} too.*}
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   383
lemma power_inject_exp [simp]:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   384
  "1 < a \<Longrightarrow> a ^ m = a ^ n \<longleftrightarrow> m = n"
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   385
  by (force simp add: order_antisym power_le_imp_le_exp)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   386
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   387
text{*Can relax the first premise to @{term "0<a"} in the case of the
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   388
natural numbers.*}
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   389
lemma power_less_imp_less_exp:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   390
  "1 < a \<Longrightarrow> a ^ m < a ^ n \<Longrightarrow> m < n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   391
  by (simp add: order_less_le [of m n] less_le [of "a^m" "a^n"]
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   392
    power_le_imp_le_exp)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   393
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   394
lemma power_strict_mono [rule_format]:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   395
  "a < b \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 < n \<longrightarrow> a ^ n < b ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   396
  by (induct n)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   397
   (auto simp add: mult_strict_mono le_less_trans [of 0 a b])
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   398
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   399
text{*Lemma for @{text power_strict_decreasing}*}
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   400
lemma power_Suc_less:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   401
  "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> a * a ^ n < a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   402
  by (induct n)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   403
    (auto simp add: mult_strict_left_mono)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   404
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   405
lemma power_strict_decreasing [rule_format]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   406
  "n < N \<Longrightarrow> 0 < a \<Longrightarrow> a < 1 \<longrightarrow> a ^ N < a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   407
proof (induct N)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   408
  case 0 then show ?case by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   409
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   410
  case (Suc N) then show ?case 
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   411
  apply (auto simp add: power_Suc_less less_Suc_eq)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   412
  apply (subgoal_tac "a * a^N < 1 * a^n")
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   413
  apply simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   414
  apply (rule mult_strict_mono) apply auto
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   415
  done
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   416
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   417
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   418
text{*Proof resembles that of @{text power_strict_decreasing}*}
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   419
lemma power_decreasing [rule_format]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   420
  "n \<le> N \<Longrightarrow> 0 \<le> a \<Longrightarrow> a \<le> 1 \<longrightarrow> a ^ N \<le> a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   421
proof (induct N)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   422
  case 0 then show ?case by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   423
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   424
  case (Suc N) then show ?case 
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   425
  apply (auto simp add: le_Suc_eq)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   426
  apply (subgoal_tac "a * a^N \<le> 1 * a^n", simp)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   427
  apply (rule mult_mono) apply auto
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   428
  done
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   429
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   430
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   431
lemma power_Suc_less_one:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   432
  "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> a ^ Suc n < 1"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   433
  using power_strict_decreasing [of 0 "Suc n" a] by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   434
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   435
text{*Proof again resembles that of @{text power_strict_decreasing}*}
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   436
lemma power_increasing [rule_format]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   437
  "n \<le> N \<Longrightarrow> 1 \<le> a \<Longrightarrow> a ^ n \<le> a ^ N"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   438
proof (induct N)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   439
  case 0 then show ?case by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   440
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   441
  case (Suc N) then show ?case 
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   442
  apply (auto simp add: le_Suc_eq)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   443
  apply (subgoal_tac "1 * a^n \<le> a * a^N", simp)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   444
  apply (rule mult_mono) apply (auto simp add: order_trans [OF zero_le_one])
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   445
  done
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   446
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   447
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   448
text{*Lemma for @{text power_strict_increasing}*}
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   449
lemma power_less_power_Suc:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   450
  "1 < a \<Longrightarrow> a ^ n < a * a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   451
  by (induct n) (auto simp add: mult_strict_left_mono less_trans [OF zero_less_one])
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   452
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   453
lemma power_strict_increasing [rule_format]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   454
  "n < N \<Longrightarrow> 1 < a \<longrightarrow> a ^ n < a ^ N"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   455
proof (induct N)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   456
  case 0 then show ?case by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   457
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   458
  case (Suc N) then show ?case 
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   459
  apply (auto simp add: power_less_power_Suc less_Suc_eq)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   460
  apply (subgoal_tac "1 * a^n < a * a^N", simp)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   461
  apply (rule mult_strict_mono) apply (auto simp add: less_trans [OF zero_less_one] less_imp_le)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   462
  done
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   463
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   464
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   465
lemma power_increasing_iff [simp]:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   466
  "1 < b \<Longrightarrow> b ^ x \<le> b ^ y \<longleftrightarrow> x \<le> y"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   467
  by (blast intro: power_le_imp_le_exp power_increasing less_imp_le)
15066
d2f2b908e0a4 two new results
paulson
parents: 15004
diff changeset
   468
d2f2b908e0a4 two new results
paulson
parents: 15004
diff changeset
   469
lemma power_strict_increasing_iff [simp]:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   470
  "1 < b \<Longrightarrow> b ^ x < b ^ y \<longleftrightarrow> x < y"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   471
by (blast intro: power_less_imp_less_exp power_strict_increasing) 
15066
d2f2b908e0a4 two new results
paulson
parents: 15004
diff changeset
   472
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   473
lemma power_le_imp_le_base:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   474
  assumes le: "a ^ Suc n \<le> b ^ Suc n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   475
    and ynonneg: "0 \<le> b"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   476
  shows "a \<le> b"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   477
proof (rule ccontr)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   478
  assume "~ a \<le> b"
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   479
  then have "b < a" by (simp only: linorder_not_le)
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   480
  then have "b ^ Suc n < a ^ Suc n"
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 39438
diff changeset
   481
    by (simp only: assms power_strict_mono)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   482
  from le and this show False
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   483
    by (simp add: linorder_not_less [symmetric])
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   484
qed
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   485
22853
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   486
lemma power_less_imp_less_base:
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   487
  assumes less: "a ^ n < b ^ n"
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   488
  assumes nonneg: "0 \<le> b"
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   489
  shows "a < b"
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   490
proof (rule contrapos_pp [OF less])
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   491
  assume "~ a < b"
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   492
  hence "b \<le> a" by (simp only: linorder_not_less)
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   493
  hence "b ^ n \<le> a ^ n" using nonneg by (rule power_mono)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   494
  thus "\<not> a ^ n < b ^ n" by (simp only: linorder_not_less)
22853
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   495
qed
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   496
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   497
lemma power_inject_base:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   498
  "a ^ Suc n = b ^ Suc n \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> a = b"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   499
by (blast intro: power_le_imp_le_base antisym eq_refl sym)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   500
22955
48dc37776d1e add lemma power_eq_imp_eq_base
huffman
parents: 22853
diff changeset
   501
lemma power_eq_imp_eq_base:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   502
  "a ^ n = b ^ n \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 < n \<Longrightarrow> a = b"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   503
  by (cases n) (simp_all del: power_Suc, rule power_inject_base)
22955
48dc37776d1e add lemma power_eq_imp_eq_base
huffman
parents: 22853
diff changeset
   504
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   505
lemma power2_le_imp_le:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   506
  "x\<^sup>2 \<le> y\<^sup>2 \<Longrightarrow> 0 \<le> y \<Longrightarrow> x \<le> y"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   507
  unfolding numeral_2_eq_2 by (rule power_le_imp_le_base)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   508
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   509
lemma power2_less_imp_less:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   510
  "x\<^sup>2 < y\<^sup>2 \<Longrightarrow> 0 \<le> y \<Longrightarrow> x < y"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   511
  by (rule power_less_imp_less_base)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   512
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   513
lemma power2_eq_imp_eq:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   514
  "x\<^sup>2 = y\<^sup>2 \<Longrightarrow> 0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> x = y"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   515
  unfolding numeral_2_eq_2 by (erule (2) power_eq_imp_eq_base) simp
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   516
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   517
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   518
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   519
context linordered_ring_strict
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   520
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   521
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   522
lemma sum_squares_eq_zero_iff:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   523
  "x * x + y * y = 0 \<longleftrightarrow> x = 0 \<and> y = 0"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   524
  by (simp add: add_nonneg_eq_0_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   525
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   526
lemma sum_squares_le_zero_iff:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   527
  "x * x + y * y \<le> 0 \<longleftrightarrow> x = 0 \<and> y = 0"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   528
  by (simp add: le_less not_sum_squares_lt_zero sum_squares_eq_zero_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   529
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   530
lemma sum_squares_gt_zero_iff:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   531
  "0 < x * x + y * y \<longleftrightarrow> x \<noteq> 0 \<or> y \<noteq> 0"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   532
  by (simp add: not_le [symmetric] sum_squares_le_zero_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   533
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   534
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   535
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 33364
diff changeset
   536
context linordered_idom
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   537
begin
29978
33df3c4eb629 generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents: 29608
diff changeset
   538
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   539
lemma power_abs:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   540
  "abs (a ^ n) = abs a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   541
  by (induct n) (auto simp add: abs_mult)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   542
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   543
lemma abs_power_minus [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   544
  "abs ((-a) ^ n) = abs (a ^ n)"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
   545
  by (simp add: power_abs)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   546
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53076
diff changeset
   547
lemma zero_less_power_abs_iff [simp]:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   548
  "0 < abs a ^ n \<longleftrightarrow> a \<noteq> 0 \<or> n = 0"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   549
proof (induct n)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   550
  case 0 show ?case by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   551
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   552
  case (Suc n) show ?case by (auto simp add: Suc zero_less_mult_iff)
29978
33df3c4eb629 generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents: 29608
diff changeset
   553
qed
33df3c4eb629 generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents: 29608
diff changeset
   554
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   555
lemma zero_le_power_abs [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   556
  "0 \<le> abs a ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   557
  by (rule zero_le_power [OF abs_ge_zero])
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   558
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   559
lemma zero_le_power2 [simp]:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   560
  "0 \<le> a\<^sup>2"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   561
  by (simp add: power2_eq_square)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   562
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   563
lemma zero_less_power2 [simp]:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   564
  "0 < a\<^sup>2 \<longleftrightarrow> a \<noteq> 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   565
  by (force simp add: power2_eq_square zero_less_mult_iff linorder_neq_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   566
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   567
lemma power2_less_0 [simp]:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   568
  "\<not> a\<^sup>2 < 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   569
  by (force simp add: power2_eq_square mult_less_0_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   570
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   571
lemma power2_less_eq_zero_iff [simp]:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   572
  "a\<^sup>2 \<le> 0 \<longleftrightarrow> a = 0"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   573
  by (simp add: le_less)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   574
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   575
lemma abs_power2 [simp]:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   576
  "abs (a\<^sup>2) = a\<^sup>2"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   577
  by (simp add: power2_eq_square abs_mult abs_mult_self)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   578
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   579
lemma power2_abs [simp]:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   580
  "(abs a)\<^sup>2 = a\<^sup>2"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   581
  by (simp add: power2_eq_square abs_mult_self)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   582
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   583
lemma odd_power_less_zero:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   584
  "a < 0 \<Longrightarrow> a ^ Suc (2*n) < 0"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   585
proof (induct n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   586
  case 0
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   587
  then show ?case by simp
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   588
next
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   589
  case (Suc n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   590
  have "a ^ Suc (2 * Suc n) = (a*a) * a ^ Suc(2*n)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   591
    by (simp add: ac_simps power_add power2_eq_square)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   592
  thus ?case
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   593
    by (simp del: power_Suc add: Suc mult_less_0_iff mult_neg_neg)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   594
qed
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   595
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   596
lemma odd_0_le_power_imp_0_le:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   597
  "0 \<le> a ^ Suc (2*n) \<Longrightarrow> 0 \<le> a"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   598
  using odd_power_less_zero [of a n]
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   599
    by (force simp add: linorder_not_less [symmetric]) 
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   600
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   601
lemma zero_le_even_power'[simp]:
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   602
  "0 \<le> a ^ (2*n)"
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   603
proof (induct n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   604
  case 0
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   605
    show ?case by simp
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   606
next
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   607
  case (Suc n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   608
    have "a ^ (2 * Suc n) = (a*a) * a ^ (2*n)" 
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
   609
      by (simp add: ac_simps power_add power2_eq_square)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   610
    thus ?case
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   611
      by (simp add: Suc zero_le_mult_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   612
qed
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   613
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   614
lemma sum_power2_ge_zero:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   615
  "0 \<le> x\<^sup>2 + y\<^sup>2"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   616
  by (intro add_nonneg_nonneg zero_le_power2)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   617
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   618
lemma not_sum_power2_lt_zero:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   619
  "\<not> x\<^sup>2 + y\<^sup>2 < 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   620
  unfolding not_less by (rule sum_power2_ge_zero)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   621
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   622
lemma sum_power2_eq_zero_iff:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   623
  "x\<^sup>2 + y\<^sup>2 = 0 \<longleftrightarrow> x = 0 \<and> y = 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   624
  unfolding power2_eq_square by (simp add: add_nonneg_eq_0_iff)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   625
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   626
lemma sum_power2_le_zero_iff:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   627
  "x\<^sup>2 + y\<^sup>2 \<le> 0 \<longleftrightarrow> x = 0 \<and> y = 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   628
  by (simp add: le_less sum_power2_eq_zero_iff not_sum_power2_lt_zero)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   629
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   630
lemma sum_power2_gt_zero_iff:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   631
  "0 < x\<^sup>2 + y\<^sup>2 \<longleftrightarrow> x \<noteq> 0 \<or> y \<noteq> 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   632
  unfolding not_le [symmetric] by (simp add: sum_power2_le_zero_iff)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   633
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   634
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   635
29978
33df3c4eb629 generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents: 29608
diff changeset
   636
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   637
subsection {* Miscellaneous rules *}
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   638
55718
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 55096
diff changeset
   639
lemma self_le_power:
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 55096
diff changeset
   640
  fixes x::"'a::linordered_semidom" 
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 55096
diff changeset
   641
  shows "1 \<le> x \<Longrightarrow> 0 < n \<Longrightarrow> x \<le> x ^ n"
55811
aa1acc25126b load Metis a little later
traytel
parents: 55718
diff changeset
   642
  using power_increasing[of 1 n x] power_one_right[of x] by auto
55718
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 55096
diff changeset
   643
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   644
lemma power_eq_if: "p ^ m = (if m=0 then 1 else p * (p ^ (m - 1)))"
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   645
  unfolding One_nat_def by (cases m) simp_all
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   646
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   647
lemma (in comm_semiring_1) power2_sum:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   648
  "(x + y)\<^sup>2 = x\<^sup>2 + y\<^sup>2 + 2 * x * y"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   649
  by (simp add: algebra_simps power2_eq_square mult_2_right)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   650
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   651
lemma (in comm_ring_1) power2_diff:
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   652
  "(x - y)\<^sup>2 = x\<^sup>2 + y\<^sup>2 - 2 * x * y"
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   653
  by (simp add: algebra_simps power2_eq_square mult_2_right)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   654
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   655
lemma power_0_Suc [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   656
  "(0::'a::{power, semiring_0}) ^ Suc n = 0"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   657
  by simp
30313
b2441b0c8d38 added lemmas
nipkow
parents: 30273
diff changeset
   658
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   659
text{*It looks plausible as a simprule, but its effect can be strange.*}
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   660
lemma power_0_left:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   661
  "0 ^ n = (if n = 0 then 1 else (0::'a::{power, semiring_0}))"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   662
  by (induct n) simp_all
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   663
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   664
lemma (in field) power_diff:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   665
  assumes nz: "a \<noteq> 0"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   666
  shows "n \<le> m \<Longrightarrow> a ^ (m - n) = a ^ m / a ^ n"
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   667
  by (induct m n rule: diff_induct) (simp_all add: nz field_power_not_zero)
30313
b2441b0c8d38 added lemmas
nipkow
parents: 30273
diff changeset
   668
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   669
text{*Perhaps these should be simprules.*}
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   670
lemma power_inverse:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   671
  fixes a :: "'a::division_ring_inverse_zero"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   672
  shows "inverse (a ^ n) = inverse a ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   673
apply (cases "a = 0")
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   674
apply (simp add: power_0_left)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   675
apply (simp add: nonzero_power_inverse)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   676
done (* TODO: reorient or rename to inverse_power *)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   677
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   678
lemma power_one_over:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   679
  "1 / (a::'a::{field_inverse_zero, power}) ^ n =  (1 / a) ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   680
  by (simp add: divide_inverse) (rule power_inverse)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   681
56481
47500d0881f9 add divide_simps
hoelzl
parents: 56480
diff changeset
   682
lemma power_divide [field_simps, divide_simps]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
   683
  "(a / b) ^ n = (a::'a::field_inverse_zero) ^ n / b ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   684
apply (cases "b = 0")
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   685
apply (simp add: power_0_left)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   686
apply (rule nonzero_power_divide)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   687
apply assumption
30313
b2441b0c8d38 added lemmas
nipkow
parents: 30273
diff changeset
   688
done
b2441b0c8d38 added lemmas
nipkow
parents: 30273
diff changeset
   689
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   690
text {* Simprules for comparisons where common factors can be cancelled. *}
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   691
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   692
lemmas zero_compare_simps =
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   693
    add_strict_increasing add_strict_increasing2 add_increasing
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   694
    zero_le_mult_iff zero_le_divide_iff 
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   695
    zero_less_mult_iff zero_less_divide_iff 
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   696
    mult_le_0_iff divide_le_0_iff 
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   697
    mult_less_0_iff divide_less_0_iff 
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   698
    zero_le_power2 power2_less_0
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   699
30313
b2441b0c8d38 added lemmas
nipkow
parents: 30273
diff changeset
   700
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
   701
subsection {* Exponentiation for the Natural Numbers *}
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   702
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   703
lemma nat_one_le_power [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   704
  "Suc 0 \<le> i \<Longrightarrow> Suc 0 \<le> i ^ n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   705
  by (rule one_le_power [of i n, unfolded One_nat_def])
23305
8ae6f7b0903b add lemma of_nat_power
huffman
parents: 23183
diff changeset
   706
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   707
lemma nat_zero_less_power_iff [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   708
  "x ^ n > 0 \<longleftrightarrow> x > (0::nat) \<or> n = 0"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   709
  by (induct n) auto
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   710
30056
0a35bee25c20 added lemmas
nipkow
parents: 29978
diff changeset
   711
lemma nat_power_eq_Suc_0_iff [simp]: 
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   712
  "x ^ m = Suc 0 \<longleftrightarrow> m = 0 \<or> x = Suc 0"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   713
  by (induct m) auto
30056
0a35bee25c20 added lemmas
nipkow
parents: 29978
diff changeset
   714
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   715
lemma power_Suc_0 [simp]:
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   716
  "Suc 0 ^ n = Suc 0"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   717
  by simp
30056
0a35bee25c20 added lemmas
nipkow
parents: 29978
diff changeset
   718
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   719
text{*Valid for the naturals, but what if @{text"0<i<1"}?
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   720
Premises cannot be weakened: consider the case where @{term "i=0"},
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   721
@{term "m=1"} and @{term "n=0"}.*}
21413
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   722
lemma nat_power_less_imp_less:
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   723
  assumes nonneg: "0 < (i\<Colon>nat)"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   724
  assumes less: "i ^ m < i ^ n"
21413
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   725
  shows "m < n"
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   726
proof (cases "i = 1")
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   727
  case True with less power_one [where 'a = nat] show ?thesis by simp
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   728
next
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   729
  case False with nonneg have "1 < i" by auto
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   730
  from power_strict_increasing_iff [OF this] less show ?thesis ..
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   731
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   732
33274
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   733
lemma power_dvd_imp_le:
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   734
  "i ^ m dvd i ^ n \<Longrightarrow> (1::nat) < i \<Longrightarrow> m \<le> n"
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   735
  apply (rule power_le_imp_le_exp, assumption)
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   736
  apply (erule dvd_imp_le, simp)
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   737
  done
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   738
51263
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   739
lemma power2_nat_le_eq_le:
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   740
  fixes m n :: nat
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   741
  shows "m\<^sup>2 \<le> n\<^sup>2 \<longleftrightarrow> m \<le> n"
51263
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   742
  by (auto intro: power2_le_imp_le power_mono)
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   743
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   744
lemma power2_nat_le_imp_le:
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   745
  fixes m n :: nat
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   746
  assumes "m\<^sup>2 \<le> n"
51263
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   747
  shows "m \<le> n"
54249
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   748
proof (cases m)
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   749
  case 0 then show ?thesis by simp
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   750
next
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   751
  case (Suc k)
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   752
  show ?thesis
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   753
  proof (rule ccontr)
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   754
    assume "\<not> m \<le> n"
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   755
    then have "n < m" by simp
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   756
    with assms Suc show False
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   757
      by (auto simp add: algebra_simps) (simp add: power2_eq_square)
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   758
  qed
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   759
qed
51263
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   760
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   761
subsubsection {* Cardinality of the Powerset *}
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   762
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   763
lemma card_UNIV_bool [simp]: "card (UNIV :: bool set) = 2"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   764
  unfolding UNIV_bool by simp
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   765
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   766
lemma card_Pow: "finite A \<Longrightarrow> card (Pow A) = 2 ^ card A"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   767
proof (induct rule: finite_induct)
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   768
  case empty 
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   769
    show ?case by auto
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   770
next
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   771
  case (insert x A)
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   772
  then have "inj_on (insert x) (Pow A)" 
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   773
    unfolding inj_on_def by (blast elim!: equalityE)
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   774
  then have "card (Pow A) + card (insert x ` Pow A) = 2 * 2 ^ card A" 
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   775
    by (simp add: mult_2 card_image Pow_insert insert.hyps)
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   776
  then show ?case using insert
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   777
    apply (simp add: Pow_insert)
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   778
    apply (subst card_Un_disjoint, auto)
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   779
    done
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   780
qed
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   781
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   782
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   783
subsubsection {* Generalized sum over a set *}
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   784
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   785
lemma setsum_zero_power [simp]:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   786
  fixes c :: "nat \<Rightarrow> 'a::division_ring"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   787
  shows "(\<Sum>i\<in>A. c i * 0^i) = (if finite A \<and> 0 \<in> A then c 0 else 0)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   788
apply (cases "finite A")
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   789
  by (induction A rule: finite_induct) auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   790
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   791
lemma setsum_zero_power' [simp]:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   792
  fixes c :: "nat \<Rightarrow> 'a::field"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   793
  shows "(\<Sum>i\<in>A. c i * 0^i / d i) = (if finite A \<and> 0 \<in> A then c 0 / d 0 else 0)"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   794
  using setsum_zero_power [of "\<lambda>i. c i / d i" A]
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   795
  by auto
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   796
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   797
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   798
subsubsection {* Generalized product over a set *}
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   799
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   800
lemma setprod_constant: "finite A ==> (\<Prod>x\<in> A. (y::'a::{comm_monoid_mult})) = y^(card A)"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   801
apply (erule finite_induct)
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   802
apply auto
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   803
done
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   804
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   805
lemma setprod_power_distrib:
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   806
  fixes f :: "'a \<Rightarrow> 'b::comm_semiring_1"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   807
  shows "setprod f A ^ n = setprod (\<lambda>x. (f x) ^ n) A"
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   808
proof (cases "finite A") 
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   809
  case True then show ?thesis 
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   810
    by (induct A rule: finite_induct) (auto simp add: power_mult_distrib)
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   811
next
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   812
  case False then show ?thesis 
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   813
    by simp
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   814
qed
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   815
58437
8d124c73c37a added lemmas
haftmann
parents: 58410
diff changeset
   816
lemma power_setsum:
8d124c73c37a added lemmas
haftmann
parents: 58410
diff changeset
   817
  "c ^ (\<Sum>a\<in>A. f a) = (\<Prod>a\<in>A. c ^ f a)"
8d124c73c37a added lemmas
haftmann
parents: 58410
diff changeset
   818
  by (induct A rule: infinite_finite_induct) (simp_all add: power_add)
8d124c73c37a added lemmas
haftmann
parents: 58410
diff changeset
   819
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   820
lemma setprod_gen_delta:
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   821
  assumes fS: "finite S"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   822
  shows "setprod (\<lambda>k. if k=a then b k else c) S = (if a \<in> S then (b a ::'a::comm_monoid_mult) * c^ (card S - 1) else c^ card S)"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   823
proof-
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   824
  let ?f = "(\<lambda>k. if k=a then b k else c)"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   825
  {assume a: "a \<notin> S"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   826
    hence "\<forall> k\<in> S. ?f k = c" by simp
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   827
    hence ?thesis  using a setprod_constant[OF fS, of c] by simp }
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   828
  moreover 
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   829
  {assume a: "a \<in> S"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   830
    let ?A = "S - {a}"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   831
    let ?B = "{a}"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   832
    have eq: "S = ?A \<union> ?B" using a by blast 
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   833
    have dj: "?A \<inter> ?B = {}" by simp
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   834
    from fS have fAB: "finite ?A" "finite ?B" by auto  
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   835
    have fA0:"setprod ?f ?A = setprod (\<lambda>i. c) ?A"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   836
      apply (rule setprod.cong) by auto
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   837
    have cA: "card ?A = card S - 1" using fS a by auto
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   838
    have fA1: "setprod ?f ?A = c ^ card ?A"  unfolding fA0 apply (rule setprod_constant) using fS by auto
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   839
    have "setprod ?f ?A * setprod ?f ?B = setprod ?f S"
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   840
      using setprod.union_disjoint[OF fAB dj, of ?f, unfolded eq[symmetric]]
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   841
      by simp
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   842
    then have ?thesis using a cA
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   843
      by (simp add: fA1 field_simps cong add: setprod.cong cong del: if_weak_cong)}
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   844
  ultimately show ?thesis by blast
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   845
qed
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   846
31155
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   847
subsection {* Code generator tweak *}
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   848
45231
d85a2fdc586c replacing code_inline by code_unfold, removing obsolete code_unfold, code_inline del now that the ancient code generator is removed
bulwahn
parents: 41550
diff changeset
   849
lemma power_power_power [code]:
31155
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   850
  "power = power.power (1::'a::{power}) (op *)"
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   851
  unfolding power_def power.power_def ..
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   852
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   853
declare power.power.simps [code]
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   854
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51263
diff changeset
   855
code_identifier
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51263
diff changeset
   856
  code_module Power \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33274
diff changeset
   857
3390
0c7625196d95 New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff changeset
   858
end
49824
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
   859