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