author | paulson <lp15@cam.ac.uk> |
Wed, 28 Sep 2016 17:01:01 +0100 | |
changeset 63952 | 354808e9f44b |
parent 63924 | f91766530e13 |
child 64065 | 40d440b75b00 |
permissions | -rw-r--r-- |
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 | 6 |
section \<open>Exponentiation\<close> |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
7 |
|
15131 | 8 |
theory Power |
63654 | 9 |
imports Num |
15131 | 10 |
begin |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
11 |
|
60758 | 12 |
subsection \<open>Powers for Arbitrary Monoids\<close> |
30960 | 13 |
|
30996 | 14 |
class power = one + times |
30960 | 15 |
begin |
24996 | 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 | 18 |
where |
19 |
power_0: "a ^ 0 = 1" |
|
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 | 22 |
notation (latex output) |
23 |
power ("(_\<^bsup>_\<^esup>)" [1000] 1000) |
|
24 |
||
60758 | 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 | 29 |
end |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
30 |
|
30996 | 31 |
context monoid_mult |
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 | 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 | 39 |
lemma power_one_right [simp]: "a ^ 1 = a" |
30996 | 40 |
by simp |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
41 |
|
63654 | 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 | 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 | 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 | 51 |
lemma power_add: "a ^ (m + n) = a ^ m * a ^ n" |
30996 | 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 | 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 | 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 | 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 | 69 |
lemma power_numeral_even: "z ^ numeral (Num.Bit0 w) = (let w = z ^ (numeral w) in w * w)" |
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 | 72 |
lemma power_numeral_odd: "z ^ numeral (Num.Bit1 w) = (let w = z ^ (numeral w) in z * w * w)" |
73 |
by (simp only: numeral_Bit1 One_nat_def add_Suc_right add_0_right |
|
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 | 76 |
lemma funpow_times_power: "(times x ^^ f x) = times (x ^ f x)" |
49824 | 77 |
proof (induct "f x" arbitrary: f) |
63654 | 78 |
case 0 |
79 |
then show ?case by (simp add: fun_eq_iff) |
|
49824 | 80 |
next |
81 |
case (Suc n) |
|
63040 | 82 |
define g where "g x = f x - 1" for x |
49824 | 83 |
with Suc have "n = g x" by simp |
84 |
with Suc have "times x ^^ g x = times (x ^ g x)" by simp |
|
85 |
moreover from Suc g_def have "f x = g x + 1" by simp |
|
63654 | 86 |
ultimately show ?case |
87 |
by (simp add: power_add funpow_add fun_eq_iff mult.assoc) |
|
49824 | 88 |
qed |
89 |
||
58656 | 90 |
lemma power_commuting_commutes: |
91 |
assumes "x * y = y * x" |
|
92 |
shows "x ^ n * y = y * x ^n" |
|
93 |
proof (induct n) |
|
63654 | 94 |
case 0 |
95 |
then show ?case by simp |
|
96 |
next |
|
58656 | 97 |
case (Suc n) |
98 |
have "x ^ Suc n * y = x ^ n * y * x" |
|
99 |
by (subst power_Suc2) (simp add: assms ac_simps) |
|
100 |
also have "\<dots> = y * x ^ Suc n" |
|
63654 | 101 |
by (simp only: Suc power_Suc2) (simp add: ac_simps) |
58656 | 102 |
finally show ?case . |
63654 | 103 |
qed |
58656 | 104 |
|
63654 | 105 |
lemma power_minus_mult: "0 < n \<Longrightarrow> a ^ (n - 1) * a = a ^ n" |
63648 | 106 |
by (simp add: power_commutes split: nat_diff_split) |
62347 | 107 |
|
30996 | 108 |
end |
109 |
||
110 |
context comm_monoid_mult |
|
111 |
begin |
|
112 |
||
63654 | 113 |
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
|
114 |
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
|
115 |
|
30996 | 116 |
end |
117 |
||
63654 | 118 |
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
|
119 |
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
|
120 |
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
|
121 |
|
63654 | 122 |
lemma power_add_numeral [simp]: "a^numeral m * a^numeral n = a^numeral (m + n)" |
123 |
for a :: "'a::monoid_mult" |
|
60155
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
124 |
by (simp add: power_add [symmetric]) |
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
125 |
|
63654 | 126 |
lemma power_add_numeral2 [simp]: "a^numeral m * (a^numeral n * b) = a^numeral (m + n) * b" |
127 |
for a :: "'a::monoid_mult" |
|
60155
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
128 |
by (simp add: mult.assoc [symmetric]) |
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
129 |
|
63654 | 130 |
lemma power_mult_numeral [simp]: "(a^numeral m)^numeral n = a^numeral (m * n)" |
131 |
for a :: "'a::monoid_mult" |
|
60155
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
132 |
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
|
133 |
|
47191 | 134 |
context semiring_numeral |
135 |
begin |
|
136 |
||
137 |
lemma numeral_sqr: "numeral (Num.sqr k) = numeral k * numeral k" |
|
138 |
by (simp only: sqr_conv_mult numeral_mult) |
|
139 |
||
140 |
lemma numeral_pow: "numeral (Num.pow k l) = numeral k ^ numeral l" |
|
63654 | 141 |
by (induct l) |
142 |
(simp_all only: numeral_class.numeral.simps pow.simps |
|
143 |
numeral_sqr numeral_mult power_add power_one_right) |
|
47191 | 144 |
|
145 |
lemma power_numeral [simp]: "numeral k ^ numeral l = numeral (Num.pow k l)" |
|
146 |
by (rule numeral_pow [symmetric]) |
|
147 |
||
148 |
end |
|
149 |
||
30996 | 150 |
context semiring_1 |
151 |
begin |
|
152 |
||
63654 | 153 |
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
|
154 |
by (induct n) simp_all |
30996 | 155 |
|
63654 | 156 |
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
|
157 |
by (cases n) simp_all |
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
haftmann
parents:
58889
diff
changeset
|
158 |
|
63654 | 159 |
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
|
160 |
by (simp add: numeral_eq_Suc) |
47191 | 161 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52435
diff
changeset
|
162 |
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
|
163 |
by (rule power_zero_numeral) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
164 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52435
diff
changeset
|
165 |
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
|
166 |
by (rule power_one) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
167 |
|
63654 | 168 |
lemma power_0_Suc [simp]: "0 ^ Suc n = 0" |
60867 | 169 |
by simp |
170 |
||
63654 | 171 |
text \<open>It looks plausible as a simprule, but its effect can be strange.\<close> |
172 |
lemma power_0_left: "0 ^ n = (if n = 0 then 1 else 0)" |
|
60867 | 173 |
by (cases n) simp_all |
174 |
||
30996 | 175 |
end |
176 |
||
177 |
context comm_semiring_1 |
|
178 |
begin |
|
179 |
||
63654 | 180 |
text \<open>The divides relation.\<close> |
30996 | 181 |
|
182 |
lemma le_imp_power_dvd: |
|
63654 | 183 |
assumes "m \<le> n" |
184 |
shows "a ^ m dvd a ^ n" |
|
30996 | 185 |
proof |
63654 | 186 |
from assms have "a ^ n = a ^ (m + (n - m))" by simp |
187 |
also have "\<dots> = a ^ m * a ^ (n - m)" by (rule power_add) |
|
30996 | 188 |
finally show "a ^ n = a ^ m * a ^ (n - m)" . |
189 |
qed |
|
190 |
||
63654 | 191 |
lemma power_le_dvd: "a ^ n dvd b \<Longrightarrow> m \<le> n \<Longrightarrow> a ^ m dvd b" |
30996 | 192 |
by (rule dvd_trans [OF le_imp_power_dvd]) |
193 |
||
63654 | 194 |
lemma dvd_power_same: "x dvd y \<Longrightarrow> x ^ n dvd y ^ n" |
30996 | 195 |
by (induct n) (auto simp add: mult_dvd_mono) |
196 |
||
63654 | 197 |
lemma dvd_power_le: "x dvd y \<Longrightarrow> m \<ge> n \<Longrightarrow> x ^ n dvd y ^ m" |
30996 | 198 |
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
|
199 |
|
30996 | 200 |
lemma dvd_power [simp]: |
63654 | 201 |
fixes n :: nat |
202 |
assumes "n > 0 \<or> x = 1" |
|
30996 | 203 |
shows "x dvd (x ^ n)" |
63654 | 204 |
using assms |
205 |
proof |
|
30996 | 206 |
assume "0 < n" |
207 |
then have "x ^ n = x ^ Suc (n - 1)" by simp |
|
208 |
then show "x dvd (x ^ n)" by simp |
|
209 |
next |
|
210 |
assume "x = 1" |
|
211 |
then show "x dvd (x ^ n)" by simp |
|
212 |
qed |
|
213 |
||
214 |
end |
|
215 |
||
62481
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents:
62366
diff
changeset
|
216 |
context semiring_1_no_zero_divisors |
60867 | 217 |
begin |
218 |
||
219 |
subclass power . |
|
220 |
||
63654 | 221 |
lemma power_eq_0_iff [simp]: "a ^ n = 0 \<longleftrightarrow> a = 0 \<and> n > 0" |
60867 | 222 |
by (induct n) auto |
223 |
||
63654 | 224 |
lemma power_not_zero: "a \<noteq> 0 \<Longrightarrow> a ^ n \<noteq> 0" |
60867 | 225 |
by (induct n) auto |
226 |
||
63654 | 227 |
lemma zero_eq_power2 [simp]: "a\<^sup>2 = 0 \<longleftrightarrow> a = 0" |
60867 | 228 |
unfolding power2_eq_square by simp |
229 |
||
230 |
end |
|
231 |
||
30996 | 232 |
context ring_1 |
233 |
begin |
|
234 |
||
63654 | 235 |
lemma power_minus: "(- a) ^ n = (- 1) ^ n * a ^ n" |
30996 | 236 |
proof (induct n) |
63654 | 237 |
case 0 |
238 |
show ?case by simp |
|
30996 | 239 |
next |
63654 | 240 |
case (Suc n) |
241 |
then show ?case |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57418
diff
changeset
|
242 |
by (simp del: power_Suc add: power_Suc2 mult.assoc) |
30996 | 243 |
qed |
244 |
||
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61378
diff
changeset
|
245 |
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
|
246 |
by (rule power_minus) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61378
diff
changeset
|
247 |
|
63654 | 248 |
lemma power_minus_Bit0: "(- x) ^ numeral (Num.Bit0 k) = x ^ numeral (Num.Bit0 k)" |
47191 | 249 |
by (induct k, simp_all only: numeral_class.numeral.simps power_add |
250 |
power_one_right mult_minus_left mult_minus_right minus_minus) |
|
251 |
||
63654 | 252 |
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
|
253 |
by (simp only: eval_nat_numeral(3) power_Suc power_minus_Bit0 mult_minus_left) |
47191 | 254 |
|
63654 | 255 |
lemma power2_minus [simp]: "(- a)\<^sup>2 = a\<^sup>2" |
60867 | 256 |
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
|
257 |
|
63654 | 258 |
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
|
259 |
proof (induct n) |
63654 | 260 |
case 0 |
261 |
show ?case by simp |
|
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
262 |
next |
63654 | 263 |
case (Suc n) |
264 |
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
|
265 |
qed |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
266 |
|
63654 | 267 |
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
|
268 |
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
|
269 |
|
63654 | 270 |
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
|
271 |
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
|
272 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
273 |
end |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
274 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
275 |
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
|
276 |
begin |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
277 |
|
63654 | 278 |
lemma power2_eq_1_iff: "a\<^sup>2 = 1 \<longleftrightarrow> a = 1 \<or> a = - 1" |
60867 | 279 |
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
|
280 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
281 |
end |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
282 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
283 |
context idom |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
284 |
begin |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
285 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52435
diff
changeset
|
286 |
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
|
287 |
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
|
288 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
289 |
end |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
290 |
|
60867 | 291 |
context algebraic_semidom |
292 |
begin |
|
293 |
||
63654 | 294 |
lemma div_power: "b dvd a \<Longrightarrow> (a div b) ^ n = a ^ n div b ^ n" |
295 |
by (induct n) (simp_all add: div_mult_div_if_dvd dvd_power_same) |
|
60867 | 296 |
|
63654 | 297 |
lemma is_unit_power_iff: "is_unit (a ^ n) \<longleftrightarrow> is_unit a \<or> n = 0" |
62366 | 298 |
by (induct n) (auto simp add: is_unit_mult_iff) |
299 |
||
63924 | 300 |
lemma dvd_power_iff: |
301 |
assumes "x \<noteq> 0" |
|
302 |
shows "x ^ m dvd x ^ n \<longleftrightarrow> is_unit x \<or> m \<le> n" |
|
303 |
proof |
|
304 |
assume *: "x ^ m dvd x ^ n" |
|
305 |
{ |
|
306 |
assume "m > n" |
|
307 |
note * |
|
308 |
also have "x ^ n = x ^ n * 1" by simp |
|
309 |
also from \<open>m > n\<close> have "m = n + (m - n)" by simp |
|
310 |
also have "x ^ \<dots> = x ^ n * x ^ (m - n)" by (rule power_add) |
|
311 |
finally have "x ^ (m - n) dvd 1" |
|
312 |
by (subst (asm) dvd_times_left_cancel_iff) (insert assms, simp_all) |
|
313 |
with \<open>m > n\<close> have "is_unit x" by (simp add: is_unit_power_iff) |
|
314 |
} |
|
315 |
thus "is_unit x \<or> m \<le> n" by force |
|
316 |
qed (auto intro: unit_imp_dvd simp: is_unit_power_iff le_imp_power_dvd) |
|
317 |
||
318 |
||
60867 | 319 |
end |
320 |
||
60685
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
haftmann
parents:
60155
diff
changeset
|
321 |
context normalization_semidom |
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
haftmann
parents:
60155
diff
changeset
|
322 |
begin |
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
haftmann
parents:
60155
diff
changeset
|
323 |
|
63654 | 324 |
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
|
325 |
by (induct n) (simp_all add: normalize_mult) |
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
haftmann
parents:
60155
diff
changeset
|
326 |
|
63654 | 327 |
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
|
328 |
by (induct n) (simp_all add: unit_factor_mult) |
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
haftmann
parents:
60155
diff
changeset
|
329 |
|
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
haftmann
parents:
60155
diff
changeset
|
330 |
end |
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
haftmann
parents:
60155
diff
changeset
|
331 |
|
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
332 |
context division_ring |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
333 |
begin |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
334 |
|
63654 | 335 |
text \<open>Perhaps these should be simprules.\<close> |
336 |
lemma power_inverse [field_simps, divide_simps]: "inverse a ^ n = inverse (a ^ n)" |
|
60867 | 337 |
proof (cases "a = 0") |
63654 | 338 |
case True |
339 |
then show ?thesis by (simp add: power_0_left) |
|
60867 | 340 |
next |
63654 | 341 |
case False |
342 |
then have "inverse (a ^ n) = inverse a ^ n" |
|
60867 | 343 |
by (induct n) (simp_all add: nonzero_inverse_mult_distrib power_commutes) |
344 |
then show ?thesis by simp |
|
345 |
qed |
|
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
346 |
|
63654 | 347 |
lemma power_one_over [field_simps, divide_simps]: "(1 / a) ^ n = 1 / a ^ n" |
60867 | 348 |
using power_inverse [of a] by (simp add: divide_inverse) |
349 |
||
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
|
350 |
end |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
351 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
352 |
context field |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
353 |
begin |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
354 |
|
60867 | 355 |
lemma power_diff: |
63654 | 356 |
assumes "a \<noteq> 0" |
60867 | 357 |
shows "n \<le> m \<Longrightarrow> a ^ (m - n) = a ^ m / a ^ n" |
63654 | 358 |
by (induct m n rule: diff_induct) (simp_all add: assms power_not_zero) |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
359 |
|
63654 | 360 |
lemma power_divide [field_simps, divide_simps]: "(a / b) ^ n = a ^ n / b ^ n" |
60867 | 361 |
by (induct n) simp_all |
362 |
||
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
363 |
end |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
364 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
365 |
|
60758 | 366 |
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
|
367 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
33364
diff
changeset
|
368 |
context linordered_semidom |
30996 | 369 |
begin |
370 |
||
63654 | 371 |
lemma zero_less_power [simp]: "0 < a \<Longrightarrow> 0 < a ^ n" |
56544 | 372 |
by (induct n) simp_all |
30996 | 373 |
|
63654 | 374 |
lemma zero_le_power [simp]: "0 \<le> a \<Longrightarrow> 0 \<le> a ^ n" |
56536 | 375 |
by (induct n) simp_all |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
376 |
|
63654 | 377 |
lemma power_mono: "a \<le> b \<Longrightarrow> 0 \<le> a \<Longrightarrow> a ^ n \<le> b ^ n" |
47241 | 378 |
by (induct n) (auto intro: mult_mono order_trans [of 0 a b]) |
379 |
||
380 |
lemma one_le_power [simp]: "1 \<le> a \<Longrightarrow> 1 \<le> a ^ n" |
|
381 |
using power_mono [of 1 a n] by simp |
|
382 |
||
63654 | 383 |
lemma power_le_one: "0 \<le> a \<Longrightarrow> a \<le> 1 \<Longrightarrow> a ^ n \<le> 1" |
47241 | 384 |
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
|
385 |
|
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
386 |
lemma power_gt1_lemma: |
30996 | 387 |
assumes gt1: "1 < a" |
388 |
shows "1 < a * a ^ n" |
|
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
389 |
proof - |
30996 | 390 |
from gt1 have "0 \<le> a" |
391 |
by (fact order_trans [OF zero_le_one less_imp_le]) |
|
63654 | 392 |
from gt1 have "1 * 1 < a * 1" by simp |
393 |
also from gt1 have "\<dots> \<le> a * a ^ n" |
|
394 |
by (simp only: mult_mono \<open>0 \<le> a\<close> one_le_power order_less_imp_le zero_le_one order_refl) |
|
14577 | 395 |
finally show ?thesis by simp |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
396 |
qed |
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
397 |
|
63654 | 398 |
lemma power_gt1: "1 < a \<Longrightarrow> 1 < a ^ Suc n" |
30996 | 399 |
by (simp add: power_gt1_lemma) |
24376 | 400 |
|
63654 | 401 |
lemma one_less_power [simp]: "1 < a \<Longrightarrow> 0 < n \<Longrightarrow> 1 < a ^ n" |
30996 | 402 |
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
|
403 |
|
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
404 |
lemma power_le_imp_le_exp: |
30996 | 405 |
assumes gt1: "1 < a" |
406 |
shows "a ^ m \<le> a ^ n \<Longrightarrow> m \<le> n" |
|
407 |
proof (induct m arbitrary: n) |
|
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
408 |
case 0 |
14577 | 409 |
show ?case by simp |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
410 |
next |
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
411 |
case (Suc m) |
14577 | 412 |
show ?case |
413 |
proof (cases n) |
|
414 |
case 0 |
|
63654 | 415 |
with Suc have "a * a ^ m \<le> 1" by simp |
14577 | 416 |
with gt1 show ?thesis |
63654 | 417 |
by (force simp only: power_gt1_lemma not_less [symmetric]) |
14577 | 418 |
next |
419 |
case (Suc n) |
|
30996 | 420 |
with Suc.prems Suc.hyps show ?thesis |
63654 | 421 |
by (force dest: mult_left_le_imp_le simp add: less_trans [OF zero_less_one gt1]) |
14577 | 422 |
qed |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
423 |
qed |
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
424 |
|
63654 | 425 |
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
|
426 |
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
|
427 |
|
63654 | 428 |
text \<open>Surely we can strengthen this? It holds for \<open>0<a<1\<close> too.\<close> |
429 |
lemma power_inject_exp [simp]: "1 < a \<Longrightarrow> a ^ m = a ^ n \<longleftrightarrow> m = n" |
|
14577 | 430 |
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
|
431 |
|
63654 | 432 |
text \<open> |
433 |
Can relax the first premise to @{term "0<a"} in the case of the |
|
434 |
natural numbers. |
|
435 |
\<close> |
|
436 |
lemma power_less_imp_less_exp: "1 < a \<Longrightarrow> a ^ m < a ^ n \<Longrightarrow> m < n" |
|
437 |
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
|
438 |
|
63654 | 439 |
lemma power_strict_mono [rule_format]: "a < b \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 < n \<longrightarrow> a ^ n < b ^ n" |
440 |
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
|
441 |
|
61799 | 442 |
text\<open>Lemma for \<open>power_strict_decreasing\<close>\<close> |
63654 | 443 |
lemma power_Suc_less: "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> a * a ^ n < a ^ n" |
444 |
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
|
445 |
|
63654 | 446 |
lemma power_strict_decreasing [rule_format]: "n < N \<Longrightarrow> 0 < a \<Longrightarrow> a < 1 \<longrightarrow> a ^ N < a ^ n" |
30996 | 447 |
proof (induct N) |
63654 | 448 |
case 0 |
449 |
then show ?case by simp |
|
30996 | 450 |
next |
63654 | 451 |
case (Suc N) |
452 |
then show ?case |
|
453 |
apply (auto simp add: power_Suc_less less_Suc_eq) |
|
454 |
apply (subgoal_tac "a * a^N < 1 * a^n") |
|
455 |
apply simp |
|
456 |
apply (rule mult_strict_mono) |
|
457 |
apply auto |
|
458 |
done |
|
30996 | 459 |
qed |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
460 |
|
63654 | 461 |
text \<open>Proof resembles that of \<open>power_strict_decreasing\<close>.\<close> |
462 |
lemma power_decreasing: "n \<le> N \<Longrightarrow> 0 \<le> a \<Longrightarrow> a \<le> 1 \<Longrightarrow> a ^ N \<le> a ^ n" |
|
30996 | 463 |
proof (induct N) |
63654 | 464 |
case 0 |
465 |
then show ?case by simp |
|
30996 | 466 |
next |
63654 | 467 |
case (Suc N) |
468 |
then show ?case |
|
469 |
apply (auto simp add: le_Suc_eq) |
|
470 |
apply (subgoal_tac "a * a^N \<le> 1 * a^n") |
|
471 |
apply simp |
|
472 |
apply (rule mult_mono) |
|
473 |
apply auto |
|
474 |
done |
|
30996 | 475 |
qed |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
476 |
|
63654 | 477 |
lemma power_Suc_less_one: "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> a ^ Suc n < 1" |
30996 | 478 |
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
|
479 |
|
63654 | 480 |
text \<open>Proof again resembles that of \<open>power_strict_decreasing\<close>.\<close> |
481 |
lemma power_increasing: "n \<le> N \<Longrightarrow> 1 \<le> a \<Longrightarrow> a ^ n \<le> a ^ N" |
|
30996 | 482 |
proof (induct N) |
63654 | 483 |
case 0 |
484 |
then show ?case by simp |
|
30996 | 485 |
next |
63654 | 486 |
case (Suc N) |
487 |
then show ?case |
|
488 |
apply (auto simp add: le_Suc_eq) |
|
489 |
apply (subgoal_tac "1 * a^n \<le> a * a^N") |
|
490 |
apply simp |
|
491 |
apply (rule mult_mono) |
|
492 |
apply (auto simp add: order_trans [OF zero_le_one]) |
|
493 |
done |
|
30996 | 494 |
qed |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
495 |
|
63654 | 496 |
text \<open>Lemma for \<open>power_strict_increasing\<close>.\<close> |
497 |
lemma power_less_power_Suc: "1 < a \<Longrightarrow> a ^ n < a * a ^ n" |
|
498 |
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
|
499 |
|
63654 | 500 |
lemma power_strict_increasing: "n < N \<Longrightarrow> 1 < a \<Longrightarrow> a ^ n < a ^ N" |
30996 | 501 |
proof (induct N) |
63654 | 502 |
case 0 |
503 |
then show ?case by simp |
|
30996 | 504 |
next |
63654 | 505 |
case (Suc N) |
506 |
then show ?case |
|
507 |
apply (auto simp add: power_less_power_Suc less_Suc_eq) |
|
508 |
apply (subgoal_tac "1 * a^n < a * a^N") |
|
509 |
apply simp |
|
510 |
apply (rule mult_strict_mono) |
|
511 |
apply (auto simp add: less_trans [OF zero_less_one] less_imp_le) |
|
512 |
done |
|
30996 | 513 |
qed |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
514 |
|
63654 | 515 |
lemma power_increasing_iff [simp]: "1 < b \<Longrightarrow> b ^ x \<le> b ^ y \<longleftrightarrow> x \<le> y" |
30996 | 516 |
by (blast intro: power_le_imp_le_exp power_increasing less_imp_le) |
15066 | 517 |
|
63654 | 518 |
lemma power_strict_increasing_iff [simp]: "1 < b \<Longrightarrow> b ^ x < b ^ y \<longleftrightarrow> x < y" |
519 |
by (blast intro: power_less_imp_less_exp power_strict_increasing) |
|
15066 | 520 |
|
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
521 |
lemma power_le_imp_le_base: |
30996 | 522 |
assumes le: "a ^ Suc n \<le> b ^ Suc n" |
63654 | 523 |
and "0 \<le> b" |
30996 | 524 |
shows "a \<le> b" |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25062
diff
changeset
|
525 |
proof (rule ccontr) |
63654 | 526 |
assume "\<not> ?thesis" |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25062
diff
changeset
|
527 |
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
|
528 |
then have "b ^ Suc n < a ^ Suc n" |
63654 | 529 |
by (simp only: assms(2) power_strict_mono) |
530 |
with le show False |
|
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25062
diff
changeset
|
531 |
by (simp add: linorder_not_less [symmetric]) |
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25062
diff
changeset
|
532 |
qed |
14577 | 533 |
|
22853 | 534 |
lemma power_less_imp_less_base: |
535 |
assumes less: "a ^ n < b ^ n" |
|
536 |
assumes nonneg: "0 \<le> b" |
|
537 |
shows "a < b" |
|
538 |
proof (rule contrapos_pp [OF less]) |
|
63654 | 539 |
assume "\<not> ?thesis" |
540 |
then have "b \<le> a" by (simp only: linorder_not_less) |
|
541 |
from this nonneg have "b ^ n \<le> a ^ n" by (rule power_mono) |
|
542 |
then show "\<not> a ^ n < b ^ n" by (simp only: linorder_not_less) |
|
22853 | 543 |
qed |
544 |
||
63654 | 545 |
lemma power_inject_base: "a ^ Suc n = b ^ Suc n \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> a = b" |
546 |
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
|
547 |
|
63654 | 548 |
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 | 549 |
by (cases n) (simp_all del: power_Suc, rule power_inject_base) |
22955 | 550 |
|
63654 | 551 |
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 | 552 |
using power_eq_imp_eq_base [of a n b] by auto |
553 |
||
63654 | 554 |
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
|
555 |
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
|
556 |
|
63654 | 557 |
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
|
558 |
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
|
559 |
|
63654 | 560 |
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
|
561 |
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
|
562 |
|
63654 | 563 |
lemma power_Suc_le_self: "0 \<le> a \<Longrightarrow> a \<le> 1 \<Longrightarrow> a ^ Suc n \<le> a" |
62347 | 564 |
using power_decreasing [of 1 "Suc n" a] by simp |
565 |
||
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
566 |
end |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
567 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
568 |
context linordered_ring_strict |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
569 |
begin |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
570 |
|
63654 | 571 |
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
|
572 |
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
|
573 |
|
63654 | 574 |
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
|
575 |
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
|
576 |
|
63654 | 577 |
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
|
578 |
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
|
579 |
|
30996 | 580 |
end |
581 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
33364
diff
changeset
|
582 |
context linordered_idom |
30996 | 583 |
begin |
29978
33df3c4eb629
generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents:
29608
diff
changeset
|
584 |
|
61944 | 585 |
lemma power_abs: "\<bar>a ^ n\<bar> = \<bar>a\<bar> ^ n" |
30996 | 586 |
by (induct n) (auto simp add: abs_mult) |
587 |
||
61944 | 588 |
lemma abs_power_minus [simp]: "\<bar>(-a) ^ n\<bar> = \<bar>a ^ n\<bar>" |
35216 | 589 |
by (simp add: power_abs) |
30996 | 590 |
|
61944 | 591 |
lemma zero_less_power_abs_iff [simp]: "0 < \<bar>a\<bar> ^ n \<longleftrightarrow> a \<noteq> 0 \<or> n = 0" |
30996 | 592 |
proof (induct n) |
63654 | 593 |
case 0 |
594 |
show ?case by simp |
|
30996 | 595 |
next |
63654 | 596 |
case Suc |
597 |
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
|
598 |
qed |
33df3c4eb629
generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents:
29608
diff
changeset
|
599 |
|
61944 | 600 |
lemma zero_le_power_abs [simp]: "0 \<le> \<bar>a\<bar> ^ n" |
30996 | 601 |
by (rule zero_le_power [OF abs_ge_zero]) |
602 |
||
63654 | 603 |
lemma zero_le_power2 [simp]: "0 \<le> a\<^sup>2" |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
604 |
by (simp add: power2_eq_square) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
605 |
|
63654 | 606 |
lemma zero_less_power2 [simp]: "0 < a\<^sup>2 \<longleftrightarrow> a \<noteq> 0" |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
607 |
by (force simp add: power2_eq_square zero_less_mult_iff linorder_neq_iff) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
608 |
|
63654 | 609 |
lemma power2_less_0 [simp]: "\<not> a\<^sup>2 < 0" |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
610 |
by (force simp add: power2_eq_square mult_less_0_iff) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
611 |
|
63654 | 612 |
lemma power2_less_eq_zero_iff [simp]: "a\<^sup>2 \<le> 0 \<longleftrightarrow> a = 0" |
58787 | 613 |
by (simp add: le_less) |
614 |
||
61944 | 615 |
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
|
616 |
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
|
617 |
|
61944 | 618 |
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
|
619 |
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
|
620 |
|
63654 | 621 |
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
|
622 |
proof (induct n) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
623 |
case 0 |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
624 |
then show ?case by simp |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
625 |
next |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
626 |
case (Suc n) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
627 |
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
|
628 |
by (simp add: ac_simps power_add power2_eq_square) |
63654 | 629 |
then show ?case |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
630 |
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
|
631 |
qed |
30996 | 632 |
|
63654 | 633 |
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
|
634 |
using odd_power_less_zero [of a n] |
63654 | 635 |
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
|
636 |
|
63654 | 637 |
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
|
638 |
proof (induct n) |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
639 |
case 0 |
63654 | 640 |
show ?case by simp |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
641 |
next |
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
642 |
case (Suc n) |
63654 | 643 |
have "a ^ (2 * Suc n) = (a*a) * a ^ (2*n)" |
644 |
by (simp add: ac_simps power_add power2_eq_square) |
|
645 |
then show ?case |
|
646 |
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
|
647 |
qed |
30996 | 648 |
|
63654 | 649 |
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
|
650 |
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
|
651 |
|
63654 | 652 |
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
|
653 |
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
|
654 |
|
63654 | 655 |
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
|
656 |
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
|
657 |
|
63654 | 658 |
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
|
659 |
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
|
660 |
|
63654 | 661 |
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
|
662 |
unfolding not_le [symmetric] by (simp add: sum_power2_le_zero_iff) |
30996 | 663 |
|
63654 | 664 |
lemma abs_le_square_iff: "\<bar>x\<bar> \<le> \<bar>y\<bar> \<longleftrightarrow> x\<^sup>2 \<le> y\<^sup>2" |
665 |
(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
|
666 |
proof |
63654 | 667 |
assume ?lhs |
668 |
then have "\<bar>x\<bar>\<^sup>2 \<le> \<bar>y\<bar>\<^sup>2" by (rule power_mono) simp |
|
669 |
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
|
670 |
next |
63654 | 671 |
assume ?rhs |
672 |
then show ?lhs |
|
59865
8a20dd967385
rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents:
59741
diff
changeset
|
673 |
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
|
674 |
qed |
8a20dd967385
rationalised and generalised some theorems concerning abs and x^2.
paulson <lp15@cam.ac.uk>
parents:
59741
diff
changeset
|
675 |
|
61944 | 676 |
lemma abs_square_le_1:"x\<^sup>2 \<le> 1 \<longleftrightarrow> \<bar>x\<bar> \<le> 1" |
63654 | 677 |
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
|
678 |
|
61944 | 679 |
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
|
680 |
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
|
681 |
|
61944 | 682 |
lemma abs_square_less_1: "x\<^sup>2 < 1 \<longleftrightarrow> \<bar>x\<bar> < 1" |
63654 | 683 |
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
|
684 |
|
30996 | 685 |
end |
686 |
||
29978
33df3c4eb629
generalize le_imp_power_dvd and power_le_dvd; move from Divides to Power
huffman
parents:
29608
diff
changeset
|
687 |
|
60758 | 688 |
subsection \<open>Miscellaneous rules\<close> |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
689 |
|
63654 | 690 |
lemma (in linordered_semidom) self_le_power: "1 \<le> a \<Longrightarrow> 0 < n \<Longrightarrow> a \<le> a ^ n" |
60867 | 691 |
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
|
692 |
|
63654 | 693 |
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
|
694 |
unfolding One_nat_def by (cases m) simp_all |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47241
diff
changeset
|
695 |
|
63654 | 696 |
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
|
697 |
by (simp add: algebra_simps power2_eq_square mult_2_right) |
30996 | 698 |
|
63654 | 699 |
context comm_ring_1 |
700 |
begin |
|
701 |
||
702 |
lemma power2_diff: "(x - y)\<^sup>2 = x\<^sup>2 + y\<^sup>2 - 2 * x * y" |
|
58787 | 703 |
by (simp add: algebra_simps power2_eq_square mult_2_right) |
30996 | 704 |
|
63654 | 705 |
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
|
706 |
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
|
707 |
|
63654 | 708 |
lemma minus_power_mult_self: "(- a) ^ n * (- a) ^ n = a ^ (2 * n)" |
709 |
by (simp add: power_mult_distrib [symmetric]) |
|
710 |
(simp add: power2_eq_square [symmetric] power_mult [symmetric]) |
|
711 |
||
712 |
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
|
713 |
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
|
714 |
|
63654 | 715 |
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
|
716 |
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
|
717 |
|
63654 | 718 |
end |
719 |
||
60758 | 720 |
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
|
721 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47241
diff
changeset
|
722 |
lemmas zero_compare_simps = |
63654 | 723 |
add_strict_increasing add_strict_increasing2 add_increasing |
724 |
zero_le_mult_iff zero_le_divide_iff |
|
725 |
zero_less_mult_iff zero_less_divide_iff |
|
726 |
mult_le_0_iff divide_le_0_iff |
|
727 |
mult_less_0_iff divide_less_0_iff |
|
728 |
zero_le_power2 power2_less_0 |
|
47255
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47241
diff
changeset
|
729 |
|
30313 | 730 |
|
60758 | 731 |
subsection \<open>Exponentiation for the Natural Numbers\<close> |
14577 | 732 |
|
63654 | 733 |
lemma nat_one_le_power [simp]: "Suc 0 \<le> i \<Longrightarrow> Suc 0 \<le> i ^ n" |
30996 | 734 |
by (rule one_le_power [of i n, unfolded One_nat_def]) |
23305 | 735 |
|
63654 | 736 |
lemma nat_zero_less_power_iff [simp]: "x ^ n > 0 \<longleftrightarrow> x > 0 \<or> n = 0" |
737 |
for x :: nat |
|
30996 | 738 |
by (induct n) auto |
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
739 |
|
63654 | 740 |
lemma nat_power_eq_Suc_0_iff [simp]: "x ^ m = Suc 0 \<longleftrightarrow> m = 0 \<or> x = Suc 0" |
30996 | 741 |
by (induct m) auto |
30056 | 742 |
|
63654 | 743 |
lemma power_Suc_0 [simp]: "Suc 0 ^ n = Suc 0" |
30996 | 744 |
by simp |
30056 | 745 |
|
63654 | 746 |
text \<open> |
747 |
Valid for the naturals, but what if \<open>0 < i < 1\<close>? Premises cannot be |
|
748 |
weakened: consider the case where \<open>i = 0\<close>, \<open>m = 1\<close> and \<open>n = 0\<close>. |
|
749 |
\<close> |
|
750 |
||
21413 | 751 |
lemma nat_power_less_imp_less: |
63654 | 752 |
fixes i :: nat |
753 |
assumes nonneg: "0 < i" |
|
30996 | 754 |
assumes less: "i ^ m < i ^ n" |
21413 | 755 |
shows "m < n" |
756 |
proof (cases "i = 1") |
|
63654 | 757 |
case True |
758 |
with less power_one [where 'a = nat] show ?thesis by simp |
|
21413 | 759 |
next |
63654 | 760 |
case False |
761 |
with nonneg have "1 < i" by auto |
|
21413 | 762 |
from power_strict_increasing_iff [OF this] less show ?thesis .. |
763 |
qed |
|
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
8844
diff
changeset
|
764 |
|
63654 | 765 |
lemma power_dvd_imp_le: "i ^ m dvd i ^ n \<Longrightarrow> 1 < i \<Longrightarrow> m \<le> n" |
766 |
for i m n :: nat |
|
767 |
apply (rule power_le_imp_le_exp) |
|
768 |
apply assumption |
|
769 |
apply (erule dvd_imp_le) |
|
770 |
apply simp |
|
33274
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents:
31998
diff
changeset
|
771 |
done |
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
haftmann
parents:
31998
diff
changeset
|
772 |
|
63654 | 773 |
lemma power2_nat_le_eq_le: "m\<^sup>2 \<le> n\<^sup>2 \<longleftrightarrow> m \<le> n" |
774 |
for m n :: nat |
|
51263
31e786e0e6a7
turned example into library for comparing growth of functions
haftmann
parents:
49824
diff
changeset
|
775 |
by (auto intro: power2_le_imp_le power_mono) |
31e786e0e6a7
turned example into library for comparing growth of functions
haftmann
parents:
49824
diff
changeset
|
776 |
|
31e786e0e6a7
turned example into library for comparing growth of functions
haftmann
parents:
49824
diff
changeset
|
777 |
lemma power2_nat_le_imp_le: |
31e786e0e6a7
turned example into library for comparing growth of functions
haftmann
parents:
49824
diff
changeset
|
778 |
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
|
779 |
assumes "m\<^sup>2 \<le> n" |
51263
31e786e0e6a7
turned example into library for comparing growth of functions
haftmann
parents:
49824
diff
changeset
|
780 |
shows "m \<le> n" |
54249 | 781 |
proof (cases m) |
63654 | 782 |
case 0 |
783 |
then show ?thesis by simp |
|
54249 | 784 |
next |
785 |
case (Suc k) |
|
786 |
show ?thesis |
|
787 |
proof (rule ccontr) |
|
63654 | 788 |
assume "\<not> ?thesis" |
54249 | 789 |
then have "n < m" by simp |
790 |
with assms Suc show False |
|
60867 | 791 |
by (simp add: power2_eq_square) |
54249 | 792 |
qed |
793 |
qed |
|
51263
31e786e0e6a7
turned example into library for comparing growth of functions
haftmann
parents:
49824
diff
changeset
|
794 |
|
63654 | 795 |
|
60758 | 796 |
subsubsection \<open>Cardinality of the Powerset\<close> |
55096 | 797 |
|
798 |
lemma card_UNIV_bool [simp]: "card (UNIV :: bool set) = 2" |
|
799 |
unfolding UNIV_bool by simp |
|
800 |
||
801 |
lemma card_Pow: "finite A \<Longrightarrow> card (Pow A) = 2 ^ card A" |
|
802 |
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
|
803 |
case empty |
63654 | 804 |
show ?case by auto |
55096 | 805 |
next |
806 |
case (insert x A) |
|
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
|
807 |
then have "inj_on (insert x) (Pow A)" |
55096 | 808 |
unfolding inj_on_def by (blast elim!: equalityE) |
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
|
809 |
then have "card (Pow A) + card (insert x ` Pow A) = 2 * 2 ^ card A" |
55096 | 810 |
by (simp add: mult_2 card_image Pow_insert insert.hyps) |
63654 | 811 |
with insert show ?case |
55096 | 812 |
apply (simp add: Pow_insert) |
63654 | 813 |
apply (subst card_Un_disjoint) |
814 |
apply auto |
|
55096 | 815 |
done |
816 |
qed |
|
817 |
||
57418 | 818 |
|
60758 | 819 |
subsection \<open>Code generator tweak\<close> |
31155
92d8ff6af82c
monomorphic code generation for power operations
haftmann
parents:
31021
diff
changeset
|
820 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
51263
diff
changeset
|
821 |
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
|
822 |
code_module Power \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith |
33364 | 823 |
|
3390
0c7625196d95
New theory "Power" of exponentiation (and binomial coefficients)
paulson
parents:
diff
changeset
|
824 |
end |