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