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