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