src/HOL/Power.thy
author paulson <lp15@cam.ac.uk>
Mon, 01 Apr 2019 17:02:43 +0100
changeset 70019 095dce9892e8
parent 69791 195aeee8b30a
child 70331 caa2bbf8475d
permissions -rw-r--r--
A few results in Algebra, and bits for Analysis
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
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
     6
section \<open>Exponentiation\<close>
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
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
     9
  imports Num
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
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
    12
subsection \<open>Powers for Arbitrary Monoids\<close>
30960
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
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61944
diff changeset
    17
primrec power :: "'a \<Rightarrow> nat \<Rightarrow> 'a"  (infixr "^" 80)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    18
  where
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    19
    power_0: "a ^ 0 = 1"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    20
  | 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
    21
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    22
notation (latex output)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    23
  power ("(_\<^bsup>_\<^esup>)" [1000] 1000)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    24
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
    25
text \<open>Special syntax for squares.\<close>
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61944
diff changeset
    26
abbreviation power2 :: "'a \<Rightarrow> 'a"  ("(_\<^sup>2)" [1000] 999)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61944
diff changeset
    27
  where "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
    28
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30730
diff changeset
    29
end
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    30
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    31
context monoid_mult
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    32
begin
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    33
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
    34
subclass power .
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    35
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    36
lemma power_one [simp]: "1 ^ n = 1"
30273
ecd6f0ca62ea declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents: 30242
diff changeset
    37
  by (induct n) simp_all
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    38
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    39
lemma power_one_right [simp]: "a ^ 1 = a"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    40
  by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
    41
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    42
lemma power_Suc0_right [simp]: "a ^ Suc 0 = a"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59009
diff changeset
    43
  by simp
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59009
diff changeset
    44
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    45
lemma power_commutes: "a ^ n * a = a * a ^ n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
    46
  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
    47
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    48
lemma power_Suc2: "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
    49
  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
    50
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    51
lemma power_add: "a ^ (m + n) = a ^ m * a ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
    52
  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
    53
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    54
lemma power_mult: "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
    55
  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
    56
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
    57
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
    58
  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
    59
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
    60
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
    61
  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
    62
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    63
lemma power_even_eq: "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
    64
  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
    65
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    66
lemma power_odd_eq: "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
    67
  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
    68
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    69
lemma power_numeral_even: "z ^ numeral (Num.Bit0 w) = (let w = z ^ (numeral w) in w * w)"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    70
  by (simp only: numeral_Bit0 power_add Let_def)
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    71
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    72
lemma power_numeral_odd: "z ^ numeral (Num.Bit1 w) = (let w = z ^ (numeral w) in z * w * w)"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    73
  by (simp only: numeral_Bit1 One_nat_def add_Suc_right add_0_right
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    74
      power_Suc power_add Let_def mult.assoc)
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
    75
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    76
lemma funpow_times_power: "(times x ^^ f x) = times (x ^ f x)"
49824
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    77
proof (induct "f x" arbitrary: f)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    78
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    79
  then show ?case by (simp add: fun_eq_iff)
49824
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    80
next
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    81
  case (Suc n)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62481
diff changeset
    82
  define g where "g x = f x - 1" for x
49824
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    83
  with Suc have "n = g x" by simp
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    84
  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
    85
  moreover from Suc g_def have "f x = g x + 1" by simp
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    86
  ultimately show ?case
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    87
    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
    88
qed
c26665a197dc msetprod based directly on Multiset.fold;
haftmann
parents: 47255
diff changeset
    89
58656
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
    90
lemma power_commuting_commutes:
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
    91
  assumes "x * y = y * x"
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
    92
  shows "x ^ n * y = y * x ^n"
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
    93
proof (induct n)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    94
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    95
  then show ?case by simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
    96
next
58656
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
    97
  case (Suc n)
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
    98
  have "x ^ Suc n * y = x ^ n * y * x"
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
    99
    by (subst power_Suc2) (simp add: assms ac_simps)
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   100
  also have "\<dots> = y * x ^ Suc n"
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   101
    by (simp only: Suc power_Suc2) (simp add: ac_simps)
58656
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   102
  finally show ?case .
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   103
qed
58656
7f14d5d9b933 relaxed class constraints for exp
immler
parents: 58437
diff changeset
   104
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   105
lemma power_minus_mult: "0 < n \<Longrightarrow> a ^ (n - 1) * a = a ^ n"
63648
f9f3006a5579 "split add" -> "split"
nipkow
parents: 63417
diff changeset
   106
  by (simp add: power_commutes split: nat_diff_split)
62347
2230b7047376 generalized some lemmas;
haftmann
parents: 62083
diff changeset
   107
69791
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   108
lemma left_right_inverse_power:
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   109
  assumes "x * y = 1"
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   110
  shows   "x ^ n * y ^ n = 1"
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   111
proof (induct n)
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   112
  case (Suc n)
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   113
  moreover have "x ^ Suc n * y ^ Suc n = x^n * (x * y) * y^n"
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   114
    by (simp add: power_Suc2[symmetric] mult.assoc[symmetric])
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   115
  ultimately show ?case by (simp add: assms)
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   116
qed simp
195aeee8b30a Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
Manuel Eberl <eberlm@in.tum.de>
parents: 69700
diff changeset
   117
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   118
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   119
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   120
context comm_monoid_mult
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   121
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   122
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   123
lemma power_mult_distrib [field_simps]: "(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
   124
  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
   125
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   126
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   127
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   128
text \<open>Extract constant factors from powers.\<close>
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59009
diff changeset
   129
declare power_mult_distrib [where a = "numeral w" for w, simp]
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59009
diff changeset
   130
declare power_mult_distrib [where b = "numeral w" for w, simp]
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59009
diff changeset
   131
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   132
lemma power_add_numeral [simp]: "a^numeral m * a^numeral n = a^numeral (m + n)"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   133
  for a :: "'a::monoid_mult"
60155
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   134
  by (simp add: power_add [symmetric])
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   135
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   136
lemma power_add_numeral2 [simp]: "a^numeral m * (a^numeral n * b) = a^numeral (m + n) * b"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   137
  for a :: "'a::monoid_mult"
60155
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   138
  by (simp add: mult.assoc [symmetric])
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   139
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   140
lemma power_mult_numeral [simp]: "(a^numeral m)^numeral n = a^numeral (m * n)"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   141
  for a :: "'a::monoid_mult"
60155
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   142
  by (simp only: numeral_mult power_mult)
91477b3a2d6b Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   143
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   144
context semiring_numeral
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   145
begin
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   146
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   147
lemma numeral_sqr: "numeral (Num.sqr k) = numeral k * numeral k"
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   148
  by (simp only: sqr_conv_mult numeral_mult)
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   149
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   150
lemma numeral_pow: "numeral (Num.pow k l) = numeral k ^ numeral l"
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   151
  by (induct l)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   152
    (simp_all only: numeral_class.numeral.simps pow.simps
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   153
      numeral_sqr numeral_mult power_add power_one_right)
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   154
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   155
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
   156
  by (rule numeral_pow [symmetric])
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   157
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   158
end
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   159
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   160
context semiring_1
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   161
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   162
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   163
lemma of_nat_power [simp]: "of_nat (m ^ n) = of_nat m ^ n"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63040
diff changeset
   164
  by (induct n) simp_all
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   165
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   166
lemma zero_power: "0 < n \<Longrightarrow> 0 ^ n = 0"
59009
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 58889
diff changeset
   167
  by (cases n) simp_all
348561aa3869 generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents: 58889
diff changeset
   168
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   169
lemma power_zero_numeral [simp]: "0 ^ numeral k = 0"
47209
4893907fe872 add constant pred_numeral k = numeral k - (1::nat);
huffman
parents: 47192
diff changeset
   170
  by (simp add: numeral_eq_Suc)
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   171
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   172
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
   173
  by (rule power_zero_numeral)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   174
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   175
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
   176
  by (rule power_one)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   177
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   178
lemma power_0_Suc [simp]: "0 ^ Suc n = 0"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   179
  by simp
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   180
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   181
text \<open>It looks plausible as a simprule, but its effect can be strange.\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   182
lemma power_0_left: "0 ^ n = (if n = 0 then 1 else 0)"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   183
  by (cases n) simp_all
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   184
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   185
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   186
66912
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   187
context semiring_char_0 begin
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   188
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   189
lemma numeral_power_eq_of_nat_cancel_iff [simp]:
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   190
  "numeral x ^ n = of_nat y \<longleftrightarrow> numeral x ^ n = y"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   191
  using of_nat_eq_iff by fastforce
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   192
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   193
lemma real_of_nat_eq_numeral_power_cancel_iff [simp]:
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   194
  "of_nat y = numeral x ^ n \<longleftrightarrow> y = numeral x ^ n"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   195
  using numeral_power_eq_of_nat_cancel_iff [of x n y] by (metis (mono_tags))
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   196
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   197
lemma of_nat_eq_of_nat_power_cancel_iff[simp]: "(of_nat b) ^ w = of_nat x \<longleftrightarrow> b ^ w = x"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   198
  by (metis of_nat_power of_nat_eq_iff)
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   199
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   200
lemma of_nat_power_eq_of_nat_cancel_iff[simp]: "of_nat x = (of_nat b) ^ w \<longleftrightarrow> x = b ^ w"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   201
  by (metis of_nat_eq_of_nat_power_cancel_iff)
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   202
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   203
end
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   204
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   205
context comm_semiring_1
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   206
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   207
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   208
text \<open>The divides relation.\<close>
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   209
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   210
lemma le_imp_power_dvd:
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   211
  assumes "m \<le> n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   212
  shows "a ^ m dvd a ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   213
proof
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   214
  from assms have "a ^ n = a ^ (m + (n - m))" by simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   215
  also have "\<dots> = a ^ m * a ^ (n - m)" by (rule power_add)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   216
  finally show "a ^ n = a ^ m * a ^ (n - m)" .
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   217
qed
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   218
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   219
lemma power_le_dvd: "a ^ n dvd b \<Longrightarrow> m \<le> n \<Longrightarrow> a ^ m dvd b"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   220
  by (rule dvd_trans [OF le_imp_power_dvd])
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   221
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   222
lemma dvd_power_same: "x dvd y \<Longrightarrow> x ^ n dvd y ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   223
  by (induct n) (auto simp add: mult_dvd_mono)
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   224
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   225
lemma dvd_power_le: "x dvd y \<Longrightarrow> m \<ge> n \<Longrightarrow> x ^ n dvd y ^ m"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   226
  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
   227
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   228
lemma dvd_power [simp]:
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   229
  fixes n :: nat
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   230
  assumes "n > 0 \<or> x = 1"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   231
  shows "x dvd (x ^ n)"
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   232
  using assms
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   233
proof
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   234
  assume "0 < n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   235
  then have "x ^ n = x ^ Suc (n - 1)" by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   236
  then show "x dvd (x ^ n)" by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   237
next
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   238
  assume "x = 1"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   239
  then show "x dvd (x ^ n)" by simp
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   240
qed
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   241
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   242
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   243
62481
b5d8e57826df tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents: 62366
diff changeset
   244
context semiring_1_no_zero_divisors
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   245
begin
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   246
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   247
subclass power .
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   248
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   249
lemma power_eq_0_iff [simp]: "a ^ n = 0 \<longleftrightarrow> a = 0 \<and> n > 0"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   250
  by (induct n) auto
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   251
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   252
lemma power_not_zero: "a \<noteq> 0 \<Longrightarrow> a ^ n \<noteq> 0"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   253
  by (induct n) auto
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   254
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   255
lemma zero_eq_power2 [simp]: "a\<^sup>2 = 0 \<longleftrightarrow> a = 0"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   256
  unfolding power2_eq_square by simp
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   257
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   258
end
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   259
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   260
context ring_1
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   261
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   262
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   263
lemma power_minus: "(- a) ^ n = (- 1) ^ n * a ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   264
proof (induct n)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   265
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   266
  show ?case by simp
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   267
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   268
  case (Suc n)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   269
  then show ?case
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57418
diff changeset
   270
    by (simp del: power_Suc add: power_Suc2 mult.assoc)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   271
qed
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   272
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61378
diff changeset
   273
lemma power_minus': "NO_MATCH 1 x \<Longrightarrow> (-x) ^ n = (-1)^n * x ^ n"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61378
diff changeset
   274
  by (rule power_minus)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61378
diff changeset
   275
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   276
lemma power_minus_Bit0: "(- x) ^ numeral (Num.Bit0 k) = x ^ numeral (Num.Bit0 k)"
47191
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   277
  by (induct k, simp_all only: numeral_class.numeral.simps power_add
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   278
    power_one_right mult_minus_left mult_minus_right minus_minus)
ebd8c46d156b bootstrap Num.thy before Power.thy;
huffman
parents: 45231
diff changeset
   279
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   280
lemma power_minus_Bit1: "(- 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
   281
  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
   282
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   283
lemma power2_minus [simp]: "(- a)\<^sup>2 = a\<^sup>2"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   284
  by (fact power_minus_Bit0)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   285
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   286
lemma power_minus1_even [simp]: "(- 1) ^ (2*n) = 1"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   287
proof (induct n)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   288
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   289
  show ?case by simp
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   290
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   291
  case (Suc n)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   292
  then show ?case by (simp add: 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
   293
qed
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   294
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   295
lemma power_minus1_odd: "(- 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
   296
  by simp
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
   297
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   298
lemma power_minus_even [simp]: "(-a) ^ (2*n) = a ^ (2*n)"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   299
  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
   300
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   301
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   302
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   303
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
   304
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   305
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   306
lemma power2_eq_1_iff: "a\<^sup>2 = 1 \<longleftrightarrow> a = 1 \<or> a = - 1"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   307
  using square_eq_1_iff [of a] by (simp add: power2_eq_square)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   308
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   309
end
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
context idom
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   312
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   313
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
   314
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
   315
  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
   316
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   317
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   318
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   319
context semidom_divide
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   320
begin
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   321
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   322
lemma power_diff:
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   323
  "a ^ (m - n) = (a ^ m) div (a ^ n)" if "a \<noteq> 0" and "n \<le> m"
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   324
proof -
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   325
  define q where "q = m - n"
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   326
  with \<open>n \<le> m\<close> have "m = q + n" by simp
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   327
  with \<open>a \<noteq> 0\<close> q_def show ?thesis
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   328
    by (simp add: power_add)
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   329
qed
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   330
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   331
end
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66912
diff changeset
   332
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   333
context algebraic_semidom
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   334
begin
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   335
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   336
lemma div_power: "b dvd a \<Longrightarrow> (a div b) ^ n = a ^ n div b ^ n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   337
  by (induct n) (simp_all add: div_mult_div_if_dvd dvd_power_same)
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   338
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   339
lemma is_unit_power_iff: "is_unit (a ^ n) \<longleftrightarrow> is_unit a \<or> n = 0"
62366
95c6cf433c91 more theorems
haftmann
parents: 62347
diff changeset
   340
  by (induct n) (auto simp add: is_unit_mult_iff)
95c6cf433c91 more theorems
haftmann
parents: 62347
diff changeset
   341
63924
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   342
lemma dvd_power_iff:
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   343
  assumes "x \<noteq> 0"
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   344
  shows   "x ^ m dvd x ^ n \<longleftrightarrow> is_unit x \<or> m \<le> n"
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   345
proof
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   346
  assume *: "x ^ m dvd x ^ n"
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   347
  {
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   348
    assume "m > n"
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   349
    note *
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   350
    also have "x ^ n = x ^ n * 1" by simp
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   351
    also from \<open>m > n\<close> have "m = n + (m - n)" by simp
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   352
    also have "x ^ \<dots> = x ^ n * x ^ (m - n)" by (rule power_add)
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   353
    finally have "x ^ (m - n) dvd 1"
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   354
      by (subst (asm) dvd_times_left_cancel_iff) (insert assms, simp_all)
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   355
    with \<open>m > n\<close> have "is_unit x" by (simp add: is_unit_power_iff)
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   356
  }
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   357
  thus "is_unit x \<or> m \<le> n" by force
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   358
qed (auto intro: unit_imp_dvd simp: is_unit_power_iff le_imp_power_dvd)
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   359
f91766530e13 more generic algebraic lemmas
haftmann
parents: 63654
diff changeset
   360
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   361
end
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   362
60685
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   363
context normalization_semidom
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   364
begin
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   365
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   366
lemma normalize_power: "normalize (a ^ n) = normalize a ^ n"
60685
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   367
  by (induct n) (simp_all add: normalize_mult)
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   368
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   369
lemma unit_factor_power: "unit_factor (a ^ n) = unit_factor a ^ n"
60685
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   370
  by (induct n) (simp_all add: unit_factor_mult)
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   371
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   372
end
cb21b7022b00 moved normalization and unit_factor into Main HOL corpus
haftmann
parents: 60155
diff changeset
   373
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   374
context division_ring
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   375
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   376
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   377
text \<open>Perhaps these should be simprules.\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   378
lemma power_inverse [field_simps, divide_simps]: "inverse a ^ n = inverse (a ^ n)"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   379
proof (cases "a = 0")
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   380
  case True
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   381
  then show ?thesis by (simp add: power_0_left)
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   382
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   383
  case False
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   384
  then have "inverse (a ^ n) = inverse a ^ n"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   385
    by (induct n) (simp_all add: nonzero_inverse_mult_distrib power_commutes)
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   386
  then show ?thesis by simp
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   387
qed
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   388
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   389
lemma power_one_over [field_simps, divide_simps]: "(1 / a) ^ n = 1 / a ^ n"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   390
  using power_inverse [of a] by (simp add: divide_inverse)
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   391
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
   392
end
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   393
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   394
context field
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   395
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   396
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   397
lemma power_divide [field_simps, divide_simps]: "(a / b) ^ n = a ^ n / b ^ n"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   398
  by (induct n) simp_all
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   399
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   400
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   401
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   402
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
   403
subsection \<open>Exponentiation on ordered types\<close>
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   404
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 33364
diff changeset
   405
context linordered_semidom
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   406
begin
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   407
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   408
lemma zero_less_power [simp]: "0 < a \<Longrightarrow> 0 < a ^ n"
56544
b60d5d119489 made mult_pos_pos a simp rule
nipkow
parents: 56536
diff changeset
   409
  by (induct n) simp_all
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   410
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   411
lemma zero_le_power [simp]: "0 \<le> a \<Longrightarrow> 0 \<le> a ^ n"
56536
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 56481
diff changeset
   412
  by (induct n) simp_all
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   413
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   414
lemma power_mono: "a \<le> b \<Longrightarrow> 0 \<le> a \<Longrightarrow> a ^ n \<le> b ^ n"
47241
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   415
  by (induct n) (auto intro: mult_mono order_trans [of 0 a b])
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   416
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   417
lemma one_le_power [simp]: "1 \<le> a \<Longrightarrow> 1 \<le> a ^ n"
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   418
  using power_mono [of 1 a n] by simp
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   419
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   420
lemma power_le_one: "0 \<le> a \<Longrightarrow> a \<le> 1 \<Longrightarrow> a ^ n \<le> 1"
47241
243b33052e34 add lemma power_le_one
huffman
parents: 47220
diff changeset
   421
  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
   422
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   423
lemma power_gt1_lemma:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   424
  assumes gt1: "1 < a"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   425
  shows "1 < a * a ^ n"
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   426
proof -
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   427
  from gt1 have "0 \<le> a"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   428
    by (fact order_trans [OF zero_le_one less_imp_le])
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   429
  from gt1 have "1 * 1 < a * 1" by simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   430
  also from gt1 have "\<dots> \<le> a * a ^ n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   431
    by (simp only: mult_mono \<open>0 \<le> a\<close> one_le_power order_less_imp_le zero_le_one order_refl)
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   432
  finally show ?thesis by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   433
qed
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   434
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   435
lemma power_gt1: "1 < a \<Longrightarrow> 1 < a ^ Suc n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   436
  by (simp add: power_gt1_lemma)
24376
e403ab5c9415 add lemma one_less_power
huffman
parents: 24286
diff changeset
   437
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   438
lemma one_less_power [simp]: "1 < a \<Longrightarrow> 0 < n \<Longrightarrow> 1 < a ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   439
  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
   440
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   441
lemma power_le_imp_le_exp:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   442
  assumes gt1: "1 < a"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   443
  shows "a ^ m \<le> a ^ n \<Longrightarrow> m \<le> n"
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   444
proof (induct m arbitrary: n)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   445
  case 0
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   446
  show ?case by simp
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   447
next
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   448
  case (Suc m)
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   449
  show ?case
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   450
  proof (cases n)
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   451
    case 0
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   452
    with Suc have "a * a ^ m \<le> 1" by simp
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   453
    with gt1 show ?thesis
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   454
      by (force simp only: power_gt1_lemma not_less [symmetric])
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   455
  next
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   456
    case (Suc n)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   457
    with Suc.prems Suc.hyps show ?thesis
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   458
      by (force dest: mult_left_le_imp_le simp add: less_trans [OF zero_less_one gt1])
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   459
  qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   460
qed
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   461
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   462
lemma of_nat_zero_less_power_iff [simp]: "of_nat x ^ n > 0 \<longleftrightarrow> x > 0 \<or> n = 0"
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
   463
  by (induct n) auto
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
   464
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   465
text \<open>Surely we can strengthen this? It holds for \<open>0<a<1\<close> too.\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   466
lemma power_inject_exp [simp]: "1 < a \<Longrightarrow> a ^ m = a ^ n \<longleftrightarrow> m = n"
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   467
  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
   468
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   469
text \<open>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68611
diff changeset
   470
  Can relax the first premise to \<^term>\<open>0<a\<close> in the case of the
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   471
  natural numbers.
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   472
\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   473
lemma power_less_imp_less_exp: "1 < a \<Longrightarrow> a ^ m < a ^ n \<Longrightarrow> m < n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   474
  by (simp add: order_less_le [of m n] less_le [of "a^m" "a^n"] power_le_imp_le_exp)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   475
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   476
lemma power_strict_mono [rule_format]: "a < b \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 < n \<longrightarrow> a ^ n < b ^ n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   477
  by (induct n) (auto simp: 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
   478
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61694
diff changeset
   479
text\<open>Lemma for \<open>power_strict_decreasing\<close>\<close>
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   480
lemma power_Suc_less: "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> a * a ^ n < a ^ n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   481
  by (induct n) (auto simp: mult_strict_left_mono)
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   482
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   483
lemma power_strict_decreasing [rule_format]: "n < N \<Longrightarrow> 0 < a \<Longrightarrow> a < 1 \<longrightarrow> a ^ N < a ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   484
proof (induct N)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   485
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   486
  then show ?case by simp
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   487
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   488
  case (Suc N)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   489
  then show ?case
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   490
    apply (auto simp add: power_Suc_less less_Suc_eq)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   491
    apply (subgoal_tac "a * a^N < 1 * a^n")
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   492
     apply simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   493
    apply (rule mult_strict_mono)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   494
       apply auto
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   495
    done
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   496
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   497
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   498
text \<open>Proof resembles that of \<open>power_strict_decreasing\<close>.\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   499
lemma power_decreasing: "n \<le> N \<Longrightarrow> 0 \<le> a \<Longrightarrow> a \<le> 1 \<Longrightarrow> a ^ N \<le> a ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   500
proof (induct N)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   501
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   502
  then show ?case by simp
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   503
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   504
  case (Suc N)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   505
  then show ?case
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   506
    apply (auto simp add: le_Suc_eq)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   507
    apply (subgoal_tac "a * a^N \<le> 1 * a^n")
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   508
     apply simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   509
    apply (rule mult_mono)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   510
       apply auto
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   511
    done
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   512
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   513
69700
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   514
lemma power_decreasing_iff [simp]: "\<lbrakk>0 < b; b < 1\<rbrakk> \<Longrightarrow> b ^ m \<le> b ^ n \<longleftrightarrow> n \<le> m"
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   515
  using power_strict_decreasing [of m n b]
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   516
  by (auto intro: power_decreasing ccontr)
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   517
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   518
lemma power_strict_decreasing_iff [simp]: "\<lbrakk>0 < b; b < 1\<rbrakk> \<Longrightarrow> b ^ m < b ^ n \<longleftrightarrow> n < m"
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   519
  using power_decreasing_iff [of b m n] unfolding le_less
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   520
  by (auto dest: power_strict_decreasing le_neq_implies_less)
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
   521
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   522
lemma power_Suc_less_one: "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> a ^ Suc n < 1"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   523
  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
   524
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   525
text \<open>Proof again resembles that of \<open>power_strict_decreasing\<close>.\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   526
lemma power_increasing: "n \<le> N \<Longrightarrow> 1 \<le> a \<Longrightarrow> a ^ n \<le> a ^ N"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   527
proof (induct N)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   528
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   529
  then show ?case by simp
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   530
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   531
  case (Suc N)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   532
  then show ?case
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   533
    apply (auto simp add: le_Suc_eq)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   534
    apply (subgoal_tac "1 * a^n \<le> a * a^N")
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   535
     apply simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   536
    apply (rule mult_mono)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   537
       apply (auto simp add: order_trans [OF zero_le_one])
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   538
    done
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   539
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   540
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   541
text \<open>Lemma for \<open>power_strict_increasing\<close>.\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   542
lemma power_less_power_Suc: "1 < a \<Longrightarrow> a ^ n < a * a ^ n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   543
  by (induct n) (auto simp: 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
   544
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   545
lemma power_strict_increasing: "n < N \<Longrightarrow> 1 < a \<Longrightarrow> a ^ n < a ^ N"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   546
proof (induct N)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   547
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   548
  then show ?case by simp
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   549
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   550
  case (Suc N)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   551
  then show ?case
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   552
    apply (auto simp add: power_less_power_Suc less_Suc_eq)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   553
    apply (subgoal_tac "1 * a^n < a * a^N")
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   554
     apply simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   555
    apply (rule mult_strict_mono)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   556
    apply (auto simp add: less_trans [OF zero_less_one] less_imp_le)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   557
    done
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   558
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   559
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   560
lemma power_increasing_iff [simp]: "1 < b \<Longrightarrow> b ^ x \<le> b ^ y \<longleftrightarrow> x \<le> y"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   561
  by (blast intro: power_le_imp_le_exp power_increasing less_imp_le)
15066
d2f2b908e0a4 two new results
paulson
parents: 15004
diff changeset
   562
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   563
lemma power_strict_increasing_iff [simp]: "1 < b \<Longrightarrow> b ^ x < b ^ y \<longleftrightarrow> x < y"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   564
  by (blast intro: power_less_imp_less_exp power_strict_increasing)
15066
d2f2b908e0a4 two new results
paulson
parents: 15004
diff changeset
   565
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   566
lemma power_le_imp_le_base:
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   567
  assumes le: "a ^ Suc n \<le> b ^ Suc n"
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   568
    and "0 \<le> b"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   569
  shows "a \<le> b"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   570
proof (rule ccontr)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   571
  assume "\<not> ?thesis"
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   572
  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
   573
  then have "b ^ Suc n < a ^ Suc n"
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   574
    by (simp only: assms(2) power_strict_mono)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   575
  with le show False
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   576
    by (simp add: linorder_not_less [symmetric])
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25062
diff changeset
   577
qed
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   578
22853
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   579
lemma power_less_imp_less_base:
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   580
  assumes less: "a ^ n < b ^ n"
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   581
  assumes nonneg: "0 \<le> b"
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   582
  shows "a < b"
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   583
proof (rule contrapos_pp [OF less])
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   584
  assume "\<not> ?thesis"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   585
  then have "b \<le> a" by (simp only: linorder_not_less)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   586
  from this nonneg have "b ^ n \<le> a ^ n" by (rule power_mono)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   587
  then show "\<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
   588
qed
7f000a385606 add lemma power_less_imp_less_base
huffman
parents: 22624
diff changeset
   589
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   590
lemma power_inject_base: "a ^ Suc n = b ^ Suc n \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> a = b"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   591
  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
   592
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   593
lemma power_eq_imp_eq_base: "a ^ n = b ^ n \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 < n \<Longrightarrow> a = b"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   594
  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
   595
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   596
lemma power_eq_iff_eq_base: "0 < n \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> a ^ n = b ^ n \<longleftrightarrow> a = b"
62347
2230b7047376 generalized some lemmas;
haftmann
parents: 62083
diff changeset
   597
  using power_eq_imp_eq_base [of a n b] by auto
2230b7047376 generalized some lemmas;
haftmann
parents: 62083
diff changeset
   598
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   599
lemma power2_le_imp_le: "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
   600
  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
   601
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   602
lemma power2_less_imp_less: "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
   603
  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
   604
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   605
lemma power2_eq_imp_eq: "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
   606
  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
   607
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   608
lemma power_Suc_le_self: "0 \<le> a \<Longrightarrow> a \<le> 1 \<Longrightarrow> a ^ Suc n \<le> a"
62347
2230b7047376 generalized some lemmas;
haftmann
parents: 62083
diff changeset
   609
  using power_decreasing [of 1 "Suc n" a] by simp
2230b7047376 generalized some lemmas;
haftmann
parents: 62083
diff changeset
   610
65057
799bbbb3a395 Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
paulson <lp15@cam.ac.uk>
parents: 64964
diff changeset
   611
lemma power2_eq_iff_nonneg [simp]:
799bbbb3a395 Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
paulson <lp15@cam.ac.uk>
parents: 64964
diff changeset
   612
  assumes "0 \<le> x" "0 \<le> y"
799bbbb3a395 Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
paulson <lp15@cam.ac.uk>
parents: 64964
diff changeset
   613
  shows "(x ^ 2 = y ^ 2) \<longleftrightarrow> x = y"
799bbbb3a395 Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
paulson <lp15@cam.ac.uk>
parents: 64964
diff changeset
   614
using assms power2_eq_imp_eq by blast
799bbbb3a395 Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
paulson <lp15@cam.ac.uk>
parents: 64964
diff changeset
   615
66912
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   616
lemma of_nat_less_numeral_power_cancel_iff[simp]:
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   617
  "of_nat x < numeral i ^ n \<longleftrightarrow> x < numeral i ^ n"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   618
  using of_nat_less_iff[of x "numeral i ^ n", unfolded of_nat_numeral of_nat_power] .
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   619
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   620
lemma of_nat_le_numeral_power_cancel_iff[simp]:
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   621
  "of_nat x \<le> numeral i ^ n \<longleftrightarrow> x \<le> numeral i ^ n"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   622
  using of_nat_le_iff[of x "numeral i ^ n", unfolded of_nat_numeral of_nat_power] .
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   623
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   624
lemma numeral_power_less_of_nat_cancel_iff[simp]:
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   625
  "numeral i ^ n < of_nat x \<longleftrightarrow> numeral i ^ n < x"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   626
  using of_nat_less_iff[of "numeral i ^ n" x, unfolded of_nat_numeral of_nat_power] .
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   627
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   628
lemma numeral_power_le_of_nat_cancel_iff[simp]:
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   629
  "numeral i ^ n \<le> of_nat x \<longleftrightarrow> numeral i ^ n \<le> x"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   630
  using of_nat_le_iff[of "numeral i ^ n" x, unfolded of_nat_numeral of_nat_power] .
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   631
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   632
lemma of_nat_le_of_nat_power_cancel_iff[simp]: "(of_nat b) ^ w \<le> of_nat x \<longleftrightarrow> b ^ w \<le> x"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   633
  by (metis of_nat_le_iff of_nat_power)
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   634
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   635
lemma of_nat_power_le_of_nat_cancel_iff[simp]: "of_nat x \<le> (of_nat b) ^ w \<longleftrightarrow> x \<le> b ^ w"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   636
  by (metis of_nat_le_iff of_nat_power)
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   637
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   638
lemma of_nat_less_of_nat_power_cancel_iff[simp]: "(of_nat b) ^ w < of_nat x \<longleftrightarrow> b ^ w < x"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   639
  by (metis of_nat_less_iff of_nat_power)
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   640
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   641
lemma of_nat_power_less_of_nat_cancel_iff[simp]: "of_nat x < (of_nat b) ^ w \<longleftrightarrow> x < b ^ w"
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   642
  by (metis of_nat_less_iff of_nat_power)
a99a7cbf0fb5 generalized lemmas cancelling real_of_int/real in (in)equalities with power; completed set of related simp rules; lemmas about floorlog/bitlen
immler
parents: 65057
diff changeset
   643
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   644
end
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   645
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   646
context linordered_ring_strict
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   647
begin
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   648
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   649
lemma sum_squares_eq_zero_iff: "x * x + y * y = 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
   650
  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
   651
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   652
lemma sum_squares_le_zero_iff: "x * x + y * y \<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
   653
  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
   654
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   655
lemma sum_squares_gt_zero_iff: "0 < x * x + y * y \<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
   656
  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
   657
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   658
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   659
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 33364
diff changeset
   660
context linordered_idom
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   661
begin
29978
33df3c4eb629 generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents: 29608
diff changeset
   662
64715
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   663
lemma zero_le_power2 [simp]: "0 \<le> a\<^sup>2"
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   664
  by (simp add: power2_eq_square)
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   665
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   666
lemma zero_less_power2 [simp]: "0 < a\<^sup>2 \<longleftrightarrow> a \<noteq> 0"
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   667
  by (force simp add: power2_eq_square zero_less_mult_iff linorder_neq_iff)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   668
64715
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   669
lemma power2_less_0 [simp]: "\<not> a\<^sup>2 < 0"
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   670
  by (force simp add: power2_eq_square mult_less_0_iff)
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   671
67226
ec32cdaab97b isabelle update_cartouches -c -t;
wenzelm
parents: 66936
diff changeset
   672
lemma power_abs: "\<bar>a ^ n\<bar> = \<bar>a\<bar> ^ n" \<comment> \<open>FIXME simp?\<close>
64715
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   673
  by (induct n) (simp_all add: abs_mult)
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   674
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   675
lemma power_sgn [simp]: "sgn (a ^ n) = sgn a ^ n"
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   676
  by (induct n) (simp_all add: sgn_mult)
64964
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   677
64715
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   678
lemma abs_power_minus [simp]: "\<bar>(- a) ^ n\<bar> = \<bar>a ^ n\<bar>"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35028
diff changeset
   679
  by (simp add: power_abs)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   680
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   681
lemma zero_less_power_abs_iff [simp]: "0 < \<bar>a\<bar> ^ n \<longleftrightarrow> a \<noteq> 0 \<or> n = 0"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   682
proof (induct n)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   683
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   684
  show ?case by simp
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   685
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   686
  case Suc
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   687
  then show ?case by (auto simp: 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
   688
qed
33df3c4eb629 generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents: 29608
diff changeset
   689
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   690
lemma zero_le_power_abs [simp]: "0 \<le> \<bar>a\<bar> ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   691
  by (rule zero_le_power [OF abs_ge_zero])
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   692
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   693
lemma power2_less_eq_zero_iff [simp]: "a\<^sup>2 \<le> 0 \<longleftrightarrow> a = 0"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   694
  by (simp add: le_less)
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   695
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   696
lemma abs_power2 [simp]: "\<bar>a\<^sup>2\<bar> = a\<^sup>2"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63040
diff changeset
   697
  by (simp add: power2_eq_square)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   698
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   699
lemma power2_abs [simp]: "\<bar>a\<bar>\<^sup>2 = a\<^sup>2"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63040
diff changeset
   700
  by (simp add: power2_eq_square)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   701
64715
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   702
lemma odd_power_less_zero: "a < 0 \<Longrightarrow> a ^ Suc (2 * n) < 0"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   703
proof (induct n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   704
  case 0
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   705
  then show ?case by simp
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   706
next
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   707
  case (Suc n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   708
  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
   709
    by (simp add: ac_simps power_add power2_eq_square)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   710
  then show ?case
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   711
    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
   712
qed
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   713
64715
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   714
lemma odd_0_le_power_imp_0_le: "0 \<le> a ^ Suc (2 * n) \<Longrightarrow> 0 \<le> a"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   715
  using odd_power_less_zero [of a n]
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   716
  by (force simp add: linorder_not_less [symmetric])
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   717
64715
33d5fa0ce6e5 more elementary rules about div / mod on int
haftmann
parents: 64065
diff changeset
   718
lemma zero_le_even_power'[simp]: "0 \<le> a ^ (2 * n)"
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   719
proof (induct n)
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   720
  case 0
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   721
  show ?case by simp
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   722
next
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   723
  case (Suc n)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   724
  have "a ^ (2 * Suc n) = (a*a) * a ^ (2*n)"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   725
    by (simp add: ac_simps power_add power2_eq_square)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   726
  then show ?case
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   727
    by (simp add: Suc zero_le_mult_iff)
47192
0c0501cb6da6 move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents: 47191
diff changeset
   728
qed
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   729
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   730
lemma sum_power2_ge_zero: "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
   731
  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
   732
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   733
lemma not_sum_power2_lt_zero: "\<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
   734
  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
   735
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   736
lemma sum_power2_eq_zero_iff: "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
   737
  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
   738
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   739
lemma sum_power2_le_zero_iff: "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
   740
  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
   741
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   742
lemma sum_power2_gt_zero_iff: "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
   743
  unfolding not_le [symmetric] by (simp add: sum_power2_le_zero_iff)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   744
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   745
lemma abs_le_square_iff: "\<bar>x\<bar> \<le> \<bar>y\<bar> \<longleftrightarrow> x\<^sup>2 \<le> y\<^sup>2"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   746
  (is "?lhs \<longleftrightarrow> ?rhs")
59865
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   747
proof
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   748
  assume ?lhs
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   749
  then have "\<bar>x\<bar>\<^sup>2 \<le> \<bar>y\<bar>\<^sup>2" by (rule power_mono) simp
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   750
  then show ?rhs by simp
59865
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   751
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   752
  assume ?rhs
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   753
  then show ?lhs
59865
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   754
    by (auto intro!: power2_le_imp_le [OF _ abs_ge_zero])
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   755
qed
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   756
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   757
lemma abs_square_le_1:"x\<^sup>2 \<le> 1 \<longleftrightarrow> \<bar>x\<bar> \<le> 1"
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   758
  using abs_le_square_iff [of x 1] by simp
59865
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   759
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   760
lemma abs_square_eq_1: "x\<^sup>2 = 1 \<longleftrightarrow> \<bar>x\<bar> = 1"
59865
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   761
  by (auto simp add: abs_if power2_eq_1_iff)
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
   762
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61799
diff changeset
   763
lemma abs_square_less_1: "x\<^sup>2 < 1 \<longleftrightarrow> \<bar>x\<bar> < 1"
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   764
  using  abs_square_eq_1 [of x] abs_square_le_1 [of x] by (auto simp add: le_less)
59865
8a20dd967385 rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   765
68611
4bc4b5c0ccfc de-applying, etc.
paulson <lp15@cam.ac.uk>
parents: 67226
diff changeset
   766
lemma square_le_1:
4bc4b5c0ccfc de-applying, etc.
paulson <lp15@cam.ac.uk>
parents: 67226
diff changeset
   767
  assumes "- 1 \<le> x" "x \<le> 1"
4bc4b5c0ccfc de-applying, etc.
paulson <lp15@cam.ac.uk>
parents: 67226
diff changeset
   768
  shows "x\<^sup>2 \<le> 1"
4bc4b5c0ccfc de-applying, etc.
paulson <lp15@cam.ac.uk>
parents: 67226
diff changeset
   769
    using assms
4bc4b5c0ccfc de-applying, etc.
paulson <lp15@cam.ac.uk>
parents: 67226
diff changeset
   770
    by (metis add.inverse_inverse linear mult_le_one neg_equal_0_iff_equal neg_le_iff_le power2_eq_square power_minus_Bit0)
4bc4b5c0ccfc de-applying, etc.
paulson <lp15@cam.ac.uk>
parents: 67226
diff changeset
   771
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   772
end
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   773
29978
33df3c4eb629 generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents: 29608
diff changeset
   774
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
   775
subsection \<open>Miscellaneous rules\<close>
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   776
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   777
lemma (in linordered_semidom) self_le_power: "1 \<le> a \<Longrightarrow> 0 < n \<Longrightarrow> a \<le> a ^ n"
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   778
  using power_increasing [of 1 n a] power_one_right [of a] by auto
55718
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 55096
diff changeset
   779
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   780
lemma (in power) power_eq_if: "p ^ m = (if m=0 then 1 else p * (p ^ (m - 1)))"
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   781
  unfolding One_nat_def by (cases m) simp_all
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   782
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   783
lemma (in comm_semiring_1) power2_sum: "(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
   784
  by (simp add: algebra_simps power2_eq_square mult_2_right)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   785
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   786
context comm_ring_1
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   787
begin
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   788
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   789
lemma power2_diff: "(x - y)\<^sup>2 = x\<^sup>2 + y\<^sup>2 - 2 * x * y"
58787
af9eb5e566dd eliminated redundancies;
haftmann
parents: 58656
diff changeset
   790
  by (simp add: algebra_simps power2_eq_square mult_2_right)
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   791
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   792
lemma power2_commute: "(x - y)\<^sup>2 = (y - x)\<^sup>2"
60974
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60867
diff changeset
   793
  by (simp add: algebra_simps power2_eq_square)
6a6f15d8fbc4 New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents: 60867
diff changeset
   794
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   795
lemma minus_power_mult_self: "(- a) ^ n * (- a) ^ n = a ^ (2 * n)"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   796
  by (simp add: power_mult_distrib [symmetric])
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   797
    (simp add: power2_eq_square [symmetric] power_mult [symmetric])
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   798
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   799
lemma minus_one_mult_self [simp]: "(- 1) ^ n * (- 1) ^ n = 1"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63040
diff changeset
   800
  using minus_power_mult_self [of 1 n] by simp
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63040
diff changeset
   801
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   802
lemma left_minus_one_mult_self [simp]: "(- 1) ^ n * ((- 1) ^ n * a) = a"
63417
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63040
diff changeset
   803
  by (simp add: mult.assoc [symmetric])
c184ec919c70 more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
haftmann
parents: 63040
diff changeset
   804
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   805
end
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   806
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
   807
text \<open>Simprules for comparisons where common factors can be cancelled.\<close>
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   808
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   809
lemmas zero_compare_simps =
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   810
  add_strict_increasing add_strict_increasing2 add_increasing
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   811
  zero_le_mult_iff zero_le_divide_iff
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   812
  zero_less_mult_iff zero_less_divide_iff
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   813
  mult_le_0_iff divide_le_0_iff
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   814
  mult_less_0_iff divide_less_0_iff
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   815
  zero_le_power2 power2_less_0
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47241
diff changeset
   816
30313
b2441b0c8d38 added lemmas
nipkow
parents: 30273
diff changeset
   817
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
   818
subsection \<open>Exponentiation for the Natural Numbers\<close>
14577
dbb95b825244 tuned document;
wenzelm
parents: 14438
diff changeset
   819
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   820
lemma nat_one_le_power [simp]: "Suc 0 \<le> i \<Longrightarrow> Suc 0 \<le> i ^ n"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   821
  by (rule one_le_power [of i n, unfolded One_nat_def])
23305
8ae6f7b0903b add lemma of_nat_power
huffman
parents: 23183
diff changeset
   822
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   823
lemma nat_zero_less_power_iff [simp]: "x ^ n > 0 \<longleftrightarrow> x > 0 \<or> n = 0"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   824
  for x :: nat
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   825
  by (induct n) auto
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   826
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   827
lemma nat_power_eq_Suc_0_iff [simp]: "x ^ m = Suc 0 \<longleftrightarrow> m = 0 \<or> x = Suc 0"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   828
  by (induct m) auto
30056
0a35bee25c20 added lemmas
nipkow
parents: 29978
diff changeset
   829
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   830
lemma power_Suc_0 [simp]: "Suc 0 ^ n = Suc 0"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   831
  by simp
30056
0a35bee25c20 added lemmas
nipkow
parents: 29978
diff changeset
   832
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   833
text \<open>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   834
  Valid for the naturals, but what if \<open>0 < i < 1\<close>? Premises cannot be
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   835
  weakened: consider the case where \<open>i = 0\<close>, \<open>m = 1\<close> and \<open>n = 0\<close>.
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   836
\<close>
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   837
21413
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   838
lemma nat_power_less_imp_less:
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   839
  fixes i :: nat
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   840
  assumes nonneg: "0 < i"
30996
648d02b124d8 cleaned up Power theory
haftmann
parents: 30960
diff changeset
   841
  assumes less: "i ^ m < i ^ n"
21413
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   842
  shows "m < n"
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   843
proof (cases "i = 1")
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   844
  case True
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   845
  with less power_one [where 'a = nat] show ?thesis by simp
21413
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   846
next
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   847
  case False
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   848
  with nonneg have "1 < i" by auto
21413
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   849
  from power_strict_increasing_iff [OF this] less show ?thesis ..
0951647209f2 moved dvd stuff to theory Divides
haftmann
parents: 21199
diff changeset
   850
qed
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 8844
diff changeset
   851
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   852
lemma power_dvd_imp_le: "i ^ m dvd i ^ n \<Longrightarrow> 1 < i \<Longrightarrow> m \<le> n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   853
  for i m n :: nat
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   854
  apply (rule power_le_imp_le_exp)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   855
   apply assumption
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   856
  apply (erule dvd_imp_le)
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   857
  apply simp
33274
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   858
  done
b6ff7db522b5 moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents: 31998
diff changeset
   859
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   860
lemma power2_nat_le_eq_le: "m\<^sup>2 \<le> n\<^sup>2 \<longleftrightarrow> m \<le> n"
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   861
  for m n :: nat
51263
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   862
  by (auto intro: power2_le_imp_le power_mono)
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   863
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   864
lemma power2_nat_le_imp_le:
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   865
  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
   866
  assumes "m\<^sup>2 \<le> n"
51263
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   867
  shows "m \<le> n"
54249
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   868
proof (cases m)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   869
  case 0
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   870
  then show ?thesis by simp
54249
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   871
next
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   872
  case (Suc k)
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   873
  show ?thesis
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   874
  proof (rule ccontr)
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   875
    assume "\<not> ?thesis"
54249
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   876
    then have "n < m" by simp
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   877
    with assms Suc show False
60867
86e7560e07d0 slight cleanup of lemmas
haftmann
parents: 60866
diff changeset
   878
      by (simp add: power2_eq_square)
54249
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   879
  qed
ce00f2fef556 streamlined setup of linear arithmetic
haftmann
parents: 54147
diff changeset
   880
qed
51263
31e786e0e6a7 turned example into library for comparing growth of functions
haftmann
parents: 49824
diff changeset
   881
64065
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   882
lemma ex_power_ivl1: fixes b k :: nat assumes "b \<ge> 2"
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   883
shows "k \<ge> 1 \<Longrightarrow> \<exists>n. b^n \<le> k \<and> k < b^(n+1)" (is "_ \<Longrightarrow> \<exists>n. ?P k n")
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   884
proof(induction k)
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   885
  case 0 thus ?case by simp
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   886
next
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   887
  case (Suc k)
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   888
  show ?case
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   889
  proof cases
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   890
    assume "k=0"
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   891
    hence "?P (Suc k) 0" using assms by simp
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   892
    thus ?case ..
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   893
  next
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   894
    assume "k\<noteq>0"
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   895
    with Suc obtain n where IH: "?P k n" by auto
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   896
    show ?case
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   897
    proof (cases "k = b^(n+1) - 1")
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   898
      case True
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   899
      hence "?P (Suc k) (n+1)" using assms
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   900
        by (simp add: power_less_power_Suc)
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   901
      thus ?thesis ..
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   902
    next
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   903
      case False
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   904
      hence "?P (Suc k) n" using IH by auto
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   905
      thus ?thesis ..
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   906
    qed
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   907
  qed
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   908
qed
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   909
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   910
lemma ex_power_ivl2: fixes b k :: nat assumes "b \<ge> 2" "k \<ge> 2"
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   911
shows "\<exists>n. b^n < k \<and> k \<le> b^(n+1)"
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   912
proof -
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   913
  have "1 \<le> k - 1" using assms(2) by arith
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   914
  from ex_power_ivl1[OF assms(1) this]
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   915
  obtain n where "b ^ n \<le> k - 1 \<and> k - 1 < b ^ (n + 1)" ..
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   916
  hence "b^n < k \<and> k \<le> b^(n+1)" using assms by auto
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   917
  thus ?thesis ..
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   918
qed
40d440b75b00 moved lemmas
nipkow
parents: 63924
diff changeset
   919
63654
f90e3926e627 misc tuning and modernization;
wenzelm
parents: 63648
diff changeset
   920
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
   921
subsubsection \<open>Cardinality of the Powerset\<close>
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   922
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   923
lemma card_UNIV_bool [simp]: "card (UNIV :: bool set) = 2"
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   924
  unfolding UNIV_bool by simp
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   925
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   926
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
   927
proof (induct rule: finite_induct)
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61531
diff changeset
   928
  case empty
64964
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   929
  show ?case by simp
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   930
next
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   931
  case (insert x A)
64964
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   932
  from \<open>x \<notin> A\<close> have disjoint: "Pow A \<inter> insert x ` Pow A = {}" by blast
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   933
  from \<open>x \<notin> A\<close> have inj_on: "inj_on (insert x) (Pow A)"
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   934
    unfolding inj_on_def by auto
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   935
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   936
  have "card (Pow (insert x A)) = card (Pow A \<union> insert x ` Pow A)"
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   937
    by (simp only: Pow_insert)
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   938
  also have "\<dots> = card (Pow A) + card (insert x ` Pow A)"
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   939
    by (rule card_Un_disjoint) (use \<open>finite A\<close> disjoint in simp_all)
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   940
  also from inj_on have "card (insert x ` Pow A) = card (Pow A)"
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   941
    by (rule card_image)
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   942
  also have "\<dots> + \<dots> = 2 * \<dots>" by (simp add: mult_2)
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   943
  also from insert(3) have "\<dots> = 2 ^ Suc (card A)" by simp
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   944
  also from insert(1,2) have "Suc (card A) = card (insert x A)"
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   945
    by (rule card_insert_disjoint [symmetric])
a0c985a57f7e tuned proof;
wenzelm
parents: 64715
diff changeset
   946
  finally show ?case .
55096
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   947
qed
916b2ac758f4 removed theory dependency of BNF_LFP on Datatype
traytel
parents: 54489
diff changeset
   948
57418
6ab1c7cb0b8d fact consolidation
haftmann
parents: 56544
diff changeset
   949
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60685
diff changeset
   950
subsection \<open>Code generator tweak\<close>
31155
92d8ff6af82c monomorphic code generation for power operations
haftmann
parents: 31021
diff changeset
   951
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 51263
diff changeset
   952
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
   953
  code_module Power \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33274
diff changeset
   954
3390
0c7625196d95 New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff changeset
   955
end