author | hoelzl |
Fri, 16 Nov 2012 18:45:57 +0100 | |
changeset 50104 | de19856feb54 |
parent 49711 | e5aaae7eadc9 |
child 50105 | 65d5b18e1626 |
permissions | -rw-r--r-- |
44133 | 1 |
(* Title: HOL/Multivariate_Analysis/Linear_Algebra.thy |
2 |
Author: Amine Chaieb, University of Cambridge |
|
3 |
*) |
|
4 |
||
5 |
header {* Elementary linear algebra on Euclidean spaces *} |
|
6 |
||
7 |
theory Linear_Algebra |
|
8 |
imports |
|
9 |
Euclidean_Space |
|
10 |
"~~/src/HOL/Library/Infinite_Set" |
|
11 |
begin |
|
12 |
||
13 |
lemma cond_application_beta: "(if b then f else g) x = (if b then f x else g x)" |
|
14 |
by auto |
|
15 |
||
16 |
notation inner (infix "\<bullet>" 70) |
|
17 |
||
18 |
lemma square_bound_lemma: "(x::real) < (1 + x) * (1 + x)" |
|
49522 | 19 |
proof - |
44133 | 20 |
have "(x + 1/2)^2 + 3/4 > 0" using zero_le_power2[of "x+1/2"] by arith |
49652 | 21 |
then show ?thesis by (simp add: field_simps power2_eq_square) |
44133 | 22 |
qed |
23 |
||
24 |
lemma square_continuous: "0 < (e::real) ==> \<exists>d. 0 < d \<and> (\<forall>y. abs(y - x) < d \<longrightarrow> abs(y * y - x * x) < e)" |
|
49522 | 25 |
using isCont_power[OF isCont_ident, of 2, unfolded isCont_def LIM_eq, rule_format, of e x] |
26 |
apply (auto simp add: power2_eq_square) |
|
44133 | 27 |
apply (rule_tac x="s" in exI) |
28 |
apply auto |
|
29 |
apply (erule_tac x=y in allE) |
|
30 |
apply auto |
|
31 |
done |
|
32 |
||
33 |
lemma real_le_lsqrt: "0 <= x \<Longrightarrow> 0 <= y \<Longrightarrow> x <= y^2 ==> sqrt x <= y" |
|
34 |
using real_sqrt_le_iff[of x "y^2"] by simp |
|
35 |
||
36 |
lemma real_le_rsqrt: "x^2 \<le> y \<Longrightarrow> x \<le> sqrt y" |
|
37 |
using real_sqrt_le_mono[of "x^2" y] by simp |
|
38 |
||
39 |
lemma real_less_rsqrt: "x^2 < y \<Longrightarrow> x < sqrt y" |
|
40 |
using real_sqrt_less_mono[of "x^2" y] by simp |
|
41 |
||
49522 | 42 |
lemma sqrt_even_pow2: |
43 |
assumes n: "even n" |
|
44133 | 44 |
shows "sqrt(2 ^ n) = 2 ^ (n div 2)" |
49522 | 45 |
proof - |
44133 | 46 |
from n obtain m where m: "n = 2*m" unfolding even_mult_two_ex .. |
47 |
from m have "sqrt(2 ^ n) = sqrt ((2 ^ m) ^ 2)" |
|
48 |
by (simp only: power_mult[symmetric] mult_commute) |
|
49 |
then show ?thesis using m by simp |
|
50 |
qed |
|
51 |
||
52 |
lemma real_div_sqrt: "0 <= x ==> x / sqrt(x) = sqrt(x)" |
|
53 |
apply (cases "x = 0", simp_all) |
|
54 |
using sqrt_divide_self_eq[of x] |
|
55 |
apply (simp add: inverse_eq_divide field_simps) |
|
56 |
done |
|
57 |
||
58 |
text{* Hence derive more interesting properties of the norm. *} |
|
59 |
||
60 |
lemma norm_eq_0_dot: "(norm x = 0) \<longleftrightarrow> (inner x x = (0::real))" |
|
44666 | 61 |
by simp (* TODO: delete *) |
44133 | 62 |
|
49522 | 63 |
lemma norm_cauchy_schwarz: "inner x y <= norm x * norm y" |
44666 | 64 |
(* TODO: move to Inner_Product.thy *) |
44133 | 65 |
using Cauchy_Schwarz_ineq2[of x y] by auto |
66 |
||
67 |
lemma norm_triangle_sub: |
|
68 |
fixes x y :: "'a::real_normed_vector" |
|
69 |
shows "norm x \<le> norm y + norm (x - y)" |
|
70 |
using norm_triangle_ineq[of "y" "x - y"] by (simp add: field_simps) |
|
71 |
||
72 |
lemma norm_le: "norm(x) <= norm(y) \<longleftrightarrow> x \<bullet> x <= y \<bullet> y" |
|
73 |
by (simp add: norm_eq_sqrt_inner) |
|
44666 | 74 |
|
44133 | 75 |
lemma norm_lt: "norm(x) < norm(y) \<longleftrightarrow> x \<bullet> x < y \<bullet> y" |
76 |
by (simp add: norm_eq_sqrt_inner) |
|
44666 | 77 |
|
44133 | 78 |
lemma norm_eq: "norm(x) = norm (y) \<longleftrightarrow> x \<bullet> x = y \<bullet> y" |
49522 | 79 |
apply (subst order_eq_iff) |
80 |
apply (auto simp: norm_le) |
|
81 |
done |
|
44666 | 82 |
|
44133 | 83 |
lemma norm_eq_1: "norm(x) = 1 \<longleftrightarrow> x \<bullet> x = 1" |
44666 | 84 |
by (simp add: norm_eq_sqrt_inner) |
44133 | 85 |
|
86 |
text{* Squaring equations and inequalities involving norms. *} |
|
87 |
||
88 |
lemma dot_square_norm: "x \<bullet> x = norm(x)^2" |
|
44666 | 89 |
by (simp only: power2_norm_eq_inner) (* TODO: move? *) |
44133 | 90 |
|
91 |
lemma norm_eq_square: "norm(x) = a \<longleftrightarrow> 0 <= a \<and> x \<bullet> x = a^2" |
|
92 |
by (auto simp add: norm_eq_sqrt_inner) |
|
93 |
||
94 |
lemma real_abs_le_square_iff: "\<bar>x\<bar> \<le> \<bar>y\<bar> \<longleftrightarrow> (x::real)^2 \<le> y^2" |
|
95 |
proof |
|
96 |
assume "\<bar>x\<bar> \<le> \<bar>y\<bar>" |
|
97 |
then have "\<bar>x\<bar>\<twosuperior> \<le> \<bar>y\<bar>\<twosuperior>" by (rule power_mono, simp) |
|
98 |
then show "x\<twosuperior> \<le> y\<twosuperior>" by simp |
|
99 |
next |
|
100 |
assume "x\<twosuperior> \<le> y\<twosuperior>" |
|
101 |
then have "sqrt (x\<twosuperior>) \<le> sqrt (y\<twosuperior>)" by (rule real_sqrt_le_mono) |
|
102 |
then show "\<bar>x\<bar> \<le> \<bar>y\<bar>" by simp |
|
103 |
qed |
|
104 |
||
105 |
lemma norm_le_square: "norm(x) <= a \<longleftrightarrow> 0 <= a \<and> x \<bullet> x <= a^2" |
|
106 |
apply (simp add: dot_square_norm real_abs_le_square_iff[symmetric]) |
|
107 |
using norm_ge_zero[of x] |
|
108 |
apply arith |
|
109 |
done |
|
110 |
||
111 |
lemma norm_ge_square: "norm(x) >= a \<longleftrightarrow> a <= 0 \<or> x \<bullet> x >= a ^ 2" |
|
112 |
apply (simp add: dot_square_norm real_abs_le_square_iff[symmetric]) |
|
113 |
using norm_ge_zero[of x] |
|
114 |
apply arith |
|
115 |
done |
|
116 |
||
117 |
lemma norm_lt_square: "norm(x) < a \<longleftrightarrow> 0 < a \<and> x \<bullet> x < a^2" |
|
118 |
by (metis not_le norm_ge_square) |
|
119 |
lemma norm_gt_square: "norm(x) > a \<longleftrightarrow> a < 0 \<or> x \<bullet> x > a^2" |
|
120 |
by (metis norm_le_square not_less) |
|
121 |
||
122 |
text{* Dot product in terms of the norm rather than conversely. *} |
|
123 |
||
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44176
diff
changeset
|
124 |
lemmas inner_simps = inner_add_left inner_add_right inner_diff_right inner_diff_left |
49522 | 125 |
inner_scaleR_left inner_scaleR_right |
44133 | 126 |
|
127 |
lemma dot_norm: "x \<bullet> y = (norm(x + y) ^2 - norm x ^ 2 - norm y ^ 2) / 2" |
|
128 |
unfolding power2_norm_eq_inner inner_simps inner_commute by auto |
|
129 |
||
130 |
lemma dot_norm_neg: "x \<bullet> y = ((norm x ^ 2 + norm y ^ 2) - norm(x - y) ^ 2) / 2" |
|
49525 | 131 |
unfolding power2_norm_eq_inner inner_simps inner_commute |
132 |
by (auto simp add: algebra_simps) |
|
44133 | 133 |
|
134 |
text{* Equality of vectors in terms of @{term "op \<bullet>"} products. *} |
|
135 |
||
136 |
lemma vector_eq: "x = y \<longleftrightarrow> x \<bullet> x = x \<bullet> y \<and> y \<bullet> y = x \<bullet> x" (is "?lhs \<longleftrightarrow> ?rhs") |
|
137 |
proof |
|
49652 | 138 |
assume ?lhs |
139 |
then show ?rhs by simp |
|
44133 | 140 |
next |
141 |
assume ?rhs |
|
142 |
then have "x \<bullet> x - x \<bullet> y = 0 \<and> x \<bullet> y - y \<bullet> y = 0" by simp |
|
49652 | 143 |
then have "x \<bullet> (x - y) = 0 \<and> y \<bullet> (x - y) = 0" by (simp add: inner_diff inner_commute) |
44454 | 144 |
then have "(x - y) \<bullet> (x - y) = 0" by (simp add: field_simps inner_diff inner_commute) |
44133 | 145 |
then show "x = y" by (simp) |
146 |
qed |
|
147 |
||
148 |
lemma norm_triangle_half_r: |
|
149 |
shows "norm (y - x1) < e / 2 \<Longrightarrow> norm (y - x2) < e / 2 \<Longrightarrow> norm (x1 - x2) < e" |
|
150 |
using dist_triangle_half_r unfolding dist_norm[THEN sym] by auto |
|
151 |
||
49522 | 152 |
lemma norm_triangle_half_l: |
153 |
assumes "norm (x - y) < e / 2" "norm (x' - (y)) < e / 2" |
|
44133 | 154 |
shows "norm (x - x') < e" |
155 |
using dist_triangle_half_l[OF assms[unfolded dist_norm[THEN sym]]] |
|
156 |
unfolding dist_norm[THEN sym] . |
|
157 |
||
158 |
lemma norm_triangle_le: "norm(x) + norm y <= e ==> norm(x + y) <= e" |
|
44666 | 159 |
by (rule norm_triangle_ineq [THEN order_trans]) |
44133 | 160 |
|
161 |
lemma norm_triangle_lt: "norm(x) + norm(y) < e ==> norm(x + y) < e" |
|
44666 | 162 |
by (rule norm_triangle_ineq [THEN le_less_trans]) |
44133 | 163 |
|
164 |
lemma setsum_clauses: |
|
165 |
shows "setsum f {} = 0" |
|
49525 | 166 |
and "finite S \<Longrightarrow> setsum f (insert x S) = (if x \<in> S then setsum f S else f x + setsum f S)" |
44133 | 167 |
by (auto simp add: insert_absorb) |
168 |
||
169 |
lemma setsum_norm_le: |
|
170 |
fixes f :: "'a \<Rightarrow> 'b::real_normed_vector" |
|
44176
eda112e9cdee
remove redundant lemma setsum_norm in favor of norm_setsum;
huffman
parents:
44170
diff
changeset
|
171 |
assumes fg: "\<forall>x \<in> S. norm (f x) \<le> g x" |
44133 | 172 |
shows "norm (setsum f S) \<le> setsum g S" |
49522 | 173 |
by (rule order_trans [OF norm_setsum setsum_mono]) (simp add: fg) |
44133 | 174 |
|
175 |
lemma setsum_norm_bound: |
|
176 |
fixes f :: "'a \<Rightarrow> 'b::real_normed_vector" |
|
177 |
assumes fS: "finite S" |
|
49522 | 178 |
and K: "\<forall>x \<in> S. norm (f x) \<le> K" |
44133 | 179 |
shows "norm (setsum f S) \<le> of_nat (card S) * K" |
44176
eda112e9cdee
remove redundant lemma setsum_norm in favor of norm_setsum;
huffman
parents:
44170
diff
changeset
|
180 |
using setsum_norm_le[OF K] setsum_constant[symmetric] |
44133 | 181 |
by simp |
182 |
||
183 |
lemma setsum_group: |
|
184 |
assumes fS: "finite S" and fT: "finite T" and fST: "f ` S \<subseteq> T" |
|
185 |
shows "setsum (\<lambda>y. setsum g {x. x\<in> S \<and> f x = y}) T = setsum g S" |
|
186 |
apply (subst setsum_image_gen[OF fS, of g f]) |
|
187 |
apply (rule setsum_mono_zero_right[OF fT fST]) |
|
49522 | 188 |
apply (auto intro: setsum_0') |
189 |
done |
|
44133 | 190 |
|
191 |
lemma vector_eq_ldot: "(\<forall>x. x \<bullet> y = x \<bullet> z) \<longleftrightarrow> y = z" |
|
192 |
proof |
|
193 |
assume "\<forall>x. x \<bullet> y = x \<bullet> z" |
|
49522 | 194 |
then have "\<forall>x. x \<bullet> (y - z) = 0" by (simp add: inner_diff) |
195 |
then have "(y - z) \<bullet> (y - z) = 0" .. |
|
49652 | 196 |
then show "y = z" by simp |
44133 | 197 |
qed simp |
198 |
||
199 |
lemma vector_eq_rdot: "(\<forall>z. x \<bullet> z = y \<bullet> z) \<longleftrightarrow> x = y" |
|
200 |
proof |
|
201 |
assume "\<forall>z. x \<bullet> z = y \<bullet> z" |
|
49522 | 202 |
then have "\<forall>z. (x - y) \<bullet> z = 0" by (simp add: inner_diff) |
203 |
then have "(x - y) \<bullet> (x - y) = 0" .. |
|
49652 | 204 |
then show "x = y" by simp |
44133 | 205 |
qed simp |
206 |
||
49522 | 207 |
|
208 |
subsection {* Orthogonality. *} |
|
44133 | 209 |
|
210 |
context real_inner |
|
211 |
begin |
|
212 |
||
213 |
definition "orthogonal x y \<longleftrightarrow> (x \<bullet> y = 0)" |
|
214 |
||
215 |
lemma orthogonal_clauses: |
|
216 |
"orthogonal a 0" |
|
217 |
"orthogonal a x \<Longrightarrow> orthogonal a (c *\<^sub>R x)" |
|
218 |
"orthogonal a x \<Longrightarrow> orthogonal a (-x)" |
|
219 |
"orthogonal a x \<Longrightarrow> orthogonal a y \<Longrightarrow> orthogonal a (x + y)" |
|
220 |
"orthogonal a x \<Longrightarrow> orthogonal a y \<Longrightarrow> orthogonal a (x - y)" |
|
221 |
"orthogonal 0 a" |
|
222 |
"orthogonal x a \<Longrightarrow> orthogonal (c *\<^sub>R x) a" |
|
223 |
"orthogonal x a \<Longrightarrow> orthogonal (-x) a" |
|
224 |
"orthogonal x a \<Longrightarrow> orthogonal y a \<Longrightarrow> orthogonal (x + y) a" |
|
225 |
"orthogonal x a \<Longrightarrow> orthogonal y a \<Longrightarrow> orthogonal (x - y) a" |
|
44666 | 226 |
unfolding orthogonal_def inner_add inner_diff by auto |
227 |
||
44133 | 228 |
end |
229 |
||
230 |
lemma orthogonal_commute: "orthogonal x y \<longleftrightarrow> orthogonal y x" |
|
231 |
by (simp add: orthogonal_def inner_commute) |
|
232 |
||
49522 | 233 |
|
234 |
subsection {* Linear functions. *} |
|
235 |
||
236 |
definition linear :: "('a::real_vector \<Rightarrow> 'b::real_vector) \<Rightarrow> bool" |
|
237 |
where "linear f \<longleftrightarrow> (\<forall>x y. f(x + y) = f x + f y) \<and> (\<forall>c x. f(c *\<^sub>R x) = c *\<^sub>R f x)" |
|
238 |
||
239 |
lemma linearI: |
|
240 |
assumes "\<And>x y. f (x + y) = f x + f y" "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x" |
|
241 |
shows "linear f" |
|
242 |
using assms unfolding linear_def by auto |
|
44133 | 243 |
|
244 |
lemma linear_compose_cmul: "linear f ==> linear (\<lambda>x. c *\<^sub>R f x)" |
|
245 |
by (simp add: linear_def algebra_simps) |
|
246 |
||
247 |
lemma linear_compose_neg: "linear f ==> linear (\<lambda>x. -(f(x)))" |
|
248 |
by (simp add: linear_def) |
|
249 |
||
250 |
lemma linear_compose_add: "linear f \<Longrightarrow> linear g ==> linear (\<lambda>x. f(x) + g(x))" |
|
251 |
by (simp add: linear_def algebra_simps) |
|
252 |
||
253 |
lemma linear_compose_sub: "linear f \<Longrightarrow> linear g ==> linear (\<lambda>x. f x - g x)" |
|
254 |
by (simp add: linear_def algebra_simps) |
|
255 |
||
256 |
lemma linear_compose: "linear f \<Longrightarrow> linear g ==> linear (g o f)" |
|
257 |
by (simp add: linear_def) |
|
258 |
||
259 |
lemma linear_id: "linear id" by (simp add: linear_def id_def) |
|
260 |
||
261 |
lemma linear_zero: "linear (\<lambda>x. 0)" by (simp add: linear_def) |
|
262 |
||
263 |
lemma linear_compose_setsum: |
|
264 |
assumes fS: "finite S" and lS: "\<forall>a \<in> S. linear (f a)" |
|
265 |
shows "linear(\<lambda>x. setsum (\<lambda>a. f a x) S)" |
|
266 |
using lS |
|
267 |
apply (induct rule: finite_induct[OF fS]) |
|
49522 | 268 |
apply (auto simp add: linear_zero intro: linear_compose_add) |
269 |
done |
|
44133 | 270 |
|
271 |
lemma linear_0: "linear f \<Longrightarrow> f 0 = 0" |
|
272 |
unfolding linear_def |
|
273 |
apply clarsimp |
|
274 |
apply (erule allE[where x="0::'a"]) |
|
275 |
apply simp |
|
276 |
done |
|
277 |
||
49522 | 278 |
lemma linear_cmul: "linear f ==> f(c *\<^sub>R x) = c *\<^sub>R f x" |
279 |
by (simp add: linear_def) |
|
44133 | 280 |
|
281 |
lemma linear_neg: "linear f ==> f (-x) = - f x" |
|
282 |
using linear_cmul [where c="-1"] by simp |
|
283 |
||
49522 | 284 |
lemma linear_add: "linear f ==> f(x + y) = f x + f y" |
285 |
by (metis linear_def) |
|
44133 | 286 |
|
287 |
lemma linear_sub: "linear f ==> f(x - y) = f x - f y" |
|
288 |
by (simp add: diff_minus linear_add linear_neg) |
|
289 |
||
290 |
lemma linear_setsum: |
|
291 |
assumes lf: "linear f" and fS: "finite S" |
|
292 |
shows "f (setsum g S) = setsum (f o g) S" |
|
49522 | 293 |
using fS |
294 |
proof (induct rule: finite_induct) |
|
295 |
case empty |
|
296 |
then show ?case by (simp add: linear_0[OF lf]) |
|
44133 | 297 |
next |
49522 | 298 |
case (insert x F) |
299 |
have "f (setsum g (insert x F)) = f (g x + setsum g F)" using insert.hyps |
|
44133 | 300 |
by simp |
301 |
also have "\<dots> = f (g x) + f (setsum g F)" using linear_add[OF lf] by simp |
|
49522 | 302 |
also have "\<dots> = setsum (f o g) (insert x F)" using insert.hyps by simp |
44133 | 303 |
finally show ?case . |
304 |
qed |
|
305 |
||
306 |
lemma linear_setsum_mul: |
|
307 |
assumes lf: "linear f" and fS: "finite S" |
|
308 |
shows "f (setsum (\<lambda>i. c i *\<^sub>R v i) S) = setsum (\<lambda>i. c i *\<^sub>R f (v i)) S" |
|
49522 | 309 |
using linear_setsum[OF lf fS, of "\<lambda>i. c i *\<^sub>R v i" , unfolded o_def] linear_cmul[OF lf] |
310 |
by simp |
|
44133 | 311 |
|
312 |
lemma linear_injective_0: |
|
313 |
assumes lf: "linear f" |
|
314 |
shows "inj f \<longleftrightarrow> (\<forall>x. f x = 0 \<longrightarrow> x = 0)" |
|
49663 | 315 |
proof - |
44133 | 316 |
have "inj f \<longleftrightarrow> (\<forall> x y. f x = f y \<longrightarrow> x = y)" by (simp add: inj_on_def) |
317 |
also have "\<dots> \<longleftrightarrow> (\<forall> x y. f x - f y = 0 \<longrightarrow> x - y = 0)" by simp |
|
318 |
also have "\<dots> \<longleftrightarrow> (\<forall> x y. f (x - y) = 0 \<longrightarrow> x - y = 0)" |
|
319 |
by (simp add: linear_sub[OF lf]) |
|
320 |
also have "\<dots> \<longleftrightarrow> (\<forall> x. f x = 0 \<longrightarrow> x = 0)" by auto |
|
321 |
finally show ?thesis . |
|
322 |
qed |
|
323 |
||
49522 | 324 |
|
325 |
subsection {* Bilinear functions. *} |
|
44133 | 326 |
|
327 |
definition "bilinear f \<longleftrightarrow> (\<forall>x. linear(\<lambda>y. f x y)) \<and> (\<forall>y. linear(\<lambda>x. f x y))" |
|
328 |
||
329 |
lemma bilinear_ladd: "bilinear h ==> h (x + y) z = (h x z) + (h y z)" |
|
330 |
by (simp add: bilinear_def linear_def) |
|
49663 | 331 |
|
44133 | 332 |
lemma bilinear_radd: "bilinear h ==> h x (y + z) = (h x y) + (h x z)" |
333 |
by (simp add: bilinear_def linear_def) |
|
334 |
||
335 |
lemma bilinear_lmul: "bilinear h ==> h (c *\<^sub>R x) y = c *\<^sub>R (h x y)" |
|
336 |
by (simp add: bilinear_def linear_def) |
|
337 |
||
338 |
lemma bilinear_rmul: "bilinear h ==> h x (c *\<^sub>R y) = c *\<^sub>R (h x y)" |
|
339 |
by (simp add: bilinear_def linear_def) |
|
340 |
||
341 |
lemma bilinear_lneg: "bilinear h ==> h (- x) y = -(h x y)" |
|
342 |
by (simp only: scaleR_minus1_left [symmetric] bilinear_lmul) |
|
343 |
||
344 |
lemma bilinear_rneg: "bilinear h ==> h x (- y) = - h x y" |
|
345 |
by (simp only: scaleR_minus1_left [symmetric] bilinear_rmul) |
|
346 |
||
347 |
lemma (in ab_group_add) eq_add_iff: "x = x + y \<longleftrightarrow> y = 0" |
|
348 |
using add_imp_eq[of x y 0] by auto |
|
349 |
||
49663 | 350 |
lemma bilinear_lzero: assumes "bilinear h" shows "h 0 x = 0" |
351 |
using bilinear_ladd [OF assms, of 0 0 x] by (simp add: eq_add_iff field_simps) |
|
352 |
||
353 |
lemma bilinear_rzero: assumes "bilinear h" shows "h x 0 = 0" |
|
354 |
using bilinear_radd [OF assms, of x 0 0 ] by (simp add: eq_add_iff field_simps) |
|
44133 | 355 |
|
356 |
lemma bilinear_lsub: "bilinear h ==> h (x - y) z = h x z - h y z" |
|
357 |
by (simp add: diff_minus bilinear_ladd bilinear_lneg) |
|
358 |
||
359 |
lemma bilinear_rsub: "bilinear h ==> h z (x - y) = h z x - h z y" |
|
360 |
by (simp add: diff_minus bilinear_radd bilinear_rneg) |
|
361 |
||
362 |
lemma bilinear_setsum: |
|
49663 | 363 |
assumes bh: "bilinear h" |
364 |
and fS: "finite S" |
|
365 |
and fT: "finite T" |
|
44133 | 366 |
shows "h (setsum f S) (setsum g T) = setsum (\<lambda>(i,j). h (f i) (g j)) (S \<times> T) " |
49522 | 367 |
proof - |
44133 | 368 |
have "h (setsum f S) (setsum g T) = setsum (\<lambda>x. h (f x) (setsum g T)) S" |
369 |
apply (rule linear_setsum[unfolded o_def]) |
|
49522 | 370 |
using bh fS apply (auto simp add: bilinear_def) |
371 |
done |
|
44133 | 372 |
also have "\<dots> = setsum (\<lambda>x. setsum (\<lambda>y. h (f x) (g y)) T) S" |
373 |
apply (rule setsum_cong, simp) |
|
374 |
apply (rule linear_setsum[unfolded o_def]) |
|
49522 | 375 |
using bh fT |
376 |
apply (auto simp add: bilinear_def) |
|
377 |
done |
|
44133 | 378 |
finally show ?thesis unfolding setsum_cartesian_product . |
379 |
qed |
|
380 |
||
49522 | 381 |
|
382 |
subsection {* Adjoints. *} |
|
44133 | 383 |
|
384 |
definition "adjoint f = (SOME f'. \<forall>x y. f x \<bullet> y = x \<bullet> f' y)" |
|
385 |
||
386 |
lemma adjoint_unique: |
|
387 |
assumes "\<forall>x y. inner (f x) y = inner x (g y)" |
|
388 |
shows "adjoint f = g" |
|
49522 | 389 |
unfolding adjoint_def |
44133 | 390 |
proof (rule some_equality) |
391 |
show "\<forall>x y. inner (f x) y = inner x (g y)" using assms . |
|
392 |
next |
|
393 |
fix h assume "\<forall>x y. inner (f x) y = inner x (h y)" |
|
49652 | 394 |
then have "\<forall>x y. inner x (g y) = inner x (h y)" using assms by simp |
395 |
then have "\<forall>x y. inner x (g y - h y) = 0" by (simp add: inner_diff_right) |
|
396 |
then have "\<forall>y. inner (g y - h y) (g y - h y) = 0" by simp |
|
397 |
then have "\<forall>y. h y = g y" by simp |
|
398 |
then show "h = g" by (simp add: ext) |
|
44133 | 399 |
qed |
400 |
||
401 |
lemma choice_iff: "(\<forall>x. \<exists>y. P x y) \<longleftrightarrow> (\<exists>f. \<forall>x. P x (f x))" by metis |
|
402 |
||
49522 | 403 |
subsection {* Interlude: Some properties of real sets *} |
44133 | 404 |
|
405 |
lemma seq_mono_lemma: assumes "\<forall>(n::nat) \<ge> m. (d n :: real) < e n" and "\<forall>n \<ge> m. e n <= e m" |
|
406 |
shows "\<forall>n \<ge> m. d n < e m" |
|
407 |
using assms apply auto |
|
408 |
apply (erule_tac x="n" in allE) |
|
409 |
apply (erule_tac x="n" in allE) |
|
410 |
apply auto |
|
411 |
done |
|
412 |
||
413 |
||
414 |
lemma infinite_enumerate: assumes fS: "infinite S" |
|
415 |
shows "\<exists>r. subseq r \<and> (\<forall>n. r n \<in> S)" |
|
49525 | 416 |
unfolding subseq_def |
417 |
using enumerate_in_set[OF fS] enumerate_mono[of _ _ S] fS by auto |
|
44133 | 418 |
|
419 |
lemma approachable_lt_le: "(\<exists>(d::real)>0. \<forall>x. f x < d \<longrightarrow> P x) \<longleftrightarrow> (\<exists>d>0. \<forall>x. f x \<le> d \<longrightarrow> P x)" |
|
49522 | 420 |
apply auto |
421 |
apply (rule_tac x="d/2" in exI) |
|
422 |
apply auto |
|
423 |
done |
|
44133 | 424 |
|
425 |
||
426 |
lemma triangle_lemma: |
|
427 |
assumes x: "0 <= (x::real)" and y:"0 <= y" and z: "0 <= z" and xy: "x^2 <= y^2 + z^2" |
|
428 |
shows "x <= y + z" |
|
49522 | 429 |
proof - |
44133 | 430 |
have "y^2 + z^2 \<le> y^2 + 2*y*z + z^2" using z y by (simp add: mult_nonneg_nonneg) |
431 |
with xy have th: "x ^2 \<le> (y+z)^2" by (simp add: power2_eq_square field_simps) |
|
432 |
from y z have yz: "y + z \<ge> 0" by arith |
|
433 |
from power2_le_imp_le[OF th yz] show ?thesis . |
|
434 |
qed |
|
435 |
||
49522 | 436 |
|
44133 | 437 |
subsection {* A generic notion of "hull" (convex, affine, conic hull and closure). *} |
438 |
||
49522 | 439 |
definition hull :: "('a set \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'a set" (infixl "hull" 75) |
440 |
where "S hull s = Inter {t. S t \<and> s \<subseteq> t}" |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
441 |
|
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
442 |
lemma hull_same: "S s \<Longrightarrow> S hull s = s" |
44133 | 443 |
unfolding hull_def by auto |
444 |
||
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
445 |
lemma hull_in: "(\<And>T. Ball T S ==> S (Inter T)) ==> S (S hull s)" |
49522 | 446 |
unfolding hull_def Ball_def by auto |
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
447 |
|
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
448 |
lemma hull_eq: "(\<And>T. Ball T S ==> S (Inter T)) ==> (S hull s) = s \<longleftrightarrow> S s" |
49522 | 449 |
using hull_same[of S s] hull_in[of S s] by metis |
44133 | 450 |
|
451 |
||
452 |
lemma hull_hull: "S hull (S hull s) = S hull s" |
|
453 |
unfolding hull_def by blast |
|
454 |
||
455 |
lemma hull_subset[intro]: "s \<subseteq> (S hull s)" |
|
456 |
unfolding hull_def by blast |
|
457 |
||
458 |
lemma hull_mono: " s \<subseteq> t ==> (S hull s) \<subseteq> (S hull t)" |
|
459 |
unfolding hull_def by blast |
|
460 |
||
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
461 |
lemma hull_antimono: "\<forall>x. S x \<longrightarrow> T x ==> (T hull s) \<subseteq> (S hull s)" |
44133 | 462 |
unfolding hull_def by blast |
463 |
||
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
464 |
lemma hull_minimal: "s \<subseteq> t \<Longrightarrow> S t ==> (S hull s) \<subseteq> t" |
44133 | 465 |
unfolding hull_def by blast |
466 |
||
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
467 |
lemma subset_hull: "S t ==> S hull s \<subseteq> t \<longleftrightarrow> s \<subseteq> t" |
44133 | 468 |
unfolding hull_def by blast |
469 |
||
49652 | 470 |
lemma hull_unique: "s \<subseteq> t \<Longrightarrow> S t \<Longrightarrow> |
471 |
(\<And>t'. s \<subseteq> t' \<Longrightarrow> S t' \<Longrightarrow> t \<subseteq> t') \<Longrightarrow> (S hull s = t)" |
|
472 |
unfolding hull_def by auto |
|
44133 | 473 |
|
474 |
lemma hull_induct: "(\<And>x. x\<in> S \<Longrightarrow> P x) \<Longrightarrow> Q {x. P x} \<Longrightarrow> \<forall>x\<in> Q hull S. P x" |
|
475 |
using hull_minimal[of S "{x. P x}" Q] |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
476 |
by (auto simp add: subset_eq) |
44133 | 477 |
|
49522 | 478 |
lemma hull_inc: "x \<in> S \<Longrightarrow> x \<in> P hull S" |
479 |
by (metis hull_subset subset_eq) |
|
44133 | 480 |
|
481 |
lemma hull_union_subset: "(S hull s) \<union> (S hull t) \<subseteq> (S hull (s \<union> t))" |
|
49522 | 482 |
unfolding Un_subset_iff by (metis hull_mono Un_upper1 Un_upper2) |
483 |
||
484 |
lemma hull_union: |
|
485 |
assumes T: "\<And>T. Ball T S ==> S (Inter T)" |
|
44133 | 486 |
shows "S hull (s \<union> t) = S hull (S hull s \<union> S hull t)" |
49522 | 487 |
apply rule |
488 |
apply (rule hull_mono) |
|
489 |
unfolding Un_subset_iff |
|
490 |
apply (metis hull_subset Un_upper1 Un_upper2 subset_trans) |
|
491 |
apply (rule hull_minimal) |
|
492 |
apply (metis hull_union_subset) |
|
493 |
apply (metis hull_in T) |
|
494 |
done |
|
44133 | 495 |
|
496 |
lemma hull_redundant_eq: "a \<in> (S hull s) \<longleftrightarrow> (S hull (insert a s) = S hull s)" |
|
497 |
unfolding hull_def by blast |
|
498 |
||
499 |
lemma hull_redundant: "a \<in> (S hull s) ==> (S hull (insert a s) = S hull s)" |
|
49522 | 500 |
by (metis hull_redundant_eq) |
501 |
||
44133 | 502 |
|
44666 | 503 |
subsection {* Archimedean properties and useful consequences *} |
44133 | 504 |
|
505 |
lemma real_arch_simple: "\<exists>n. x <= real (n::nat)" |
|
44666 | 506 |
unfolding real_of_nat_def by (rule ex_le_of_nat) |
44133 | 507 |
|
508 |
lemma real_arch_inv: "0 < e \<longleftrightarrow> (\<exists>n::nat. n \<noteq> 0 \<and> 0 < inverse (real n) \<and> inverse (real n) < e)" |
|
509 |
using reals_Archimedean |
|
510 |
apply (auto simp add: field_simps) |
|
511 |
apply (subgoal_tac "inverse (real n) > 0") |
|
512 |
apply arith |
|
513 |
apply simp |
|
514 |
done |
|
515 |
||
516 |
lemma real_pow_lbound: "0 <= x ==> 1 + real n * x <= (1 + x) ^ n" |
|
49522 | 517 |
proof (induct n) |
518 |
case 0 |
|
519 |
then show ?case by simp |
|
44133 | 520 |
next |
521 |
case (Suc n) |
|
49522 | 522 |
then have h: "1 + real n * x \<le> (1 + x) ^ n" by simp |
44133 | 523 |
from h have p: "1 \<le> (1 + x) ^ n" using Suc.prems by simp |
524 |
from h have "1 + real n * x + x \<le> (1 + x) ^ n + x" by simp |
|
525 |
also have "\<dots> \<le> (1 + x) ^ Suc n" apply (subst diff_le_0_iff_le[symmetric]) |
|
526 |
apply (simp add: field_simps) |
|
49522 | 527 |
using mult_left_mono[OF p Suc.prems] apply simp |
528 |
done |
|
44133 | 529 |
finally show ?case by (simp add: real_of_nat_Suc field_simps) |
530 |
qed |
|
531 |
||
532 |
lemma real_arch_pow: assumes x: "1 < (x::real)" shows "\<exists>n. y < x^n" |
|
49522 | 533 |
proof - |
44133 | 534 |
from x have x0: "x - 1 > 0" by arith |
44666 | 535 |
from reals_Archimedean3[OF x0, rule_format, of y] |
44133 | 536 |
obtain n::nat where n:"y < real n * (x - 1)" by metis |
537 |
from x0 have x00: "x- 1 \<ge> 0" by arith |
|
538 |
from real_pow_lbound[OF x00, of n] n |
|
539 |
have "y < x^n" by auto |
|
540 |
then show ?thesis by metis |
|
541 |
qed |
|
542 |
||
543 |
lemma real_arch_pow2: "\<exists>n. (x::real) < 2^ n" |
|
544 |
using real_arch_pow[of 2 x] by simp |
|
545 |
||
49522 | 546 |
lemma real_arch_pow_inv: |
547 |
assumes y: "(y::real) > 0" and x1: "x < 1" |
|
44133 | 548 |
shows "\<exists>n. x^n < y" |
49522 | 549 |
proof - |
550 |
{ assume x0: "x > 0" |
|
44133 | 551 |
from x0 x1 have ix: "1 < 1/x" by (simp add: field_simps) |
552 |
from real_arch_pow[OF ix, of "1/y"] |
|
553 |
obtain n where n: "1/y < (1/x)^n" by blast |
|
49522 | 554 |
then have ?thesis using y x0 |
555 |
by (auto simp add: field_simps power_divide) } |
|
44133 | 556 |
moreover |
49522 | 557 |
{ assume "\<not> x > 0" |
558 |
with y x1 have ?thesis apply auto by (rule exI[where x=1], auto) } |
|
44133 | 559 |
ultimately show ?thesis by metis |
560 |
qed |
|
561 |
||
49522 | 562 |
lemma forall_pos_mono: |
563 |
"(\<And>d e::real. d < e \<Longrightarrow> P d ==> P e) \<Longrightarrow> |
|
564 |
(\<And>n::nat. n \<noteq> 0 ==> P(inverse(real n))) \<Longrightarrow> (\<And>e. 0 < e ==> P e)" |
|
44133 | 565 |
by (metis real_arch_inv) |
566 |
||
49522 | 567 |
lemma forall_pos_mono_1: |
568 |
"(\<And>d e::real. d < e \<Longrightarrow> P d ==> P e) \<Longrightarrow> |
|
569 |
(\<And>n. P(inverse(real (Suc n)))) ==> 0 < e ==> P e" |
|
44133 | 570 |
apply (rule forall_pos_mono) |
571 |
apply auto |
|
572 |
apply (atomize) |
|
573 |
apply (erule_tac x="n - 1" in allE) |
|
574 |
apply auto |
|
575 |
done |
|
576 |
||
49522 | 577 |
lemma real_archimedian_rdiv_eq_0: |
578 |
assumes x0: "x \<ge> 0" and c: "c \<ge> 0" and xc: "\<forall>(m::nat)>0. real m * x \<le> c" |
|
44133 | 579 |
shows "x = 0" |
49522 | 580 |
proof - |
581 |
{ assume "x \<noteq> 0" with x0 have xp: "x > 0" by arith |
|
44666 | 582 |
from reals_Archimedean3[OF xp, rule_format, of c] |
583 |
obtain n::nat where n: "c < real n * x" by blast |
|
44133 | 584 |
with xc[rule_format, of n] have "n = 0" by arith |
49522 | 585 |
with n c have False by simp } |
44133 | 586 |
then show ?thesis by blast |
587 |
qed |
|
588 |
||
49522 | 589 |
|
44133 | 590 |
subsection{* A bit of linear algebra. *} |
591 |
||
49522 | 592 |
definition (in real_vector) subspace :: "'a set \<Rightarrow> bool" |
593 |
where "subspace S \<longleftrightarrow> 0 \<in> S \<and> (\<forall>x\<in> S. \<forall>y \<in>S. x + y \<in> S) \<and> (\<forall>c. \<forall>x \<in>S. c *\<^sub>R x \<in>S )" |
|
44133 | 594 |
|
595 |
definition (in real_vector) "span S = (subspace hull S)" |
|
596 |
definition (in real_vector) "dependent S \<longleftrightarrow> (\<exists>a \<in> S. a \<in> span(S - {a}))" |
|
597 |
abbreviation (in real_vector) "independent s == ~(dependent s)" |
|
598 |
||
599 |
text {* Closure properties of subspaces. *} |
|
600 |
||
601 |
lemma subspace_UNIV[simp]: "subspace(UNIV)" by (simp add: subspace_def) |
|
602 |
||
603 |
lemma (in real_vector) subspace_0: "subspace S ==> 0 \<in> S" by (metis subspace_def) |
|
604 |
||
605 |
lemma (in real_vector) subspace_add: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S ==> x + y \<in> S" |
|
606 |
by (metis subspace_def) |
|
607 |
||
608 |
lemma (in real_vector) subspace_mul: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> c *\<^sub>R x \<in> S" |
|
609 |
by (metis subspace_def) |
|
610 |
||
611 |
lemma subspace_neg: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> - x \<in> S" |
|
612 |
by (metis scaleR_minus1_left subspace_mul) |
|
613 |
||
614 |
lemma subspace_sub: "subspace S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x - y \<in> S" |
|
615 |
by (metis diff_minus subspace_add subspace_neg) |
|
616 |
||
617 |
lemma (in real_vector) subspace_setsum: |
|
618 |
assumes sA: "subspace A" and fB: "finite B" |
|
49522 | 619 |
and f: "\<forall>x\<in> B. f x \<in> A" |
44133 | 620 |
shows "setsum f B \<in> A" |
621 |
using fB f sA |
|
49522 | 622 |
by (induct rule: finite_induct[OF fB]) |
623 |
(simp add: subspace_def sA, auto simp add: sA subspace_add) |
|
44133 | 624 |
|
625 |
lemma subspace_linear_image: |
|
626 |
assumes lf: "linear f" and sS: "subspace S" |
|
627 |
shows "subspace(f ` S)" |
|
628 |
using lf sS linear_0[OF lf] |
|
629 |
unfolding linear_def subspace_def |
|
630 |
apply (auto simp add: image_iff) |
|
631 |
apply (rule_tac x="x + y" in bexI, auto) |
|
632 |
apply (rule_tac x="c *\<^sub>R x" in bexI, auto) |
|
633 |
done |
|
634 |
||
44521 | 635 |
lemma subspace_linear_vimage: "linear f \<Longrightarrow> subspace S \<Longrightarrow> subspace (f -` S)" |
636 |
by (auto simp add: subspace_def linear_def linear_0[of f]) |
|
637 |
||
44133 | 638 |
lemma subspace_linear_preimage: "linear f ==> subspace S ==> subspace {x. f x \<in> S}" |
639 |
by (auto simp add: subspace_def linear_def linear_0[of f]) |
|
640 |
||
641 |
lemma subspace_trivial: "subspace {0}" |
|
642 |
by (simp add: subspace_def) |
|
643 |
||
644 |
lemma (in real_vector) subspace_inter: "subspace A \<Longrightarrow> subspace B ==> subspace (A \<inter> B)" |
|
645 |
by (simp add: subspace_def) |
|
646 |
||
44521 | 647 |
lemma subspace_Times: "\<lbrakk>subspace A; subspace B\<rbrakk> \<Longrightarrow> subspace (A \<times> B)" |
648 |
unfolding subspace_def zero_prod_def by simp |
|
649 |
||
650 |
text {* Properties of span. *} |
|
651 |
||
44133 | 652 |
lemma (in real_vector) span_mono: "A \<subseteq> B ==> span A \<subseteq> span B" |
653 |
by (metis span_def hull_mono) |
|
654 |
||
655 |
lemma (in real_vector) subspace_span: "subspace(span S)" |
|
656 |
unfolding span_def |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
657 |
apply (rule hull_in) |
44133 | 658 |
apply (simp only: subspace_def Inter_iff Int_iff subset_eq) |
659 |
apply auto |
|
660 |
done |
|
661 |
||
662 |
lemma (in real_vector) span_clauses: |
|
663 |
"a \<in> S ==> a \<in> span S" |
|
664 |
"0 \<in> span S" |
|
665 |
"x\<in> span S \<Longrightarrow> y \<in> span S ==> x + y \<in> span S" |
|
666 |
"x \<in> span S \<Longrightarrow> c *\<^sub>R x \<in> span S" |
|
667 |
by (metis span_def hull_subset subset_eq) |
|
668 |
(metis subspace_span subspace_def)+ |
|
669 |
||
44521 | 670 |
lemma span_unique: |
49522 | 671 |
"S \<subseteq> T \<Longrightarrow> subspace T \<Longrightarrow> (\<And>T'. S \<subseteq> T' \<Longrightarrow> subspace T' \<Longrightarrow> T \<subseteq> T') \<Longrightarrow> span S = T" |
44521 | 672 |
unfolding span_def by (rule hull_unique) |
673 |
||
674 |
lemma span_minimal: "S \<subseteq> T \<Longrightarrow> subspace T \<Longrightarrow> span S \<subseteq> T" |
|
675 |
unfolding span_def by (rule hull_minimal) |
|
676 |
||
677 |
lemma (in real_vector) span_induct: |
|
49522 | 678 |
assumes x: "x \<in> span S" |
679 |
and P: "subspace P" |
|
680 |
and SP: "\<And>x. x \<in> S ==> x \<in> P" |
|
44521 | 681 |
shows "x \<in> P" |
49522 | 682 |
proof - |
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
683 |
from SP have SP': "S \<subseteq> P" by (simp add: subset_eq) |
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
684 |
from x hull_minimal[where S=subspace, OF SP' P, unfolded span_def[symmetric]] |
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
685 |
show "x \<in> P" by (metis subset_eq) |
44133 | 686 |
qed |
687 |
||
688 |
lemma span_empty[simp]: "span {} = {0}" |
|
689 |
apply (simp add: span_def) |
|
690 |
apply (rule hull_unique) |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
691 |
apply (auto simp add: subspace_def) |
44133 | 692 |
done |
693 |
||
694 |
lemma (in real_vector) independent_empty[intro]: "independent {}" |
|
695 |
by (simp add: dependent_def) |
|
696 |
||
49522 | 697 |
lemma dependent_single[simp]: "dependent {x} \<longleftrightarrow> x = 0" |
44133 | 698 |
unfolding dependent_def by auto |
699 |
||
700 |
lemma (in real_vector) independent_mono: "independent A \<Longrightarrow> B \<subseteq> A ==> independent B" |
|
701 |
apply (clarsimp simp add: dependent_def span_mono) |
|
702 |
apply (subgoal_tac "span (B - {a}) \<le> span (A - {a})") |
|
703 |
apply force |
|
704 |
apply (rule span_mono) |
|
705 |
apply auto |
|
706 |
done |
|
707 |
||
708 |
lemma (in real_vector) span_subspace: "A \<subseteq> B \<Longrightarrow> B \<le> span A \<Longrightarrow> subspace B \<Longrightarrow> span A = B" |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
709 |
by (metis order_antisym span_def hull_minimal) |
44133 | 710 |
|
49711 | 711 |
lemma (in real_vector) span_induct': |
712 |
assumes SP: "\<forall>x \<in> S. P x" |
|
713 |
and P: "subspace {x. P x}" |
|
714 |
shows "\<forall>x \<in> span S. P x" |
|
44133 | 715 |
using span_induct SP P by blast |
716 |
||
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
717 |
inductive_set (in real_vector) span_induct_alt_help for S:: "'a set" |
44133 | 718 |
where |
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
719 |
span_induct_alt_help_0: "0 \<in> span_induct_alt_help S" |
49522 | 720 |
| span_induct_alt_help_S: |
721 |
"x \<in> S \<Longrightarrow> z \<in> span_induct_alt_help S \<Longrightarrow> (c *\<^sub>R x + z) \<in> span_induct_alt_help S" |
|
44133 | 722 |
|
723 |
lemma span_induct_alt': |
|
49522 | 724 |
assumes h0: "h 0" and hS: "\<And>c x y. x \<in> S \<Longrightarrow> h y \<Longrightarrow> h (c *\<^sub>R x + y)" |
725 |
shows "\<forall>x \<in> span S. h x" |
|
726 |
proof - |
|
727 |
{ fix x:: "'a" assume x: "x \<in> span_induct_alt_help S" |
|
44133 | 728 |
have "h x" |
729 |
apply (rule span_induct_alt_help.induct[OF x]) |
|
730 |
apply (rule h0) |
|
731 |
apply (rule hS, assumption, assumption) |
|
49522 | 732 |
done } |
44133 | 733 |
note th0 = this |
49522 | 734 |
{ fix x assume x: "x \<in> span S" |
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
735 |
have "x \<in> span_induct_alt_help S" |
49522 | 736 |
proof (rule span_induct[where x=x and S=S]) |
737 |
show "x \<in> span S" using x . |
|
738 |
next |
|
739 |
fix x assume xS : "x \<in> S" |
|
740 |
from span_induct_alt_help_S[OF xS span_induct_alt_help_0, of 1] |
|
741 |
show "x \<in> span_induct_alt_help S" by simp |
|
742 |
next |
|
743 |
have "0 \<in> span_induct_alt_help S" by (rule span_induct_alt_help_0) |
|
744 |
moreover |
|
745 |
{ fix x y |
|
746 |
assume h: "x \<in> span_induct_alt_help S" "y \<in> span_induct_alt_help S" |
|
747 |
from h have "(x + y) \<in> span_induct_alt_help S" |
|
748 |
apply (induct rule: span_induct_alt_help.induct) |
|
749 |
apply simp |
|
750 |
unfolding add_assoc |
|
751 |
apply (rule span_induct_alt_help_S) |
|
752 |
apply assumption |
|
753 |
apply simp |
|
754 |
done } |
|
755 |
moreover |
|
756 |
{ fix c x |
|
757 |
assume xt: "x \<in> span_induct_alt_help S" |
|
758 |
then have "(c *\<^sub>R x) \<in> span_induct_alt_help S" |
|
759 |
apply (induct rule: span_induct_alt_help.induct) |
|
760 |
apply (simp add: span_induct_alt_help_0) |
|
761 |
apply (simp add: scaleR_right_distrib) |
|
762 |
apply (rule span_induct_alt_help_S) |
|
763 |
apply assumption |
|
764 |
apply simp |
|
765 |
done } |
|
766 |
ultimately |
|
767 |
show "subspace (span_induct_alt_help S)" |
|
768 |
unfolding subspace_def Ball_def by blast |
|
769 |
qed } |
|
44133 | 770 |
with th0 show ?thesis by blast |
771 |
qed |
|
772 |
||
773 |
lemma span_induct_alt: |
|
774 |
assumes h0: "h 0" and hS: "\<And>c x y. x \<in> S \<Longrightarrow> h y \<Longrightarrow> h (c *\<^sub>R x + y)" and x: "x \<in> span S" |
|
775 |
shows "h x" |
|
49522 | 776 |
using span_induct_alt'[of h S] h0 hS x by blast |
44133 | 777 |
|
778 |
text {* Individual closure properties. *} |
|
779 |
||
780 |
lemma span_span: "span (span A) = span A" |
|
781 |
unfolding span_def hull_hull .. |
|
782 |
||
783 |
lemma (in real_vector) span_superset: "x \<in> S ==> x \<in> span S" by (metis span_clauses(1)) |
|
784 |
||
785 |
lemma (in real_vector) span_0: "0 \<in> span S" by (metis subspace_span subspace_0) |
|
786 |
||
787 |
lemma span_inc: "S \<subseteq> span S" |
|
788 |
by (metis subset_eq span_superset) |
|
789 |
||
790 |
lemma (in real_vector) dependent_0: assumes "0\<in>A" shows "dependent A" |
|
791 |
unfolding dependent_def apply(rule_tac x=0 in bexI) |
|
792 |
using assms span_0 by auto |
|
793 |
||
794 |
lemma (in real_vector) span_add: "x \<in> span S \<Longrightarrow> y \<in> span S ==> x + y \<in> span S" |
|
795 |
by (metis subspace_add subspace_span) |
|
796 |
||
797 |
lemma (in real_vector) span_mul: "x \<in> span S ==> (c *\<^sub>R x) \<in> span S" |
|
798 |
by (metis subspace_span subspace_mul) |
|
799 |
||
800 |
lemma span_neg: "x \<in> span S ==> - x \<in> span S" |
|
801 |
by (metis subspace_neg subspace_span) |
|
802 |
||
803 |
lemma span_sub: "x \<in> span S \<Longrightarrow> y \<in> span S ==> x - y \<in> span S" |
|
804 |
by (metis subspace_span subspace_sub) |
|
805 |
||
806 |
lemma (in real_vector) span_setsum: "finite A \<Longrightarrow> \<forall>x \<in> A. f x \<in> span S ==> setsum f A \<in> span S" |
|
807 |
by (rule subspace_setsum, rule subspace_span) |
|
808 |
||
809 |
lemma span_add_eq: "x \<in> span S \<Longrightarrow> x + y \<in> span S \<longleftrightarrow> y \<in> span S" |
|
810 |
apply (auto simp only: span_add span_sub) |
|
811 |
apply (subgoal_tac "(x + y) - x \<in> span S", simp) |
|
49522 | 812 |
apply (simp only: span_add span_sub) |
813 |
done |
|
44133 | 814 |
|
815 |
text {* Mapping under linear image. *} |
|
816 |
||
44521 | 817 |
lemma image_subset_iff_subset_vimage: "f ` A \<subseteq> B \<longleftrightarrow> A \<subseteq> f -` B" |
818 |
by auto (* TODO: move *) |
|
819 |
||
820 |
lemma span_linear_image: |
|
821 |
assumes lf: "linear f" |
|
44133 | 822 |
shows "span (f ` S) = f ` (span S)" |
44521 | 823 |
proof (rule span_unique) |
824 |
show "f ` S \<subseteq> f ` span S" |
|
825 |
by (intro image_mono span_inc) |
|
826 |
show "subspace (f ` span S)" |
|
827 |
using lf subspace_span by (rule subspace_linear_image) |
|
828 |
next |
|
49522 | 829 |
fix T assume "f ` S \<subseteq> T" and "subspace T" |
830 |
then show "f ` span S \<subseteq> T" |
|
44521 | 831 |
unfolding image_subset_iff_subset_vimage |
832 |
by (intro span_minimal subspace_linear_vimage lf) |
|
833 |
qed |
|
834 |
||
835 |
lemma span_union: "span (A \<union> B) = (\<lambda>(a, b). a + b) ` (span A \<times> span B)" |
|
836 |
proof (rule span_unique) |
|
837 |
show "A \<union> B \<subseteq> (\<lambda>(a, b). a + b) ` (span A \<times> span B)" |
|
838 |
by safe (force intro: span_clauses)+ |
|
839 |
next |
|
840 |
have "linear (\<lambda>(a, b). a + b)" |
|
841 |
by (simp add: linear_def scaleR_add_right) |
|
842 |
moreover have "subspace (span A \<times> span B)" |
|
843 |
by (intro subspace_Times subspace_span) |
|
844 |
ultimately show "subspace ((\<lambda>(a, b). a + b) ` (span A \<times> span B))" |
|
845 |
by (rule subspace_linear_image) |
|
846 |
next |
|
49711 | 847 |
fix T |
848 |
assume "A \<union> B \<subseteq> T" and "subspace T" |
|
49522 | 849 |
then show "(\<lambda>(a, b). a + b) ` (span A \<times> span B) \<subseteq> T" |
44521 | 850 |
by (auto intro!: subspace_add elim: span_induct) |
44133 | 851 |
qed |
852 |
||
853 |
text {* The key breakdown property. *} |
|
854 |
||
44521 | 855 |
lemma span_singleton: "span {x} = range (\<lambda>k. k *\<^sub>R x)" |
856 |
proof (rule span_unique) |
|
857 |
show "{x} \<subseteq> range (\<lambda>k. k *\<^sub>R x)" |
|
858 |
by (fast intro: scaleR_one [symmetric]) |
|
859 |
show "subspace (range (\<lambda>k. k *\<^sub>R x))" |
|
860 |
unfolding subspace_def |
|
861 |
by (auto intro: scaleR_add_left [symmetric]) |
|
49652 | 862 |
fix T assume "{x} \<subseteq> T" and "subspace T" then show "range (\<lambda>k. k *\<^sub>R x) \<subseteq> T" |
44521 | 863 |
unfolding subspace_def by auto |
864 |
qed |
|
865 |
||
49522 | 866 |
lemma span_insert: "span (insert a S) = {x. \<exists>k. (x - k *\<^sub>R a) \<in> span S}" |
44521 | 867 |
proof - |
868 |
have "span ({a} \<union> S) = {x. \<exists>k. (x - k *\<^sub>R a) \<in> span S}" |
|
869 |
unfolding span_union span_singleton |
|
870 |
apply safe |
|
871 |
apply (rule_tac x=k in exI, simp) |
|
872 |
apply (erule rev_image_eqI [OF SigmaI [OF rangeI]]) |
|
873 |
apply simp |
|
874 |
apply (rule right_minus) |
|
875 |
done |
|
49522 | 876 |
then show ?thesis by simp |
44521 | 877 |
qed |
878 |
||
44133 | 879 |
lemma span_breakdown: |
880 |
assumes bS: "b \<in> S" and aS: "a \<in> span S" |
|
44521 | 881 |
shows "\<exists>k. a - k *\<^sub>R b \<in> span (S - {b})" |
882 |
using assms span_insert [of b "S - {b}"] |
|
883 |
by (simp add: insert_absorb) |
|
44133 | 884 |
|
49522 | 885 |
lemma span_breakdown_eq: "x \<in> span (insert a S) \<longleftrightarrow> (\<exists>k. (x - k *\<^sub>R a) \<in> span S)" |
44521 | 886 |
by (simp add: span_insert) |
44133 | 887 |
|
888 |
text {* Hence some "reversal" results. *} |
|
889 |
||
890 |
lemma in_span_insert: |
|
49711 | 891 |
assumes a: "a \<in> span (insert b S)" |
892 |
and na: "a \<notin> span S" |
|
44133 | 893 |
shows "b \<in> span (insert a S)" |
49663 | 894 |
proof - |
44133 | 895 |
from span_breakdown[of b "insert b S" a, OF insertI1 a] |
896 |
obtain k where k: "a - k*\<^sub>R b \<in> span (S - {b})" by auto |
|
49522 | 897 |
{ assume k0: "k = 0" |
44133 | 898 |
with k have "a \<in> span S" |
899 |
apply (simp) |
|
900 |
apply (rule set_rev_mp) |
|
901 |
apply assumption |
|
902 |
apply (rule span_mono) |
|
903 |
apply blast |
|
904 |
done |
|
49522 | 905 |
with na have ?thesis by blast } |
44133 | 906 |
moreover |
49522 | 907 |
{ assume k0: "k \<noteq> 0" |
44133 | 908 |
have eq: "b = (1/k) *\<^sub>R a - ((1/k) *\<^sub>R a - b)" by simp |
909 |
from k0 have eq': "(1/k) *\<^sub>R (a - k*\<^sub>R b) = (1/k) *\<^sub>R a - b" |
|
910 |
by (simp add: algebra_simps) |
|
911 |
from k have "(1/k) *\<^sub>R (a - k*\<^sub>R b) \<in> span (S - {b})" |
|
912 |
by (rule span_mul) |
|
49652 | 913 |
then have th: "(1/k) *\<^sub>R a - b \<in> span (S - {b})" |
44133 | 914 |
unfolding eq' . |
915 |
||
916 |
from k |
|
917 |
have ?thesis |
|
918 |
apply (subst eq) |
|
919 |
apply (rule span_sub) |
|
920 |
apply (rule span_mul) |
|
921 |
apply (rule span_superset) |
|
922 |
apply blast |
|
923 |
apply (rule set_rev_mp) |
|
924 |
apply (rule th) |
|
925 |
apply (rule span_mono) |
|
49522 | 926 |
using na by blast } |
44133 | 927 |
ultimately show ?thesis by blast |
928 |
qed |
|
929 |
||
930 |
lemma in_span_delete: |
|
931 |
assumes a: "a \<in> span S" |
|
49522 | 932 |
and na: "a \<notin> span (S-{b})" |
44133 | 933 |
shows "b \<in> span (insert a (S - {b}))" |
934 |
apply (rule in_span_insert) |
|
935 |
apply (rule set_rev_mp) |
|
936 |
apply (rule a) |
|
937 |
apply (rule span_mono) |
|
938 |
apply blast |
|
939 |
apply (rule na) |
|
940 |
done |
|
941 |
||
942 |
text {* Transitivity property. *} |
|
943 |
||
44521 | 944 |
lemma span_redundant: "x \<in> span S \<Longrightarrow> span (insert x S) = span S" |
945 |
unfolding span_def by (rule hull_redundant) |
|
946 |
||
44133 | 947 |
lemma span_trans: |
948 |
assumes x: "x \<in> span S" and y: "y \<in> span (insert x S)" |
|
949 |
shows "y \<in> span S" |
|
44521 | 950 |
using assms by (simp only: span_redundant) |
44133 | 951 |
|
952 |
lemma span_insert_0[simp]: "span (insert 0 S) = span S" |
|
44521 | 953 |
by (simp only: span_redundant span_0) |
44133 | 954 |
|
955 |
text {* An explicit expansion is sometimes needed. *} |
|
956 |
||
957 |
lemma span_explicit: |
|
958 |
"span P = {y. \<exists>S u. finite S \<and> S \<subseteq> P \<and> setsum (\<lambda>v. u v *\<^sub>R v) S = y}" |
|
959 |
(is "_ = ?E" is "_ = {y. ?h y}" is "_ = {y. \<exists>S u. ?Q S u y}") |
|
49663 | 960 |
proof - |
49522 | 961 |
{ fix x assume x: "x \<in> ?E" |
44133 | 962 |
then obtain S u where fS: "finite S" and SP: "S\<subseteq>P" and u: "setsum (\<lambda>v. u v *\<^sub>R v) S = x" |
963 |
by blast |
|
964 |
have "x \<in> span P" |
|
965 |
unfolding u[symmetric] |
|
966 |
apply (rule span_setsum[OF fS]) |
|
967 |
using span_mono[OF SP] |
|
49522 | 968 |
apply (auto intro: span_superset span_mul) |
969 |
done } |
|
44133 | 970 |
moreover |
971 |
have "\<forall>x \<in> span P. x \<in> ?E" |
|
49522 | 972 |
proof (rule span_induct_alt') |
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
973 |
show "0 \<in> Collect ?h" |
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
974 |
unfolding mem_Collect_eq |
49522 | 975 |
apply (rule exI[where x="{}"]) |
976 |
apply simp |
|
977 |
done |
|
44133 | 978 |
next |
979 |
fix c x y |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
980 |
assume x: "x \<in> P" and hy: "y \<in> Collect ?h" |
44133 | 981 |
from hy obtain S u where fS: "finite S" and SP: "S\<subseteq>P" |
982 |
and u: "setsum (\<lambda>v. u v *\<^sub>R v) S = y" by blast |
|
983 |
let ?S = "insert x S" |
|
49522 | 984 |
let ?u = "\<lambda>y. if y = x then (if x \<in> S then u y + c else c) else u y" |
44133 | 985 |
from fS SP x have th0: "finite (insert x S)" "insert x S \<subseteq> P" by blast+ |
49522 | 986 |
{ assume xS: "x \<in> S" |
44133 | 987 |
have S1: "S = (S - {x}) \<union> {x}" |
988 |
and Sss:"finite (S - {x})" "finite {x}" "(S -{x}) \<inter> {x} = {}" using xS fS by auto |
|
989 |
have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S =(\<Sum>v\<in>S - {x}. u v *\<^sub>R v) + (u x + c) *\<^sub>R x" |
|
990 |
using xS |
|
991 |
by (simp add: setsum_Un_disjoint[OF Sss, unfolded S1[symmetric]] |
|
992 |
setsum_clauses(2)[OF fS] cong del: if_weak_cong) |
|
993 |
also have "\<dots> = (\<Sum>v\<in>S. u v *\<^sub>R v) + c *\<^sub>R x" |
|
994 |
apply (simp add: setsum_Un_disjoint[OF Sss, unfolded S1[symmetric]]) |
|
49522 | 995 |
apply (simp add: algebra_simps) |
996 |
done |
|
44133 | 997 |
also have "\<dots> = c*\<^sub>R x + y" |
998 |
by (simp add: add_commute u) |
|
999 |
finally have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = c*\<^sub>R x + y" . |
|
49522 | 1000 |
then have "?Q ?S ?u (c*\<^sub>R x + y)" using th0 by blast } |
1001 |
moreover |
|
1002 |
{ assume xS: "x \<notin> S" |
|
1003 |
have th00: "(\<Sum>v\<in>S. (if v = x then c else u v) *\<^sub>R v) = y" |
|
1004 |
unfolding u[symmetric] |
|
1005 |
apply (rule setsum_cong2) |
|
1006 |
using xS apply auto |
|
1007 |
done |
|
1008 |
have "?Q ?S ?u (c*\<^sub>R x + y)" using fS xS th0 |
|
1009 |
by (simp add: th00 setsum_clauses add_commute cong del: if_weak_cong) } |
|
1010 |
ultimately have "?Q ?S ?u (c*\<^sub>R x + y)" by (cases "x \<in> S") simp_all |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
1011 |
then show "(c*\<^sub>R x + y) \<in> Collect ?h" |
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
1012 |
unfolding mem_Collect_eq |
44133 | 1013 |
apply - |
1014 |
apply (rule exI[where x="?S"]) |
|
49522 | 1015 |
apply (rule exI[where x="?u"]) |
1016 |
apply metis |
|
1017 |
done |
|
44133 | 1018 |
qed |
1019 |
ultimately show ?thesis by blast |
|
1020 |
qed |
|
1021 |
||
1022 |
lemma dependent_explicit: |
|
49522 | 1023 |
"dependent P \<longleftrightarrow> (\<exists>S u. finite S \<and> S \<subseteq> P \<and> (\<exists>v\<in>S. u v \<noteq> 0 \<and> setsum (\<lambda>v. u v *\<^sub>R v) S = 0))" |
1024 |
(is "?lhs = ?rhs") |
|
1025 |
proof - |
|
1026 |
{ assume dP: "dependent P" |
|
44133 | 1027 |
then obtain a S u where aP: "a \<in> P" and fS: "finite S" |
1028 |
and SP: "S \<subseteq> P - {a}" and ua: "setsum (\<lambda>v. u v *\<^sub>R v) S = a" |
|
1029 |
unfolding dependent_def span_explicit by blast |
|
1030 |
let ?S = "insert a S" |
|
1031 |
let ?u = "\<lambda>y. if y = a then - 1 else u y" |
|
1032 |
let ?v = a |
|
1033 |
from aP SP have aS: "a \<notin> S" by blast |
|
1034 |
from fS SP aP have th0: "finite ?S" "?S \<subseteq> P" "?v \<in> ?S" "?u ?v \<noteq> 0" by auto |
|
1035 |
have s0: "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = 0" |
|
1036 |
using fS aS |
|
1037 |
apply (simp add: setsum_clauses field_simps) |
|
1038 |
apply (subst (2) ua[symmetric]) |
|
1039 |
apply (rule setsum_cong2) |
|
49522 | 1040 |
apply auto |
1041 |
done |
|
44133 | 1042 |
with th0 have ?rhs |
1043 |
apply - |
|
1044 |
apply (rule exI[where x= "?S"]) |
|
1045 |
apply (rule exI[where x= "?u"]) |
|
49522 | 1046 |
apply auto |
1047 |
done |
|
1048 |
} |
|
44133 | 1049 |
moreover |
49522 | 1050 |
{ fix S u v |
1051 |
assume fS: "finite S" |
|
44133 | 1052 |
and SP: "S \<subseteq> P" and vS: "v \<in> S" and uv: "u v \<noteq> 0" |
49522 | 1053 |
and u: "setsum (\<lambda>v. u v *\<^sub>R v) S = 0" |
44133 | 1054 |
let ?a = v |
1055 |
let ?S = "S - {v}" |
|
1056 |
let ?u = "\<lambda>i. (- u i) / u v" |
|
49522 | 1057 |
have th0: "?a \<in> P" "finite ?S" "?S \<subseteq> P" using fS SP vS by auto |
44133 | 1058 |
have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = setsum (\<lambda>v. (- (inverse (u ?a))) *\<^sub>R (u v *\<^sub>R v)) S - ?u v *\<^sub>R v" |
49522 | 1059 |
using fS vS uv by (simp add: setsum_diff1 divide_inverse field_simps) |
1060 |
also have "\<dots> = ?a" unfolding scaleR_right.setsum [symmetric] u using uv by simp |
|
44133 | 1061 |
finally have "setsum (\<lambda>v. ?u v *\<^sub>R v) ?S = ?a" . |
1062 |
with th0 have ?lhs |
|
1063 |
unfolding dependent_def span_explicit |
|
1064 |
apply - |
|
1065 |
apply (rule bexI[where x= "?a"]) |
|
1066 |
apply (simp_all del: scaleR_minus_left) |
|
1067 |
apply (rule exI[where x= "?S"]) |
|
49522 | 1068 |
apply (auto simp del: scaleR_minus_left) |
1069 |
done |
|
1070 |
} |
|
44133 | 1071 |
ultimately show ?thesis by blast |
1072 |
qed |
|
1073 |
||
1074 |
||
1075 |
lemma span_finite: |
|
1076 |
assumes fS: "finite S" |
|
1077 |
shows "span S = {y. \<exists>u. setsum (\<lambda>v. u v *\<^sub>R v) S = y}" |
|
1078 |
(is "_ = ?rhs") |
|
49522 | 1079 |
proof - |
49711 | 1080 |
{ fix y |
1081 |
assume y: "y \<in> span S" |
|
44133 | 1082 |
from y obtain S' u where fS': "finite S'" and SS': "S' \<subseteq> S" and |
1083 |
u: "setsum (\<lambda>v. u v *\<^sub>R v) S' = y" unfolding span_explicit by blast |
|
1084 |
let ?u = "\<lambda>x. if x \<in> S' then u x else 0" |
|
1085 |
have "setsum (\<lambda>v. ?u v *\<^sub>R v) S = setsum (\<lambda>v. u v *\<^sub>R v) S'" |
|
1086 |
using SS' fS by (auto intro!: setsum_mono_zero_cong_right) |
|
49522 | 1087 |
then have "setsum (\<lambda>v. ?u v *\<^sub>R v) S = y" by (metis u) |
1088 |
then have "y \<in> ?rhs" by auto } |
|
44133 | 1089 |
moreover |
49522 | 1090 |
{ fix y u |
1091 |
assume u: "setsum (\<lambda>v. u v *\<^sub>R v) S = y" |
|
1092 |
then have "y \<in> span S" using fS unfolding span_explicit by auto } |
|
44133 | 1093 |
ultimately show ?thesis by blast |
1094 |
qed |
|
1095 |
||
1096 |
text {* This is useful for building a basis step-by-step. *} |
|
1097 |
||
1098 |
lemma independent_insert: |
|
1099 |
"independent(insert a S) \<longleftrightarrow> |
|
1100 |
(if a \<in> S then independent S |
|
1101 |
else independent S \<and> a \<notin> span S)" (is "?lhs \<longleftrightarrow> ?rhs") |
|
49522 | 1102 |
proof - |
1103 |
{ assume aS: "a \<in> S" |
|
1104 |
then have ?thesis using insert_absorb[OF aS] by simp } |
|
44133 | 1105 |
moreover |
49522 | 1106 |
{ assume aS: "a \<notin> S" |
1107 |
{ assume i: ?lhs |
|
44133 | 1108 |
then have ?rhs using aS |
1109 |
apply simp |
|
1110 |
apply (rule conjI) |
|
1111 |
apply (rule independent_mono) |
|
1112 |
apply assumption |
|
1113 |
apply blast |
|
49522 | 1114 |
apply (simp add: dependent_def) |
1115 |
done } |
|
44133 | 1116 |
moreover |
49522 | 1117 |
{ assume i: ?rhs |
44133 | 1118 |
have ?lhs using i aS |
1119 |
apply simp |
|
1120 |
apply (auto simp add: dependent_def) |
|
1121 |
apply (case_tac "aa = a", auto) |
|
1122 |
apply (subgoal_tac "insert a S - {aa} = insert a (S - {aa})") |
|
1123 |
apply simp |
|
1124 |
apply (subgoal_tac "a \<in> span (insert aa (S - {aa}))") |
|
1125 |
apply (subgoal_tac "insert aa (S - {aa}) = S") |
|
1126 |
apply simp |
|
1127 |
apply blast |
|
1128 |
apply (rule in_span_insert) |
|
1129 |
apply assumption |
|
1130 |
apply blast |
|
1131 |
apply blast |
|
49522 | 1132 |
done } |
1133 |
ultimately have ?thesis by blast } |
|
44133 | 1134 |
ultimately show ?thesis by blast |
1135 |
qed |
|
1136 |
||
1137 |
text {* The degenerate case of the Exchange Lemma. *} |
|
1138 |
||
1139 |
lemma mem_delete: "x \<in> (A - {a}) \<longleftrightarrow> x \<noteq> a \<and> x \<in> A" |
|
1140 |
by blast |
|
1141 |
||
1142 |
lemma spanning_subset_independent: |
|
49711 | 1143 |
assumes BA: "B \<subseteq> A" |
1144 |
and iA: "independent A" |
|
49522 | 1145 |
and AsB: "A \<subseteq> span B" |
44133 | 1146 |
shows "A = B" |
1147 |
proof |
|
49663 | 1148 |
show "B \<subseteq> A" by (rule BA) |
1149 |
||
44133 | 1150 |
from span_mono[OF BA] span_mono[OF AsB] |
1151 |
have sAB: "span A = span B" unfolding span_span by blast |
|
1152 |
||
49522 | 1153 |
{ fix x assume x: "x \<in> A" |
44133 | 1154 |
from iA have th0: "x \<notin> span (A - {x})" |
1155 |
unfolding dependent_def using x by blast |
|
1156 |
from x have xsA: "x \<in> span A" by (blast intro: span_superset) |
|
1157 |
have "A - {x} \<subseteq> A" by blast |
|
49652 | 1158 |
then have th1:"span (A - {x}) \<subseteq> span A" by (metis span_mono) |
49522 | 1159 |
{ assume xB: "x \<notin> B" |
44133 | 1160 |
from xB BA have "B \<subseteq> A -{x}" by blast |
49652 | 1161 |
then have "span B \<subseteq> span (A - {x})" by (metis span_mono) |
44133 | 1162 |
with th1 th0 sAB have "x \<notin> span A" by blast |
49522 | 1163 |
with x have False by (metis span_superset) } |
1164 |
then have "x \<in> B" by blast } |
|
44133 | 1165 |
then show "A \<subseteq> B" by blast |
1166 |
qed |
|
1167 |
||
1168 |
text {* The general case of the Exchange Lemma, the key to what follows. *} |
|
1169 |
||
1170 |
lemma exchange_lemma: |
|
49711 | 1171 |
assumes f:"finite t" |
1172 |
and i: "independent s" |
|
1173 |
and sp: "s \<subseteq> span t" |
|
44133 | 1174 |
shows "\<exists>t'. (card t' = card t) \<and> finite t' \<and> s \<subseteq> t' \<and> t' \<subseteq> s \<union> t \<and> s \<subseteq> span t'" |
49663 | 1175 |
using f i sp |
49522 | 1176 |
proof (induct "card (t - s)" arbitrary: s t rule: less_induct) |
44133 | 1177 |
case less |
1178 |
note ft = `finite t` and s = `independent s` and sp = `s \<subseteq> span t` |
|
1179 |
let ?P = "\<lambda>t'. (card t' = card t) \<and> finite t' \<and> s \<subseteq> t' \<and> t' \<subseteq> s \<union> t \<and> s \<subseteq> span t'" |
|
1180 |
let ?ths = "\<exists>t'. ?P t'" |
|
49522 | 1181 |
{ assume st: "s \<subseteq> t" |
44133 | 1182 |
from st ft span_mono[OF st] have ?ths apply - apply (rule exI[where x=t]) |
49522 | 1183 |
apply (auto intro: span_superset) |
1184 |
done } |
|
44133 | 1185 |
moreover |
49522 | 1186 |
{ assume st: "t \<subseteq> s" |
44133 | 1187 |
from spanning_subset_independent[OF st s sp] |
49711 | 1188 |
st ft span_mono[OF st] have ?ths |
1189 |
apply - |
|
1190 |
apply (rule exI[where x=t]) |
|
1191 |
apply (auto intro: span_superset) |
|
1192 |
done } |
|
44133 | 1193 |
moreover |
49522 | 1194 |
{ assume st: "\<not> s \<subseteq> t" "\<not> t \<subseteq> s" |
44133 | 1195 |
from st(2) obtain b where b: "b \<in> t" "b \<notin> s" by blast |
1196 |
from b have "t - {b} - s \<subset> t - s" by blast |
|
1197 |
then have cardlt: "card (t - {b} - s) < card (t - s)" using ft |
|
1198 |
by (auto intro: psubset_card_mono) |
|
1199 |
from b ft have ct0: "card t \<noteq> 0" by auto |
|
49522 | 1200 |
{ assume stb: "s \<subseteq> span(t -{b})" |
44133 | 1201 |
from ft have ftb: "finite (t -{b})" by auto |
1202 |
from less(1)[OF cardlt ftb s stb] |
|
49522 | 1203 |
obtain u where u: "card u = card (t-{b})" "s \<subseteq> u" "u \<subseteq> s \<union> (t - {b})" "s \<subseteq> span u" |
1204 |
and fu: "finite u" by blast |
|
44133 | 1205 |
let ?w = "insert b u" |
1206 |
have th0: "s \<subseteq> insert b u" using u by blast |
|
1207 |
from u(3) b have "u \<subseteq> s \<union> t" by blast |
|
1208 |
then have th1: "insert b u \<subseteq> s \<union> t" using u b by blast |
|
1209 |
have bu: "b \<notin> u" using b u by blast |
|
1210 |
from u(1) ft b have "card u = (card t - 1)" by auto |
|
49522 | 1211 |
then have th2: "card (insert b u) = card t" |
44133 | 1212 |
using card_insert_disjoint[OF fu bu] ct0 by auto |
1213 |
from u(4) have "s \<subseteq> span u" . |
|
1214 |
also have "\<dots> \<subseteq> span (insert b u)" apply (rule span_mono) by blast |
|
1215 |
finally have th3: "s \<subseteq> span (insert b u)" . |
|
1216 |
from th0 th1 th2 th3 fu have th: "?P ?w" by blast |
|
49522 | 1217 |
from th have ?ths by blast } |
44133 | 1218 |
moreover |
49522 | 1219 |
{ assume stb: "\<not> s \<subseteq> span(t -{b})" |
44133 | 1220 |
from stb obtain a where a: "a \<in> s" "a \<notin> span (t - {b})" by blast |
1221 |
have ab: "a \<noteq> b" using a b by blast |
|
1222 |
have at: "a \<notin> t" using a ab span_superset[of a "t- {b}"] by auto |
|
1223 |
have mlt: "card ((insert a (t - {b})) - s) < card (t - s)" |
|
1224 |
using cardlt ft a b by auto |
|
1225 |
have ft': "finite (insert a (t - {b}))" using ft by auto |
|
49522 | 1226 |
{ fix x assume xs: "x \<in> s" |
44133 | 1227 |
have t: "t \<subseteq> (insert b (insert a (t -{b})))" using b by auto |
1228 |
from b(1) have "b \<in> span t" by (simp add: span_superset) |
|
1229 |
have bs: "b \<in> span (insert a (t - {b}))" apply(rule in_span_delete) |
|
49522 | 1230 |
using a sp unfolding subset_eq apply auto done |
44133 | 1231 |
from xs sp have "x \<in> span t" by blast |
1232 |
with span_mono[OF t] |
|
1233 |
have x: "x \<in> span (insert b (insert a (t - {b})))" .. |
|
49522 | 1234 |
from span_trans[OF bs x] have "x \<in> span (insert a (t - {b}))" . } |
44133 | 1235 |
then have sp': "s \<subseteq> span (insert a (t - {b}))" by blast |
1236 |
||
1237 |
from less(1)[OF mlt ft' s sp'] obtain u where |
|
1238 |
u: "card u = card (insert a (t -{b}))" "finite u" "s \<subseteq> u" "u \<subseteq> s \<union> insert a (t -{b})" |
|
49522 | 1239 |
"s \<subseteq> span u" by blast |
44133 | 1240 |
from u a b ft at ct0 have "?P u" by auto |
1241 |
then have ?ths by blast } |
|
1242 |
ultimately have ?ths by blast |
|
1243 |
} |
|
49522 | 1244 |
ultimately show ?ths by blast |
44133 | 1245 |
qed |
1246 |
||
1247 |
text {* This implies corresponding size bounds. *} |
|
1248 |
||
1249 |
lemma independent_span_bound: |
|
1250 |
assumes f: "finite t" and i: "independent s" and sp:"s \<subseteq> span t" |
|
1251 |
shows "finite s \<and> card s \<le> card t" |
|
1252 |
by (metis exchange_lemma[OF f i sp] finite_subset card_mono) |
|
1253 |
||
1254 |
||
1255 |
lemma finite_Atleast_Atmost_nat[simp]: "finite {f x |x. x\<in> (UNIV::'a::finite set)}" |
|
49522 | 1256 |
proof - |
44133 | 1257 |
have eq: "{f x |x. x\<in> UNIV} = f ` UNIV" by auto |
1258 |
show ?thesis unfolding eq |
|
1259 |
apply (rule finite_imageI) |
|
1260 |
apply (rule finite) |
|
1261 |
done |
|
1262 |
qed |
|
1263 |
||
1264 |
subsection{* Euclidean Spaces as Typeclass*} |
|
1265 |
||
1266 |
lemma independent_eq_inj_on: |
|
49663 | 1267 |
fixes D :: nat |
1268 |
and f :: "nat \<Rightarrow> 'c::real_vector" |
|
1269 |
assumes "inj_on f {..<D}" |
|
44133 | 1270 |
shows "independent (f ` {..<D}) \<longleftrightarrow> (\<forall>a u. a < D \<longrightarrow> (\<Sum>i\<in>{..<D}-{a}. u (f i) *\<^sub>R f i) \<noteq> f a)" |
1271 |
proof - |
|
49663 | 1272 |
from assms have eq: "\<And>i. i < D \<Longrightarrow> f ` {..<D} - {f i} = f`({..<D} - {i})" |
44133 | 1273 |
and inj: "\<And>i. inj_on f ({..<D} - {i})" |
1274 |
by (auto simp: inj_on_def) |
|
1275 |
have *: "\<And>i. finite (f ` {..<D} - {i})" by simp |
|
1276 |
show ?thesis unfolding dependent_def span_finite[OF *] |
|
1277 |
by (auto simp: eq setsum_reindex[OF inj]) |
|
1278 |
qed |
|
1279 |
||
49663 | 1280 |
lemma independent_basis: "independent (basis ` {..<DIM('a)} :: 'a::euclidean_space set)" |
44133 | 1281 |
unfolding independent_eq_inj_on [OF basis_inj] |
1282 |
apply clarify |
|
1283 |
apply (drule_tac f="inner (basis a)" in arg_cong) |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44176
diff
changeset
|
1284 |
apply (simp add: inner_setsum_right dot_basis) |
44133 | 1285 |
done |
1286 |
||
49711 | 1287 |
lemma (in euclidean_space) range_basis: "range basis = insert 0 (basis ` {..<DIM('a)})" |
44133 | 1288 |
proof - |
1289 |
have *: "UNIV = {..<DIM('a)} \<union> {DIM('a)..}" by auto |
|
1290 |
show ?thesis unfolding * image_Un basis_finite by auto |
|
1291 |
qed |
|
1292 |
||
49663 | 1293 |
lemma (in euclidean_space) range_basis_finite[intro]: "finite (range basis)" |
44133 | 1294 |
unfolding range_basis by auto |
1295 |
||
1296 |
lemma span_basis: "span (range basis) = (UNIV :: 'a::euclidean_space set)" |
|
1297 |
proof - |
|
1298 |
{ fix x :: 'a |
|
1299 |
have "(\<Sum>i<DIM('a). (x $$ i) *\<^sub>R basis i) \<in> span (range basis :: 'a set)" |
|
1300 |
by (simp add: span_setsum span_mul span_superset) |
|
49522 | 1301 |
then have "x \<in> span (range basis)" |
44133 | 1302 |
by (simp only: euclidean_representation [symmetric]) |
49522 | 1303 |
} then show ?thesis by auto |
44133 | 1304 |
qed |
1305 |
||
1306 |
lemma basis_representation: |
|
1307 |
"\<exists>u. x = (\<Sum>v\<in>basis ` {..<DIM('a)}. u v *\<^sub>R (v\<Colon>'a\<Colon>euclidean_space))" |
|
1308 |
proof - |
|
1309 |
have "x\<in>UNIV" by auto from this[unfolded span_basis[THEN sym]] |
|
1310 |
have "\<exists>u. (\<Sum>v\<in>basis ` {..<DIM('a)}. u v *\<^sub>R v) = x" |
|
1311 |
unfolding range_basis span_insert_0 apply(subst (asm) span_finite) by auto |
|
49522 | 1312 |
then show ?thesis by fastforce |
44133 | 1313 |
qed |
1314 |
||
1315 |
lemma span_basis'[simp]:"span ((basis::nat=>'a) ` {..<DIM('a::euclidean_space)}) = UNIV" |
|
49663 | 1316 |
apply(subst span_basis[symmetric]) |
1317 |
unfolding range_basis |
|
1318 |
apply auto |
|
1319 |
done |
|
44133 | 1320 |
|
1321 |
lemma card_basis[simp]:"card ((basis::nat=>'a) ` {..<DIM('a::euclidean_space)}) = DIM('a)" |
|
49663 | 1322 |
apply (subst card_image) |
1323 |
using basis_inj apply auto |
|
1324 |
done |
|
44133 | 1325 |
|
1326 |
lemma in_span_basis: "(x::'a::euclidean_space) \<in> span (basis ` {..<DIM('a)})" |
|
1327 |
unfolding span_basis' .. |
|
1328 |
||
1329 |
lemma norm_bound_component_le: "norm (x::'a::euclidean_space) \<le> e \<Longrightarrow> \<bar>x$$i\<bar> <= e" |
|
1330 |
by (metis component_le_norm order_trans) |
|
1331 |
||
1332 |
lemma norm_bound_component_lt: "norm (x::'a::euclidean_space) < e \<Longrightarrow> \<bar>x$$i\<bar> < e" |
|
1333 |
by (metis component_le_norm basic_trans_rules(21)) |
|
1334 |
||
1335 |
lemma norm_le_l1: "norm (x::'a::euclidean_space) \<le> (\<Sum>i<DIM('a). \<bar>x $$ i\<bar>)" |
|
1336 |
apply (subst euclidean_representation[of x]) |
|
44176
eda112e9cdee
remove redundant lemma setsum_norm in favor of norm_setsum;
huffman
parents:
44170
diff
changeset
|
1337 |
apply (rule order_trans[OF norm_setsum]) |
49522 | 1338 |
apply (auto intro!: setsum_mono) |
1339 |
done |
|
44133 | 1340 |
|
1341 |
lemma setsum_norm_allsubsets_bound: |
|
1342 |
fixes f:: "'a \<Rightarrow> 'n::euclidean_space" |
|
1343 |
assumes fP: "finite P" and fPs: "\<And>Q. Q \<subseteq> P \<Longrightarrow> norm (setsum f Q) \<le> e" |
|
1344 |
shows "setsum (\<lambda>x. norm (f x)) P \<le> 2 * real DIM('n) * e" |
|
49522 | 1345 |
proof - |
44133 | 1346 |
let ?d = "real DIM('n)" |
1347 |
let ?nf = "\<lambda>x. norm (f x)" |
|
1348 |
let ?U = "{..<DIM('n)}" |
|
1349 |
have th0: "setsum (\<lambda>x. setsum (\<lambda>i. \<bar>f x $$ i\<bar>) ?U) P = setsum (\<lambda>i. setsum (\<lambda>x. \<bar>f x $$ i\<bar>) P) ?U" |
|
1350 |
by (rule setsum_commute) |
|
1351 |
have th1: "2 * ?d * e = of_nat (card ?U) * (2 * e)" by (simp add: real_of_nat_def) |
|
1352 |
have "setsum ?nf P \<le> setsum (\<lambda>x. setsum (\<lambda>i. \<bar>f x $$ i\<bar>) ?U) P" |
|
49663 | 1353 |
by (rule setsum_mono) (rule norm_le_l1) |
44133 | 1354 |
also have "\<dots> \<le> 2 * ?d * e" |
1355 |
unfolding th0 th1 |
|
49522 | 1356 |
proof (rule setsum_bounded) |
44133 | 1357 |
fix i assume i: "i \<in> ?U" |
1358 |
let ?Pp = "{x. x\<in> P \<and> f x $$ i \<ge> 0}" |
|
1359 |
let ?Pn = "{x. x \<in> P \<and> f x $$ i < 0}" |
|
1360 |
have thp: "P = ?Pp \<union> ?Pn" by auto |
|
1361 |
have thp0: "?Pp \<inter> ?Pn ={}" by auto |
|
1362 |
have PpP: "?Pp \<subseteq> P" and PnP: "?Pn \<subseteq> P" by blast+ |
|
1363 |
have Ppe:"setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pp \<le> e" |
|
1364 |
using component_le_norm[of "setsum (\<lambda>x. f x) ?Pp" i] fPs[OF PpP] |
|
44457
d366fa5551ef
declare euclidean_simps [simp] at the point they are proved;
huffman
parents:
44454
diff
changeset
|
1365 |
by(auto intro: abs_le_D1) |
44133 | 1366 |
have Pne: "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pn \<le> e" |
1367 |
using component_le_norm[of "setsum (\<lambda>x. - f x) ?Pn" i] fPs[OF PnP] |
|
1368 |
by(auto simp add: setsum_negf intro: abs_le_D1) |
|
1369 |
have "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) P = setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pp + setsum (\<lambda>x. \<bar>f x $$ i\<bar>) ?Pn" |
|
1370 |
apply (subst thp) |
|
1371 |
apply (rule setsum_Un_zero) |
|
49522 | 1372 |
using fP thp0 apply auto |
1373 |
done |
|
44133 | 1374 |
also have "\<dots> \<le> 2*e" using Pne Ppe by arith |
1375 |
finally show "setsum (\<lambda>x. \<bar>f x $$ i\<bar>) P \<le> 2*e" . |
|
1376 |
qed |
|
1377 |
finally show ?thesis . |
|
1378 |
qed |
|
1379 |
||
1380 |
lemma choice_iff': "(\<forall>x<d. \<exists>y. P x y) \<longleftrightarrow> (\<exists>f. \<forall>x<d. P x (f x))" by metis |
|
1381 |
||
1382 |
lemma lambda_skolem': "(\<forall>i<DIM('a::euclidean_space). \<exists>x. P i x) \<longleftrightarrow> |
|
1383 |
(\<exists>x::'a. \<forall>i<DIM('a). P i (x$$i))" (is "?lhs \<longleftrightarrow> ?rhs") |
|
49663 | 1384 |
proof - |
44133 | 1385 |
let ?S = "{..<DIM('a)}" |
49522 | 1386 |
{ assume H: "?rhs" |
1387 |
then have ?lhs by auto } |
|
44133 | 1388 |
moreover |
49522 | 1389 |
{ assume H: "?lhs" |
44133 | 1390 |
then obtain f where f:"\<forall>i<DIM('a). P i (f i)" unfolding choice_iff' by metis |
1391 |
let ?x = "(\<chi>\<chi> i. (f i)) :: 'a" |
|
49522 | 1392 |
{ fix i assume i:"i<DIM('a)" |
44133 | 1393 |
with f have "P i (f i)" by metis |
49522 | 1394 |
then have "P i (?x$$i)" using i by auto } |
1395 |
then have "\<forall>i<DIM('a). P i (?x$$i)" by metis |
|
1396 |
then have ?rhs by metis } |
|
44133 | 1397 |
ultimately show ?thesis by metis |
1398 |
qed |
|
1399 |
||
49522 | 1400 |
|
44133 | 1401 |
subsection {* Linearity and Bilinearity continued *} |
1402 |
||
1403 |
lemma linear_bounded: |
|
1404 |
fixes f:: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
|
1405 |
assumes lf: "linear f" |
|
1406 |
shows "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x" |
|
49522 | 1407 |
proof - |
44133 | 1408 |
let ?S = "{..<DIM('a)}" |
1409 |
let ?B = "setsum (\<lambda>i. norm(f(basis i))) ?S" |
|
1410 |
have fS: "finite ?S" by simp |
|
49522 | 1411 |
{ fix x:: "'a" |
44133 | 1412 |
let ?g = "(\<lambda> i. (x$$i) *\<^sub>R (basis i) :: 'a)" |
1413 |
have "norm (f x) = norm (f (setsum (\<lambda>i. (x$$i) *\<^sub>R (basis i)) ?S))" |
|
49663 | 1414 |
apply (subst euclidean_representation[of x]) |
1415 |
apply rule |
|
1416 |
done |
|
44133 | 1417 |
also have "\<dots> = norm (setsum (\<lambda> i. (x$$i) *\<^sub>R f (basis i)) ?S)" |
1418 |
using linear_setsum[OF lf fS, of ?g, unfolded o_def] linear_cmul[OF lf] by auto |
|
1419 |
finally have th0: "norm (f x) = norm (setsum (\<lambda>i. (x$$i) *\<^sub>R f (basis i))?S)" . |
|
49522 | 1420 |
{ fix i assume i: "i \<in> ?S" |
44133 | 1421 |
from component_le_norm[of x i] |
1422 |
have "norm ((x$$i) *\<^sub>R f (basis i :: 'a)) \<le> norm (f (basis i)) * norm x" |
|
49663 | 1423 |
unfolding norm_scaleR |
1424 |
apply (simp only: mult_commute) |
|
1425 |
apply (rule mult_mono) |
|
1426 |
apply (auto simp add: field_simps) |
|
1427 |
done } |
|
49522 | 1428 |
then have th: "\<forall>i\<in> ?S. norm ((x$$i) *\<^sub>R f (basis i :: 'a)) \<le> norm (f (basis i)) * norm x" |
1429 |
by metis |
|
44176
eda112e9cdee
remove redundant lemma setsum_norm in favor of norm_setsum;
huffman
parents:
44170
diff
changeset
|
1430 |
from setsum_norm_le[of _ "\<lambda>i. (x$$i) *\<^sub>R (f (basis i))", OF th] |
44133 | 1431 |
have "norm (f x) \<le> ?B * norm x" unfolding th0 setsum_left_distrib by metis} |
1432 |
then show ?thesis by blast |
|
1433 |
qed |
|
1434 |
||
1435 |
lemma linear_bounded_pos: |
|
1436 |
fixes f:: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
|
1437 |
assumes lf: "linear f" |
|
1438 |
shows "\<exists>B > 0. \<forall>x. norm (f x) \<le> B * norm x" |
|
49663 | 1439 |
proof - |
44133 | 1440 |
from linear_bounded[OF lf] obtain B where |
1441 |
B: "\<forall>x. norm (f x) \<le> B * norm x" by blast |
|
1442 |
let ?K = "\<bar>B\<bar> + 1" |
|
1443 |
have Kp: "?K > 0" by arith |
|
49663 | 1444 |
{ assume C: "B < 0" |
1445 |
have "((\<chi>\<chi> i. 1)::'a) \<noteq> 0" unfolding euclidean_eq[where 'a='a] |
|
1446 |
by(auto intro!:exI[where x=0]) |
|
1447 |
then have "norm ((\<chi>\<chi> i. 1)::'a) > 0" by auto |
|
1448 |
with C have "B * norm ((\<chi>\<chi> i. 1)::'a) < 0" |
|
1449 |
by (simp add: mult_less_0_iff) |
|
1450 |
with B[rule_format, of "(\<chi>\<chi> i. 1)::'a"] norm_ge_zero[of "f ((\<chi>\<chi> i. 1)::'a)"] have False by simp |
|
1451 |
} |
|
1452 |
then have Bp: "B \<ge> 0" by (metis not_leE) |
|
1453 |
{ fix x::"'a" |
|
1454 |
have "norm (f x) \<le> ?K * norm x" |
|
44133 | 1455 |
using B[rule_format, of x] norm_ge_zero[of x] norm_ge_zero[of "f x"] Bp |
1456 |
apply (auto simp add: field_simps split add: abs_split) |
|
1457 |
apply (erule order_trans, simp) |
|
1458 |
done |
|
49663 | 1459 |
} then show ?thesis using Kp by blast |
44133 | 1460 |
qed |
1461 |
||
1462 |
lemma linear_conv_bounded_linear: |
|
1463 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
|
1464 |
shows "linear f \<longleftrightarrow> bounded_linear f" |
|
1465 |
proof |
|
1466 |
assume "linear f" |
|
1467 |
show "bounded_linear f" |
|
1468 |
proof |
|
1469 |
fix x y show "f (x + y) = f x + f y" |
|
1470 |
using `linear f` unfolding linear_def by simp |
|
1471 |
next |
|
1472 |
fix r x show "f (scaleR r x) = scaleR r (f x)" |
|
1473 |
using `linear f` unfolding linear_def by simp |
|
1474 |
next |
|
1475 |
have "\<exists>B. \<forall>x. norm (f x) \<le> B * norm x" |
|
1476 |
using `linear f` by (rule linear_bounded) |
|
49522 | 1477 |
then show "\<exists>K. \<forall>x. norm (f x) \<le> norm x * K" |
44133 | 1478 |
by (simp add: mult_commute) |
1479 |
qed |
|
1480 |
next |
|
1481 |
assume "bounded_linear f" |
|
1482 |
then interpret f: bounded_linear f . |
|
1483 |
show "linear f" |
|
1484 |
by (simp add: f.add f.scaleR linear_def) |
|
1485 |
qed |
|
1486 |
||
49522 | 1487 |
lemma bounded_linearI': |
1488 |
fixes f::"'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
|
44133 | 1489 |
assumes "\<And>x y. f (x + y) = f x + f y" "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x" |
49522 | 1490 |
shows "bounded_linear f" |
1491 |
unfolding linear_conv_bounded_linear[THEN sym] |
|
1492 |
by (rule linearI[OF assms]) |
|
44133 | 1493 |
|
1494 |
||
1495 |
lemma bilinear_bounded: |
|
1496 |
fixes h:: "'m::euclidean_space \<Rightarrow> 'n::euclidean_space \<Rightarrow> 'k::real_normed_vector" |
|
1497 |
assumes bh: "bilinear h" |
|
1498 |
shows "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y" |
|
49522 | 1499 |
proof - |
44133 | 1500 |
let ?M = "{..<DIM('m)}" |
1501 |
let ?N = "{..<DIM('n)}" |
|
1502 |
let ?B = "setsum (\<lambda>(i,j). norm (h (basis i) (basis j))) (?M \<times> ?N)" |
|
1503 |
have fM: "finite ?M" and fN: "finite ?N" by simp_all |
|
49522 | 1504 |
{ fix x:: "'m" and y :: "'n" |
44133 | 1505 |
have "norm (h x y) = norm (h (setsum (\<lambda>i. (x$$i) *\<^sub>R basis i) ?M) (setsum (\<lambda>i. (y$$i) *\<^sub>R basis i) ?N))" |
1506 |
apply(subst euclidean_representation[where 'a='m]) |
|
49522 | 1507 |
apply(subst euclidean_representation[where 'a='n]) |
1508 |
apply rule |
|
1509 |
done |
|
44133 | 1510 |
also have "\<dots> = norm (setsum (\<lambda> (i,j). h ((x$$i) *\<^sub>R basis i) ((y$$j) *\<^sub>R basis j)) (?M \<times> ?N))" |
1511 |
unfolding bilinear_setsum[OF bh fM fN] .. |
|
1512 |
finally have th: "norm (h x y) = \<dots>" . |
|
1513 |
have "norm (h x y) \<le> ?B * norm x * norm y" |
|
1514 |
apply (simp add: setsum_left_distrib th) |
|
1515 |
apply (rule setsum_norm_le) |
|
1516 |
using fN fM |
|
1517 |
apply simp |
|
49711 | 1518 |
apply (auto simp add: bilinear_rmul[OF bh] bilinear_lmul[OF bh] |
1519 |
field_simps simp del: scaleR_scaleR) |
|
44133 | 1520 |
apply (rule mult_mono) |
1521 |
apply (auto simp add: zero_le_mult_iff component_le_norm) |
|
1522 |
apply (rule mult_mono) |
|
1523 |
apply (auto simp add: zero_le_mult_iff component_le_norm) |
|
49522 | 1524 |
done } |
44133 | 1525 |
then show ?thesis by metis |
1526 |
qed |
|
1527 |
||
1528 |
lemma bilinear_bounded_pos: |
|
1529 |
fixes h:: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> 'c::real_normed_vector" |
|
1530 |
assumes bh: "bilinear h" |
|
1531 |
shows "\<exists>B > 0. \<forall>x y. norm (h x y) \<le> B * norm x * norm y" |
|
49522 | 1532 |
proof - |
44133 | 1533 |
from bilinear_bounded[OF bh] obtain B where |
1534 |
B: "\<forall>x y. norm (h x y) \<le> B * norm x * norm y" by blast |
|
1535 |
let ?K = "\<bar>B\<bar> + 1" |
|
1536 |
have Kp: "?K > 0" by arith |
|
1537 |
have KB: "B < ?K" by arith |
|
49522 | 1538 |
{ fix x::'a and y::'b |
44133 | 1539 |
from KB Kp |
1540 |
have "B * norm x * norm y \<le> ?K * norm x * norm y" |
|
1541 |
apply - |
|
1542 |
apply (rule mult_right_mono, rule mult_right_mono) |
|
49522 | 1543 |
apply auto |
1544 |
done |
|
44133 | 1545 |
then have "norm (h x y) \<le> ?K * norm x * norm y" |
49522 | 1546 |
using B[rule_format, of x y] by simp } |
44133 | 1547 |
with Kp show ?thesis by blast |
1548 |
qed |
|
1549 |
||
1550 |
lemma bilinear_conv_bounded_bilinear: |
|
1551 |
fixes h :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> 'c::real_normed_vector" |
|
1552 |
shows "bilinear h \<longleftrightarrow> bounded_bilinear h" |
|
1553 |
proof |
|
1554 |
assume "bilinear h" |
|
1555 |
show "bounded_bilinear h" |
|
1556 |
proof |
|
1557 |
fix x y z show "h (x + y) z = h x z + h y z" |
|
1558 |
using `bilinear h` unfolding bilinear_def linear_def by simp |
|
1559 |
next |
|
1560 |
fix x y z show "h x (y + z) = h x y + h x z" |
|
1561 |
using `bilinear h` unfolding bilinear_def linear_def by simp |
|
1562 |
next |
|
1563 |
fix r x y show "h (scaleR r x) y = scaleR r (h x y)" |
|
1564 |
using `bilinear h` unfolding bilinear_def linear_def |
|
1565 |
by simp |
|
1566 |
next |
|
1567 |
fix r x y show "h x (scaleR r y) = scaleR r (h x y)" |
|
1568 |
using `bilinear h` unfolding bilinear_def linear_def |
|
1569 |
by simp |
|
1570 |
next |
|
1571 |
have "\<exists>B. \<forall>x y. norm (h x y) \<le> B * norm x * norm y" |
|
1572 |
using `bilinear h` by (rule bilinear_bounded) |
|
49522 | 1573 |
then show "\<exists>K. \<forall>x y. norm (h x y) \<le> norm x * norm y * K" |
44133 | 1574 |
by (simp add: mult_ac) |
1575 |
qed |
|
1576 |
next |
|
1577 |
assume "bounded_bilinear h" |
|
1578 |
then interpret h: bounded_bilinear h . |
|
1579 |
show "bilinear h" |
|
1580 |
unfolding bilinear_def linear_conv_bounded_linear |
|
49522 | 1581 |
using h.bounded_linear_left h.bounded_linear_right by simp |
44133 | 1582 |
qed |
1583 |
||
49522 | 1584 |
|
44133 | 1585 |
subsection {* We continue. *} |
1586 |
||
1587 |
lemma independent_bound: |
|
1588 |
fixes S:: "('a::euclidean_space) set" |
|
1589 |
shows "independent S \<Longrightarrow> finite S \<and> card S <= DIM('a::euclidean_space)" |
|
1590 |
using independent_span_bound[of "(basis::nat=>'a) ` {..<DIM('a)}" S] by auto |
|
1591 |
||
49663 | 1592 |
lemma dependent_biggerset: |
1593 |
"(finite (S::('a::euclidean_space) set) ==> card S > DIM('a)) ==> dependent S" |
|
44133 | 1594 |
by (metis independent_bound not_less) |
1595 |
||
1596 |
text {* Hence we can create a maximal independent subset. *} |
|
1597 |
||
1598 |
lemma maximal_independent_subset_extend: |
|
49663 | 1599 |
assumes sv: "(S::('a::euclidean_space) set) \<subseteq> V" |
1600 |
and iS: "independent S" |
|
44133 | 1601 |
shows "\<exists>B. S \<subseteq> B \<and> B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B" |
1602 |
using sv iS |
|
49522 | 1603 |
proof (induct "DIM('a) - card S" arbitrary: S rule: less_induct) |
44133 | 1604 |
case less |
1605 |
note sv = `S \<subseteq> V` and i = `independent S` |
|
1606 |
let ?P = "\<lambda>B. S \<subseteq> B \<and> B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B" |
|
1607 |
let ?ths = "\<exists>x. ?P x" |
|
1608 |
let ?d = "DIM('a)" |
|
49522 | 1609 |
{ assume "V \<subseteq> span S" |
44133 | 1610 |
then have ?ths using sv i by blast } |
1611 |
moreover |
|
49522 | 1612 |
{ assume VS: "\<not> V \<subseteq> span S" |
44133 | 1613 |
from VS obtain a where a: "a \<in> V" "a \<notin> span S" by blast |
1614 |
from a have aS: "a \<notin> S" by (auto simp add: span_superset) |
|
1615 |
have th0: "insert a S \<subseteq> V" using a sv by blast |
|
1616 |
from independent_insert[of a S] i a |
|
1617 |
have th1: "independent (insert a S)" by auto |
|
1618 |
have mlt: "?d - card (insert a S) < ?d - card S" |
|
49522 | 1619 |
using aS a independent_bound[OF th1] by auto |
44133 | 1620 |
|
1621 |
from less(1)[OF mlt th0 th1] |
|
1622 |
obtain B where B: "insert a S \<subseteq> B" "B \<subseteq> V" "independent B" " V \<subseteq> span B" |
|
1623 |
by blast |
|
1624 |
from B have "?P B" by auto |
|
49522 | 1625 |
then have ?ths by blast } |
44133 | 1626 |
ultimately show ?ths by blast |
1627 |
qed |
|
1628 |
||
1629 |
lemma maximal_independent_subset: |
|
1630 |
"\<exists>(B:: ('a::euclidean_space) set). B\<subseteq> V \<and> independent B \<and> V \<subseteq> span B" |
|
49522 | 1631 |
by (metis maximal_independent_subset_extend[of "{}:: ('a::euclidean_space) set"] |
1632 |
empty_subsetI independent_empty) |
|
44133 | 1633 |
|
1634 |
||
1635 |
text {* Notion of dimension. *} |
|
1636 |
||
1637 |
definition "dim V = (SOME n. \<exists>B. B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> (card B = n))" |
|
1638 |
||
49522 | 1639 |
lemma basis_exists: |
1640 |
"\<exists>B. (B :: ('a::euclidean_space) set) \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> (card B = dim V)" |
|
1641 |
unfolding dim_def some_eq_ex[of "\<lambda>n. \<exists>B. B \<subseteq> V \<and> independent B \<and> V \<subseteq> span B \<and> (card B = n)"] |
|
1642 |
using maximal_independent_subset[of V] independent_bound |
|
1643 |
by auto |
|
44133 | 1644 |
|
1645 |
text {* Consequences of independence or spanning for cardinality. *} |
|
1646 |
||
1647 |
lemma independent_card_le_dim: |
|
49522 | 1648 |
assumes "(B::('a::euclidean_space) set) \<subseteq> V" and "independent B" |
1649 |
shows "card B \<le> dim V" |
|
44133 | 1650 |
proof - |
1651 |
from basis_exists[of V] `B \<subseteq> V` |
|
1652 |
obtain B' where "independent B'" and "B \<subseteq> span B'" and "card B' = dim V" by blast |
|
1653 |
with independent_span_bound[OF _ `independent B` `B \<subseteq> span B'`] independent_bound[of B'] |
|
1654 |
show ?thesis by auto |
|
1655 |
qed |
|
1656 |
||
49522 | 1657 |
lemma span_card_ge_dim: |
1658 |
"(B::('a::euclidean_space) set) \<subseteq> V \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> finite B \<Longrightarrow> dim V \<le> card B" |
|
44133 | 1659 |
by (metis basis_exists[of V] independent_span_bound subset_trans) |
1660 |
||
1661 |
lemma basis_card_eq_dim: |
|
49522 | 1662 |
"B \<subseteq> (V:: ('a::euclidean_space) set) \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> |
1663 |
independent B \<Longrightarrow> finite B \<and> card B = dim V" |
|
44133 | 1664 |
by (metis order_eq_iff independent_card_le_dim span_card_ge_dim independent_bound) |
1665 |
||
49522 | 1666 |
lemma dim_unique: "(B::('a::euclidean_space) set) \<subseteq> V \<Longrightarrow> V \<subseteq> span B \<Longrightarrow> |
1667 |
independent B \<Longrightarrow> card B = n \<Longrightarrow> dim V = n" |
|
44133 | 1668 |
by (metis basis_card_eq_dim) |
1669 |
||
1670 |
text {* More lemmas about dimension. *} |
|
1671 |
||
1672 |
lemma dim_UNIV: "dim (UNIV :: ('a::euclidean_space) set) = DIM('a)" |
|
1673 |
apply (rule dim_unique[of "(basis::nat=>'a) ` {..<DIM('a)}"]) |
|
49522 | 1674 |
using independent_basis apply auto |
1675 |
done |
|
44133 | 1676 |
|
1677 |
lemma dim_subset: |
|
1678 |
"(S:: ('a::euclidean_space) set) \<subseteq> T \<Longrightarrow> dim S \<le> dim T" |
|
1679 |
using basis_exists[of T] basis_exists[of S] |
|
1680 |
by (metis independent_card_le_dim subset_trans) |
|
1681 |
||
1682 |
lemma dim_subset_UNIV: "dim (S:: ('a::euclidean_space) set) \<le> DIM('a)" |
|
1683 |
by (metis dim_subset subset_UNIV dim_UNIV) |
|
1684 |
||
1685 |
text {* Converses to those. *} |
|
1686 |
||
1687 |
lemma card_ge_dim_independent: |
|
49522 | 1688 |
assumes BV:"(B::('a::euclidean_space) set) \<subseteq> V" |
1689 |
and iB:"independent B" and dVB:"dim V \<le> card B" |
|
44133 | 1690 |
shows "V \<subseteq> span B" |
49522 | 1691 |
proof - |
1692 |
{ fix a assume aV: "a \<in> V" |
|
1693 |
{ assume aB: "a \<notin> span B" |
|
44133 | 1694 |
then have iaB: "independent (insert a B)" using iB aV BV by (simp add: independent_insert) |
1695 |
from aV BV have th0: "insert a B \<subseteq> V" by blast |
|
1696 |
from aB have "a \<notin>B" by (auto simp add: span_superset) |
|
1697 |
with independent_card_le_dim[OF th0 iaB] dVB independent_bound[OF iB] have False by auto } |
|
49522 | 1698 |
then have "a \<in> span B" by blast } |
44133 | 1699 |
then show ?thesis by blast |
1700 |
qed |
|
1701 |
||
1702 |
lemma card_le_dim_spanning: |
|
49663 | 1703 |
assumes BV: "(B:: ('a::euclidean_space) set) \<subseteq> V" |
1704 |
and VB: "V \<subseteq> span B" |
|
1705 |
and fB: "finite B" |
|
1706 |
and dVB: "dim V \<ge> card B" |
|
44133 | 1707 |
shows "independent B" |
49522 | 1708 |
proof - |
1709 |
{ fix a assume a: "a \<in> B" "a \<in> span (B -{a})" |
|
44133 | 1710 |
from a fB have c0: "card B \<noteq> 0" by auto |
1711 |
from a fB have cb: "card (B -{a}) = card B - 1" by auto |
|
1712 |
from BV a have th0: "B -{a} \<subseteq> V" by blast |
|
49522 | 1713 |
{ fix x assume x: "x \<in> V" |
44133 | 1714 |
from a have eq: "insert a (B -{a}) = B" by blast |
1715 |
from x VB have x': "x \<in> span B" by blast |
|
1716 |
from span_trans[OF a(2), unfolded eq, OF x'] |
|
1717 |
have "x \<in> span (B -{a})" . } |
|
1718 |
then have th1: "V \<subseteq> span (B -{a})" by blast |
|
1719 |
have th2: "finite (B -{a})" using fB by auto |
|
1720 |
from span_card_ge_dim[OF th0 th1 th2] |
|
1721 |
have c: "dim V \<le> card (B -{a})" . |
|
49522 | 1722 |
from c c0 dVB cb have False by simp } |
44133 | 1723 |
then show ?thesis unfolding dependent_def by blast |
1724 |
qed |
|
1725 |
||
49522 | 1726 |
lemma card_eq_dim: "(B:: ('a::euclidean_space) set) \<subseteq> V \<Longrightarrow> |
1727 |
card B = dim V \<Longrightarrow> finite B \<Longrightarrow> independent B \<longleftrightarrow> V \<subseteq> span B" |
|
1728 |
by (metis order_eq_iff card_le_dim_spanning card_ge_dim_independent) |
|
44133 | 1729 |
|
1730 |
text {* More general size bound lemmas. *} |
|
1731 |
||
1732 |
lemma independent_bound_general: |
|
1733 |
"independent (S:: ('a::euclidean_space) set) \<Longrightarrow> finite S \<and> card S \<le> dim S" |
|
1734 |
by (metis independent_card_le_dim independent_bound subset_refl) |
|
1735 |
||
49522 | 1736 |
lemma dependent_biggerset_general: |
1737 |
"(finite (S:: ('a::euclidean_space) set) \<Longrightarrow> card S > dim S) \<Longrightarrow> dependent S" |
|
44133 | 1738 |
using independent_bound_general[of S] by (metis linorder_not_le) |
1739 |
||
1740 |
lemma dim_span: "dim (span (S:: ('a::euclidean_space) set)) = dim S" |
|
49522 | 1741 |
proof - |
44133 | 1742 |
have th0: "dim S \<le> dim (span S)" |
1743 |
by (auto simp add: subset_eq intro: dim_subset span_superset) |
|
1744 |
from basis_exists[of S] |
|
1745 |
obtain B where B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" by blast |
|
1746 |
from B have fB: "finite B" "card B = dim S" using independent_bound by blast+ |
|
1747 |
have bSS: "B \<subseteq> span S" using B(1) by (metis subset_eq span_inc) |
|
1748 |
have sssB: "span S \<subseteq> span B" using span_mono[OF B(3)] by (simp add: span_span) |
|
1749 |
from span_card_ge_dim[OF bSS sssB fB(1)] th0 show ?thesis |
|
49522 | 1750 |
using fB(2) by arith |
44133 | 1751 |
qed |
1752 |
||
1753 |
lemma subset_le_dim: "(S:: ('a::euclidean_space) set) \<subseteq> span T \<Longrightarrow> dim S \<le> dim T" |
|
1754 |
by (metis dim_span dim_subset) |
|
1755 |
||
1756 |
lemma span_eq_dim: "span (S:: ('a::euclidean_space) set) = span T ==> dim S = dim T" |
|
1757 |
by (metis dim_span) |
|
1758 |
||
1759 |
lemma spans_image: |
|
49663 | 1760 |
assumes lf: "linear f" |
1761 |
and VB: "V \<subseteq> span B" |
|
44133 | 1762 |
shows "f ` V \<subseteq> span (f ` B)" |
49522 | 1763 |
unfolding span_linear_image[OF lf] by (metis VB image_mono) |
44133 | 1764 |
|
1765 |
lemma dim_image_le: |
|
1766 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space" |
|
49663 | 1767 |
assumes lf: "linear f" |
1768 |
shows "dim (f ` S) \<le> dim (S)" |
|
49522 | 1769 |
proof - |
44133 | 1770 |
from basis_exists[of S] obtain B where |
1771 |
B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" by blast |
|
1772 |
from B have fB: "finite B" "card B = dim S" using independent_bound by blast+ |
|
1773 |
have "dim (f ` S) \<le> card (f ` B)" |
|
1774 |
apply (rule span_card_ge_dim) |
|
49522 | 1775 |
using lf B fB apply (auto simp add: span_linear_image spans_image subset_image_iff) |
1776 |
done |
|
44133 | 1777 |
also have "\<dots> \<le> dim S" using card_image_le[OF fB(1)] fB by simp |
1778 |
finally show ?thesis . |
|
1779 |
qed |
|
1780 |
||
1781 |
text {* Relation between bases and injectivity/surjectivity of map. *} |
|
1782 |
||
1783 |
lemma spanning_surjective_image: |
|
1784 |
assumes us: "UNIV \<subseteq> span S" |
|
49522 | 1785 |
and lf: "linear f" and sf: "surj f" |
44133 | 1786 |
shows "UNIV \<subseteq> span (f ` S)" |
49663 | 1787 |
proof - |
44133 | 1788 |
have "UNIV \<subseteq> f ` UNIV" using sf by (auto simp add: surj_def) |
1789 |
also have " \<dots> \<subseteq> span (f ` S)" using spans_image[OF lf us] . |
|
1790 |
finally show ?thesis . |
|
1791 |
qed |
|
1792 |
||
1793 |
lemma independent_injective_image: |
|
49663 | 1794 |
assumes iS: "independent S" |
1795 |
and lf: "linear f" |
|
1796 |
and fi: "inj f" |
|
44133 | 1797 |
shows "independent (f ` S)" |
49663 | 1798 |
proof - |
1799 |
{ fix a |
|
1800 |
assume a: "a \<in> S" "f a \<in> span (f ` S - {f a})" |
|
44133 | 1801 |
have eq: "f ` S - {f a} = f ` (S - {a})" using fi |
1802 |
by (auto simp add: inj_on_def) |
|
1803 |
from a have "f a \<in> f ` span (S -{a})" |
|
1804 |
unfolding eq span_linear_image[OF lf, of "S - {a}"] by blast |
|
49522 | 1805 |
then have "a \<in> span (S -{a})" using fi by (auto simp add: inj_on_def) |
44133 | 1806 |
with a(1) iS have False by (simp add: dependent_def) } |
1807 |
then show ?thesis unfolding dependent_def by blast |
|
1808 |
qed |
|
1809 |
||
1810 |
text {* Picking an orthogonal replacement for a spanning set. *} |
|
1811 |
||
1812 |
(* FIXME : Move to some general theory ?*) |
|
1813 |
definition "pairwise R S \<longleftrightarrow> (\<forall>x \<in> S. \<forall>y\<in> S. x\<noteq>y \<longrightarrow> R x y)" |
|
1814 |
||
1815 |
lemma vector_sub_project_orthogonal: "(b::'a::euclidean_space) \<bullet> (x - ((b \<bullet> x) / (b \<bullet> b)) *\<^sub>R b) = 0" |
|
1816 |
unfolding inner_simps by auto |
|
1817 |
||
44528 | 1818 |
lemma pairwise_orthogonal_insert: |
1819 |
assumes "pairwise orthogonal S" |
|
49522 | 1820 |
and "\<And>y. y \<in> S \<Longrightarrow> orthogonal x y" |
44528 | 1821 |
shows "pairwise orthogonal (insert x S)" |
1822 |
using assms unfolding pairwise_def |
|
1823 |
by (auto simp add: orthogonal_commute) |
|
1824 |
||
44133 | 1825 |
lemma basis_orthogonal: |
44528 | 1826 |
fixes B :: "('a::real_inner) set" |
44133 | 1827 |
assumes fB: "finite B" |
1828 |
shows "\<exists>C. finite C \<and> card C \<le> card B \<and> span C = span B \<and> pairwise orthogonal C" |
|
1829 |
(is " \<exists>C. ?P B C") |
|
49522 | 1830 |
using fB |
1831 |
proof (induct rule: finite_induct) |
|
1832 |
case empty |
|
1833 |
then show ?case apply (rule exI[where x="{}"]) by (auto simp add: pairwise_def) |
|
44133 | 1834 |
next |
49522 | 1835 |
case (insert a B) |
44133 | 1836 |
note fB = `finite B` and aB = `a \<notin> B` |
1837 |
from `\<exists>C. finite C \<and> card C \<le> card B \<and> span C = span B \<and> pairwise orthogonal C` |
|
1838 |
obtain C where C: "finite C" "card C \<le> card B" |
|
1839 |
"span C = span B" "pairwise orthogonal C" by blast |
|
1840 |
let ?a = "a - setsum (\<lambda>x. (x \<bullet> a / (x \<bullet> x)) *\<^sub>R x) C" |
|
1841 |
let ?C = "insert ?a C" |
|
1842 |
from C(1) have fC: "finite ?C" by simp |
|
49522 | 1843 |
from fB aB C(1,2) have cC: "card ?C \<le> card (insert a B)" |
1844 |
by (simp add: card_insert_if) |
|
1845 |
{ fix x k |
|
1846 |
have th0: "\<And>(a::'a) b c. a - (b - c) = c + (a - b)" |
|
1847 |
by (simp add: field_simps) |
|
44133 | 1848 |
have "x - k *\<^sub>R (a - (\<Sum>x\<in>C. (x \<bullet> a / (x \<bullet> x)) *\<^sub>R x)) \<in> span C \<longleftrightarrow> x - k *\<^sub>R a \<in> span C" |
1849 |
apply (simp only: scaleR_right_diff_distrib th0) |
|
1850 |
apply (rule span_add_eq) |
|
1851 |
apply (rule span_mul) |
|
1852 |
apply (rule span_setsum[OF C(1)]) |
|
1853 |
apply clarify |
|
1854 |
apply (rule span_mul) |
|
49522 | 1855 |
apply (rule span_superset) |
1856 |
apply assumption |
|
1857 |
done } |
|
44133 | 1858 |
then have SC: "span ?C = span (insert a B)" |
1859 |
unfolding set_eq_iff span_breakdown_eq C(3)[symmetric] by auto |
|
44528 | 1860 |
{ fix y assume yC: "y \<in> C" |
49522 | 1861 |
then have Cy: "C = insert y (C - {y})" by blast |
44528 | 1862 |
have fth: "finite (C - {y})" using C by simp |
1863 |
have "orthogonal ?a y" |
|
1864 |
unfolding orthogonal_def |
|
1865 |
unfolding inner_diff inner_setsum_left diff_eq_0_iff_eq |
|
1866 |
unfolding setsum_diff1' [OF `finite C` `y \<in> C`] |
|
1867 |
apply (clarsimp simp add: inner_commute[of y a]) |
|
1868 |
apply (rule setsum_0') |
|
1869 |
apply clarsimp |
|
1870 |
apply (rule C(4)[unfolded pairwise_def orthogonal_def, rule_format]) |
|
1871 |
using `y \<in> C` by auto } |
|
1872 |
with `pairwise orthogonal C` have CPO: "pairwise orthogonal ?C" |
|
1873 |
by (rule pairwise_orthogonal_insert) |
|
44133 | 1874 |
from fC cC SC CPO have "?P (insert a B) ?C" by blast |
1875 |
then show ?case by blast |
|
1876 |
qed |
|
1877 |
||
1878 |
lemma orthogonal_basis_exists: |
|
1879 |
fixes V :: "('a::euclidean_space) set" |
|
1880 |
shows "\<exists>B. independent B \<and> B \<subseteq> span V \<and> V \<subseteq> span B \<and> (card B = dim V) \<and> pairwise orthogonal B" |
|
49663 | 1881 |
proof - |
49522 | 1882 |
from basis_exists[of V] obtain B where |
1883 |
B: "B \<subseteq> V" "independent B" "V \<subseteq> span B" "card B = dim V" by blast |
|
44133 | 1884 |
from B have fB: "finite B" "card B = dim V" using independent_bound by auto |
1885 |
from basis_orthogonal[OF fB(1)] obtain C where |
|
1886 |
C: "finite C" "card C \<le> card B" "span C = span B" "pairwise orthogonal C" by blast |
|
49522 | 1887 |
from C B have CSV: "C \<subseteq> span V" by (metis span_inc span_mono subset_trans) |
44133 | 1888 |
from span_mono[OF B(3)] C have SVC: "span V \<subseteq> span C" by (simp add: span_span) |
1889 |
from card_le_dim_spanning[OF CSV SVC C(1)] C(2,3) fB |
|
1890 |
have iC: "independent C" by (simp add: dim_span) |
|
1891 |
from C fB have "card C \<le> dim V" by simp |
|
1892 |
moreover have "dim V \<le> card C" using span_card_ge_dim[OF CSV SVC C(1)] |
|
1893 |
by (simp add: dim_span) |
|
1894 |
ultimately have CdV: "card C = dim V" using C(1) by simp |
|
1895 |
from C B CSV CdV iC show ?thesis by auto |
|
1896 |
qed |
|
1897 |
||
1898 |
lemma span_eq: "span S = span T \<longleftrightarrow> S \<subseteq> span T \<and> T \<subseteq> span S" |
|
1899 |
using span_inc[unfolded subset_eq] using span_mono[of T "span S"] span_mono[of S "span T"] |
|
49522 | 1900 |
by (auto simp add: span_span) |
44133 | 1901 |
|
1902 |
text {* Low-dimensional subset is in a hyperplane (weak orthogonal complement). *} |
|
1903 |
||
49522 | 1904 |
lemma span_not_univ_orthogonal: |
1905 |
fixes S::"('a::euclidean_space) set" |
|
44133 | 1906 |
assumes sU: "span S \<noteq> UNIV" |
1907 |
shows "\<exists>(a::'a). a \<noteq>0 \<and> (\<forall>x \<in> span S. a \<bullet> x = 0)" |
|
49522 | 1908 |
proof - |
44133 | 1909 |
from sU obtain a where a: "a \<notin> span S" by blast |
1910 |
from orthogonal_basis_exists obtain B where |
|
1911 |
B: "independent B" "B \<subseteq> span S" "S \<subseteq> span B" "card B = dim S" "pairwise orthogonal B" |
|
1912 |
by blast |
|
1913 |
from B have fB: "finite B" "card B = dim S" using independent_bound by auto |
|
1914 |
from span_mono[OF B(2)] span_mono[OF B(3)] |
|
1915 |
have sSB: "span S = span B" by (simp add: span_span) |
|
1916 |
let ?a = "a - setsum (\<lambda>b. (a \<bullet> b / (b \<bullet> b)) *\<^sub>R b) B" |
|
1917 |
have "setsum (\<lambda>b. (a \<bullet> b / (b \<bullet> b)) *\<^sub>R b) B \<in> span S" |
|
1918 |
unfolding sSB |
|
1919 |
apply (rule span_setsum[OF fB(1)]) |
|
1920 |
apply clarsimp |
|
1921 |
apply (rule span_mul) |
|
49522 | 1922 |
apply (rule span_superset) |
1923 |
apply assumption |
|
1924 |
done |
|
44133 | 1925 |
with a have a0:"?a \<noteq> 0" by auto |
1926 |
have "\<forall>x\<in>span B. ?a \<bullet> x = 0" |
|
49522 | 1927 |
proof (rule span_induct') |
1928 |
show "subspace {x. ?a \<bullet> x = 0}" |
|
1929 |
by (auto simp add: subspace_def inner_add) |
|
1930 |
next |
|
1931 |
{ fix x assume x: "x \<in> B" |
|
44133 | 1932 |
from x have B': "B = insert x (B - {x})" by blast |
1933 |
have fth: "finite (B - {x})" using fB by simp |
|
1934 |
have "?a \<bullet> x = 0" |
|
1935 |
apply (subst B') using fB fth |
|
1936 |
unfolding setsum_clauses(2)[OF fth] |
|
1937 |
apply simp unfolding inner_simps |
|
44527
bf8014b4f933
remove dot_lsum and dot_rsum in favor of inner_setsum_{left,right}
huffman
parents:
44521
diff
changeset
|
1938 |
apply (clarsimp simp add: inner_add inner_setsum_left) |
44133 | 1939 |
apply (rule setsum_0', rule ballI) |
1940 |
unfolding inner_commute |
|
49711 | 1941 |
apply (auto simp add: x field_simps |
1942 |
intro: B(5)[unfolded pairwise_def orthogonal_def, rule_format]) |
|
49522 | 1943 |
done } |
44133 | 1944 |
then show "\<forall>x \<in> B. ?a \<bullet> x = 0" by blast |
1945 |
qed |
|
1946 |
with a0 show ?thesis unfolding sSB by (auto intro: exI[where x="?a"]) |
|
1947 |
qed |
|
1948 |
||
1949 |
lemma span_not_univ_subset_hyperplane: |
|
1950 |
assumes SU: "span S \<noteq> (UNIV ::('a::euclidean_space) set)" |
|
1951 |
shows "\<exists> a. a \<noteq>0 \<and> span S \<subseteq> {x. a \<bullet> x = 0}" |
|
1952 |
using span_not_univ_orthogonal[OF SU] by auto |
|
1953 |
||
49663 | 1954 |
lemma lowdim_subset_hyperplane: |
1955 |
fixes S::"('a::euclidean_space) set" |
|
44133 | 1956 |
assumes d: "dim S < DIM('a)" |
1957 |
shows "\<exists>(a::'a). a \<noteq> 0 \<and> span S \<subseteq> {x. a \<bullet> x = 0}" |
|
49522 | 1958 |
proof - |
1959 |
{ assume "span S = UNIV" |
|
1960 |
then have "dim (span S) = dim (UNIV :: ('a) set)" by simp |
|
1961 |
then have "dim S = DIM('a)" by (simp add: dim_span dim_UNIV) |
|
1962 |
with d have False by arith } |
|
49652 | 1963 |
then have th: "span S \<noteq> UNIV" by blast |
44133 | 1964 |
from span_not_univ_subset_hyperplane[OF th] show ?thesis . |
1965 |
qed |
|
1966 |
||
1967 |
text {* We can extend a linear basis-basis injection to the whole set. *} |
|
1968 |
||
1969 |
lemma linear_indep_image_lemma: |
|
49663 | 1970 |
assumes lf: "linear f" |
1971 |
and fB: "finite B" |
|
49522 | 1972 |
and ifB: "independent (f ` B)" |
49663 | 1973 |
and fi: "inj_on f B" |
1974 |
and xsB: "x \<in> span B" |
|
49522 | 1975 |
and fx: "f x = 0" |
44133 | 1976 |
shows "x = 0" |
1977 |
using fB ifB fi xsB fx |
|
49522 | 1978 |
proof (induct arbitrary: x rule: finite_induct[OF fB]) |
49663 | 1979 |
case 1 |
1980 |
then show ?case by auto |
|
44133 | 1981 |
next |
1982 |
case (2 a b x) |
|
1983 |
have fb: "finite b" using "2.prems" by simp |
|
1984 |
have th0: "f ` b \<subseteq> f ` (insert a b)" |
|
1985 |
apply (rule image_mono) by blast |
|
1986 |
from independent_mono[ OF "2.prems"(2) th0] |
|
1987 |
have ifb: "independent (f ` b)" . |
|
1988 |
have fib: "inj_on f b" |
|
1989 |
apply (rule subset_inj_on [OF "2.prems"(3)]) |
|
49522 | 1990 |
apply blast |
1991 |
done |
|
44133 | 1992 |
from span_breakdown[of a "insert a b", simplified, OF "2.prems"(4)] |
1993 |
obtain k where k: "x - k*\<^sub>R a \<in> span (b -{a})" by blast |
|
1994 |
have "f (x - k*\<^sub>R a) \<in> span (f ` b)" |
|
1995 |
unfolding span_linear_image[OF lf] |
|
1996 |
apply (rule imageI) |
|
49522 | 1997 |
using k span_mono[of "b-{a}" b] apply blast |
1998 |
done |
|
1999 |
then have "f x - k*\<^sub>R f a \<in> span (f ` b)" |
|
44133 | 2000 |
by (simp add: linear_sub[OF lf] linear_cmul[OF lf]) |
49522 | 2001 |
then have th: "-k *\<^sub>R f a \<in> span (f ` b)" |
44133 | 2002 |
using "2.prems"(5) by simp |
49522 | 2003 |
{ assume k0: "k = 0" |
44133 | 2004 |
from k0 k have "x \<in> span (b -{a})" by simp |
2005 |
then have "x \<in> span b" using span_mono[of "b-{a}" b] |
|
49522 | 2006 |
by blast } |
44133 | 2007 |
moreover |
49522 | 2008 |
{ assume k0: "k \<noteq> 0" |
44133 | 2009 |
from span_mul[OF th, of "- 1/ k"] k0 |
2010 |
have th1: "f a \<in> span (f ` b)" |
|
2011 |
by auto |
|
2012 |
from inj_on_image_set_diff[OF "2.prems"(3), of "insert a b " "{a}", symmetric] |
|
2013 |
have tha: "f ` insert a b - f ` {a} = f ` (insert a b - {a})" by blast |
|
2014 |
from "2.prems"(2) [unfolded dependent_def bex_simps(8), rule_format, of "f a"] |
|
2015 |
have "f a \<notin> span (f ` b)" using tha |
|
2016 |
using "2.hyps"(2) |
|
2017 |
"2.prems"(3) by auto |
|
2018 |
with th1 have False by blast |
|
49522 | 2019 |
then have "x \<in> span b" by blast } |
44133 | 2020 |
ultimately have xsb: "x \<in> span b" by blast |
2021 |
from "2.hyps"(3)[OF fb ifb fib xsb "2.prems"(5)] |
|
2022 |
show "x = 0" . |
|
2023 |
qed |
|
2024 |
||
2025 |
text {* We can extend a linear mapping from basis. *} |
|
2026 |
||
2027 |
lemma linear_independent_extend_lemma: |
|
2028 |
fixes f :: "'a::real_vector \<Rightarrow> 'b::real_vector" |
|
2029 |
assumes fi: "finite B" and ib: "independent B" |
|
2030 |
shows "\<exists>g. (\<forall>x\<in> span B. \<forall>y\<in> span B. g (x + y) = g x + g y) |
|
2031 |
\<and> (\<forall>x\<in> span B. \<forall>c. g (c*\<^sub>R x) = c *\<^sub>R g x) |
|
2032 |
\<and> (\<forall>x\<in> B. g x = f x)" |
|
49663 | 2033 |
using ib fi |
49522 | 2034 |
proof (induct rule: finite_induct[OF fi]) |
49663 | 2035 |
case 1 |
2036 |
then show ?case by auto |
|
44133 | 2037 |
next |
2038 |
case (2 a b) |
|
2039 |
from "2.prems" "2.hyps" have ibf: "independent b" "finite b" |
|
2040 |
by (simp_all add: independent_insert) |
|
2041 |
from "2.hyps"(3)[OF ibf] obtain g where |
|
2042 |
g: "\<forall>x\<in>span b. \<forall>y\<in>span b. g (x + y) = g x + g y" |
|
2043 |
"\<forall>x\<in>span b. \<forall>c. g (c *\<^sub>R x) = c *\<^sub>R g x" "\<forall>x\<in>b. g x = f x" by blast |
|
2044 |
let ?h = "\<lambda>z. SOME k. (z - k *\<^sub>R a) \<in> span b" |
|
49522 | 2045 |
{ fix z assume z: "z \<in> span (insert a b)" |
44133 | 2046 |
have th0: "z - ?h z *\<^sub>R a \<in> span b" |
2047 |
apply (rule someI_ex) |
|
2048 |
unfolding span_breakdown_eq[symmetric] |
|
2049 |
using z . |
|
49522 | 2050 |
{ fix k assume k: "z - k *\<^sub>R a \<in> span b" |
44133 | 2051 |
have eq: "z - ?h z *\<^sub>R a - (z - k*\<^sub>R a) = (k - ?h z) *\<^sub>R a" |
2052 |
by (simp add: field_simps scaleR_left_distrib [symmetric]) |
|
2053 |
from span_sub[OF th0 k] |
|
2054 |
have khz: "(k - ?h z) *\<^sub>R a \<in> span b" by (simp add: eq) |
|
49652 | 2055 |
{ assume "k \<noteq> ?h z" then have k0: "k - ?h z \<noteq> 0" by simp |
44133 | 2056 |
from k0 span_mul[OF khz, of "1 /(k - ?h z)"] |
2057 |
have "a \<in> span b" by simp |
|
2058 |
with "2.prems"(1) "2.hyps"(2) have False |
|
2059 |
by (auto simp add: dependent_def)} |
|
2060 |
then have "k = ?h z" by blast} |
|
2061 |
with th0 have "z - ?h z *\<^sub>R a \<in> span b \<and> (\<forall>k. z - k *\<^sub>R a \<in> span b \<longrightarrow> k = ?h z)" by blast} |
|
2062 |
note h = this |
|
2063 |
let ?g = "\<lambda>z. ?h z *\<^sub>R f a + g (z - ?h z *\<^sub>R a)" |
|
49522 | 2064 |
{ fix x y assume x: "x \<in> span (insert a b)" and y: "y \<in> span (insert a b)" |
44133 | 2065 |
have tha: "\<And>(x::'a) y a k l. (x + y) - (k + l) *\<^sub>R a = (x - k *\<^sub>R a) + (y - l *\<^sub>R a)" |
2066 |
by (simp add: algebra_simps) |
|
2067 |
have addh: "?h (x + y) = ?h x + ?h y" |
|
2068 |
apply (rule conjunct2[OF h, rule_format, symmetric]) |
|
2069 |
apply (rule span_add[OF x y]) |
|
2070 |
unfolding tha |
|
2071 |
by (metis span_add x y conjunct1[OF h, rule_format]) |
|
2072 |
have "?g (x + y) = ?g x + ?g y" |
|
2073 |
unfolding addh tha |
|
2074 |
g(1)[rule_format,OF conjunct1[OF h, OF x] conjunct1[OF h, OF y]] |
|
2075 |
by (simp add: scaleR_left_distrib)} |
|
2076 |
moreover |
|
49522 | 2077 |
{ fix x:: "'a" and c:: real |
2078 |
assume x: "x \<in> span (insert a b)" |
|
44133 | 2079 |
have tha: "\<And>(x::'a) c k a. c *\<^sub>R x - (c * k) *\<^sub>R a = c *\<^sub>R (x - k *\<^sub>R a)" |
2080 |
by (simp add: algebra_simps) |
|
2081 |
have hc: "?h (c *\<^sub>R x) = c * ?h x" |
|
2082 |
apply (rule conjunct2[OF h, rule_format, symmetric]) |
|
2083 |
apply (metis span_mul x) |
|
49522 | 2084 |
apply (metis tha span_mul x conjunct1[OF h]) |
2085 |
done |
|
44133 | 2086 |
have "?g (c *\<^sub>R x) = c*\<^sub>R ?g x" |
2087 |
unfolding hc tha g(2)[rule_format, OF conjunct1[OF h, OF x]] |
|
49522 | 2088 |
by (simp add: algebra_simps) } |
44133 | 2089 |
moreover |
49522 | 2090 |
{ fix x assume x: "x \<in> (insert a b)" |
2091 |
{ assume xa: "x = a" |
|
44133 | 2092 |
have ha1: "1 = ?h a" |
2093 |
apply (rule conjunct2[OF h, rule_format]) |
|
2094 |
apply (metis span_superset insertI1) |
|
2095 |
using conjunct1[OF h, OF span_superset, OF insertI1] |
|
49522 | 2096 |
apply (auto simp add: span_0) |
2097 |
done |
|
44133 | 2098 |
|
2099 |
from xa ha1[symmetric] have "?g x = f x" |
|
2100 |
apply simp |
|
2101 |
using g(2)[rule_format, OF span_0, of 0] |
|
49522 | 2102 |
apply simp |
2103 |
done } |
|
44133 | 2104 |
moreover |
49522 | 2105 |
{ assume xb: "x \<in> b" |
44133 | 2106 |
have h0: "0 = ?h x" |
2107 |
apply (rule conjunct2[OF h, rule_format]) |
|
2108 |
apply (metis span_superset x) |
|
2109 |
apply simp |
|
2110 |
apply (metis span_superset xb) |
|
2111 |
done |
|
2112 |
have "?g x = f x" |
|
49522 | 2113 |
by (simp add: h0[symmetric] g(3)[rule_format, OF xb]) } |
44133 | 2114 |
ultimately have "?g x = f x" using x by blast } |
49663 | 2115 |
ultimately show ?case |
2116 |
apply - |
|
2117 |
apply (rule exI[where x="?g"]) |
|
2118 |
apply blast |
|
2119 |
done |
|
44133 | 2120 |
qed |
2121 |
||
2122 |
lemma linear_independent_extend: |
|
2123 |
assumes iB: "independent (B:: ('a::euclidean_space) set)" |
|
2124 |
shows "\<exists>g. linear g \<and> (\<forall>x\<in>B. g x = f x)" |
|
49522 | 2125 |
proof - |
44133 | 2126 |
from maximal_independent_subset_extend[of B UNIV] iB |
2127 |
obtain C where C: "B \<subseteq> C" "independent C" "\<And>x. x \<in> span C" by auto |
|
2128 |
||
2129 |
from C(2) independent_bound[of C] linear_independent_extend_lemma[of C f] |
|
2130 |
obtain g where g: "(\<forall>x\<in> span C. \<forall>y\<in> span C. g (x + y) = g x + g y) |
|
2131 |
\<and> (\<forall>x\<in> span C. \<forall>c. g (c*\<^sub>R x) = c *\<^sub>R g x) |
|
2132 |
\<and> (\<forall>x\<in> C. g x = f x)" by blast |
|
2133 |
from g show ?thesis unfolding linear_def using C |
|
49663 | 2134 |
apply clarsimp |
2135 |
apply blast |
|
2136 |
done |
|
44133 | 2137 |
qed |
2138 |
||
2139 |
text {* Can construct an isomorphism between spaces of same dimension. *} |
|
2140 |
||
49522 | 2141 |
lemma card_le_inj: |
49663 | 2142 |
assumes fA: "finite A" |
2143 |
and fB: "finite B" |
|
49522 | 2144 |
and c: "card A \<le> card B" |
49663 | 2145 |
shows "\<exists>f. f ` A \<subseteq> B \<and> inj_on f A" |
49522 | 2146 |
using fA fB c |
2147 |
proof (induct arbitrary: B rule: finite_induct) |
|
2148 |
case empty |
|
2149 |
then show ?case by simp |
|
44133 | 2150 |
next |
49522 | 2151 |
case (insert x s t) |
2152 |
then show ?case |
|
2153 |
proof (induct rule: finite_induct[OF "insert.prems"(1)]) |
|
2154 |
case 1 |
|
2155 |
then show ?case by simp |
|
44133 | 2156 |
next |
2157 |
case (2 y t) |
|
2158 |
from "2.prems"(1,2,5) "2.hyps"(1,2) have cst:"card s \<le> card t" by simp |
|
2159 |
from "2.prems"(3) [OF "2.hyps"(1) cst] obtain f where |
|
2160 |
f: "f ` s \<subseteq> t \<and> inj_on f s" by blast |
|
2161 |
from f "2.prems"(2) "2.hyps"(2) show ?case |
|
2162 |
apply - |
|
2163 |
apply (rule exI[where x = "\<lambda>z. if z = x then y else f z"]) |
|
49522 | 2164 |
apply (auto simp add: inj_on_def) |
2165 |
done |
|
44133 | 2166 |
qed |
2167 |
qed |
|
2168 |
||
49522 | 2169 |
lemma card_subset_eq: |
49663 | 2170 |
assumes fB: "finite B" |
2171 |
and AB: "A \<subseteq> B" |
|
2172 |
and c: "card A = card B" |
|
44133 | 2173 |
shows "A = B" |
49522 | 2174 |
proof - |
44133 | 2175 |
from fB AB have fA: "finite A" by (auto intro: finite_subset) |
2176 |
from fA fB have fBA: "finite (B - A)" by auto |
|
2177 |
have e: "A \<inter> (B - A) = {}" by blast |
|
2178 |
have eq: "A \<union> (B - A) = B" using AB by blast |
|
2179 |
from card_Un_disjoint[OF fA fBA e, unfolded eq c] |
|
2180 |
have "card (B - A) = 0" by arith |
|
49522 | 2181 |
then have "B - A = {}" unfolding card_eq_0_iff using fA fB by simp |
44133 | 2182 |
with AB show "A = B" by blast |
2183 |
qed |
|
2184 |
||
2185 |
lemma subspace_isomorphism: |
|
2186 |
assumes s: "subspace (S:: ('a::euclidean_space) set)" |
|
49522 | 2187 |
and t: "subspace (T :: ('b::euclidean_space) set)" |
2188 |
and d: "dim S = dim T" |
|
44133 | 2189 |
shows "\<exists>f. linear f \<and> f ` S = T \<and> inj_on f S" |
49522 | 2190 |
proof - |
44133 | 2191 |
from basis_exists[of S] independent_bound obtain B where |
2192 |
B: "B \<subseteq> S" "independent B" "S \<subseteq> span B" "card B = dim S" and fB: "finite B" by blast |
|
2193 |
from basis_exists[of T] independent_bound obtain C where |
|
2194 |
C: "C \<subseteq> T" "independent C" "T \<subseteq> span C" "card C = dim T" and fC: "finite C" by blast |
|
2195 |
from B(4) C(4) card_le_inj[of B C] d obtain f where |
|
2196 |
f: "f ` B \<subseteq> C" "inj_on f B" using `finite B` `finite C` by auto |
|
2197 |
from linear_independent_extend[OF B(2)] obtain g where |
|
2198 |
g: "linear g" "\<forall>x\<in> B. g x = f x" by blast |
|
2199 |
from inj_on_iff_eq_card[OF fB, of f] f(2) |
|
2200 |
have "card (f ` B) = card B" by simp |
|
2201 |
with B(4) C(4) have ceq: "card (f ` B) = card C" using d |
|
2202 |
by simp |
|
2203 |
have "g ` B = f ` B" using g(2) |
|
2204 |
by (auto simp add: image_iff) |
|
2205 |
also have "\<dots> = C" using card_subset_eq[OF fC f(1) ceq] . |
|
2206 |
finally have gBC: "g ` B = C" . |
|
2207 |
have gi: "inj_on g B" using f(2) g(2) |
|
2208 |
by (auto simp add: inj_on_def) |
|
2209 |
note g0 = linear_indep_image_lemma[OF g(1) fB, unfolded gBC, OF C(2) gi] |
|
49522 | 2210 |
{ fix x y assume x: "x \<in> S" and y: "y \<in> S" and gxy: "g x = g y" |
44133 | 2211 |
from B(3) x y have x': "x \<in> span B" and y': "y \<in> span B" by blast+ |
2212 |
from gxy have th0: "g (x - y) = 0" by (simp add: linear_sub[OF g(1)]) |
|
2213 |
have th1: "x - y \<in> span B" using x' y' by (metis span_sub) |
|
2214 |
have "x=y" using g0[OF th1 th0] by simp } |
|
2215 |
then have giS: "inj_on g S" |
|
2216 |
unfolding inj_on_def by blast |
|
2217 |
from span_subspace[OF B(1,3) s] |
|
2218 |
have "g ` S = span (g ` B)" by (simp add: span_linear_image[OF g(1)]) |
|
2219 |
also have "\<dots> = span C" unfolding gBC .. |
|
2220 |
also have "\<dots> = T" using span_subspace[OF C(1,3) t] . |
|
2221 |
finally have gS: "g ` S = T" . |
|
2222 |
from g(1) gS giS show ?thesis by blast |
|
2223 |
qed |
|
2224 |
||
2225 |
text {* Linear functions are equal on a subspace if they are on a spanning set. *} |
|
2226 |
||
2227 |
lemma subspace_kernel: |
|
2228 |
assumes lf: "linear f" |
|
2229 |
shows "subspace {x. f x = 0}" |
|
49522 | 2230 |
apply (simp add: subspace_def) |
2231 |
apply (simp add: linear_add[OF lf] linear_cmul[OF lf] linear_0[OF lf]) |
|
2232 |
done |
|
44133 | 2233 |
|
2234 |
lemma linear_eq_0_span: |
|
2235 |
assumes lf: "linear f" and f0: "\<forall>x\<in>B. f x = 0" |
|
2236 |
shows "\<forall>x \<in> span B. f x = 0" |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
2237 |
using f0 subspace_kernel[OF lf] |
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
2238 |
by (rule span_induct') |
44133 | 2239 |
|
2240 |
lemma linear_eq_0: |
|
49663 | 2241 |
assumes lf: "linear f" |
2242 |
and SB: "S \<subseteq> span B" |
|
2243 |
and f0: "\<forall>x\<in>B. f x = 0" |
|
44133 | 2244 |
shows "\<forall>x \<in> S. f x = 0" |
2245 |
by (metis linear_eq_0_span[OF lf] subset_eq SB f0) |
|
2246 |
||
2247 |
lemma linear_eq: |
|
49663 | 2248 |
assumes lf: "linear f" |
2249 |
and lg: "linear g" |
|
2250 |
and S: "S \<subseteq> span B" |
|
49522 | 2251 |
and fg: "\<forall> x\<in> B. f x = g x" |
44133 | 2252 |
shows "\<forall>x\<in> S. f x = g x" |
49663 | 2253 |
proof - |
44133 | 2254 |
let ?h = "\<lambda>x. f x - g x" |
2255 |
from fg have fg': "\<forall>x\<in> B. ?h x = 0" by simp |
|
2256 |
from linear_eq_0[OF linear_compose_sub[OF lf lg] S fg'] |
|
2257 |
show ?thesis by simp |
|
2258 |
qed |
|
2259 |
||
2260 |
lemma linear_eq_stdbasis: |
|
49663 | 2261 |
assumes lf: "linear (f::'a::euclidean_space \<Rightarrow> _)" |
2262 |
and lg: "linear g" |
|
49522 | 2263 |
and fg: "\<forall>i<DIM('a::euclidean_space). f (basis i) = g(basis i)" |
44133 | 2264 |
shows "f = g" |
49663 | 2265 |
proof - |
44133 | 2266 |
let ?U = "{..<DIM('a)}" |
2267 |
let ?I = "(basis::nat=>'a) ` {..<DIM('a)}" |
|
49522 | 2268 |
{ fix x assume x: "x \<in> (UNIV :: 'a set)" |
44133 | 2269 |
from equalityD2[OF span_basis'[where 'a='a]] |
2270 |
have IU: " (UNIV :: 'a set) \<subseteq> span ?I" by blast |
|
49663 | 2271 |
have "f x = g x" |
2272 |
apply (rule linear_eq[OF lf lg IU,rule_format]) |
|
2273 |
using fg x apply auto |
|
2274 |
done |
|
2275 |
} then show ?thesis by auto |
|
44133 | 2276 |
qed |
2277 |
||
2278 |
text {* Similar results for bilinear functions. *} |
|
2279 |
||
2280 |
lemma bilinear_eq: |
|
2281 |
assumes bf: "bilinear f" |
|
49522 | 2282 |
and bg: "bilinear g" |
2283 |
and SB: "S \<subseteq> span B" and TC: "T \<subseteq> span C" |
|
2284 |
and fg: "\<forall>x\<in> B. \<forall>y\<in> C. f x y = g x y" |
|
44133 | 2285 |
shows "\<forall>x\<in>S. \<forall>y\<in>T. f x y = g x y " |
49663 | 2286 |
proof - |
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
2287 |
let ?P = "{x. \<forall>y\<in> span C. f x y = g x y}" |
44133 | 2288 |
from bf bg have sp: "subspace ?P" |
2289 |
unfolding bilinear_def linear_def subspace_def bf bg |
|
49663 | 2290 |
by (auto simp add: span_0 bilinear_lzero[OF bf] bilinear_lzero[OF bg] span_add Ball_def |
2291 |
intro: bilinear_ladd[OF bf]) |
|
44133 | 2292 |
|
2293 |
have "\<forall>x \<in> span B. \<forall>y\<in> span C. f x y = g x y" |
|
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
2294 |
apply (rule span_induct' [OF _ sp]) |
44133 | 2295 |
apply (rule ballI) |
44170
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
2296 |
apply (rule span_induct') |
510ac30f44c0
make Multivariate_Analysis work with separate set type
huffman
parents:
44166
diff
changeset
|
2297 |
apply (simp add: fg) |
44133 | 2298 |
apply (auto simp add: subspace_def) |
2299 |
using bf bg unfolding bilinear_def linear_def |
|
49522 | 2300 |
apply (auto simp add: span_0 bilinear_rzero[OF bf] bilinear_rzero[OF bg] span_add Ball_def |
49663 | 2301 |
intro: bilinear_ladd[OF bf]) |
49522 | 2302 |
done |
44454 | 2303 |
then show ?thesis using SB TC by auto |
44133 | 2304 |
qed |
2305 |
||
49522 | 2306 |
lemma bilinear_eq_stdbasis: |
2307 |
fixes f::"'a::euclidean_space \<Rightarrow> 'b::euclidean_space \<Rightarrow> _" |
|
44133 | 2308 |
assumes bf: "bilinear f" |
49522 | 2309 |
and bg: "bilinear g" |
2310 |
and fg: "\<forall>i<DIM('a). \<forall>j<DIM('b). f (basis i) (basis j) = g (basis i) (basis j)" |
|
44133 | 2311 |
shows "f = g" |
49522 | 2312 |
proof - |
2313 |
from fg have th: "\<forall>x \<in> (basis ` {..<DIM('a)}). \<forall>y\<in> (basis ` {..<DIM('b)}). f x y = g x y" |
|
2314 |
by blast |
|
44133 | 2315 |
from bilinear_eq[OF bf bg equalityD2[OF span_basis'] equalityD2[OF span_basis'] th] |
44454 | 2316 |
show ?thesis by blast |
44133 | 2317 |
qed |
2318 |
||
2319 |
text {* Detailed theorems about left and right invertibility in general case. *} |
|
2320 |
||
49522 | 2321 |
lemma linear_injective_left_inverse: |
2322 |
fixes f::"'a::euclidean_space => 'b::euclidean_space" |
|
44133 | 2323 |
assumes lf: "linear f" and fi: "inj f" |
2324 |
shows "\<exists>g. linear g \<and> g o f = id" |
|
49522 | 2325 |
proof - |
44133 | 2326 |
from linear_independent_extend[OF independent_injective_image, OF independent_basis, OF lf fi] |
49663 | 2327 |
obtain h:: "'b => 'a" where |
2328 |
h: "linear h" "\<forall>x \<in> f ` basis ` {..<DIM('a)}. h x = inv f x" by blast |
|
49522 | 2329 |
from h(2) have th: "\<forall>i<DIM('a). (h \<circ> f) (basis i) = id (basis i)" |
44133 | 2330 |
using inv_o_cancel[OF fi, unfolded fun_eq_iff id_def o_def] |
2331 |
by auto |
|
2332 |
||
2333 |
from linear_eq_stdbasis[OF linear_compose[OF lf h(1)] linear_id th] |
|
2334 |
have "h o f = id" . |
|
2335 |
then show ?thesis using h(1) by blast |
|
2336 |
qed |
|
2337 |
||
49522 | 2338 |
lemma linear_surjective_right_inverse: |
2339 |
fixes f::"'a::euclidean_space => 'b::euclidean_space" |
|
44133 | 2340 |
assumes lf: "linear f" and sf: "surj f" |
2341 |
shows "\<exists>g. linear g \<and> f o g = id" |
|
49522 | 2342 |
proof - |
44133 | 2343 |
from linear_independent_extend[OF independent_basis[where 'a='b],of "inv f"] |
2344 |
obtain h:: "'b \<Rightarrow> 'a" where |
|
2345 |
h: "linear h" "\<forall> x\<in> basis ` {..<DIM('b)}. h x = inv f x" by blast |
|
2346 |
from h(2) |
|
2347 |
have th: "\<forall>i<DIM('b). (f o h) (basis i) = id (basis i)" |
|
2348 |
using sf by(auto simp add: surj_iff_all) |
|
2349 |
from linear_eq_stdbasis[OF linear_compose[OF h(1) lf] linear_id th] |
|
2350 |
have "f o h = id" . |
|
2351 |
then show ?thesis using h(1) by blast |
|
2352 |
qed |
|
2353 |
||
2354 |
text {* An injective map @{typ "'a::euclidean_space \<Rightarrow> 'b::euclidean_space"} is also surjective. *} |
|
2355 |
||
49522 | 2356 |
lemma linear_injective_imp_surjective: |
2357 |
fixes f::"'a::euclidean_space => 'a::euclidean_space" |
|
44133 | 2358 |
assumes lf: "linear f" and fi: "inj f" |
2359 |
shows "surj f" |
|
49522 | 2360 |
proof - |
44133 | 2361 |
let ?U = "UNIV :: 'a set" |
2362 |
from basis_exists[of ?U] obtain B |
|
2363 |
where B: "B \<subseteq> ?U" "independent B" "?U \<subseteq> span B" "card B = dim ?U" |
|
2364 |
by blast |
|
2365 |
from B(4) have d: "dim ?U = card B" by simp |
|
2366 |
have th: "?U \<subseteq> span (f ` B)" |
|
2367 |
apply (rule card_ge_dim_independent) |
|
2368 |
apply blast |
|
2369 |
apply (rule independent_injective_image[OF B(2) lf fi]) |
|
2370 |
apply (rule order_eq_refl) |
|
2371 |
apply (rule sym) |
|
2372 |
unfolding d |
|
2373 |
apply (rule card_image) |
|
2374 |
apply (rule subset_inj_on[OF fi]) |
|
49522 | 2375 |
apply blast |
2376 |
done |
|
44133 | 2377 |
from th show ?thesis |
2378 |
unfolding span_linear_image[OF lf] surj_def |
|
2379 |
using B(3) by blast |
|
2380 |
qed |
|
2381 |
||
2382 |
text {* And vice versa. *} |
|
2383 |
||
2384 |
lemma surjective_iff_injective_gen: |
|
49663 | 2385 |
assumes fS: "finite S" |
2386 |
and fT: "finite T" |
|
2387 |
and c: "card S = card T" |
|
49522 | 2388 |
and ST: "f ` S \<subseteq> T" |
44133 | 2389 |
shows "(\<forall>y \<in> T. \<exists>x \<in> S. f x = y) \<longleftrightarrow> inj_on f S" (is "?lhs \<longleftrightarrow> ?rhs") |
49522 | 2390 |
proof - |
2391 |
{ assume h: "?lhs" |
|
49663 | 2392 |
{ fix x y |
2393 |
assume x: "x \<in> S" and y: "y \<in> S" and f: "f x = f y" |
|
44133 | 2394 |
from x fS have S0: "card S \<noteq> 0" by auto |
49522 | 2395 |
{ assume xy: "x \<noteq> y" |
44133 | 2396 |
have th: "card S \<le> card (f ` (S - {y}))" |
2397 |
unfolding c |
|
2398 |
apply (rule card_mono) |
|
2399 |
apply (rule finite_imageI) |
|
2400 |
using fS apply simp |
|
2401 |
using h xy x y f unfolding subset_eq image_iff |
|
2402 |
apply auto |
|
2403 |
apply (case_tac "xa = f x") |
|
2404 |
apply (rule bexI[where x=x]) |
|
2405 |
apply auto |
|
2406 |
done |
|
2407 |
also have " \<dots> \<le> card (S -{y})" |
|
2408 |
apply (rule card_image_le) |
|
2409 |
using fS by simp |
|
2410 |
also have "\<dots> \<le> card S - 1" using y fS by simp |
|
2411 |
finally have False using S0 by arith } |
|
2412 |
then have "x = y" by blast} |
|
2413 |
then have ?rhs unfolding inj_on_def by blast} |
|
2414 |
moreover |
|
49522 | 2415 |
{ assume h: ?rhs |
44133 | 2416 |
have "f ` S = T" |
2417 |
apply (rule card_subset_eq[OF fT ST]) |
|
2418 |
unfolding card_image[OF h] using c . |
|
2419 |
then have ?lhs by blast} |
|
2420 |
ultimately show ?thesis by blast |
|
2421 |
qed |
|
2422 |
||
49522 | 2423 |
lemma linear_surjective_imp_injective: |
2424 |
fixes f::"'a::euclidean_space => 'a::euclidean_space" |
|
44133 | 2425 |
assumes lf: "linear f" and sf: "surj f" |
2426 |
shows "inj f" |
|
49522 | 2427 |
proof - |
44133 | 2428 |
let ?U = "UNIV :: 'a set" |
2429 |
from basis_exists[of ?U] obtain B |
|
2430 |
where B: "B \<subseteq> ?U" "independent B" "?U \<subseteq> span B" and d: "card B = dim ?U" |
|
2431 |
by blast |
|
49522 | 2432 |
{ fix x assume x: "x \<in> span B" and fx: "f x = 0" |
44133 | 2433 |
from B(2) have fB: "finite B" using independent_bound by auto |
2434 |
have fBi: "independent (f ` B)" |
|
2435 |
apply (rule card_le_dim_spanning[of "f ` B" ?U]) |
|
2436 |
apply blast |
|
2437 |
using sf B(3) |
|
2438 |
unfolding span_linear_image[OF lf] surj_def subset_eq image_iff |
|
2439 |
apply blast |
|
2440 |
using fB apply blast |
|
2441 |
unfolding d[symmetric] |
|
2442 |
apply (rule card_image_le) |
|
2443 |
apply (rule fB) |
|
2444 |
done |
|
2445 |
have th0: "dim ?U \<le> card (f ` B)" |
|
2446 |
apply (rule span_card_ge_dim) |
|
2447 |
apply blast |
|
2448 |
unfolding span_linear_image[OF lf] |
|
2449 |
apply (rule subset_trans[where B = "f ` UNIV"]) |
|
2450 |
using sf unfolding surj_def apply blast |
|
2451 |
apply (rule image_mono) |
|
2452 |
apply (rule B(3)) |
|
2453 |
apply (metis finite_imageI fB) |
|
2454 |
done |
|
2455 |
||
2456 |
moreover have "card (f ` B) \<le> card B" |
|
2457 |
by (rule card_image_le, rule fB) |
|
2458 |
ultimately have th1: "card B = card (f ` B)" unfolding d by arith |
|
2459 |
have fiB: "inj_on f B" |
|
49522 | 2460 |
unfolding surjective_iff_injective_gen[OF fB finite_imageI[OF fB] th1 subset_refl, symmetric] |
2461 |
by blast |
|
44133 | 2462 |
from linear_indep_image_lemma[OF lf fB fBi fiB x] fx |
2463 |
have "x = 0" by blast} |
|
2464 |
note th = this |
|
2465 |
from th show ?thesis unfolding linear_injective_0[OF lf] |
|
2466 |
using B(3) by blast |
|
2467 |
qed |
|
2468 |
||
2469 |
text {* Hence either is enough for isomorphism. *} |
|
2470 |
||
2471 |
lemma left_right_inverse_eq: |
|
2472 |
assumes fg: "f o g = id" and gh: "g o h = id" |
|
2473 |
shows "f = h" |
|
49522 | 2474 |
proof - |
44133 | 2475 |
have "f = f o (g o h)" unfolding gh by simp |
2476 |
also have "\<dots> = (f o g) o h" by (simp add: o_assoc) |
|
2477 |
finally show "f = h" unfolding fg by simp |
|
2478 |
qed |
|
2479 |
||
2480 |
lemma isomorphism_expand: |
|
2481 |
"f o g = id \<and> g o f = id \<longleftrightarrow> (\<forall>x. f(g x) = x) \<and> (\<forall>x. g(f x) = x)" |
|
2482 |
by (simp add: fun_eq_iff o_def id_def) |
|
2483 |
||
49522 | 2484 |
lemma linear_injective_isomorphism: |
2485 |
fixes f::"'a::euclidean_space => 'a::euclidean_space" |
|
44133 | 2486 |
assumes lf: "linear f" and fi: "inj f" |
2487 |
shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)" |
|
49522 | 2488 |
unfolding isomorphism_expand[symmetric] |
2489 |
using linear_surjective_right_inverse[OF lf linear_injective_imp_surjective[OF lf fi]] |
|
2490 |
linear_injective_left_inverse[OF lf fi] |
|
2491 |
by (metis left_right_inverse_eq) |
|
44133 | 2492 |
|
2493 |
lemma linear_surjective_isomorphism: fixes f::"'a::euclidean_space => 'a::euclidean_space" |
|
2494 |
assumes lf: "linear f" and sf: "surj f" |
|
2495 |
shows "\<exists>f'. linear f' \<and> (\<forall>x. f' (f x) = x) \<and> (\<forall>x. f (f' x) = x)" |
|
49522 | 2496 |
unfolding isomorphism_expand[symmetric] |
2497 |
using linear_surjective_right_inverse[OF lf sf] |
|
2498 |
linear_injective_left_inverse[OF lf linear_surjective_imp_injective[OF lf sf]] |
|
2499 |
by (metis left_right_inverse_eq) |
|
44133 | 2500 |
|
2501 |
text {* Left and right inverses are the same for @{typ "'a::euclidean_space => 'a::euclidean_space"}. *} |
|
2502 |
||
49522 | 2503 |
lemma linear_inverse_left: |
2504 |
fixes f::"'a::euclidean_space => 'a::euclidean_space" |
|
44133 | 2505 |
assumes lf: "linear f" and lf': "linear f'" |
2506 |
shows "f o f' = id \<longleftrightarrow> f' o f = id" |
|
49522 | 2507 |
proof - |
2508 |
{ fix f f':: "'a => 'a" |
|
44133 | 2509 |
assume lf: "linear f" "linear f'" and f: "f o f' = id" |
2510 |
from f have sf: "surj f" |
|
2511 |
apply (auto simp add: o_def id_def surj_def) |
|
49522 | 2512 |
apply metis |
2513 |
done |
|
44133 | 2514 |
from linear_surjective_isomorphism[OF lf(1) sf] lf f |
2515 |
have "f' o f = id" unfolding fun_eq_iff o_def id_def |
|
49522 | 2516 |
by metis } |
44133 | 2517 |
then show ?thesis using lf lf' by metis |
2518 |
qed |
|
2519 |
||
2520 |
text {* Moreover, a one-sided inverse is automatically linear. *} |
|
2521 |
||
49522 | 2522 |
lemma left_inverse_linear: |
2523 |
fixes f::"'a::euclidean_space => 'a::euclidean_space" |
|
44133 | 2524 |
assumes lf: "linear f" and gf: "g o f = id" |
2525 |
shows "linear g" |
|
49522 | 2526 |
proof - |
2527 |
from gf have fi: "inj f" |
|
2528 |
apply (auto simp add: inj_on_def o_def id_def fun_eq_iff) |
|
2529 |
apply metis |
|
2530 |
done |
|
44133 | 2531 |
from linear_injective_isomorphism[OF lf fi] |
2532 |
obtain h:: "'a \<Rightarrow> 'a" where |
|
2533 |
h: "linear h" "\<forall>x. h (f x) = x" "\<forall>x. f (h x) = x" by blast |
|
49522 | 2534 |
have "h = g" |
2535 |
apply (rule ext) using gf h(2,3) |
|
44133 | 2536 |
apply (simp add: o_def id_def fun_eq_iff) |
49522 | 2537 |
apply metis |
2538 |
done |
|
44133 | 2539 |
with h(1) show ?thesis by blast |
2540 |
qed |
|
2541 |
||
49522 | 2542 |
|
44133 | 2543 |
subsection {* Infinity norm *} |
2544 |
||
2545 |
definition "infnorm (x::'a::euclidean_space) = Sup {abs(x$$i) |i. i<DIM('a)}" |
|
2546 |
||
2547 |
lemma numseg_dimindex_nonempty: "\<exists>i. i \<in> (UNIV :: 'n set)" |
|
2548 |
by auto |
|
2549 |
||
2550 |
lemma infnorm_set_image: |
|
2551 |
"{abs((x::'a::euclidean_space)$$i) |i. i<DIM('a)} = |
|
2552 |
(\<lambda>i. abs(x$$i)) ` {..<DIM('a)}" by blast |
|
2553 |
||
2554 |
lemma infnorm_set_lemma: |
|
2555 |
shows "finite {abs((x::'a::euclidean_space)$$i) |i. i<DIM('a)}" |
|
2556 |
and "{abs(x$$i) |i. i<DIM('a::euclidean_space)} \<noteq> {}" |
|
2557 |
unfolding infnorm_set_image |
|
2558 |
by auto |
|
2559 |
||
2560 |
lemma infnorm_pos_le: "0 \<le> infnorm (x::'a::euclidean_space)" |
|
2561 |
unfolding infnorm_def |
|
2562 |
unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma] |
|
2563 |
unfolding infnorm_set_image |
|
2564 |
by auto |
|
2565 |
||
2566 |
lemma infnorm_triangle: "infnorm ((x::'a::euclidean_space) + y) \<le> infnorm x + infnorm y" |
|
49522 | 2567 |
proof - |
44133 | 2568 |
have th: "\<And>x y (z::real). x - y <= z \<longleftrightarrow> x - z <= y" by arith |
2569 |
have th1: "\<And>S f. f ` S = { f i| i. i \<in> S}" by blast |
|
2570 |
have th2: "\<And>x (y::real). abs(x + y) - abs(x) <= abs(y)" by arith |
|
2571 |
have *:"\<And>i. i \<in> {..<DIM('a)} \<longleftrightarrow> i <DIM('a)" by auto |
|
2572 |
show ?thesis |
|
2573 |
unfolding infnorm_def unfolding Sup_finite_le_iff[ OF infnorm_set_lemma[where 'a='a]] |
|
2574 |
apply (subst diff_le_eq[symmetric]) |
|
2575 |
unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma] |
|
2576 |
unfolding infnorm_set_image bex_simps |
|
2577 |
apply (subst th) |
|
2578 |
unfolding th1 * |
|
2579 |
unfolding Sup_finite_ge_iff[ OF infnorm_set_lemma[where 'a='a]] |
|
2580 |
unfolding infnorm_set_image ball_simps bex_simps |
|
49522 | 2581 |
unfolding euclidean_simps apply (metis th2) |
2582 |
done |
|
44133 | 2583 |
qed |
2584 |
||
2585 |
lemma infnorm_eq_0: "infnorm x = 0 \<longleftrightarrow> (x::_::euclidean_space) = 0" |
|
49522 | 2586 |
proof - |
44133 | 2587 |
have "infnorm x <= 0 \<longleftrightarrow> x = 0" |
2588 |
unfolding infnorm_def |
|
2589 |
unfolding Sup_finite_le_iff[OF infnorm_set_lemma] |
|
2590 |
unfolding infnorm_set_image ball_simps |
|
49663 | 2591 |
apply (subst (1) euclidean_eq) |
2592 |
apply auto |
|
2593 |
done |
|
44133 | 2594 |
then show ?thesis using infnorm_pos_le[of x] by simp |
2595 |
qed |
|
2596 |
||
2597 |
lemma infnorm_0: "infnorm 0 = 0" |
|
2598 |
by (simp add: infnorm_eq_0) |
|
2599 |
||
2600 |
lemma infnorm_neg: "infnorm (- x) = infnorm x" |
|
2601 |
unfolding infnorm_def |
|
2602 |
apply (rule cong[of "Sup" "Sup"]) |
|
49522 | 2603 |
apply blast |
2604 |
apply auto |
|
2605 |
done |
|
44133 | 2606 |
|
2607 |
lemma infnorm_sub: "infnorm (x - y) = infnorm (y - x)" |
|
49522 | 2608 |
proof - |
44133 | 2609 |
have "y - x = - (x - y)" by simp |
2610 |
then show ?thesis by (metis infnorm_neg) |
|
2611 |
qed |
|
2612 |
||
2613 |
lemma real_abs_sub_infnorm: "\<bar> infnorm x - infnorm y\<bar> \<le> infnorm (x - y)" |
|
49522 | 2614 |
proof - |
44133 | 2615 |
have th: "\<And>(nx::real) n ny. nx <= n + ny \<Longrightarrow> ny <= n + nx ==> \<bar>nx - ny\<bar> <= n" |
2616 |
by arith |
|
2617 |
from infnorm_triangle[of "x - y" " y"] infnorm_triangle[of "x - y" "-x"] |
|
2618 |
have ths: "infnorm x \<le> infnorm (x - y) + infnorm y" |
|
2619 |
"infnorm y \<le> infnorm (x - y) + infnorm x" |
|
44454 | 2620 |
by (simp_all add: field_simps infnorm_neg) |
44133 | 2621 |
from th[OF ths] show ?thesis . |
2622 |
qed |
|
2623 |
||
2624 |
lemma real_abs_infnorm: " \<bar>infnorm x\<bar> = infnorm x" |
|
2625 |
using infnorm_pos_le[of x] by arith |
|
2626 |
||
49522 | 2627 |
lemma component_le_infnorm: "\<bar>x$$i\<bar> \<le> infnorm (x::'a::euclidean_space)" |
2628 |
proof (cases "i<DIM('a)") |
|
2629 |
case False |
|
2630 |
then show ?thesis using infnorm_pos_le by auto |
|
2631 |
next |
|
2632 |
case True |
|
44133 | 2633 |
let ?U = "{..<DIM('a)}" |
2634 |
let ?S = "{\<bar>x$$i\<bar> |i. i<DIM('a)}" |
|
2635 |
have fS: "finite ?S" unfolding image_Collect[symmetric] |
|
49522 | 2636 |
apply (rule finite_imageI) apply simp done |
44133 | 2637 |
have S0: "?S \<noteq> {}" by blast |
2638 |
have th1: "\<And>S f. f ` S = { f i| i. i \<in> S}" by blast |
|
2639 |
show ?thesis unfolding infnorm_def |
|
2640 |
apply(subst Sup_finite_ge_iff) using Sup_finite_in[OF fS S0] |
|
49522 | 2641 |
using infnorm_set_image using True apply auto |
2642 |
done |
|
44133 | 2643 |
qed |
2644 |
||
2645 |
lemma infnorm_mul_lemma: "infnorm(a *\<^sub>R x) <= \<bar>a\<bar> * infnorm x" |
|
2646 |
apply (subst infnorm_def) |
|
2647 |
unfolding Sup_finite_le_iff[OF infnorm_set_lemma] |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44176
diff
changeset
|
2648 |
unfolding infnorm_set_image ball_simps euclidean_component_scaleR abs_mult |
49522 | 2649 |
using component_le_infnorm[of x] |
2650 |
apply (auto intro: mult_mono) |
|
2651 |
done |
|
44133 | 2652 |
|
2653 |
lemma infnorm_mul: "infnorm(a *\<^sub>R x) = abs a * infnorm x" |
|
49522 | 2654 |
proof - |
49652 | 2655 |
{ assume a0: "a = 0" then have ?thesis by (simp add: infnorm_0) } |
44133 | 2656 |
moreover |
49522 | 2657 |
{ assume a0: "a \<noteq> 0" |
44133 | 2658 |
from a0 have th: "(1/a) *\<^sub>R (a *\<^sub>R x) = x" by simp |
2659 |
from a0 have ap: "\<bar>a\<bar> > 0" by arith |
|
2660 |
from infnorm_mul_lemma[of "1/a" "a *\<^sub>R x"] |
|
2661 |
have "infnorm x \<le> 1/\<bar>a\<bar> * infnorm (a*\<^sub>R x)" |
|
2662 |
unfolding th by simp |
|
2663 |
with ap have "\<bar>a\<bar> * infnorm x \<le> \<bar>a\<bar> * (1/\<bar>a\<bar> * infnorm (a *\<^sub>R x))" by (simp add: field_simps) |
|
2664 |
then have "\<bar>a\<bar> * infnorm x \<le> infnorm (a*\<^sub>R x)" |
|
2665 |
using ap by (simp add: field_simps) |
|
2666 |
with infnorm_mul_lemma[of a x] have ?thesis by arith } |
|
2667 |
ultimately show ?thesis by blast |
|
2668 |
qed |
|
2669 |
||
2670 |
lemma infnorm_pos_lt: "infnorm x > 0 \<longleftrightarrow> x \<noteq> 0" |
|
2671 |
using infnorm_pos_le[of x] infnorm_eq_0[of x] by arith |
|
2672 |
||
2673 |
text {* Prove that it differs only up to a bound from Euclidean norm. *} |
|
2674 |
||
2675 |
lemma infnorm_le_norm: "infnorm x \<le> norm x" |
|
2676 |
unfolding infnorm_def Sup_finite_le_iff[OF infnorm_set_lemma] |
|
2677 |
unfolding infnorm_set_image ball_simps |
|
2678 |
by (metis component_le_norm) |
|
2679 |
||
2680 |
lemma norm_le_infnorm: "norm(x) <= sqrt(real DIM('a)) * infnorm(x::'a::euclidean_space)" |
|
49522 | 2681 |
proof - |
44133 | 2682 |
let ?d = "DIM('a)" |
2683 |
have "real ?d \<ge> 0" by simp |
|
49652 | 2684 |
then have d2: "(sqrt (real ?d))^2 = real ?d" |
44133 | 2685 |
by (auto intro: real_sqrt_pow2) |
2686 |
have th: "sqrt (real ?d) * infnorm x \<ge> 0" |
|
2687 |
by (simp add: zero_le_mult_iff infnorm_pos_le) |
|
2688 |
have th1: "x \<bullet> x \<le> (sqrt (real ?d) * infnorm x)^2" |
|
2689 |
unfolding power_mult_distrib d2 |
|
2690 |
unfolding real_of_nat_def apply(subst euclidean_inner) |
|
2691 |
apply (subst power2_abs[symmetric]) |
|
49663 | 2692 |
apply (rule order_trans[OF setsum_bounded[where K="\<bar>infnorm x\<bar>\<twosuperior>"]]) |
2693 |
apply (auto simp add: power2_eq_square[symmetric]) |
|
44133 | 2694 |
apply (subst power2_abs[symmetric]) |
2695 |
apply (rule power_mono) |
|
2696 |
unfolding infnorm_def Sup_finite_ge_iff[OF infnorm_set_lemma] |
|
49663 | 2697 |
unfolding infnorm_set_image bex_simps |
2698 |
apply (rule_tac x=i in bexI) |
|
49522 | 2699 |
apply auto |
2700 |
done |
|
44133 | 2701 |
from real_le_lsqrt[OF inner_ge_zero th th1] |
2702 |
show ?thesis unfolding norm_eq_sqrt_inner id_def . |
|
2703 |
qed |
|
2704 |
||
44646 | 2705 |
lemma tendsto_infnorm [tendsto_intros]: |
49522 | 2706 |
assumes "(f ---> a) F" |
2707 |
shows "((\<lambda>x. infnorm (f x)) ---> infnorm a) F" |
|
44646 | 2708 |
proof (rule tendsto_compose [OF LIM_I assms]) |
2709 |
fix r :: real assume "0 < r" |
|
49522 | 2710 |
then show "\<exists>s>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < s \<longrightarrow> norm (infnorm x - infnorm a) < r" |
44646 | 2711 |
by (metis real_norm_def le_less_trans real_abs_sub_infnorm infnorm_le_norm) |
2712 |
qed |
|
2713 |
||
44133 | 2714 |
text {* Equality in Cauchy-Schwarz and triangle inequalities. *} |
2715 |
||
2716 |
lemma norm_cauchy_schwarz_eq: "x \<bullet> y = norm x * norm y \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x" (is "?lhs \<longleftrightarrow> ?rhs") |
|
49522 | 2717 |
proof - |
2718 |
{ assume h: "x = 0" |
|
2719 |
then have ?thesis by simp } |
|
44133 | 2720 |
moreover |
49522 | 2721 |
{ assume h: "y = 0" |
2722 |
then have ?thesis by simp } |
|
44133 | 2723 |
moreover |
49522 | 2724 |
{ assume x: "x \<noteq> 0" and y: "y \<noteq> 0" |
44133 | 2725 |
from inner_eq_zero_iff[of "norm y *\<^sub>R x - norm x *\<^sub>R y"] |
49522 | 2726 |
have "?rhs \<longleftrightarrow> |
2727 |
(norm y * (norm y * norm x * norm x - norm x * (x \<bullet> y)) - |
|
2728 |
norm x * (norm y * (y \<bullet> x) - norm x * norm y * norm y) = 0)" |
|
44133 | 2729 |
using x y |
2730 |
unfolding inner_simps |
|
49522 | 2731 |
unfolding power2_norm_eq_inner[symmetric] power2_eq_square diff_eq_0_iff_eq |
2732 |
apply (simp add: inner_commute) |
|
2733 |
apply (simp add: field_simps) |
|
2734 |
apply metis |
|
2735 |
done |
|
44133 | 2736 |
also have "\<dots> \<longleftrightarrow> (2 * norm x * norm y * (norm x * norm y - x \<bullet> y) = 0)" using x y |
2737 |
by (simp add: field_simps inner_commute) |
|
2738 |
also have "\<dots> \<longleftrightarrow> ?lhs" using x y |
|
2739 |
apply simp |
|
49522 | 2740 |
apply metis |
2741 |
done |
|
2742 |
finally have ?thesis by blast } |
|
44133 | 2743 |
ultimately show ?thesis by blast |
2744 |
qed |
|
2745 |
||
2746 |
lemma norm_cauchy_schwarz_abs_eq: |
|
49522 | 2747 |
"abs(x \<bullet> y) = norm x * norm y \<longleftrightarrow> |
2748 |
norm x *\<^sub>R y = norm y *\<^sub>R x \<or> norm(x) *\<^sub>R y = - norm y *\<^sub>R x" (is "?lhs \<longleftrightarrow> ?rhs") |
|
2749 |
proof - |
|
44133 | 2750 |
have th: "\<And>(x::real) a. a \<ge> 0 \<Longrightarrow> abs x = a \<longleftrightarrow> x = a \<or> x = - a" by arith |
2751 |
have "?rhs \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x \<or> norm (- x) *\<^sub>R y = norm y *\<^sub>R (- x)" |
|
2752 |
by simp |
|
2753 |
also have "\<dots> \<longleftrightarrow>(x \<bullet> y = norm x * norm y \<or> |
|
2754 |
(-x) \<bullet> y = norm x * norm y)" |
|
2755 |
unfolding norm_cauchy_schwarz_eq[symmetric] |
|
2756 |
unfolding norm_minus_cancel norm_scaleR .. |
|
2757 |
also have "\<dots> \<longleftrightarrow> ?lhs" |
|
2758 |
unfolding th[OF mult_nonneg_nonneg, OF norm_ge_zero[of x] norm_ge_zero[of y]] inner_simps by auto |
|
2759 |
finally show ?thesis .. |
|
2760 |
qed |
|
2761 |
||
2762 |
lemma norm_triangle_eq: |
|
2763 |
fixes x y :: "'a::real_inner" |
|
2764 |
shows "norm(x + y) = norm x + norm y \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x" |
|
49522 | 2765 |
proof - |
2766 |
{ assume x: "x = 0 \<or> y = 0" |
|
2767 |
then have ?thesis by (cases "x = 0") simp_all } |
|
44133 | 2768 |
moreover |
49522 | 2769 |
{ assume x: "x \<noteq> 0" and y: "y \<noteq> 0" |
2770 |
then have "norm x \<noteq> 0" "norm y \<noteq> 0" |
|
44133 | 2771 |
by simp_all |
49522 | 2772 |
then have n: "norm x > 0" "norm y > 0" |
2773 |
using norm_ge_zero[of x] norm_ge_zero[of y] by arith+ |
|
2774 |
have th: "\<And>(a::real) b c. a + b + c \<noteq> 0 ==> (a = b + c \<longleftrightarrow> a^2 = (b + c)^2)" |
|
2775 |
by algebra |
|
44133 | 2776 |
have "norm(x + y) = norm x + norm y \<longleftrightarrow> norm(x + y)^ 2 = (norm x + norm y) ^2" |
2777 |
apply (rule th) using n norm_ge_zero[of "x + y"] |
|
49522 | 2778 |
apply arith |
2779 |
done |
|
44133 | 2780 |
also have "\<dots> \<longleftrightarrow> norm x *\<^sub>R y = norm y *\<^sub>R x" |
2781 |
unfolding norm_cauchy_schwarz_eq[symmetric] |
|
2782 |
unfolding power2_norm_eq_inner inner_simps |
|
2783 |
by (simp add: power2_norm_eq_inner[symmetric] power2_eq_square inner_commute field_simps) |
|
2784 |
finally have ?thesis .} |
|
2785 |
ultimately show ?thesis by blast |
|
2786 |
qed |
|
2787 |
||
49522 | 2788 |
|
44133 | 2789 |
subsection {* Collinearity *} |
2790 |
||
49522 | 2791 |
definition collinear :: "'a::real_vector set \<Rightarrow> bool" |
2792 |
where "collinear S \<longleftrightarrow> (\<exists>u. \<forall>x \<in> S. \<forall> y \<in> S. \<exists>c. x - y = c *\<^sub>R u)" |
|
44133 | 2793 |
|
2794 |
lemma collinear_empty: "collinear {}" by (simp add: collinear_def) |
|
2795 |
||
2796 |
lemma collinear_sing: "collinear {x}" |
|
2797 |
by (simp add: collinear_def) |
|
2798 |
||
2799 |
lemma collinear_2: "collinear {x, y}" |
|
2800 |
apply (simp add: collinear_def) |
|
2801 |
apply (rule exI[where x="x - y"]) |
|
2802 |
apply auto |
|
2803 |
apply (rule exI[where x=1], simp) |
|
2804 |
apply (rule exI[where x="- 1"], simp) |
|
2805 |
done |
|
2806 |
||
49522 | 2807 |
lemma collinear_lemma: |
2808 |
"collinear {0,x,y} \<longleftrightarrow> x = 0 \<or> y = 0 \<or> (\<exists>c. y = c *\<^sub>R x)" (is "?lhs \<longleftrightarrow> ?rhs") |
|
2809 |
proof - |
|
2810 |
{ assume "x=0 \<or> y = 0" |
|
2811 |
then have ?thesis by (cases "x = 0") (simp_all add: collinear_2 insert_commute) } |
|
44133 | 2812 |
moreover |
49522 | 2813 |
{ assume x: "x \<noteq> 0" and y: "y \<noteq> 0" |
2814 |
{ assume h: "?lhs" |
|
2815 |
then obtain u where u: "\<forall> x\<in> {0,x,y}. \<forall>y\<in> {0,x,y}. \<exists>c. x - y = c *\<^sub>R u" |
|
2816 |
unfolding collinear_def by blast |
|
44133 | 2817 |
from u[rule_format, of x 0] u[rule_format, of y 0] |
2818 |
obtain cx and cy where |
|
2819 |
cx: "x = cx *\<^sub>R u" and cy: "y = cy *\<^sub>R u" |
|
2820 |
by auto |
|
2821 |
from cx x have cx0: "cx \<noteq> 0" by auto |
|
2822 |
from cy y have cy0: "cy \<noteq> 0" by auto |
|
2823 |
let ?d = "cy / cx" |
|
2824 |
from cx cy cx0 have "y = ?d *\<^sub>R x" |
|
2825 |
by simp |
|
49522 | 2826 |
then have ?rhs using x y by blast } |
44133 | 2827 |
moreover |
49522 | 2828 |
{ assume h: "?rhs" |
44133 | 2829 |
then obtain c where c: "y = c *\<^sub>R x" using x y by blast |
2830 |
have ?lhs unfolding collinear_def c |
|
2831 |
apply (rule exI[where x=x]) |
|
2832 |
apply auto |
|
2833 |
apply (rule exI[where x="- 1"], simp) |
|
2834 |
apply (rule exI[where x= "-c"], simp) |
|
2835 |
apply (rule exI[where x=1], simp) |
|
2836 |
apply (rule exI[where x="1 - c"], simp add: scaleR_left_diff_distrib) |
|
2837 |
apply (rule exI[where x="c - 1"], simp add: scaleR_left_diff_distrib) |
|
49522 | 2838 |
done } |
2839 |
ultimately have ?thesis by blast } |
|
44133 | 2840 |
ultimately show ?thesis by blast |
2841 |
qed |
|
2842 |
||
49522 | 2843 |
lemma norm_cauchy_schwarz_equal: "abs(x \<bullet> y) = norm x * norm y \<longleftrightarrow> collinear {0,x,y}" |
2844 |
unfolding norm_cauchy_schwarz_abs_eq |
|
2845 |
apply (cases "x=0", simp_all add: collinear_2) |
|
2846 |
apply (cases "y=0", simp_all add: collinear_2 insert_commute) |
|
2847 |
unfolding collinear_lemma |
|
2848 |
apply simp |
|
2849 |
apply (subgoal_tac "norm x \<noteq> 0") |
|
2850 |
apply (subgoal_tac "norm y \<noteq> 0") |
|
2851 |
apply (rule iffI) |
|
2852 |
apply (cases "norm x *\<^sub>R y = norm y *\<^sub>R x") |
|
2853 |
apply (rule exI[where x="(1/norm x) * norm y"]) |
|
2854 |
apply (drule sym) |
|
2855 |
unfolding scaleR_scaleR[symmetric] |
|
2856 |
apply (simp add: field_simps) |
|
2857 |
apply (rule exI[where x="(1/norm x) * - norm y"]) |
|
2858 |
apply clarify |
|
2859 |
apply (drule sym) |
|
2860 |
unfolding scaleR_scaleR[symmetric] |
|
2861 |
apply (simp add: field_simps) |
|
2862 |
apply (erule exE) |
|
2863 |
apply (erule ssubst) |
|
2864 |
unfolding scaleR_scaleR |
|
2865 |
unfolding norm_scaleR |
|
2866 |
apply (subgoal_tac "norm x * c = \<bar>c\<bar> * norm x \<or> norm x * c = - \<bar>c\<bar> * norm x") |
|
2867 |
apply (case_tac "c <= 0", simp add: field_simps) |
|
2868 |
apply (simp add: field_simps) |
|
2869 |
apply (case_tac "c <= 0", simp add: field_simps) |
|
2870 |
apply (simp add: field_simps) |
|
2871 |
apply simp |
|
2872 |
apply simp |
|
2873 |
done |
|
2874 |
||
44133 | 2875 |
|
44529
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2876 |
subsection {* An ordering on euclidean spaces that will allow us to talk about intervals *} |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2877 |
|
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2878 |
class ordered_euclidean_space = ord + euclidean_space + |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2879 |
assumes eucl_le: "x \<le> y \<longleftrightarrow> (\<forall>i < DIM('a). x $$ i \<le> y $$ i)" |
49522 | 2880 |
and eucl_less: "x < y \<longleftrightarrow> (\<forall>i < DIM('a). x $$ i < y $$ i)" |
44529
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2881 |
|
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2882 |
lemma eucl_less_not_refl[simp, intro!]: "\<not> x < (x::'a::ordered_euclidean_space)" |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2883 |
unfolding eucl_less[where 'a='a] by auto |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2884 |
|
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2885 |
lemma euclidean_trans[trans]: |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2886 |
fixes x y z :: "'a::ordered_euclidean_space" |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2887 |
shows "x < y \<Longrightarrow> y < z \<Longrightarrow> x < z" |
49522 | 2888 |
and "x \<le> y \<Longrightarrow> y < z \<Longrightarrow> x < z" |
2889 |
and "x \<le> y \<Longrightarrow> y \<le> z \<Longrightarrow> x \<le> z" |
|
44529
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2890 |
unfolding eucl_less[where 'a='a] eucl_le[where 'a='a] |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2891 |
by (fast intro: less_trans, fast intro: le_less_trans, |
d4d9ea33703c
arrange everything related to ordered_euclidean_space class together
huffman
parents:
44528
diff
changeset
|
2892 |
fast intro: order_trans) |
44133 | 2893 |
|
50104 | 2894 |
lemma atLeastAtMost_singleton_euclidean[simp]: |
2895 |
fixes a :: "'a::ordered_euclidean_space" shows "{a .. a} = {a}" |
|
2896 |
by (force simp: eucl_le[where 'a='a] euclidean_eq[where 'a='a]) |
|
2897 |
||
44133 | 2898 |
lemma basis_real_range: "basis ` {..<1} = {1::real}" by auto |
2899 |
||
2900 |
instance real::ordered_euclidean_space |
|
2901 |
by default (auto simp add: euclidean_component_def) |
|
2902 |
||
2903 |
lemma Eucl_real_simps[simp]: |
|
2904 |
"(x::real) $$ 0 = x" |
|
2905 |
"(\<chi>\<chi> i. f i) = ((f 0)::real)" |
|
2906 |
"\<And>i. i > 0 \<Longrightarrow> x $$ i = 0" |
|
2907 |
defer apply(subst euclidean_eq) apply safe |
|
2908 |
unfolding euclidean_lambda_beta' |
|
49522 | 2909 |
unfolding euclidean_component_def apply auto |
2910 |
done |
|
44133 | 2911 |
|
2912 |
lemma complex_basis[simp]: |
|
2913 |
shows "basis 0 = (1::complex)" and "basis 1 = ii" and "basis (Suc 0) = ii" |
|
2914 |
unfolding basis_complex_def by auto |
|
2915 |
||
2916 |
lemma DIM_prod[simp]: "DIM('a \<times> 'b) = DIM('b::euclidean_space) + DIM('a::euclidean_space)" |
|
2917 |
(* FIXME: why this orientation? Why not "DIM('a) + DIM('b)" ? *) |
|
2918 |
unfolding dimension_prod_def by (rule add_commute) |
|
2919 |
||
2920 |
instantiation prod :: (ordered_euclidean_space, ordered_euclidean_space) ordered_euclidean_space |
|
2921 |
begin |
|
2922 |
||
2923 |
definition "x \<le> (y::('a\<times>'b)) \<longleftrightarrow> (\<forall>i<DIM('a\<times>'b). x $$ i \<le> y $$ i)" |
|
2924 |
definition "x < (y::('a\<times>'b)) \<longleftrightarrow> (\<forall>i<DIM('a\<times>'b). x $$ i < y $$ i)" |
|
2925 |
||
49522 | 2926 |
instance |
2927 |
by default (auto simp: less_prod_def less_eq_prod_def) |
|
2928 |
||
44133 | 2929 |
end |
2930 |
||
2931 |
end |