author | wenzelm |
Thu, 01 Sep 2016 21:28:46 +0200 | |
changeset 63763 | 0f61ea70d384 |
parent 63680 | 6e1e8b5abbfa |
child 63915 | bab633745c7f |
permissions | -rw-r--r-- |
51524 | 1 |
(* Title: HOL/Real_Vector_Spaces.thy |
27552
15cf4ed9c2a1
re-removed subclass relation real_field < field_char_0: coregularity violation in NSA/HyperDef
haftmann
parents:
27515
diff
changeset
|
2 |
Author: Brian Huffman |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
3 |
Author: Johannes Hölzl |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
4 |
*) |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
5 |
|
60758 | 6 |
section \<open>Vector Spaces and Algebras over the Reals\<close> |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
7 |
|
51524 | 8 |
theory Real_Vector_Spaces |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
9 |
imports Real Topological_Spaces |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
10 |
begin |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
11 |
|
60758 | 12 |
subsection \<open>Locale for additive functions\<close> |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
13 |
|
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
14 |
locale additive = |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
15 |
fixes f :: "'a::ab_group_add \<Rightarrow> 'b::ab_group_add" |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
16 |
assumes add: "f (x + y) = f x + f y" |
27443 | 17 |
begin |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
18 |
|
27443 | 19 |
lemma zero: "f 0 = 0" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
20 |
proof - |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
21 |
have "f 0 = f (0 + 0)" by simp |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
22 |
also have "\<dots> = f 0 + f 0" by (rule add) |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
23 |
finally show "f 0 = 0" by simp |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
24 |
qed |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
25 |
|
27443 | 26 |
lemma minus: "f (- x) = - f x" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
27 |
proof - |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
28 |
have "f (- x) + f x = f (- x + x)" by (rule add [symmetric]) |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
29 |
also have "\<dots> = - f x + f x" by (simp add: zero) |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
30 |
finally show "f (- x) = - f x" by (rule add_right_imp_eq) |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
31 |
qed |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
32 |
|
27443 | 33 |
lemma diff: "f (x - y) = f x - f y" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53600
diff
changeset
|
34 |
using add [of x "- y"] by (simp add: minus) |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
35 |
|
27443 | 36 |
lemma setsum: "f (setsum g A) = (\<Sum>x\<in>A. f (g x))" |
63545 | 37 |
apply (cases "finite A") |
38 |
apply (induct set: finite) |
|
39 |
apply (simp add: zero) |
|
40 |
apply (simp add: add) |
|
41 |
apply (simp add: zero) |
|
42 |
done |
|
22942 | 43 |
|
27443 | 44 |
end |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
45 |
|
63545 | 46 |
|
60758 | 47 |
subsection \<open>Vector spaces\<close> |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
48 |
|
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
49 |
locale vector_space = |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
50 |
fixes scale :: "'a::field \<Rightarrow> 'b::ab_group_add \<Rightarrow> 'b" |
63545 | 51 |
assumes scale_right_distrib [algebra_simps]: "scale a (x + y) = scale a x + scale a y" |
52 |
and scale_left_distrib [algebra_simps]: "scale (a + b) x = scale a x + scale b x" |
|
53 |
and scale_scale [simp]: "scale a (scale b x) = scale (a * b) x" |
|
54 |
and scale_one [simp]: "scale 1 x = x" |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
55 |
begin |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
56 |
|
63545 | 57 |
lemma scale_left_commute: "scale a (scale b x) = scale b (scale a x)" |
58 |
by (simp add: mult.commute) |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
59 |
|
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
60 |
lemma scale_zero_left [simp]: "scale 0 x = 0" |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
61 |
and scale_minus_left [simp]: "scale (- a) x = - (scale a x)" |
63545 | 62 |
and scale_left_diff_distrib [algebra_simps]: "scale (a - b) x = scale a x - scale b x" |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
63 |
and scale_setsum_left: "scale (setsum f A) x = (\<Sum>a\<in>A. scale (f a) x)" |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
64 |
proof - |
29229 | 65 |
interpret s: additive "\<lambda>a. scale a x" |
63545 | 66 |
by standard (rule scale_left_distrib) |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
67 |
show "scale 0 x = 0" by (rule s.zero) |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
68 |
show "scale (- a) x = - (scale a x)" by (rule s.minus) |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
69 |
show "scale (a - b) x = scale a x - scale b x" by (rule s.diff) |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
70 |
show "scale (setsum f A) x = (\<Sum>a\<in>A. scale (f a) x)" by (rule s.setsum) |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
71 |
qed |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
72 |
|
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
73 |
lemma scale_zero_right [simp]: "scale a 0 = 0" |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
74 |
and scale_minus_right [simp]: "scale a (- x) = - (scale a x)" |
63545 | 75 |
and scale_right_diff_distrib [algebra_simps]: "scale a (x - y) = scale a x - scale a y" |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
76 |
and scale_setsum_right: "scale a (setsum f A) = (\<Sum>x\<in>A. scale a (f x))" |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
77 |
proof - |
29229 | 78 |
interpret s: additive "\<lambda>x. scale a x" |
63545 | 79 |
by standard (rule scale_right_distrib) |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
80 |
show "scale a 0 = 0" by (rule s.zero) |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
81 |
show "scale a (- x) = - (scale a x)" by (rule s.minus) |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
82 |
show "scale a (x - y) = scale a x - scale a y" by (rule s.diff) |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
83 |
show "scale a (setsum f A) = (\<Sum>x\<in>A. scale a (f x))" by (rule s.setsum) |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
84 |
qed |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
85 |
|
63545 | 86 |
lemma scale_eq_0_iff [simp]: "scale a x = 0 \<longleftrightarrow> a = 0 \<or> x = 0" |
87 |
proof (cases "a = 0") |
|
88 |
case True |
|
89 |
then show ?thesis by simp |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
90 |
next |
63545 | 91 |
case False |
92 |
have "x = 0" if "scale a x = 0" |
|
93 |
proof - |
|
94 |
from False that have "scale (inverse a) (scale a x) = 0" by simp |
|
95 |
with False show ?thesis by simp |
|
96 |
qed |
|
97 |
then show ?thesis by force |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
98 |
qed |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
99 |
|
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
100 |
lemma scale_left_imp_eq: |
63545 | 101 |
assumes nonzero: "a \<noteq> 0" |
102 |
and scale: "scale a x = scale a y" |
|
103 |
shows "x = y" |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
104 |
proof - |
63545 | 105 |
from scale have "scale a (x - y) = 0" |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
106 |
by (simp add: scale_right_diff_distrib) |
63545 | 107 |
with nonzero have "x - y = 0" by simp |
108 |
then show "x = y" by (simp only: right_minus_eq) |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
109 |
qed |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
110 |
|
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
111 |
lemma scale_right_imp_eq: |
63545 | 112 |
assumes nonzero: "x \<noteq> 0" |
113 |
and scale: "scale a x = scale b x" |
|
114 |
shows "a = b" |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
115 |
proof - |
63545 | 116 |
from scale have "scale (a - b) x = 0" |
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
117 |
by (simp add: scale_left_diff_distrib) |
63545 | 118 |
with nonzero have "a - b = 0" by simp |
119 |
then show "a = b" by (simp only: right_minus_eq) |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
120 |
qed |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
121 |
|
63545 | 122 |
lemma scale_cancel_left [simp]: "scale a x = scale a y \<longleftrightarrow> x = y \<or> a = 0" |
123 |
by (auto intro: scale_left_imp_eq) |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
124 |
|
63545 | 125 |
lemma scale_cancel_right [simp]: "scale a x = scale b x \<longleftrightarrow> a = b \<or> x = 0" |
126 |
by (auto intro: scale_right_imp_eq) |
|
28029
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
127 |
|
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
128 |
end |
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
huffman
parents:
28009
diff
changeset
|
129 |
|
63545 | 130 |
|
60758 | 131 |
subsection \<open>Real vector spaces\<close> |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
132 |
|
29608 | 133 |
class scaleR = |
25062 | 134 |
fixes scaleR :: "real \<Rightarrow> 'a \<Rightarrow> 'a" (infixr "*\<^sub>R" 75) |
24748 | 135 |
begin |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
136 |
|
63545 | 137 |
abbreviation divideR :: "'a \<Rightarrow> real \<Rightarrow> 'a" (infixl "'/\<^sub>R" 70) |
138 |
where "x /\<^sub>R r \<equiv> scaleR (inverse r) x" |
|
24748 | 139 |
|
140 |
end |
|
141 |
||
24588 | 142 |
class real_vector = scaleR + ab_group_add + |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
143 |
assumes scaleR_add_right: "scaleR a (x + y) = scaleR a x + scaleR a y" |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
144 |
and scaleR_add_left: "scaleR (a + b) x = scaleR a x + scaleR b x" |
30070
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents:
30069
diff
changeset
|
145 |
and scaleR_scaleR: "scaleR a (scaleR b x) = scaleR (a * b) x" |
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
huffman
parents:
30069
diff
changeset
|
146 |
and scaleR_one: "scaleR 1 x = x" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
147 |
|
63545 | 148 |
interpretation real_vector: vector_space "scaleR :: real \<Rightarrow> 'a \<Rightarrow> 'a::real_vector" |
149 |
apply unfold_locales |
|
150 |
apply (rule scaleR_add_right) |
|
151 |
apply (rule scaleR_add_left) |
|
152 |
apply (rule scaleR_scaleR) |
|
153 |
apply (rule scaleR_one) |
|
154 |
done |
|
28009
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
155 |
|
60758 | 156 |
text \<open>Recover original theorem names\<close> |
28009
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
157 |
|
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
158 |
lemmas scaleR_left_commute = real_vector.scale_left_commute |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
159 |
lemmas scaleR_zero_left = real_vector.scale_zero_left |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
160 |
lemmas scaleR_minus_left = real_vector.scale_minus_left |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
161 |
lemmas scaleR_diff_left = real_vector.scale_left_diff_distrib |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
162 |
lemmas scaleR_setsum_left = real_vector.scale_setsum_left |
28009
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
163 |
lemmas scaleR_zero_right = real_vector.scale_zero_right |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
164 |
lemmas scaleR_minus_right = real_vector.scale_minus_right |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
165 |
lemmas scaleR_diff_right = real_vector.scale_right_diff_distrib |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
166 |
lemmas scaleR_setsum_right = real_vector.scale_setsum_right |
28009
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
167 |
lemmas scaleR_eq_0_iff = real_vector.scale_eq_0_iff |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
168 |
lemmas scaleR_left_imp_eq = real_vector.scale_left_imp_eq |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
169 |
lemmas scaleR_right_imp_eq = real_vector.scale_right_imp_eq |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
170 |
lemmas scaleR_cancel_left = real_vector.scale_cancel_left |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
171 |
lemmas scaleR_cancel_right = real_vector.scale_cancel_right |
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
huffman
parents:
27553
diff
changeset
|
172 |
|
60758 | 173 |
text \<open>Legacy names\<close> |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
174 |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
175 |
lemmas scaleR_left_distrib = scaleR_add_left |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
176 |
lemmas scaleR_right_distrib = scaleR_add_right |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
177 |
lemmas scaleR_left_diff_distrib = scaleR_diff_left |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
178 |
lemmas scaleR_right_diff_distrib = scaleR_diff_right |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
179 |
|
63545 | 180 |
lemma scaleR_minus1_left [simp]: "scaleR (-1) x = - x" |
181 |
for x :: "'a::real_vector" |
|
31285
0a3f9ee4117c
generalize dist function to class real_normed_vector
huffman
parents:
31017
diff
changeset
|
182 |
using scaleR_minus_left [of 1 x] by simp |
62101 | 183 |
|
24588 | 184 |
class real_algebra = real_vector + ring + |
25062 | 185 |
assumes mult_scaleR_left [simp]: "scaleR a x * y = scaleR a (x * y)" |
63545 | 186 |
and mult_scaleR_right [simp]: "x * scaleR a y = scaleR a (x * y)" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
187 |
|
24588 | 188 |
class real_algebra_1 = real_algebra + ring_1 |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
189 |
|
24588 | 190 |
class real_div_algebra = real_algebra_1 + division_ring |
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
191 |
|
24588 | 192 |
class real_field = real_div_algebra + field |
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
193 |
|
30069 | 194 |
instantiation real :: real_field |
195 |
begin |
|
196 |
||
63545 | 197 |
definition real_scaleR_def [simp]: "scaleR a x = a * x" |
30069 | 198 |
|
63545 | 199 |
instance |
200 |
by standard (simp_all add: algebra_simps) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
201 |
|
30069 | 202 |
end |
203 |
||
63545 | 204 |
interpretation scaleR_left: additive "(\<lambda>a. scaleR a x :: 'a::real_vector)" |
205 |
by standard (rule scaleR_left_distrib) |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
206 |
|
63545 | 207 |
interpretation scaleR_right: additive "(\<lambda>x. scaleR a x :: 'a::real_vector)" |
208 |
by standard (rule scaleR_right_distrib) |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
209 |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
210 |
lemma nonzero_inverse_scaleR_distrib: |
63545 | 211 |
"a \<noteq> 0 \<Longrightarrow> x \<noteq> 0 \<Longrightarrow> inverse (scaleR a x) = scaleR (inverse a) (inverse x)" |
212 |
for x :: "'a::real_div_algebra" |
|
213 |
by (rule inverse_unique) simp |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
214 |
|
63545 | 215 |
lemma inverse_scaleR_distrib: "inverse (scaleR a x) = scaleR (inverse a) (inverse x)" |
216 |
for x :: "'a::{real_div_algebra,division_ring}" |
|
217 |
apply (cases "a = 0") |
|
218 |
apply simp |
|
219 |
apply (cases "x = 0") |
|
220 |
apply simp |
|
221 |
apply (erule (1) nonzero_inverse_scaleR_distrib) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
222 |
done |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
223 |
|
63545 | 224 |
lemma setsum_constant_scaleR: "(\<Sum>x\<in>A. y) = of_nat (card A) *\<^sub>R y" |
225 |
for y :: "'a::real_vector" |
|
226 |
apply (cases "finite A") |
|
227 |
apply (induct set: finite) |
|
228 |
apply (simp_all add: algebra_simps) |
|
229 |
done |
|
230 |
||
231 |
lemma vector_add_divide_simps: |
|
232 |
"v + (b / z) *\<^sub>R w = (if z = 0 then v else (z *\<^sub>R v + b *\<^sub>R w) /\<^sub>R z)" |
|
233 |
"a *\<^sub>R v + (b / z) *\<^sub>R w = (if z = 0 then a *\<^sub>R v else ((a * z) *\<^sub>R v + b *\<^sub>R w) /\<^sub>R z)" |
|
234 |
"(a / z) *\<^sub>R v + w = (if z = 0 then w else (a *\<^sub>R v + z *\<^sub>R w) /\<^sub>R z)" |
|
235 |
"(a / z) *\<^sub>R v + b *\<^sub>R w = (if z = 0 then b *\<^sub>R w else (a *\<^sub>R v + (b * z) *\<^sub>R w) /\<^sub>R z)" |
|
236 |
"v - (b / z) *\<^sub>R w = (if z = 0 then v else (z *\<^sub>R v - b *\<^sub>R w) /\<^sub>R z)" |
|
237 |
"a *\<^sub>R v - (b / z) *\<^sub>R w = (if z = 0 then a *\<^sub>R v else ((a * z) *\<^sub>R v - b *\<^sub>R w) /\<^sub>R z)" |
|
238 |
"(a / z) *\<^sub>R v - w = (if z = 0 then -w else (a *\<^sub>R v - z *\<^sub>R w) /\<^sub>R z)" |
|
239 |
"(a / z) *\<^sub>R v - b *\<^sub>R w = (if z = 0 then -b *\<^sub>R w else (a *\<^sub>R v - (b * z) *\<^sub>R w) /\<^sub>R z)" |
|
240 |
for v :: "'a :: real_vector" |
|
241 |
by (simp_all add: divide_inverse_commute scaleR_add_right real_vector.scale_right_diff_distrib) |
|
63114
27afe7af7379
Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
63040
diff
changeset
|
242 |
|
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
243 |
lemma real_vector_affinity_eq: |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
244 |
fixes x :: "'a :: real_vector" |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
245 |
assumes m0: "m \<noteq> 0" |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
246 |
shows "m *\<^sub>R x + c = y \<longleftrightarrow> x = inverse m *\<^sub>R y - (inverse m *\<^sub>R c)" |
63545 | 247 |
(is "?lhs \<longleftrightarrow> ?rhs") |
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
248 |
proof |
63545 | 249 |
assume ?lhs |
250 |
then have "m *\<^sub>R x = y - c" by (simp add: field_simps) |
|
251 |
then have "inverse m *\<^sub>R (m *\<^sub>R x) = inverse m *\<^sub>R (y - c)" by simp |
|
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
252 |
then show "x = inverse m *\<^sub>R y - (inverse m *\<^sub>R c)" |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
253 |
using m0 |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
254 |
by (simp add: real_vector.scale_right_diff_distrib) |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
255 |
next |
63545 | 256 |
assume ?rhs |
257 |
with m0 show "m *\<^sub>R x + c = y" |
|
258 |
by (simp add: real_vector.scale_right_diff_distrib) |
|
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
259 |
qed |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
260 |
|
63545 | 261 |
lemma real_vector_eq_affinity: "m \<noteq> 0 \<Longrightarrow> y = m *\<^sub>R x + c \<longleftrightarrow> inverse m *\<^sub>R y - (inverse m *\<^sub>R c) = x" |
262 |
for x :: "'a::real_vector" |
|
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
263 |
using real_vector_affinity_eq[where m=m and x=x and y=y and c=c] |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
264 |
by metis |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
265 |
|
63545 | 266 |
lemma scaleR_eq_iff [simp]: "b + u *\<^sub>R a = a + u *\<^sub>R b \<longleftrightarrow> a = b \<or> u = 1" |
267 |
for a :: "'a::real_vector" |
|
268 |
proof (cases "u = 1") |
|
269 |
case True |
|
270 |
then show ?thesis by auto |
|
62948
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
271 |
next |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
272 |
case False |
63545 | 273 |
have "a = b" if "b + u *\<^sub>R a = a + u *\<^sub>R b" |
274 |
proof - |
|
275 |
from that have "(u - 1) *\<^sub>R a = (u - 1) *\<^sub>R b" |
|
62948
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
276 |
by (simp add: algebra_simps) |
63545 | 277 |
with False show ?thesis |
62948
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
278 |
by auto |
63545 | 279 |
qed |
62948
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
280 |
then show ?thesis by auto |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
281 |
qed |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
282 |
|
63545 | 283 |
lemma scaleR_collapse [simp]: "(1 - u) *\<^sub>R a + u *\<^sub>R a = a" |
284 |
for a :: "'a::real_vector" |
|
285 |
by (simp add: algebra_simps) |
|
62948
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
286 |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
287 |
|
63545 | 288 |
subsection \<open>Embedding of the Reals into any \<open>real_algebra_1\<close>: \<open>of_real\<close>\<close> |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
289 |
|
63545 | 290 |
definition of_real :: "real \<Rightarrow> 'a::real_algebra_1" |
291 |
where "of_real r = scaleR r 1" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
292 |
|
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
293 |
lemma scaleR_conv_of_real: "scaleR r x = of_real r * x" |
63545 | 294 |
by (simp add: of_real_def) |
20763 | 295 |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
296 |
lemma of_real_0 [simp]: "of_real 0 = 0" |
63545 | 297 |
by (simp add: of_real_def) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
298 |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
299 |
lemma of_real_1 [simp]: "of_real 1 = 1" |
63545 | 300 |
by (simp add: of_real_def) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
301 |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
302 |
lemma of_real_add [simp]: "of_real (x + y) = of_real x + of_real y" |
63545 | 303 |
by (simp add: of_real_def scaleR_left_distrib) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
304 |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
305 |
lemma of_real_minus [simp]: "of_real (- x) = - of_real x" |
63545 | 306 |
by (simp add: of_real_def) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
307 |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
308 |
lemma of_real_diff [simp]: "of_real (x - y) = of_real x - of_real y" |
63545 | 309 |
by (simp add: of_real_def scaleR_left_diff_distrib) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
310 |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
311 |
lemma of_real_mult [simp]: "of_real (x * y) = of_real x * of_real y" |
63545 | 312 |
by (simp add: of_real_def mult.commute) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
313 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
314 |
lemma of_real_setsum[simp]: "of_real (setsum f s) = (\<Sum>x\<in>s. of_real (f x))" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
315 |
by (induct s rule: infinite_finite_induct) auto |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
316 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
317 |
lemma of_real_setprod[simp]: "of_real (setprod f s) = (\<Prod>x\<in>s. of_real (f x))" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
318 |
by (induct s rule: infinite_finite_induct) auto |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
319 |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
320 |
lemma nonzero_of_real_inverse: |
63545 | 321 |
"x \<noteq> 0 \<Longrightarrow> of_real (inverse x) = inverse (of_real x :: 'a::real_div_algebra)" |
322 |
by (simp add: of_real_def nonzero_inverse_scaleR_distrib) |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
323 |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
324 |
lemma of_real_inverse [simp]: |
63545 | 325 |
"of_real (inverse x) = inverse (of_real x :: 'a::{real_div_algebra,division_ring})" |
326 |
by (simp add: of_real_def inverse_scaleR_distrib) |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
327 |
|
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
328 |
lemma nonzero_of_real_divide: |
63545 | 329 |
"y \<noteq> 0 \<Longrightarrow> of_real (x / y) = (of_real x / of_real y :: 'a::real_field)" |
330 |
by (simp add: divide_inverse nonzero_of_real_inverse) |
|
20722 | 331 |
|
332 |
lemma of_real_divide [simp]: |
|
62131
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
paulson
parents:
62102
diff
changeset
|
333 |
"of_real (x / y) = (of_real x / of_real y :: 'a::real_div_algebra)" |
63545 | 334 |
by (simp add: divide_inverse) |
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
335 |
|
20722 | 336 |
lemma of_real_power [simp]: |
31017 | 337 |
"of_real (x ^ n) = (of_real x :: 'a::{real_algebra_1}) ^ n" |
63545 | 338 |
by (induct n) simp_all |
20722 | 339 |
|
63545 | 340 |
lemma of_real_eq_iff [simp]: "of_real x = of_real y \<longleftrightarrow> x = y" |
341 |
by (simp add: of_real_def) |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
342 |
|
63545 | 343 |
lemma inj_of_real: "inj of_real" |
38621
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents:
37887
diff
changeset
|
344 |
by (auto intro: injI) |
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
haftmann
parents:
37887
diff
changeset
|
345 |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
346 |
lemmas of_real_eq_0_iff [simp] = of_real_eq_iff [of _ 0, simplified] |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
347 |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
348 |
lemma of_real_eq_id [simp]: "of_real = (id :: real \<Rightarrow> real)" |
63545 | 349 |
by (rule ext) (simp add: of_real_def) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
350 |
|
63545 | 351 |
text \<open>Collapse nested embeddings.\<close> |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
352 |
lemma of_real_of_nat_eq [simp]: "of_real (of_nat n) = of_nat n" |
63545 | 353 |
by (induct n) auto |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
354 |
|
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
355 |
lemma of_real_of_int_eq [simp]: "of_real (of_int z) = of_int z" |
63545 | 356 |
by (cases z rule: int_diff_cases) simp |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
357 |
|
60155
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents:
60026
diff
changeset
|
358 |
lemma of_real_numeral [simp]: "of_real (numeral w) = numeral w" |
63545 | 359 |
using of_real_of_int_eq [of "numeral w"] by simp |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46868
diff
changeset
|
360 |
|
60155
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
paulson <lp15@cam.ac.uk>
parents:
60026
diff
changeset
|
361 |
lemma of_real_neg_numeral [simp]: "of_real (- numeral w) = - numeral w" |
63545 | 362 |
using of_real_of_int_eq [of "- numeral w"] by simp |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
363 |
|
63545 | 364 |
text \<open>Every real algebra has characteristic zero.\<close> |
22912 | 365 |
instance real_algebra_1 < ring_char_0 |
366 |
proof |
|
63545 | 367 |
from inj_of_real inj_of_nat have "inj (of_real \<circ> of_nat)" |
368 |
by (rule inj_comp) |
|
369 |
then show "inj (of_nat :: nat \<Rightarrow> 'a)" |
|
370 |
by (simp add: comp_def) |
|
22912 | 371 |
qed |
372 |
||
27553 | 373 |
instance real_field < field_char_0 .. |
374 |
||
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
375 |
|
60758 | 376 |
subsection \<open>The Set of Real Numbers\<close> |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
377 |
|
61070 | 378 |
definition Reals :: "'a::real_algebra_1 set" ("\<real>") |
379 |
where "\<real> = range of_real" |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
380 |
|
61070 | 381 |
lemma Reals_of_real [simp]: "of_real r \<in> \<real>" |
63545 | 382 |
by (simp add: Reals_def) |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
383 |
|
61070 | 384 |
lemma Reals_of_int [simp]: "of_int z \<in> \<real>" |
63545 | 385 |
by (subst of_real_of_int_eq [symmetric], rule Reals_of_real) |
20718 | 386 |
|
61070 | 387 |
lemma Reals_of_nat [simp]: "of_nat n \<in> \<real>" |
63545 | 388 |
by (subst of_real_of_nat_eq [symmetric], rule Reals_of_real) |
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
389 |
|
61070 | 390 |
lemma Reals_numeral [simp]: "numeral w \<in> \<real>" |
63545 | 391 |
by (subst of_real_numeral [symmetric], rule Reals_of_real) |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46868
diff
changeset
|
392 |
|
61070 | 393 |
lemma Reals_0 [simp]: "0 \<in> \<real>" |
63545 | 394 |
apply (unfold Reals_def) |
395 |
apply (rule range_eqI) |
|
396 |
apply (rule of_real_0 [symmetric]) |
|
397 |
done |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
398 |
|
61070 | 399 |
lemma Reals_1 [simp]: "1 \<in> \<real>" |
63545 | 400 |
apply (unfold Reals_def) |
401 |
apply (rule range_eqI) |
|
402 |
apply (rule of_real_1 [symmetric]) |
|
403 |
done |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
404 |
|
63545 | 405 |
lemma Reals_add [simp]: "a \<in> \<real> \<Longrightarrow> b \<in> \<real> \<Longrightarrow> a + b \<in> \<real>" |
406 |
apply (auto simp add: Reals_def) |
|
407 |
apply (rule range_eqI) |
|
408 |
apply (rule of_real_add [symmetric]) |
|
409 |
done |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
410 |
|
61070 | 411 |
lemma Reals_minus [simp]: "a \<in> \<real> \<Longrightarrow> - a \<in> \<real>" |
63545 | 412 |
apply (auto simp add: Reals_def) |
413 |
apply (rule range_eqI) |
|
414 |
apply (rule of_real_minus [symmetric]) |
|
415 |
done |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
416 |
|
63545 | 417 |
lemma Reals_diff [simp]: "a \<in> \<real> \<Longrightarrow> b \<in> \<real> \<Longrightarrow> a - b \<in> \<real>" |
418 |
apply (auto simp add: Reals_def) |
|
419 |
apply (rule range_eqI) |
|
420 |
apply (rule of_real_diff [symmetric]) |
|
421 |
done |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
422 |
|
63545 | 423 |
lemma Reals_mult [simp]: "a \<in> \<real> \<Longrightarrow> b \<in> \<real> \<Longrightarrow> a * b \<in> \<real>" |
424 |
apply (auto simp add: Reals_def) |
|
425 |
apply (rule range_eqI) |
|
426 |
apply (rule of_real_mult [symmetric]) |
|
427 |
done |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
428 |
|
63545 | 429 |
lemma nonzero_Reals_inverse: "a \<in> \<real> \<Longrightarrow> a \<noteq> 0 \<Longrightarrow> inverse a \<in> \<real>" |
430 |
for a :: "'a::real_div_algebra" |
|
431 |
apply (auto simp add: Reals_def) |
|
432 |
apply (rule range_eqI) |
|
433 |
apply (erule nonzero_of_real_inverse [symmetric]) |
|
434 |
done |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
435 |
|
63545 | 436 |
lemma Reals_inverse: "a \<in> \<real> \<Longrightarrow> inverse a \<in> \<real>" |
437 |
for a :: "'a::{real_div_algebra,division_ring}" |
|
438 |
apply (auto simp add: Reals_def) |
|
439 |
apply (rule range_eqI) |
|
440 |
apply (rule of_real_inverse [symmetric]) |
|
441 |
done |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
442 |
|
63545 | 443 |
lemma Reals_inverse_iff [simp]: "inverse x \<in> \<real> \<longleftrightarrow> x \<in> \<real>" |
444 |
for x :: "'a::{real_div_algebra,division_ring}" |
|
445 |
by (metis Reals_inverse inverse_inverse_eq) |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
446 |
|
63545 | 447 |
lemma nonzero_Reals_divide: "a \<in> \<real> \<Longrightarrow> b \<in> \<real> \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> a / b \<in> \<real>" |
448 |
for a b :: "'a::real_field" |
|
449 |
apply (auto simp add: Reals_def) |
|
450 |
apply (rule range_eqI) |
|
451 |
apply (erule nonzero_of_real_divide [symmetric]) |
|
452 |
done |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
453 |
|
63545 | 454 |
lemma Reals_divide [simp]: "a \<in> \<real> \<Longrightarrow> b \<in> \<real> \<Longrightarrow> a / b \<in> \<real>" |
455 |
for a b :: "'a::{real_field,field}" |
|
456 |
apply (auto simp add: Reals_def) |
|
457 |
apply (rule range_eqI) |
|
458 |
apply (rule of_real_divide [symmetric]) |
|
459 |
done |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
460 |
|
63545 | 461 |
lemma Reals_power [simp]: "a \<in> \<real> \<Longrightarrow> a ^ n \<in> \<real>" |
462 |
for a :: "'a::real_algebra_1" |
|
463 |
apply (auto simp add: Reals_def) |
|
464 |
apply (rule range_eqI) |
|
465 |
apply (rule of_real_power [symmetric]) |
|
466 |
done |
|
20722 | 467 |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
468 |
lemma Reals_cases [cases set: Reals]: |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
469 |
assumes "q \<in> \<real>" |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
470 |
obtains (of_real) r where "q = of_real r" |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
471 |
unfolding Reals_def |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
472 |
proof - |
60758 | 473 |
from \<open>q \<in> \<real>\<close> have "q \<in> range of_real" unfolding Reals_def . |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
474 |
then obtain r where "q = of_real r" .. |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
475 |
then show thesis .. |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
476 |
qed |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
477 |
|
59741
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents:
59658
diff
changeset
|
478 |
lemma setsum_in_Reals [intro,simp]: |
63545 | 479 |
assumes "\<And>i. i \<in> s \<Longrightarrow> f i \<in> \<real>" |
480 |
shows "setsum f s \<in> \<real>" |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
481 |
proof (cases "finite s") |
63545 | 482 |
case True |
483 |
then show ?thesis |
|
484 |
using assms by (induct s rule: finite_induct) auto |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
485 |
next |
63545 | 486 |
case False |
487 |
then show ?thesis |
|
488 |
using assms by (metis Reals_0 setsum.infinite) |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
489 |
qed |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
490 |
|
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
491 |
lemma setprod_in_Reals [intro,simp]: |
63545 | 492 |
assumes "\<And>i. i \<in> s \<Longrightarrow> f i \<in> \<real>" |
493 |
shows "setprod f s \<in> \<real>" |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
494 |
proof (cases "finite s") |
63545 | 495 |
case True |
496 |
then show ?thesis |
|
497 |
using assms by (induct s rule: finite_induct) auto |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
498 |
next |
63545 | 499 |
case False |
500 |
then show ?thesis |
|
501 |
using assms by (metis Reals_1 setprod.infinite) |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
502 |
qed |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
503 |
|
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
504 |
lemma Reals_induct [case_names of_real, induct set: Reals]: |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
505 |
"q \<in> \<real> \<Longrightarrow> (\<And>r. P (of_real r)) \<Longrightarrow> P q" |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
506 |
by (rule Reals_cases) auto |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
507 |
|
63545 | 508 |
|
60758 | 509 |
subsection \<open>Ordered real vector spaces\<close> |
54778 | 510 |
|
511 |
class ordered_real_vector = real_vector + ordered_ab_group_add + |
|
512 |
assumes scaleR_left_mono: "x \<le> y \<Longrightarrow> 0 \<le> a \<Longrightarrow> a *\<^sub>R x \<le> a *\<^sub>R y" |
|
63545 | 513 |
and scaleR_right_mono: "a \<le> b \<Longrightarrow> 0 \<le> x \<Longrightarrow> a *\<^sub>R x \<le> b *\<^sub>R x" |
54778 | 514 |
begin |
515 |
||
63545 | 516 |
lemma scaleR_mono: "a \<le> b \<Longrightarrow> x \<le> y \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> x \<Longrightarrow> a *\<^sub>R x \<le> b *\<^sub>R y" |
517 |
apply (erule scaleR_right_mono [THEN order_trans]) |
|
518 |
apply assumption |
|
519 |
apply (erule scaleR_left_mono) |
|
520 |
apply assumption |
|
521 |
done |
|
54778 | 522 |
|
63545 | 523 |
lemma scaleR_mono': "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> c \<Longrightarrow> a *\<^sub>R c \<le> b *\<^sub>R d" |
54778 | 524 |
by (rule scaleR_mono) (auto intro: order.trans) |
525 |
||
54785 | 526 |
lemma pos_le_divideRI: |
527 |
assumes "0 < c" |
|
63545 | 528 |
and "c *\<^sub>R a \<le> b" |
54785 | 529 |
shows "a \<le> b /\<^sub>R c" |
530 |
proof - |
|
531 |
from scaleR_left_mono[OF assms(2)] assms(1) |
|
532 |
have "c *\<^sub>R a /\<^sub>R c \<le> b /\<^sub>R c" |
|
533 |
by simp |
|
534 |
with assms show ?thesis |
|
535 |
by (simp add: scaleR_one scaleR_scaleR inverse_eq_divide) |
|
536 |
qed |
|
537 |
||
538 |
lemma pos_le_divideR_eq: |
|
539 |
assumes "0 < c" |
|
540 |
shows "a \<le> b /\<^sub>R c \<longleftrightarrow> c *\<^sub>R a \<le> b" |
|
63545 | 541 |
(is "?lhs \<longleftrightarrow> ?rhs") |
542 |
proof |
|
543 |
assume ?lhs |
|
544 |
from scaleR_left_mono[OF this] assms have "c *\<^sub>R a \<le> c *\<^sub>R (b /\<^sub>R c)" |
|
54785 | 545 |
by simp |
63545 | 546 |
with assms show ?rhs |
54785 | 547 |
by (simp add: scaleR_one scaleR_scaleR inverse_eq_divide) |
63545 | 548 |
next |
549 |
assume ?rhs |
|
550 |
with assms show ?lhs by (rule pos_le_divideRI) |
|
551 |
qed |
|
54785 | 552 |
|
63545 | 553 |
lemma scaleR_image_atLeastAtMost: "c > 0 \<Longrightarrow> scaleR c ` {x..y} = {c *\<^sub>R x..c *\<^sub>R y}" |
54785 | 554 |
apply (auto intro!: scaleR_left_mono) |
555 |
apply (rule_tac x = "inverse c *\<^sub>R xa" in image_eqI) |
|
63545 | 556 |
apply (simp_all add: pos_le_divideR_eq[symmetric] scaleR_scaleR scaleR_one) |
54785 | 557 |
done |
558 |
||
54778 | 559 |
end |
560 |
||
60303 | 561 |
lemma neg_le_divideR_eq: |
562 |
fixes a :: "'a :: ordered_real_vector" |
|
563 |
assumes "c < 0" |
|
564 |
shows "a \<le> b /\<^sub>R c \<longleftrightarrow> b \<le> c *\<^sub>R a" |
|
63545 | 565 |
using pos_le_divideR_eq [of "-c" a "-b"] assms by simp |
60303 | 566 |
|
63545 | 567 |
lemma scaleR_nonneg_nonneg: "0 \<le> a \<Longrightarrow> 0 \<le> x \<Longrightarrow> 0 \<le> a *\<^sub>R x" |
568 |
for x :: "'a::ordered_real_vector" |
|
569 |
using scaleR_left_mono [of 0 x a] by simp |
|
54778 | 570 |
|
63545 | 571 |
lemma scaleR_nonneg_nonpos: "0 \<le> a \<Longrightarrow> x \<le> 0 \<Longrightarrow> a *\<^sub>R x \<le> 0" |
572 |
for x :: "'a::ordered_real_vector" |
|
54778 | 573 |
using scaleR_left_mono [of x 0 a] by simp |
574 |
||
63545 | 575 |
lemma scaleR_nonpos_nonneg: "a \<le> 0 \<Longrightarrow> 0 \<le> x \<Longrightarrow> a *\<^sub>R x \<le> 0" |
576 |
for x :: "'a::ordered_real_vector" |
|
54778 | 577 |
using scaleR_right_mono [of a 0 x] by simp |
578 |
||
63545 | 579 |
lemma split_scaleR_neg_le: "(0 \<le> a \<and> x \<le> 0) \<or> (a \<le> 0 \<and> 0 \<le> x) \<Longrightarrow> a *\<^sub>R x \<le> 0" |
580 |
for x :: "'a::ordered_real_vector" |
|
54778 | 581 |
by (auto simp add: scaleR_nonneg_nonpos scaleR_nonpos_nonneg) |
582 |
||
63545 | 583 |
lemma le_add_iff1: "a *\<^sub>R e + c \<le> b *\<^sub>R e + d \<longleftrightarrow> (a - b) *\<^sub>R e + c \<le> d" |
584 |
for c d e :: "'a::ordered_real_vector" |
|
54778 | 585 |
by (simp add: algebra_simps) |
586 |
||
63545 | 587 |
lemma le_add_iff2: "a *\<^sub>R e + c \<le> b *\<^sub>R e + d \<longleftrightarrow> c \<le> (b - a) *\<^sub>R e + d" |
588 |
for c d e :: "'a::ordered_real_vector" |
|
54778 | 589 |
by (simp add: algebra_simps) |
590 |
||
63545 | 591 |
lemma scaleR_left_mono_neg: "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b" |
592 |
for a b :: "'a::ordered_real_vector" |
|
54778 | 593 |
apply (drule scaleR_left_mono [of _ _ "- c"]) |
63545 | 594 |
apply simp_all |
54778 | 595 |
done |
596 |
||
63545 | 597 |
lemma scaleR_right_mono_neg: "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> a *\<^sub>R c \<le> b *\<^sub>R c" |
598 |
for c :: "'a::ordered_real_vector" |
|
54778 | 599 |
apply (drule scaleR_right_mono [of _ _ "- c"]) |
63545 | 600 |
apply simp_all |
54778 | 601 |
done |
602 |
||
63545 | 603 |
lemma scaleR_nonpos_nonpos: "a \<le> 0 \<Longrightarrow> b \<le> 0 \<Longrightarrow> 0 \<le> a *\<^sub>R b" |
604 |
for b :: "'a::ordered_real_vector" |
|
605 |
using scaleR_right_mono_neg [of a 0 b] by simp |
|
54778 | 606 |
|
63545 | 607 |
lemma split_scaleR_pos_le: "(0 \<le> a \<and> 0 \<le> b) \<or> (a \<le> 0 \<and> b \<le> 0) \<Longrightarrow> 0 \<le> a *\<^sub>R b" |
608 |
for b :: "'a::ordered_real_vector" |
|
54778 | 609 |
by (auto simp add: scaleR_nonneg_nonneg scaleR_nonpos_nonpos) |
610 |
||
611 |
lemma zero_le_scaleR_iff: |
|
63545 | 612 |
fixes b :: "'a::ordered_real_vector" |
613 |
shows "0 \<le> a *\<^sub>R b \<longleftrightarrow> 0 < a \<and> 0 \<le> b \<or> a < 0 \<and> b \<le> 0 \<or> a = 0" |
|
614 |
(is "?lhs = ?rhs") |
|
615 |
proof (cases "a = 0") |
|
616 |
case True |
|
617 |
then show ?thesis by simp |
|
618 |
next |
|
619 |
case False |
|
54778 | 620 |
show ?thesis |
621 |
proof |
|
63545 | 622 |
assume ?lhs |
623 |
from \<open>a \<noteq> 0\<close> consider "a > 0" | "a < 0" by arith |
|
624 |
then show ?rhs |
|
625 |
proof cases |
|
626 |
case 1 |
|
627 |
with \<open>?lhs\<close> have "inverse a *\<^sub>R 0 \<le> inverse a *\<^sub>R (a *\<^sub>R b)" |
|
54778 | 628 |
by (intro scaleR_mono) auto |
63545 | 629 |
with 1 show ?thesis |
54778 | 630 |
by simp |
63545 | 631 |
next |
632 |
case 2 |
|
633 |
with \<open>?lhs\<close> have "- inverse a *\<^sub>R 0 \<le> - inverse a *\<^sub>R (a *\<^sub>R b)" |
|
54778 | 634 |
by (intro scaleR_mono) auto |
63545 | 635 |
with 2 show ?thesis |
54778 | 636 |
by simp |
63545 | 637 |
qed |
638 |
next |
|
639 |
assume ?rhs |
|
640 |
then show ?lhs |
|
641 |
by (auto simp: not_le \<open>a \<noteq> 0\<close> intro!: split_scaleR_pos_le) |
|
642 |
qed |
|
643 |
qed |
|
54778 | 644 |
|
63545 | 645 |
lemma scaleR_le_0_iff: "a *\<^sub>R b \<le> 0 \<longleftrightarrow> 0 < a \<and> b \<le> 0 \<or> a < 0 \<and> 0 \<le> b \<or> a = 0" |
646 |
for b::"'a::ordered_real_vector" |
|
54778 | 647 |
by (insert zero_le_scaleR_iff [of "-a" b]) force |
648 |
||
63545 | 649 |
lemma scaleR_le_cancel_left: "c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)" |
650 |
for b :: "'a::ordered_real_vector" |
|
54778 | 651 |
by (auto simp add: neq_iff scaleR_left_mono scaleR_left_mono_neg |
63545 | 652 |
dest: scaleR_left_mono[where a="inverse c"] scaleR_left_mono_neg[where c="inverse c"]) |
54778 | 653 |
|
63545 | 654 |
lemma scaleR_le_cancel_left_pos: "0 < c \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> a \<le> b" |
655 |
for b :: "'a::ordered_real_vector" |
|
54778 | 656 |
by (auto simp: scaleR_le_cancel_left) |
657 |
||
63545 | 658 |
lemma scaleR_le_cancel_left_neg: "c < 0 \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> b \<le> a" |
659 |
for b :: "'a::ordered_real_vector" |
|
54778 | 660 |
by (auto simp: scaleR_le_cancel_left) |
661 |
||
63545 | 662 |
lemma scaleR_left_le_one_le: "0 \<le> x \<Longrightarrow> a \<le> 1 \<Longrightarrow> a *\<^sub>R x \<le> x" |
663 |
for x :: "'a::ordered_real_vector" and a :: real |
|
54778 | 664 |
using scaleR_right_mono[of a 1 x] by simp |
665 |
||
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
666 |
|
60758 | 667 |
subsection \<open>Real normed vector spaces\<close> |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
668 |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
669 |
class dist = |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
670 |
fixes dist :: "'a \<Rightarrow> 'a \<Rightarrow> real" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
671 |
|
29608 | 672 |
class norm = |
22636 | 673 |
fixes norm :: "'a \<Rightarrow> real" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
674 |
|
24520 | 675 |
class sgn_div_norm = scaleR + norm + sgn + |
25062 | 676 |
assumes sgn_div_norm: "sgn x = x /\<^sub>R norm x" |
24506 | 677 |
|
31289 | 678 |
class dist_norm = dist + norm + minus + |
679 |
assumes dist_norm: "dist x y = norm (x - y)" |
|
680 |
||
62101 | 681 |
class uniformity_dist = dist + uniformity + |
682 |
assumes uniformity_dist: "uniformity = (INF e:{0 <..}. principal {(x, y). dist x y < e})" |
|
683 |
begin |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
684 |
|
62101 | 685 |
lemma eventually_uniformity_metric: |
686 |
"eventually P uniformity \<longleftrightarrow> (\<exists>e>0. \<forall>x y. dist x y < e \<longrightarrow> P (x, y))" |
|
687 |
unfolding uniformity_dist |
|
688 |
by (subst eventually_INF_base) |
|
689 |
(auto simp: eventually_principal subset_eq intro: bexI[of _ "min _ _"]) |
|
690 |
||
691 |
end |
|
692 |
||
693 |
class real_normed_vector = real_vector + sgn_div_norm + dist_norm + uniformity_dist + open_uniformity + |
|
51002
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
694 |
assumes norm_eq_zero [simp]: "norm x = 0 \<longleftrightarrow> x = 0" |
63545 | 695 |
and norm_triangle_ineq: "norm (x + y) \<le> norm x + norm y" |
696 |
and norm_scaleR [simp]: "norm (scaleR a x) = \<bar>a\<bar> * norm x" |
|
51002
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
697 |
begin |
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
698 |
|
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
699 |
lemma norm_ge_zero [simp]: "0 \<le> norm x" |
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
700 |
proof - |
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
701 |
have "0 = norm (x + -1 *\<^sub>R x)" |
51002
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
702 |
using scaleR_add_left[of 1 "-1" x] norm_scaleR[of 0 x] by (simp add: scaleR_one) |
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
703 |
also have "\<dots> \<le> norm x + norm (-1 *\<^sub>R x)" by (rule norm_triangle_ineq) |
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
704 |
finally show ?thesis by simp |
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
705 |
qed |
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
706 |
|
496013a6eb38
remove unnecessary assumption from real_normed_vector
hoelzl
parents:
50999
diff
changeset
|
707 |
end |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
708 |
|
24588 | 709 |
class real_normed_algebra = real_algebra + real_normed_vector + |
25062 | 710 |
assumes norm_mult_ineq: "norm (x * y) \<le> norm x * norm y" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
711 |
|
24588 | 712 |
class real_normed_algebra_1 = real_algebra_1 + real_normed_algebra + |
25062 | 713 |
assumes norm_one [simp]: "norm 1 = 1" |
62101 | 714 |
|
63545 | 715 |
lemma (in real_normed_algebra_1) scaleR_power [simp]: "(scaleR x y) ^ n = scaleR (x^n) (y^n)" |
716 |
by (induct n) (simp_all add: scaleR_one scaleR_scaleR mult_ac) |
|
22852 | 717 |
|
24588 | 718 |
class real_normed_div_algebra = real_div_algebra + real_normed_vector + |
25062 | 719 |
assumes norm_mult: "norm (x * y) = norm x * norm y" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
720 |
|
24588 | 721 |
class real_normed_field = real_field + real_normed_div_algebra |
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
722 |
|
22852 | 723 |
instance real_normed_div_algebra < real_normed_algebra_1 |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
724 |
proof |
63545 | 725 |
show "norm (x * y) \<le> norm x * norm y" for x y :: 'a |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
726 |
by (simp add: norm_mult) |
22852 | 727 |
next |
728 |
have "norm (1 * 1::'a) = norm (1::'a) * norm (1::'a)" |
|
729 |
by (rule norm_mult) |
|
63545 | 730 |
then show "norm (1::'a) = 1" by simp |
20554
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
731 |
qed |
c433e78d4203
define new constant of_real for class real_algebra_1;
huffman
parents:
20551
diff
changeset
|
732 |
|
22852 | 733 |
lemma norm_zero [simp]: "norm (0::'a::real_normed_vector) = 0" |
63545 | 734 |
by simp |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
735 |
|
63545 | 736 |
lemma zero_less_norm_iff [simp]: "norm x > 0 \<longleftrightarrow> x \<noteq> 0" |
737 |
for x :: "'a::real_normed_vector" |
|
738 |
by (simp add: order_less_le) |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
739 |
|
63545 | 740 |
lemma norm_not_less_zero [simp]: "\<not> norm x < 0" |
741 |
for x :: "'a::real_normed_vector" |
|
742 |
by (simp add: linorder_not_less) |
|
20828 | 743 |
|
63545 | 744 |
lemma norm_le_zero_iff [simp]: "norm x \<le> 0 \<longleftrightarrow> x = 0" |
745 |
for x :: "'a::real_normed_vector" |
|
746 |
by (simp add: order_le_less) |
|
20828 | 747 |
|
63545 | 748 |
lemma norm_minus_cancel [simp]: "norm (- x) = norm x" |
749 |
for x :: "'a::real_normed_vector" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
750 |
proof - |
21809
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
huffman
parents:
21404
diff
changeset
|
751 |
have "norm (- x) = norm (scaleR (- 1) x)" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
752 |
by (simp only: scaleR_minus_left scaleR_one) |
20533 | 753 |
also have "\<dots> = \<bar>- 1\<bar> * norm x" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
754 |
by (rule norm_scaleR) |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
755 |
finally show ?thesis by simp |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
756 |
qed |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
757 |
|
63545 | 758 |
lemma norm_minus_commute: "norm (a - b) = norm (b - a)" |
759 |
for a b :: "'a::real_normed_vector" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
760 |
proof - |
22898 | 761 |
have "norm (- (b - a)) = norm (b - a)" |
762 |
by (rule norm_minus_cancel) |
|
63545 | 763 |
then show ?thesis by simp |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
764 |
qed |
63545 | 765 |
|
766 |
lemma dist_add_cancel [simp]: "dist (a + b) (a + c) = dist b c" |
|
767 |
for a :: "'a::real_normed_vector" |
|
768 |
by (simp add: dist_norm) |
|
63114
27afe7af7379
Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
63040
diff
changeset
|
769 |
|
63545 | 770 |
lemma dist_add_cancel2 [simp]: "dist (b + a) (c + a) = dist b c" |
771 |
for a :: "'a::real_normed_vector" |
|
772 |
by (simp add: dist_norm) |
|
63114
27afe7af7379
Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
63040
diff
changeset
|
773 |
|
63545 | 774 |
lemma dist_scaleR [simp]: "dist (x *\<^sub>R a) (y *\<^sub>R a) = \<bar>x - y\<bar> * norm a" |
775 |
for a :: "'a::real_normed_vector" |
|
776 |
by (metis dist_norm norm_scaleR scaleR_left.diff) |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
777 |
|
63545 | 778 |
lemma norm_uminus_minus: "norm (- x - y :: 'a :: real_normed_vector) = norm (x + y)" |
61524
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
779 |
by (subst (2) norm_minus_cancel[symmetric], subst minus_add_distrib) simp |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
780 |
|
63545 | 781 |
lemma norm_triangle_ineq2: "norm a - norm b \<le> norm (a - b)" |
782 |
for a b :: "'a::real_normed_vector" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
783 |
proof - |
20533 | 784 |
have "norm (a - b + b) \<le> norm (a - b) + norm b" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
785 |
by (rule norm_triangle_ineq) |
63545 | 786 |
then show ?thesis by simp |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
787 |
qed |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
788 |
|
63545 | 789 |
lemma norm_triangle_ineq3: "\<bar>norm a - norm b\<bar> \<le> norm (a - b)" |
790 |
for a b :: "'a::real_normed_vector" |
|
791 |
apply (subst abs_le_iff) |
|
792 |
apply auto |
|
793 |
apply (rule norm_triangle_ineq2) |
|
794 |
apply (subst norm_minus_commute) |
|
795 |
apply (rule norm_triangle_ineq2) |
|
796 |
done |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
797 |
|
63545 | 798 |
lemma norm_triangle_ineq4: "norm (a - b) \<le> norm a + norm b" |
799 |
for a b :: "'a::real_normed_vector" |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
800 |
proof - |
22898 | 801 |
have "norm (a + - b) \<le> norm a + norm (- b)" |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
802 |
by (rule norm_triangle_ineq) |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53600
diff
changeset
|
803 |
then show ?thesis by simp |
22898 | 804 |
qed |
805 |
||
63545 | 806 |
lemma norm_diff_ineq: "norm a - norm b \<le> norm (a + b)" |
807 |
for a b :: "'a::real_normed_vector" |
|
22898 | 808 |
proof - |
809 |
have "norm a - norm (- b) \<le> norm (a - - b)" |
|
810 |
by (rule norm_triangle_ineq2) |
|
63545 | 811 |
then show ?thesis by simp |
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
812 |
qed |
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
813 |
|
63545 | 814 |
lemma norm_add_leD: "norm (a + b) \<le> c \<Longrightarrow> norm b \<le> norm a + c" |
815 |
for a b :: "'a::real_normed_vector" |
|
816 |
by (metis add.commute diff_le_eq norm_diff_ineq order.trans) |
|
61762
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents:
61649
diff
changeset
|
817 |
|
63545 | 818 |
lemma norm_diff_triangle_ineq: "norm ((a + b) - (c + d)) \<le> norm (a - c) + norm (b - d)" |
819 |
for a b c d :: "'a::real_normed_vector" |
|
20551 | 820 |
proof - |
821 |
have "norm ((a + b) - (c + d)) = norm ((a - c) + (b - d))" |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53600
diff
changeset
|
822 |
by (simp add: algebra_simps) |
20551 | 823 |
also have "\<dots> \<le> norm (a - c) + norm (b - d)" |
824 |
by (rule norm_triangle_ineq) |
|
825 |
finally show ?thesis . |
|
826 |
qed |
|
827 |
||
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
828 |
lemma norm_diff_triangle_le: |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
829 |
fixes x y z :: "'a::real_normed_vector" |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
830 |
assumes "norm (x - y) \<le> e1" "norm (y - z) \<le> e2" |
63545 | 831 |
shows "norm (x - z) \<le> e1 + e2" |
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
832 |
using norm_diff_triangle_ineq [of x y y z] assms by simp |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
833 |
|
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
834 |
lemma norm_diff_triangle_less: |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
835 |
fixes x y z :: "'a::real_normed_vector" |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
836 |
assumes "norm (x - y) < e1" "norm (y - z) < e2" |
63545 | 837 |
shows "norm (x - z) < e1 + e2" |
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
838 |
using norm_diff_triangle_ineq [of x y y z] assms by simp |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
839 |
|
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
840 |
lemma norm_triangle_mono: |
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
841 |
fixes a b :: "'a::real_normed_vector" |
63545 | 842 |
shows "norm a \<le> r \<Longrightarrow> norm b \<le> s \<Longrightarrow> norm (a + b) \<le> r + s" |
843 |
by (metis add_mono_thms_linordered_semiring(1) norm_triangle_ineq order.trans) |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
844 |
|
56194 | 845 |
lemma norm_setsum: |
846 |
fixes f :: "'a \<Rightarrow> 'b::real_normed_vector" |
|
847 |
shows "norm (setsum f A) \<le> (\<Sum>i\<in>A. norm (f i))" |
|
848 |
by (induct A rule: infinite_finite_induct) (auto intro: norm_triangle_mono) |
|
849 |
||
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56194
diff
changeset
|
850 |
lemma setsum_norm_le: |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56194
diff
changeset
|
851 |
fixes f :: "'a \<Rightarrow> 'b::real_normed_vector" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56194
diff
changeset
|
852 |
assumes fg: "\<forall>x \<in> S. norm (f x) \<le> g x" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56194
diff
changeset
|
853 |
shows "norm (setsum f S) \<le> setsum g S" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56194
diff
changeset
|
854 |
by (rule order_trans [OF norm_setsum setsum_mono]) (simp add: fg) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56194
diff
changeset
|
855 |
|
63545 | 856 |
lemma abs_norm_cancel [simp]: "\<bar>norm a\<bar> = norm a" |
857 |
for a :: "'a::real_normed_vector" |
|
858 |
by (rule abs_of_nonneg [OF norm_ge_zero]) |
|
22857 | 859 |
|
63545 | 860 |
lemma norm_add_less: "norm x < r \<Longrightarrow> norm y < s \<Longrightarrow> norm (x + y) < r + s" |
861 |
for x y :: "'a::real_normed_vector" |
|
862 |
by (rule order_le_less_trans [OF norm_triangle_ineq add_strict_mono]) |
|
22880 | 863 |
|
63545 | 864 |
lemma norm_mult_less: "norm x < r \<Longrightarrow> norm y < s \<Longrightarrow> norm (x * y) < r * s" |
865 |
for x y :: "'a::real_normed_algebra" |
|
866 |
by (rule order_le_less_trans [OF norm_mult_ineq]) (simp add: mult_strict_mono') |
|
22880 | 867 |
|
63545 | 868 |
lemma norm_of_real [simp]: "norm (of_real r :: 'a::real_normed_algebra_1) = \<bar>r\<bar>" |
869 |
by (simp add: of_real_def) |
|
20560 | 870 |
|
63545 | 871 |
lemma norm_numeral [simp]: "norm (numeral w::'a::real_normed_algebra_1) = numeral w" |
872 |
by (subst of_real_numeral [symmetric], subst norm_of_real, simp) |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46868
diff
changeset
|
873 |
|
63545 | 874 |
lemma norm_neg_numeral [simp]: "norm (- numeral w::'a::real_normed_algebra_1) = numeral w" |
875 |
by (subst of_real_neg_numeral [symmetric], subst norm_of_real, simp) |
|
22876
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
876 |
|
63545 | 877 |
lemma norm_of_real_add1 [simp]: "norm (of_real x + 1 :: 'a :: real_normed_div_algebra) = \<bar>x + 1\<bar>" |
62379
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62368
diff
changeset
|
878 |
by (metis norm_of_real of_real_1 of_real_add) |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62368
diff
changeset
|
879 |
|
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62368
diff
changeset
|
880 |
lemma norm_of_real_addn [simp]: |
63545 | 881 |
"norm (of_real x + numeral b :: 'a :: real_normed_div_algebra) = \<bar>x + numeral b\<bar>" |
62379
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62368
diff
changeset
|
882 |
by (metis norm_of_real of_real_add of_real_numeral) |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62368
diff
changeset
|
883 |
|
63545 | 884 |
lemma norm_of_int [simp]: "norm (of_int z::'a::real_normed_algebra_1) = \<bar>of_int z\<bar>" |
885 |
by (subst of_real_of_int_eq [symmetric], rule norm_of_real) |
|
22876
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
886 |
|
63545 | 887 |
lemma norm_of_nat [simp]: "norm (of_nat n::'a::real_normed_algebra_1) = of_nat n" |
888 |
apply (subst of_real_of_nat_eq [symmetric]) |
|
889 |
apply (subst norm_of_real, simp) |
|
890 |
done |
|
22876
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
huffman
parents:
22857
diff
changeset
|
891 |
|
63545 | 892 |
lemma nonzero_norm_inverse: "a \<noteq> 0 \<Longrightarrow> norm (inverse a) = inverse (norm a)" |
893 |
for a :: "'a::real_normed_div_algebra" |
|
894 |
apply (rule inverse_unique [symmetric]) |
|
895 |
apply (simp add: norm_mult [symmetric]) |
|
896 |
done |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
897 |
|
63545 | 898 |
lemma norm_inverse: "norm (inverse a) = inverse (norm a)" |
899 |
for a :: "'a::{real_normed_div_algebra,division_ring}" |
|
900 |
apply (cases "a = 0") |
|
901 |
apply simp |
|
902 |
apply (erule nonzero_norm_inverse) |
|
903 |
done |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
904 |
|
63545 | 905 |
lemma nonzero_norm_divide: "b \<noteq> 0 \<Longrightarrow> norm (a / b) = norm a / norm b" |
906 |
for a b :: "'a::real_normed_field" |
|
907 |
by (simp add: divide_inverse norm_mult nonzero_norm_inverse) |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
908 |
|
63545 | 909 |
lemma norm_divide: "norm (a / b) = norm a / norm b" |
910 |
for a b :: "'a::{real_normed_field,field}" |
|
911 |
by (simp add: divide_inverse norm_mult norm_inverse) |
|
20584
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
huffman
parents:
20560
diff
changeset
|
912 |
|
63545 | 913 |
lemma norm_power_ineq: "norm (x ^ n) \<le> norm x ^ n" |
914 |
for x :: "'a::real_normed_algebra_1" |
|
22852 | 915 |
proof (induct n) |
63545 | 916 |
case 0 |
917 |
show "norm (x ^ 0) \<le> norm x ^ 0" by simp |
|
22852 | 918 |
next |
919 |
case (Suc n) |
|
920 |
have "norm (x * x ^ n) \<le> norm x * norm (x ^ n)" |
|
921 |
by (rule norm_mult_ineq) |
|
922 |
also from Suc have "\<dots> \<le> norm x * norm x ^ n" |
|
923 |
using norm_ge_zero by (rule mult_left_mono) |
|
924 |
finally show "norm (x ^ Suc n) \<le> norm x ^ Suc n" |
|
30273
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
huffman
parents:
30242
diff
changeset
|
925 |
by simp |
22852 | 926 |
qed |
927 |
||
63545 | 928 |
lemma norm_power: "norm (x ^ n) = norm x ^ n" |
929 |
for x :: "'a::real_normed_div_algebra" |
|
930 |
by (induct n) (simp_all add: norm_mult) |
|
20684 | 931 |
|
62948
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
932 |
lemma power_eq_imp_eq_norm: |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
933 |
fixes w :: "'a::real_normed_div_algebra" |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
934 |
assumes eq: "w ^ n = z ^ n" and "n > 0" |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
935 |
shows "norm w = norm z" |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
936 |
proof - |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
937 |
have "norm w ^ n = norm z ^ n" |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
938 |
by (metis (no_types) eq norm_power) |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
939 |
then show ?thesis |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
940 |
using assms by (force intro: power_eq_imp_eq_base) |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
941 |
qed |
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
942 |
|
63545 | 943 |
lemma norm_mult_numeral1 [simp]: "norm (numeral w * a) = numeral w * norm a" |
944 |
for a b :: "'a::{real_normed_field,field}" |
|
945 |
by (simp add: norm_mult) |
|
60762 | 946 |
|
63545 | 947 |
lemma norm_mult_numeral2 [simp]: "norm (a * numeral w) = norm a * numeral w" |
948 |
for a b :: "'a::{real_normed_field,field}" |
|
949 |
by (simp add: norm_mult) |
|
60762 | 950 |
|
63545 | 951 |
lemma norm_divide_numeral [simp]: "norm (a / numeral w) = norm a / numeral w" |
952 |
for a b :: "'a::{real_normed_field,field}" |
|
953 |
by (simp add: norm_divide) |
|
60762 | 954 |
|
955 |
lemma norm_of_real_diff [simp]: |
|
63545 | 956 |
"norm (of_real b - of_real a :: 'a::real_normed_algebra_1) \<le> \<bar>b - a\<bar>" |
60762 | 957 |
by (metis norm_of_real of_real_diff order_refl) |
958 |
||
63545 | 959 |
text \<open>Despite a superficial resemblance, \<open>norm_eq_1\<close> is not relevant.\<close> |
59613
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents:
59587
diff
changeset
|
960 |
lemma square_norm_one: |
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents:
59587
diff
changeset
|
961 |
fixes x :: "'a::real_normed_div_algebra" |
63545 | 962 |
assumes "x\<^sup>2 = 1" |
963 |
shows "norm x = 1" |
|
59613
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents:
59587
diff
changeset
|
964 |
by (metis assms norm_minus_cancel norm_one power2_eq_1_iff) |
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents:
59587
diff
changeset
|
965 |
|
63545 | 966 |
lemma norm_less_p1: "norm x < norm (of_real (norm x) + 1 :: 'a)" |
967 |
for x :: "'a::real_normed_algebra_1" |
|
59658
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
59613
diff
changeset
|
968 |
proof - |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
59613
diff
changeset
|
969 |
have "norm x < norm (of_real (norm x + 1) :: 'a)" |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
59613
diff
changeset
|
970 |
by (simp add: of_real_def) |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
59613
diff
changeset
|
971 |
then show ?thesis |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
59613
diff
changeset
|
972 |
by simp |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
59613
diff
changeset
|
973 |
qed |
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
paulson <lp15@cam.ac.uk>
parents:
59613
diff
changeset
|
974 |
|
63545 | 975 |
lemma setprod_norm: "setprod (\<lambda>x. norm (f x)) A = norm (setprod f A)" |
976 |
for f :: "'a \<Rightarrow> 'b::{comm_semiring_1,real_normed_div_algebra}" |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
977 |
by (induct A rule: infinite_finite_induct) (auto simp: norm_mult) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
978 |
|
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
979 |
lemma norm_setprod_le: |
63545 | 980 |
"norm (setprod f A) \<le> (\<Prod>a\<in>A. norm (f a :: 'a :: {real_normed_algebra_1,comm_monoid_mult}))" |
981 |
proof (induct A rule: infinite_finite_induct) |
|
982 |
case empty |
|
983 |
then show ?case by simp |
|
984 |
next |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
985 |
case (insert a A) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
986 |
then have "norm (setprod f (insert a A)) \<le> norm (f a) * norm (setprod f A)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
987 |
by (simp add: norm_mult_ineq) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
988 |
also have "norm (setprod f A) \<le> (\<Prod>a\<in>A. norm (f a))" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
989 |
by (rule insert) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
990 |
finally show ?case |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
991 |
by (simp add: insert mult_left_mono) |
63545 | 992 |
next |
993 |
case infinite |
|
994 |
then show ?case by simp |
|
995 |
qed |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
996 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
997 |
lemma norm_setprod_diff: |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
998 |
fixes z w :: "'i \<Rightarrow> 'a::{real_normed_algebra_1, comm_monoid_mult}" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
999 |
shows "(\<And>i. i \<in> I \<Longrightarrow> norm (z i) \<le> 1) \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> norm (w i) \<le> 1) \<Longrightarrow> |
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
1000 |
norm ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) \<le> (\<Sum>i\<in>I. norm (z i - w i))" |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1001 |
proof (induction I rule: infinite_finite_induct) |
63545 | 1002 |
case empty |
1003 |
then show ?case by simp |
|
1004 |
next |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1005 |
case (insert i I) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1006 |
note insert.hyps[simp] |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1007 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1008 |
have "norm ((\<Prod>i\<in>insert i I. z i) - (\<Prod>i\<in>insert i I. w i)) = |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1009 |
norm ((\<Prod>i\<in>I. z i) * (z i - w i) + ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) * w i)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1010 |
(is "_ = norm (?t1 + ?t2)") |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1011 |
by (auto simp add: field_simps) |
63545 | 1012 |
also have "\<dots> \<le> norm ?t1 + norm ?t2" |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1013 |
by (rule norm_triangle_ineq) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1014 |
also have "norm ?t1 \<le> norm (\<Prod>i\<in>I. z i) * norm (z i - w i)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1015 |
by (rule norm_mult_ineq) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1016 |
also have "\<dots> \<le> (\<Prod>i\<in>I. norm (z i)) * norm(z i - w i)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1017 |
by (rule mult_right_mono) (auto intro: norm_setprod_le) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1018 |
also have "(\<Prod>i\<in>I. norm (z i)) \<le> (\<Prod>i\<in>I. 1)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1019 |
by (intro setprod_mono) (auto intro!: insert) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1020 |
also have "norm ?t2 \<le> norm ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) * norm (w i)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1021 |
by (rule norm_mult_ineq) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1022 |
also have "norm (w i) \<le> 1" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1023 |
by (auto intro: insert) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1024 |
also have "norm ((\<Prod>i\<in>I. z i) - (\<Prod>i\<in>I. w i)) \<le> (\<Sum>i\<in>I. norm (z i - w i))" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1025 |
using insert by auto |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1026 |
finally show ?case |
57514
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents:
57512
diff
changeset
|
1027 |
by (auto simp add: ac_simps mult_right_mono mult_left_mono) |
63545 | 1028 |
next |
1029 |
case infinite |
|
1030 |
then show ?case by simp |
|
1031 |
qed |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1032 |
|
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
1033 |
lemma norm_power_diff: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1034 |
fixes z w :: "'a::{real_normed_algebra_1, comm_monoid_mult}" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1035 |
assumes "norm z \<le> 1" "norm w \<le> 1" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1036 |
shows "norm (z^m - w^m) \<le> m * norm (z - w)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1037 |
proof - |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1038 |
have "norm (z^m - w^m) = norm ((\<Prod> i < m. z) - (\<Prod> i < m. w))" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1039 |
by (simp add: setprod_constant) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1040 |
also have "\<dots> \<le> (\<Sum>i<m. norm (z - w))" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1041 |
by (intro norm_setprod_diff) (auto simp add: assms) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1042 |
also have "\<dots> = m * norm (z - w)" |
61609
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1043 |
by simp |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
1044 |
finally show ?thesis . |
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
1045 |
qed |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
54890
diff
changeset
|
1046 |
|
63545 | 1047 |
|
60758 | 1048 |
subsection \<open>Metric spaces\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1049 |
|
62101 | 1050 |
class metric_space = uniformity_dist + open_uniformity + |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1051 |
assumes dist_eq_0_iff [simp]: "dist x y = 0 \<longleftrightarrow> x = y" |
63545 | 1052 |
and dist_triangle2: "dist x y \<le> dist x z + dist y z" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1053 |
begin |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1054 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1055 |
lemma dist_self [simp]: "dist x x = 0" |
63545 | 1056 |
by simp |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1057 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1058 |
lemma zero_le_dist [simp]: "0 \<le> dist x y" |
63545 | 1059 |
using dist_triangle2 [of x x y] by simp |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1060 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1061 |
lemma zero_less_dist_iff: "0 < dist x y \<longleftrightarrow> x \<noteq> y" |
63545 | 1062 |
by (simp add: less_le) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1063 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1064 |
lemma dist_not_less_zero [simp]: "\<not> dist x y < 0" |
63545 | 1065 |
by (simp add: not_less) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1066 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1067 |
lemma dist_le_zero_iff [simp]: "dist x y \<le> 0 \<longleftrightarrow> x = y" |
63545 | 1068 |
by (simp add: le_less) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1069 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1070 |
lemma dist_commute: "dist x y = dist y x" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1071 |
proof (rule order_antisym) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1072 |
show "dist x y \<le> dist y x" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1073 |
using dist_triangle2 [of x y x] by simp |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1074 |
show "dist y x \<le> dist x y" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1075 |
using dist_triangle2 [of y x y] by simp |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1076 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1077 |
|
62533
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1078 |
lemma dist_commute_lessI: "dist y x < e \<Longrightarrow> dist x y < e" |
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1079 |
by (simp add: dist_commute) |
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1080 |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1081 |
lemma dist_triangle: "dist x z \<le> dist x y + dist y z" |
62533
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1082 |
using dist_triangle2 [of x z y] by (simp add: dist_commute) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1083 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1084 |
lemma dist_triangle3: "dist x y \<le> dist a x + dist a y" |
62533
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1085 |
using dist_triangle2 [of x y a] by (simp add: dist_commute) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1086 |
|
63545 | 1087 |
lemma dist_pos_lt: "x \<noteq> y \<Longrightarrow> 0 < dist x y" |
1088 |
by (simp add: zero_less_dist_iff) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1089 |
|
63545 | 1090 |
lemma dist_nz: "x \<noteq> y \<longleftrightarrow> 0 < dist x y" |
1091 |
by (simp add: zero_less_dist_iff) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1092 |
|
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
62049
diff
changeset
|
1093 |
declare dist_nz [symmetric, simp] |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
62049
diff
changeset
|
1094 |
|
63545 | 1095 |
lemma dist_triangle_le: "dist x z + dist y z \<le> e \<Longrightarrow> dist x y \<le> e" |
1096 |
by (rule order_trans [OF dist_triangle2]) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1097 |
|
63545 | 1098 |
lemma dist_triangle_lt: "dist x z + dist y z < e \<Longrightarrow> dist x y < e" |
1099 |
by (rule le_less_trans [OF dist_triangle2]) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1100 |
|
63545 | 1101 |
lemma dist_triangle_less_add: "dist x1 y < e1 \<Longrightarrow> dist x2 y < e2 \<Longrightarrow> dist x1 x2 < e1 + e2" |
1102 |
by (rule dist_triangle_lt [where z=y]) simp |
|
62948
7700f467892b
lots of new theorems for multivariate analysis
paulson <lp15@cam.ac.uk>
parents:
62623
diff
changeset
|
1103 |
|
63545 | 1104 |
lemma dist_triangle_half_l: "dist x1 y < e / 2 \<Longrightarrow> dist x2 y < e / 2 \<Longrightarrow> dist x1 x2 < e" |
1105 |
by (rule dist_triangle_lt [where z=y]) simp |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1106 |
|
63545 | 1107 |
lemma dist_triangle_half_r: "dist y x1 < e / 2 \<Longrightarrow> dist y x2 < e / 2 \<Longrightarrow> dist x1 x2 < e" |
1108 |
by (rule dist_triangle_half_l) (simp_all add: dist_commute) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1109 |
|
62101 | 1110 |
subclass uniform_space |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1111 |
proof |
63545 | 1112 |
fix E x |
1113 |
assume "eventually E uniformity" |
|
62101 | 1114 |
then obtain e where E: "0 < e" "\<And>x y. dist x y < e \<Longrightarrow> E (x, y)" |
63545 | 1115 |
by (auto simp: eventually_uniformity_metric) |
62101 | 1116 |
then show "E (x, x)" "\<forall>\<^sub>F (x, y) in uniformity. E (y, x)" |
63545 | 1117 |
by (auto simp: eventually_uniformity_metric dist_commute) |
62101 | 1118 |
show "\<exists>D. eventually D uniformity \<and> (\<forall>x y z. D (x, y) \<longrightarrow> D (y, z) \<longrightarrow> E (x, z))" |
63545 | 1119 |
using E dist_triangle_half_l[where e=e] |
1120 |
unfolding eventually_uniformity_metric |
|
62101 | 1121 |
by (intro exI[of _ "\<lambda>(x, y). dist x y < e / 2"] exI[of _ "e/2"] conjI) |
63545 | 1122 |
(auto simp: dist_commute) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1123 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1124 |
|
62101 | 1125 |
lemma open_dist: "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" |
63545 | 1126 |
by (simp add: dist_commute open_uniformity eventually_uniformity_metric) |
62101 | 1127 |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1128 |
lemma open_ball: "open {y. dist x y < d}" |
63545 | 1129 |
unfolding open_dist |
1130 |
proof (intro ballI) |
|
1131 |
fix y |
|
1132 |
assume *: "y \<in> {y. dist x y < d}" |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1133 |
then show "\<exists>e>0. \<forall>z. dist z y < e \<longrightarrow> z \<in> {y. dist x y < d}" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1134 |
by (auto intro!: exI[of _ "d - dist x y"] simp: field_simps dist_triangle_lt) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1135 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1136 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1137 |
subclass first_countable_topology |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1138 |
proof |
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
1139 |
fix x |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1140 |
show "\<exists>A::nat \<Rightarrow> 'a set. (\<forall>i. x \<in> A i \<and> open (A i)) \<and> (\<forall>S. open S \<and> x \<in> S \<longrightarrow> (\<exists>i. A i \<subseteq> S))" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1141 |
proof (safe intro!: exI[of _ "\<lambda>n. {y. dist x y < inverse (Suc n)}"]) |
63545 | 1142 |
fix S |
1143 |
assume "open S" "x \<in> S" |
|
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
52381
diff
changeset
|
1144 |
then obtain e where e: "0 < e" and "{y. dist x y < e} \<subseteq> S" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1145 |
by (auto simp: open_dist subset_eq dist_commute) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1146 |
moreover |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
52381
diff
changeset
|
1147 |
from e obtain i where "inverse (Suc i) < e" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1148 |
by (auto dest!: reals_Archimedean) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1149 |
then have "{y. dist x y < inverse (Suc i)} \<subseteq> {y. dist x y < e}" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1150 |
by auto |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1151 |
ultimately show "\<exists>i. {y. dist x y < inverse (Suc i)} \<subseteq> S" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1152 |
by blast |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1153 |
qed (auto intro: open_ball) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1154 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1155 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1156 |
end |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1157 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1158 |
instance metric_space \<subseteq> t2_space |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1159 |
proof |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1160 |
fix x y :: "'a::metric_space" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1161 |
assume xy: "x \<noteq> y" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1162 |
let ?U = "{y'. dist x y' < dist x y / 2}" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1163 |
let ?V = "{x'. dist y x' < dist x y / 2}" |
63545 | 1164 |
have *: "d x z \<le> d x y + d y z \<Longrightarrow> d y z = d z y \<Longrightarrow> \<not> (d x y * 2 < d x z \<and> d z y * 2 < d x z)" |
1165 |
for d :: "'a \<Rightarrow> 'a \<Rightarrow> real" and x y z :: 'a |
|
1166 |
by arith |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1167 |
have "open ?U \<and> open ?V \<and> x \<in> ?U \<and> y \<in> ?V \<and> ?U \<inter> ?V = {}" |
63545 | 1168 |
using dist_pos_lt[OF xy] *[of dist, OF dist_triangle dist_commute] |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1169 |
using open_ball[of _ "dist x y / 2"] by auto |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1170 |
then show "\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1171 |
by blast |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1172 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1173 |
|
60758 | 1174 |
text \<open>Every normed vector space is a metric space.\<close> |
31289 | 1175 |
instance real_normed_vector < metric_space |
1176 |
proof |
|
63545 | 1177 |
fix x y z :: 'a |
1178 |
show "dist x y = 0 \<longleftrightarrow> x = y" |
|
1179 |
by (simp add: dist_norm) |
|
1180 |
show "dist x y \<le> dist x z + dist y z" |
|
1181 |
using norm_triangle_ineq4 [of "x - z" "y - z"] by (simp add: dist_norm) |
|
31289 | 1182 |
qed |
31285
0a3f9ee4117c
generalize dist function to class real_normed_vector
huffman
parents:
31017
diff
changeset
|
1183 |
|
63545 | 1184 |
|
60758 | 1185 |
subsection \<open>Class instances for real numbers\<close> |
31564
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1186 |
|
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1187 |
instantiation real :: real_normed_field |
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1188 |
begin |
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1189 |
|
63545 | 1190 |
definition dist_real_def: "dist x y = \<bar>x - y\<bar>" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1191 |
|
62101 | 1192 |
definition uniformity_real_def [code del]: |
1193 |
"(uniformity :: (real \<times> real) filter) = (INF e:{0 <..}. principal {(x, y). dist x y < e})" |
|
1194 |
||
52381
63eec9cea2c7
pragmatic executability for instance real :: open
haftmann
parents:
51775
diff
changeset
|
1195 |
definition open_real_def [code del]: |
62101 | 1196 |
"open (U :: real set) \<longleftrightarrow> (\<forall>x\<in>U. eventually (\<lambda>(x', y). x' = x \<longrightarrow> y \<in> U) uniformity)" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1197 |
|
63545 | 1198 |
definition real_norm_def [simp]: "norm r = \<bar>r\<bar>" |
31564
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1199 |
|
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1200 |
instance |
63545 | 1201 |
apply intro_classes |
1202 |
apply (unfold real_norm_def real_scaleR_def) |
|
1203 |
apply (rule dist_real_def) |
|
1204 |
apply (simp add: sgn_real_def) |
|
1205 |
apply (rule uniformity_real_def) |
|
1206 |
apply (rule open_real_def) |
|
1207 |
apply (rule abs_eq_0) |
|
1208 |
apply (rule abs_triangle_ineq) |
|
1209 |
apply (rule abs_mult) |
|
1210 |
apply (rule abs_mult) |
|
1211 |
done |
|
31564
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1212 |
|
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1213 |
end |
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
huffman
parents:
31494
diff
changeset
|
1214 |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
1215 |
declare uniformity_Abort[where 'a=real, code] |
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
1216 |
|
63545 | 1217 |
lemma dist_of_real [simp]: "dist (of_real x :: 'a) (of_real y) = dist x y" |
1218 |
for a :: "'a::real_normed_div_algebra" |
|
1219 |
by (metis dist_norm norm_of_real of_real_diff real_norm_def) |
|
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
1220 |
|
54890
cb892d835803
fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents:
54863
diff
changeset
|
1221 |
declare [[code abort: "open :: real set \<Rightarrow> bool"]] |
52381
63eec9cea2c7
pragmatic executability for instance real :: open
haftmann
parents:
51775
diff
changeset
|
1222 |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1223 |
instance real :: linorder_topology |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1224 |
proof |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1225 |
show "(open :: real set \<Rightarrow> bool) = generate_topology (range lessThan \<union> range greaterThan)" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1226 |
proof (rule ext, safe) |
63545 | 1227 |
fix S :: "real set" |
1228 |
assume "open S" |
|
53381 | 1229 |
then obtain f where "\<forall>x\<in>S. 0 < f x \<and> (\<forall>y. dist y x < f x \<longrightarrow> y \<in> S)" |
62101 | 1230 |
unfolding open_dist bchoice_iff .. |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1231 |
then have *: "S = (\<Union>x\<in>S. {x - f x <..} \<inter> {..< x + f x})" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1232 |
by (fastforce simp: dist_real_def) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1233 |
show "generate_topology (range lessThan \<union> range greaterThan) S" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1234 |
apply (subst *) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1235 |
apply (intro generate_topology_Union generate_topology.Int) |
63545 | 1236 |
apply (auto intro: generate_topology.Basis) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1237 |
done |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1238 |
next |
63545 | 1239 |
fix S :: "real set" |
1240 |
assume "generate_topology (range lessThan \<union> range greaterThan) S" |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1241 |
moreover have "\<And>a::real. open {..<a}" |
62101 | 1242 |
unfolding open_dist dist_real_def |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1243 |
proof clarify |
63545 | 1244 |
fix x a :: real |
1245 |
assume "x < a" |
|
1246 |
then have "0 < a - x \<and> (\<forall>y. \<bar>y - x\<bar> < a - x \<longrightarrow> y \<in> {..<a})" by auto |
|
1247 |
then show "\<exists>e>0. \<forall>y. \<bar>y - x\<bar> < e \<longrightarrow> y \<in> {..<a}" .. |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1248 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1249 |
moreover have "\<And>a::real. open {a <..}" |
62101 | 1250 |
unfolding open_dist dist_real_def |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1251 |
proof clarify |
63545 | 1252 |
fix x a :: real |
1253 |
assume "a < x" |
|
1254 |
then have "0 < x - a \<and> (\<forall>y. \<bar>y - x\<bar> < x - a \<longrightarrow> y \<in> {a<..})" by auto |
|
1255 |
then show "\<exists>e>0. \<forall>y. \<bar>y - x\<bar> < e \<longrightarrow> y \<in> {a<..}" .. |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1256 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1257 |
ultimately show "open S" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1258 |
by induct auto |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1259 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1260 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1261 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1262 |
instance real :: linear_continuum_topology .. |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1263 |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1264 |
lemmas open_real_greaterThan = open_greaterThan[where 'a=real] |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1265 |
lemmas open_real_lessThan = open_lessThan[where 'a=real] |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1266 |
lemmas open_real_greaterThanLessThan = open_greaterThanLessThan[where 'a=real] |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1267 |
lemmas closed_real_atMost = closed_atMost[where 'a=real] |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1268 |
lemmas closed_real_atLeast = closed_atLeast[where 'a=real] |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1269 |
lemmas closed_real_atLeastAtMost = closed_atLeastAtMost[where 'a=real] |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1270 |
|
63545 | 1271 |
|
60758 | 1272 |
subsection \<open>Extra type constraints\<close> |
31446 | 1273 |
|
61799 | 1274 |
text \<open>Only allow @{term "open"} in class \<open>topological_space\<close>.\<close> |
60758 | 1275 |
setup \<open>Sign.add_const_constraint |
1276 |
(@{const_name "open"}, SOME @{typ "'a::topological_space set \<Rightarrow> bool"})\<close> |
|
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31490
diff
changeset
|
1277 |
|
62101 | 1278 |
text \<open>Only allow @{term "uniformity"} in class \<open>uniform_space\<close>.\<close> |
1279 |
setup \<open>Sign.add_const_constraint |
|
1280 |
(@{const_name "uniformity"}, SOME @{typ "('a::uniformity \<times> 'a) filter"})\<close> |
|
1281 |
||
61799 | 1282 |
text \<open>Only allow @{term dist} in class \<open>metric_space\<close>.\<close> |
60758 | 1283 |
setup \<open>Sign.add_const_constraint |
1284 |
(@{const_name dist}, SOME @{typ "'a::metric_space \<Rightarrow> 'a \<Rightarrow> real"})\<close> |
|
31446 | 1285 |
|
61799 | 1286 |
text \<open>Only allow @{term norm} in class \<open>real_normed_vector\<close>.\<close> |
60758 | 1287 |
setup \<open>Sign.add_const_constraint |
1288 |
(@{const_name norm}, SOME @{typ "'a::real_normed_vector \<Rightarrow> real"})\<close> |
|
31446 | 1289 |
|
63545 | 1290 |
|
60758 | 1291 |
subsection \<open>Sign function\<close> |
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1292 |
|
63545 | 1293 |
lemma norm_sgn: "norm (sgn x) = (if x = 0 then 0 else 1)" |
1294 |
for x :: "'a::real_normed_vector" |
|
1295 |
by (simp add: sgn_div_norm) |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1296 |
|
63545 | 1297 |
lemma sgn_zero [simp]: "sgn (0::'a::real_normed_vector) = 0" |
1298 |
by (simp add: sgn_div_norm) |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1299 |
|
63545 | 1300 |
lemma sgn_zero_iff: "sgn x = 0 \<longleftrightarrow> x = 0" |
1301 |
for x :: "'a::real_normed_vector" |
|
1302 |
by (simp add: sgn_div_norm) |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1303 |
|
63545 | 1304 |
lemma sgn_minus: "sgn (- x) = - sgn x" |
1305 |
for x :: "'a::real_normed_vector" |
|
1306 |
by (simp add: sgn_div_norm) |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1307 |
|
63545 | 1308 |
lemma sgn_scaleR: "sgn (scaleR r x) = scaleR (sgn r) (sgn x)" |
1309 |
for x :: "'a::real_normed_vector" |
|
1310 |
by (simp add: sgn_div_norm ac_simps) |
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
1311 |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1312 |
lemma sgn_one [simp]: "sgn (1::'a::real_normed_algebra_1) = 1" |
63545 | 1313 |
by (simp add: sgn_div_norm) |
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1314 |
|
63545 | 1315 |
lemma sgn_of_real: "sgn (of_real r :: 'a::real_normed_algebra_1) = of_real (sgn r)" |
1316 |
unfolding of_real_def by (simp only: sgn_scaleR sgn_one) |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1317 |
|
63545 | 1318 |
lemma sgn_mult: "sgn (x * y) = sgn x * sgn y" |
1319 |
for x y :: "'a::real_normed_div_algebra" |
|
1320 |
by (simp add: sgn_div_norm norm_mult mult.commute) |
|
22973
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
huffman
parents:
22972
diff
changeset
|
1321 |
|
63545 | 1322 |
lemma real_sgn_eq: "sgn x = x / \<bar>x\<bar>" |
1323 |
for x :: real |
|
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61609
diff
changeset
|
1324 |
by (simp add: sgn_div_norm divide_inverse) |
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1325 |
|
63545 | 1326 |
lemma zero_le_sgn_iff [simp]: "0 \<le> sgn x \<longleftrightarrow> 0 \<le> x" |
1327 |
for x :: real |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
1328 |
by (cases "0::real" x rule: linorder_cases) simp_all |
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
1329 |
|
63545 | 1330 |
lemma sgn_le_0_iff [simp]: "sgn x \<le> 0 \<longleftrightarrow> x \<le> 0" |
1331 |
for x :: real |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56479
diff
changeset
|
1332 |
by (cases "0::real" x rule: linorder_cases) simp_all |
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
1333 |
|
51474
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51472
diff
changeset
|
1334 |
lemma norm_conv_dist: "norm x = dist x 0" |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51472
diff
changeset
|
1335 |
unfolding dist_norm by simp |
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22942
diff
changeset
|
1336 |
|
62379
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62368
diff
changeset
|
1337 |
declare norm_conv_dist [symmetric, simp] |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62368
diff
changeset
|
1338 |
|
63545 | 1339 |
lemma dist_0_norm [simp]: "dist 0 x = norm x" |
1340 |
for x :: "'a::real_normed_vector" |
|
1341 |
by (simp add: dist_norm) |
|
62397
5ae24f33d343
Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents:
62379
diff
changeset
|
1342 |
|
60307
75e1aa7a450e
Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents:
60303
diff
changeset
|
1343 |
lemma dist_diff [simp]: "dist a (a - b) = norm b" "dist (a - b) a = norm b" |
75e1aa7a450e
Convex hulls: theorems about interior, etc. And a few simple lemmas.
paulson <lp15@cam.ac.uk>
parents:
60303
diff
changeset
|
1344 |
by (simp_all add: dist_norm) |
61609
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1345 |
|
61524
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1346 |
lemma dist_of_int: "dist (of_int m) (of_int n :: 'a :: real_normed_algebra_1) = of_int \<bar>m - n\<bar>" |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1347 |
proof - |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1348 |
have "dist (of_int m) (of_int n :: 'a) = dist (of_int m :: 'a) (of_int m - (of_int (m - n)))" |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1349 |
by simp |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1350 |
also have "\<dots> = of_int \<bar>m - n\<bar>" by (subst dist_diff, subst norm_of_int) simp |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1351 |
finally show ?thesis . |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1352 |
qed |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1353 |
|
61609
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1354 |
lemma dist_of_nat: |
61524
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1355 |
"dist (of_nat m) (of_nat n :: 'a :: real_normed_algebra_1) = of_int \<bar>int m - int n\<bar>" |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61169
diff
changeset
|
1356 |
by (subst (1 2) of_int_of_nat_eq [symmetric]) (rule dist_of_int) |
61609
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1357 |
|
63545 | 1358 |
|
60758 | 1359 |
subsection \<open>Bounded Linear and Bilinear Operators\<close> |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1360 |
|
53600
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
huffman
parents:
53381
diff
changeset
|
1361 |
locale linear = additive f for f :: "'a::real_vector \<Rightarrow> 'b::real_vector" + |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1362 |
assumes scaleR: "f (scaleR r x) = scaleR r (f x)" |
53600
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
huffman
parents:
53381
diff
changeset
|
1363 |
|
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
1364 |
lemma linear_imp_scaleR: |
63545 | 1365 |
assumes "linear D" |
1366 |
obtains d where "D = (\<lambda>x. x *\<^sub>R d)" |
|
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
1367 |
by (metis assms linear.scaleR mult.commute mult.left_neutral real_scaleR_def) |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
1368 |
|
62533
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1369 |
corollary real_linearD: |
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1370 |
fixes f :: "real \<Rightarrow> real" |
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1371 |
assumes "linear f" obtains c where "f = op* c" |
63545 | 1372 |
by (rule linear_imp_scaleR [OF assms]) (force simp: scaleR_conv_of_real) |
62533
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62397
diff
changeset
|
1373 |
|
53600
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
huffman
parents:
53381
diff
changeset
|
1374 |
lemma linearI: |
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
huffman
parents:
53381
diff
changeset
|
1375 |
assumes "\<And>x y. f (x + y) = f x + f y" |
63545 | 1376 |
and "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x" |
53600
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
huffman
parents:
53381
diff
changeset
|
1377 |
shows "linear f" |
61169 | 1378 |
by standard (rule assms)+ |
53600
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
huffman
parents:
53381
diff
changeset
|
1379 |
|
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
huffman
parents:
53381
diff
changeset
|
1380 |
locale bounded_linear = linear f for f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" + |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1381 |
assumes bounded: "\<exists>K. \<forall>x. norm (f x) \<le> norm x * K" |
27443 | 1382 |
begin |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1383 |
|
63545 | 1384 |
lemma pos_bounded: "\<exists>K>0. \<forall>x. norm (f x) \<le> norm x * K" |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1385 |
proof - |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1386 |
obtain K where K: "\<And>x. norm (f x) \<le> norm x * K" |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61609
diff
changeset
|
1387 |
using bounded by blast |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1388 |
show ?thesis |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1389 |
proof (intro exI impI conjI allI) |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1390 |
show "0 < max 1 K" |
54863
82acc20ded73
prefer more canonical names for lemmas on min/max
haftmann
parents:
54785
diff
changeset
|
1391 |
by (rule order_less_le_trans [OF zero_less_one max.cobounded1]) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1392 |
next |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1393 |
fix x |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1394 |
have "norm (f x) \<le> norm x * K" using K . |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1395 |
also have "\<dots> \<le> norm x * max 1 K" |
54863
82acc20ded73
prefer more canonical names for lemmas on min/max
haftmann
parents:
54785
diff
changeset
|
1396 |
by (rule mult_left_mono [OF max.cobounded2 norm_ge_zero]) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1397 |
finally show "norm (f x) \<le> norm x * max 1 K" . |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1398 |
qed |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1399 |
qed |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1400 |
|
63545 | 1401 |
lemma nonneg_bounded: "\<exists>K\<ge>0. \<forall>x. norm (f x) \<le> norm x * K" |
1402 |
using pos_bounded by (auto intro: order_less_imp_le) |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1403 |
|
63545 | 1404 |
lemma linear: "linear f" |
63469
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63128
diff
changeset
|
1405 |
by (fact local.linear_axioms) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56194
diff
changeset
|
1406 |
|
27443 | 1407 |
end |
1408 |
||
44127 | 1409 |
lemma bounded_linear_intro: |
1410 |
assumes "\<And>x y. f (x + y) = f x + f y" |
|
63545 | 1411 |
and "\<And>r x. f (scaleR r x) = scaleR r (f x)" |
1412 |
and "\<And>x. norm (f x) \<le> norm x * K" |
|
44127 | 1413 |
shows "bounded_linear f" |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61609
diff
changeset
|
1414 |
by standard (blast intro: assms)+ |
44127 | 1415 |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1416 |
locale bounded_bilinear = |
63545 | 1417 |
fixes prod :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector \<Rightarrow> 'c::real_normed_vector" |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1418 |
(infixl "**" 70) |
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1419 |
assumes add_left: "prod (a + a') b = prod a b + prod a' b" |
63545 | 1420 |
and add_right: "prod a (b + b') = prod a b + prod a b'" |
1421 |
and scaleR_left: "prod (scaleR r a) b = scaleR r (prod a b)" |
|
1422 |
and scaleR_right: "prod a (scaleR r b) = scaleR r (prod a b)" |
|
1423 |
and bounded: "\<exists>K. \<forall>a b. norm (prod a b) \<le> norm a * norm b * K" |
|
27443 | 1424 |
begin |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1425 |
|
63545 | 1426 |
lemma pos_bounded: "\<exists>K>0. \<forall>a b. norm (a ** b) \<le> norm a * norm b * K" |
1427 |
apply (insert bounded) |
|
1428 |
apply (erule exE) |
|
1429 |
apply (rule_tac x="max 1 K" in exI) |
|
1430 |
apply safe |
|
1431 |
apply (rule order_less_le_trans [OF zero_less_one max.cobounded1]) |
|
1432 |
apply (drule spec) |
|
1433 |
apply (drule spec) |
|
1434 |
apply (erule order_trans) |
|
1435 |
apply (rule mult_left_mono [OF max.cobounded2]) |
|
1436 |
apply (intro mult_nonneg_nonneg norm_ge_zero) |
|
1437 |
done |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1438 |
|
63545 | 1439 |
lemma nonneg_bounded: "\<exists>K\<ge>0. \<forall>a b. norm (a ** b) \<le> norm a * norm b * K" |
1440 |
using pos_bounded by (auto intro: order_less_imp_le) |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1441 |
|
27443 | 1442 |
lemma additive_right: "additive (\<lambda>b. prod a b)" |
63545 | 1443 |
by (rule additive.intro, rule add_right) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1444 |
|
27443 | 1445 |
lemma additive_left: "additive (\<lambda>a. prod a b)" |
63545 | 1446 |
by (rule additive.intro, rule add_left) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1447 |
|
27443 | 1448 |
lemma zero_left: "prod 0 b = 0" |
63545 | 1449 |
by (rule additive.zero [OF additive_left]) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1450 |
|
27443 | 1451 |
lemma zero_right: "prod a 0 = 0" |
63545 | 1452 |
by (rule additive.zero [OF additive_right]) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1453 |
|
27443 | 1454 |
lemma minus_left: "prod (- a) b = - prod a b" |
63545 | 1455 |
by (rule additive.minus [OF additive_left]) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1456 |
|
27443 | 1457 |
lemma minus_right: "prod a (- b) = - prod a b" |
63545 | 1458 |
by (rule additive.minus [OF additive_right]) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1459 |
|
63545 | 1460 |
lemma diff_left: "prod (a - a') b = prod a b - prod a' b" |
1461 |
by (rule additive.diff [OF additive_left]) |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1462 |
|
63545 | 1463 |
lemma diff_right: "prod a (b - b') = prod a b - prod a b'" |
1464 |
by (rule additive.diff [OF additive_right]) |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1465 |
|
63545 | 1466 |
lemma setsum_left: "prod (setsum g S) x = setsum ((\<lambda>i. prod (g i) x)) S" |
1467 |
by (rule additive.setsum [OF additive_left]) |
|
61915
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1468 |
|
63545 | 1469 |
lemma setsum_right: "prod x (setsum g S) = setsum ((\<lambda>i. (prod x (g i)))) S" |
1470 |
by (rule additive.setsum [OF additive_right]) |
|
61915
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1471 |
|
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1472 |
|
63545 | 1473 |
lemma bounded_linear_left: "bounded_linear (\<lambda>a. a ** b)" |
1474 |
apply (insert bounded) |
|
1475 |
apply safe |
|
1476 |
apply (rule_tac K="norm b * K" in bounded_linear_intro) |
|
1477 |
apply (rule add_left) |
|
1478 |
apply (rule scaleR_left) |
|
1479 |
apply (simp add: ac_simps) |
|
1480 |
done |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1481 |
|
63545 | 1482 |
lemma bounded_linear_right: "bounded_linear (\<lambda>b. a ** b)" |
1483 |
apply (insert bounded) |
|
1484 |
apply safe |
|
1485 |
apply (rule_tac K="norm a * K" in bounded_linear_intro) |
|
1486 |
apply (rule add_right) |
|
1487 |
apply (rule scaleR_right) |
|
1488 |
apply (simp add: ac_simps) |
|
1489 |
done |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1490 |
|
63545 | 1491 |
lemma prod_diff_prod: "(x ** y - a ** b) = (x - a) ** (y - b) + (x - a) ** b + a ** (y - b)" |
1492 |
by (simp add: diff_left diff_right) |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1493 |
|
61916 | 1494 |
lemma flip: "bounded_bilinear (\<lambda>x y. y ** x)" |
1495 |
apply standard |
|
63545 | 1496 |
apply (rule add_right) |
1497 |
apply (rule add_left) |
|
1498 |
apply (rule scaleR_right) |
|
1499 |
apply (rule scaleR_left) |
|
61916 | 1500 |
apply (subst mult.commute) |
63545 | 1501 |
apply (insert bounded) |
61916 | 1502 |
apply blast |
1503 |
done |
|
1504 |
||
1505 |
lemma comp1: |
|
1506 |
assumes "bounded_linear g" |
|
1507 |
shows "bounded_bilinear (\<lambda>x. op ** (g x))" |
|
1508 |
proof unfold_locales |
|
1509 |
interpret g: bounded_linear g by fact |
|
1510 |
show "\<And>a a' b. g (a + a') ** b = g a ** b + g a' ** b" |
|
1511 |
"\<And>a b b'. g a ** (b + b') = g a ** b + g a ** b'" |
|
1512 |
"\<And>r a b. g (r *\<^sub>R a) ** b = r *\<^sub>R (g a ** b)" |
|
1513 |
"\<And>a r b. g a ** (r *\<^sub>R b) = r *\<^sub>R (g a ** b)" |
|
1514 |
by (auto simp: g.add add_left add_right g.scaleR scaleR_left scaleR_right) |
|
63545 | 1515 |
from g.nonneg_bounded nonneg_bounded obtain K L |
1516 |
where nn: "0 \<le> K" "0 \<le> L" |
|
1517 |
and K: "\<And>x. norm (g x) \<le> norm x * K" |
|
1518 |
and L: "\<And>a b. norm (a ** b) \<le> norm a * norm b * L" |
|
61916 | 1519 |
by auto |
1520 |
have "norm (g a ** b) \<le> norm a * K * norm b * L" for a b |
|
1521 |
by (auto intro!: order_trans[OF K] order_trans[OF L] mult_mono simp: nn) |
|
1522 |
then show "\<exists>K. \<forall>a b. norm (g a ** b) \<le> norm a * norm b * K" |
|
1523 |
by (auto intro!: exI[where x="K * L"] simp: ac_simps) |
|
1524 |
qed |
|
1525 |
||
63545 | 1526 |
lemma comp: "bounded_linear f \<Longrightarrow> bounded_linear g \<Longrightarrow> bounded_bilinear (\<lambda>x y. f x ** g y)" |
61916 | 1527 |
by (rule bounded_bilinear.flip[OF bounded_bilinear.comp1[OF bounded_bilinear.flip[OF comp1]]]) |
1528 |
||
27443 | 1529 |
end |
1530 |
||
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1531 |
lemma bounded_linear_ident[simp]: "bounded_linear (\<lambda>x. x)" |
61169 | 1532 |
by standard (auto intro!: exI[of _ 1]) |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1533 |
|
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1534 |
lemma bounded_linear_zero[simp]: "bounded_linear (\<lambda>x. 0)" |
61169 | 1535 |
by standard (auto intro!: exI[of _ 1]) |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1536 |
|
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1537 |
lemma bounded_linear_add: |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1538 |
assumes "bounded_linear f" |
63545 | 1539 |
and "bounded_linear g" |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1540 |
shows "bounded_linear (\<lambda>x. f x + g x)" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1541 |
proof - |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1542 |
interpret f: bounded_linear f by fact |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1543 |
interpret g: bounded_linear g by fact |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1544 |
show ?thesis |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1545 |
proof |
63545 | 1546 |
from f.bounded obtain Kf where Kf: "norm (f x) \<le> norm x * Kf" for x |
1547 |
by blast |
|
1548 |
from g.bounded obtain Kg where Kg: "norm (g x) \<le> norm x * Kg" for x |
|
1549 |
by blast |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1550 |
show "\<exists>K. \<forall>x. norm (f x + g x) \<le> norm x * K" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1551 |
using add_mono[OF Kf Kg] |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1552 |
by (intro exI[of _ "Kf + Kg"]) (auto simp: field_simps intro: norm_triangle_ineq order_trans) |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1553 |
qed (simp_all add: f.add g.add f.scaleR g.scaleR scaleR_right_distrib) |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1554 |
qed |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1555 |
|
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1556 |
lemma bounded_linear_minus: |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1557 |
assumes "bounded_linear f" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1558 |
shows "bounded_linear (\<lambda>x. - f x)" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1559 |
proof - |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1560 |
interpret f: bounded_linear f by fact |
63545 | 1561 |
show ?thesis |
1562 |
apply unfold_locales |
|
1563 |
apply (simp add: f.add) |
|
1564 |
apply (simp add: f.scaleR) |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1565 |
apply (simp add: f.bounded) |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1566 |
done |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1567 |
qed |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1568 |
|
61915
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1569 |
lemma bounded_linear_sub: "bounded_linear f \<Longrightarrow> bounded_linear g \<Longrightarrow> bounded_linear (\<lambda>x. f x - g x)" |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1570 |
using bounded_linear_add[of f "\<lambda>x. - g x"] bounded_linear_minus[of g] |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1571 |
by (auto simp add: algebra_simps) |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1572 |
|
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1573 |
lemma bounded_linear_setsum: |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1574 |
fixes f :: "'i \<Rightarrow> 'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1575 |
assumes "\<And>i. i \<in> I \<Longrightarrow> bounded_linear (f i)" |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1576 |
shows "bounded_linear (\<lambda>x. \<Sum>i\<in>I. f i x)" |
63545 | 1577 |
proof (cases "finite I") |
1578 |
case True |
|
1579 |
then show ?thesis |
|
1580 |
using assms by induct (auto intro!: bounded_linear_add) |
|
1581 |
next |
|
1582 |
case False |
|
1583 |
then show ?thesis by simp |
|
1584 |
qed |
|
61915
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1585 |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1586 |
lemma bounded_linear_compose: |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1587 |
assumes "bounded_linear f" |
63545 | 1588 |
and "bounded_linear g" |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1589 |
shows "bounded_linear (\<lambda>x. f (g x))" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1590 |
proof - |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1591 |
interpret f: bounded_linear f by fact |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1592 |
interpret g: bounded_linear g by fact |
63545 | 1593 |
show ?thesis |
1594 |
proof unfold_locales |
|
1595 |
show "f (g (x + y)) = f (g x) + f (g y)" for x y |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1596 |
by (simp only: f.add g.add) |
63545 | 1597 |
show "f (g (scaleR r x)) = scaleR r (f (g x))" for r x |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1598 |
by (simp only: f.scaleR g.scaleR) |
63545 | 1599 |
from f.pos_bounded obtain Kf where f: "\<And>x. norm (f x) \<le> norm x * Kf" and Kf: "0 < Kf" |
1600 |
by blast |
|
1601 |
from g.pos_bounded obtain Kg where g: "\<And>x. norm (g x) \<le> norm x * Kg" |
|
1602 |
by blast |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1603 |
show "\<exists>K. \<forall>x. norm (f (g x)) \<le> norm x * K" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1604 |
proof (intro exI allI) |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1605 |
fix x |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1606 |
have "norm (f (g x)) \<le> norm (g x) * Kf" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1607 |
using f . |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1608 |
also have "\<dots> \<le> (norm x * Kg) * Kf" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1609 |
using g Kf [THEN order_less_imp_le] by (rule mult_right_mono) |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1610 |
also have "(norm x * Kg) * Kf = norm x * (Kg * Kf)" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57448
diff
changeset
|
1611 |
by (rule mult.assoc) |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1612 |
finally show "norm (f (g x)) \<le> norm x * (Kg * Kf)" . |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1613 |
qed |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1614 |
qed |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1615 |
qed |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1616 |
|
63545 | 1617 |
lemma bounded_bilinear_mult: "bounded_bilinear (op * :: 'a \<Rightarrow> 'a \<Rightarrow> 'a::real_normed_algebra)" |
1618 |
apply (rule bounded_bilinear.intro) |
|
1619 |
apply (rule distrib_right) |
|
1620 |
apply (rule distrib_left) |
|
1621 |
apply (rule mult_scaleR_left) |
|
1622 |
apply (rule mult_scaleR_right) |
|
1623 |
apply (rule_tac x="1" in exI) |
|
1624 |
apply (simp add: norm_mult_ineq) |
|
1625 |
done |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1626 |
|
63545 | 1627 |
lemma bounded_linear_mult_left: "bounded_linear (\<lambda>x::'a::real_normed_algebra. x * y)" |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1628 |
using bounded_bilinear_mult |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1629 |
by (rule bounded_bilinear.bounded_linear_left) |
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1630 |
|
63545 | 1631 |
lemma bounded_linear_mult_right: "bounded_linear (\<lambda>y::'a::real_normed_algebra. x * y)" |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1632 |
using bounded_bilinear_mult |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1633 |
by (rule bounded_bilinear.bounded_linear_right) |
23127 | 1634 |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1635 |
lemmas bounded_linear_mult_const = |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1636 |
bounded_linear_mult_left [THEN bounded_linear_compose] |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1637 |
|
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1638 |
lemmas bounded_linear_const_mult = |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1639 |
bounded_linear_mult_right [THEN bounded_linear_compose] |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1640 |
|
63545 | 1641 |
lemma bounded_linear_divide: "bounded_linear (\<lambda>x. x / y)" |
1642 |
for y :: "'a::real_normed_field" |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1643 |
unfolding divide_inverse by (rule bounded_linear_mult_left) |
23120 | 1644 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1645 |
lemma bounded_bilinear_scaleR: "bounded_bilinear scaleR" |
63545 | 1646 |
apply (rule bounded_bilinear.intro) |
1647 |
apply (rule scaleR_left_distrib) |
|
1648 |
apply (rule scaleR_right_distrib) |
|
1649 |
apply simp |
|
1650 |
apply (rule scaleR_left_commute) |
|
1651 |
apply (rule_tac x="1" in exI) |
|
1652 |
apply simp |
|
1653 |
done |
|
22442
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
huffman
parents:
21809
diff
changeset
|
1654 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1655 |
lemma bounded_linear_scaleR_left: "bounded_linear (\<lambda>r. scaleR r x)" |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1656 |
using bounded_bilinear_scaleR |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1657 |
by (rule bounded_bilinear.bounded_linear_left) |
23127 | 1658 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1659 |
lemma bounded_linear_scaleR_right: "bounded_linear (\<lambda>x. scaleR r x)" |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1660 |
using bounded_bilinear_scaleR |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1661 |
by (rule bounded_bilinear.bounded_linear_right) |
23127 | 1662 |
|
61915
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1663 |
lemmas bounded_linear_scaleR_const = |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1664 |
bounded_linear_scaleR_left[THEN bounded_linear_compose] |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1665 |
|
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1666 |
lemmas bounded_linear_const_scaleR = |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1667 |
bounded_linear_scaleR_right[THEN bounded_linear_compose] |
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61799
diff
changeset
|
1668 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1669 |
lemma bounded_linear_of_real: "bounded_linear (\<lambda>r. of_real r)" |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44127
diff
changeset
|
1670 |
unfolding of_real_def by (rule bounded_linear_scaleR_left) |
22625 | 1671 |
|
63545 | 1672 |
lemma real_bounded_linear: "bounded_linear f \<longleftrightarrow> (\<exists>c::real. f = (\<lambda>x. x * c))" |
1673 |
for f :: "real \<Rightarrow> real" |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1674 |
proof - |
63545 | 1675 |
{ |
1676 |
fix x |
|
1677 |
assume "bounded_linear f" |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1678 |
then interpret bounded_linear f . |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1679 |
from scaleR[of x 1] have "f x = x * f 1" |
63545 | 1680 |
by simp |
1681 |
} |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1682 |
then show ?thesis |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1683 |
by (auto intro: exI[of _ "f 1"] bounded_linear_mult_left) |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1684 |
qed |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1685 |
|
63545 | 1686 |
lemma bij_linear_imp_inv_linear: "linear f \<Longrightarrow> bij f \<Longrightarrow> linear (inv f)" |
1687 |
by (auto simp: linear_def linear_axioms_def additive_def bij_is_surj bij_is_inj surj_f_inv_f |
|
1688 |
intro!: Hilbert_Choice.inv_f_eq) |
|
61609
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1689 |
|
44571 | 1690 |
instance real_normed_algebra_1 \<subseteq> perfect_space |
1691 |
proof |
|
63545 | 1692 |
show "\<not> open {x}" for x :: 'a |
1693 |
apply (simp only: open_dist dist_norm) |
|
1694 |
apply clarsimp |
|
1695 |
apply (rule_tac x = "x + of_real (e/2)" in exI) |
|
1696 |
apply simp |
|
1697 |
done |
|
44571 | 1698 |
qed |
1699 |
||
63545 | 1700 |
|
60758 | 1701 |
subsection \<open>Filters and Limits on Metric Space\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1702 |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1703 |
lemma (in metric_space) nhds_metric: "nhds x = (INF e:{0 <..}. principal {y. dist y x < e})" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1704 |
unfolding nhds_def |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1705 |
proof (safe intro!: INF_eq) |
63545 | 1706 |
fix S |
1707 |
assume "open S" "x \<in> S" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1708 |
then obtain e where "{y. dist y x < e} \<subseteq> S" "0 < e" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1709 |
by (auto simp: open_dist subset_eq) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1710 |
then show "\<exists>e\<in>{0<..}. principal {y. dist y x < e} \<le> principal S" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1711 |
by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1712 |
qed (auto intro!: exI[of _ "{y. dist x y < e}" for e] open_ball simp: dist_commute) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1713 |
|
63545 | 1714 |
lemma (in metric_space) tendsto_iff: "(f \<longlongrightarrow> l) F \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist (f x) l < e) F)" |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1715 |
unfolding nhds_metric filterlim_INF filterlim_principal by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1716 |
|
63545 | 1717 |
lemma (in metric_space) tendstoI [intro?]: |
1718 |
"(\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F) \<Longrightarrow> (f \<longlongrightarrow> l) F" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1719 |
by (auto simp: tendsto_iff) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1720 |
|
61973 | 1721 |
lemma (in metric_space) tendstoD: "(f \<longlongrightarrow> l) F \<Longrightarrow> 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F" |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1722 |
by (auto simp: tendsto_iff) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1723 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1724 |
lemma (in metric_space) eventually_nhds_metric: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1725 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. dist x a < d \<longrightarrow> P x)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1726 |
unfolding nhds_metric |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1727 |
by (subst eventually_INF_base) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
1728 |
(auto simp: eventually_principal Bex_def subset_eq intro: exI[of _ "min a b" for a b]) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1729 |
|
63545 | 1730 |
lemma eventually_at: "eventually P (at a within S) \<longleftrightarrow> (\<exists>d>0. \<forall>x\<in>S. x \<noteq> a \<and> dist x a < d \<longrightarrow> P x)" |
1731 |
for a :: "'a :: metric_space" |
|
1732 |
by (auto simp: eventually_at_filter eventually_nhds_metric) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1733 |
|
63545 | 1734 |
lemma eventually_at_le: "eventually P (at a within S) \<longleftrightarrow> (\<exists>d>0. \<forall>x\<in>S. x \<noteq> a \<and> dist x a \<le> d \<longrightarrow> P x)" |
1735 |
for a :: "'a::metric_space" |
|
1736 |
apply (simp only: eventually_at_filter eventually_nhds_metric) |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51531
diff
changeset
|
1737 |
apply auto |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51531
diff
changeset
|
1738 |
apply (rule_tac x="d / 2" in exI) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51531
diff
changeset
|
1739 |
apply auto |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51531
diff
changeset
|
1740 |
done |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1741 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1742 |
lemma eventually_at_left_real: "a > (b :: real) \<Longrightarrow> eventually (\<lambda>x. x \<in> {b<..<a}) (at_left a)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1743 |
by (subst eventually_at, rule exI[of _ "a - b"]) (force simp: dist_real_def) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1744 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1745 |
lemma eventually_at_right_real: "a < (b :: real) \<Longrightarrow> eventually (\<lambda>x. x \<in> {a<..<b}) (at_right a)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1746 |
by (subst eventually_at, rule exI[of _ "b - a"]) (force simp: dist_real_def) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1747 |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1748 |
lemma metric_tendsto_imp_tendsto: |
63545 | 1749 |
fixes a :: "'a :: metric_space" |
1750 |
and b :: "'b :: metric_space" |
|
61973 | 1751 |
assumes f: "(f \<longlongrightarrow> a) F" |
63545 | 1752 |
and le: "eventually (\<lambda>x. dist (g x) b \<le> dist (f x) a) F" |
61973 | 1753 |
shows "(g \<longlongrightarrow> b) F" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1754 |
proof (rule tendstoI) |
63545 | 1755 |
fix e :: real |
1756 |
assume "0 < e" |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1757 |
with f have "eventually (\<lambda>x. dist (f x) a < e) F" by (rule tendstoD) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1758 |
with le show "eventually (\<lambda>x. dist (g x) b < e) F" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1759 |
using le_less_trans by (rule eventually_elim2) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1760 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1761 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1762 |
lemma filterlim_real_sequentially: "LIM x sequentially. real x :> at_top" |
63545 | 1763 |
apply (simp only: filterlim_at_top) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1764 |
apply (intro allI) |
61942 | 1765 |
apply (rule_tac c="nat \<lceil>Z + 1\<rceil>" in eventually_sequentiallyI) |
1766 |
apply linarith |
|
1767 |
done |
|
1768 |
||
63556 | 1769 |
lemma filterlim_nat_sequentially: "filterlim nat sequentially at_top" |
1770 |
unfolding filterlim_at_top |
|
1771 |
apply (rule allI) |
|
1772 |
subgoal for Z by (auto intro!: eventually_at_top_linorderI[where c="int Z"]) |
|
1773 |
done |
|
1774 |
||
1775 |
lemma filterlim_floor_sequentially: "filterlim floor at_top at_top" |
|
1776 |
unfolding filterlim_at_top |
|
1777 |
apply (rule allI) |
|
1778 |
subgoal for Z by (auto simp: le_floor_iff intro!: eventually_at_top_linorderI[where c="of_int Z"]) |
|
1779 |
done |
|
1780 |
||
1781 |
lemma filterlim_sequentially_iff_filterlim_real: |
|
1782 |
"filterlim f sequentially F \<longleftrightarrow> filterlim (\<lambda>x. real (f x)) at_top F" |
|
1783 |
apply (rule iffI) |
|
1784 |
subgoal using filterlim_compose filterlim_real_sequentially by blast |
|
1785 |
subgoal premises prems |
|
1786 |
proof - |
|
1787 |
have "filterlim (\<lambda>x. nat (floor (real (f x)))) sequentially F" |
|
1788 |
by (intro filterlim_compose[OF filterlim_nat_sequentially] |
|
1789 |
filterlim_compose[OF filterlim_floor_sequentially] prems) |
|
1790 |
then show ?thesis by simp |
|
1791 |
qed |
|
1792 |
done |
|
1793 |
||
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1794 |
|
60758 | 1795 |
subsubsection \<open>Limits of Sequences\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1796 |
|
63545 | 1797 |
lemma lim_sequentially: "X \<longlonglongrightarrow> L \<longleftrightarrow> (\<forall>r>0. \<exists>no. \<forall>n\<ge>no. dist (X n) L < r)" |
1798 |
for L :: "'a::metric_space" |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1799 |
unfolding tendsto_iff eventually_sequentially .. |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1800 |
|
60026
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
1801 |
lemmas LIMSEQ_def = lim_sequentially (*legacy binding*) |
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
paulson <lp15@cam.ac.uk>
parents:
60017
diff
changeset
|
1802 |
|
63545 | 1803 |
lemma LIMSEQ_iff_nz: "X \<longlonglongrightarrow> L \<longleftrightarrow> (\<forall>r>0. \<exists>no>0. \<forall>n\<ge>no. dist (X n) L < r)" |
1804 |
for L :: "'a::metric_space" |
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
1805 |
unfolding lim_sequentially by (metis Suc_leD zero_less_Suc) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1806 |
|
63545 | 1807 |
lemma metric_LIMSEQ_I: "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r) \<Longrightarrow> X \<longlonglongrightarrow> L" |
1808 |
for L :: "'a::metric_space" |
|
1809 |
by (simp add: lim_sequentially) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1810 |
|
63545 | 1811 |
lemma metric_LIMSEQ_D: "X \<longlonglongrightarrow> L \<Longrightarrow> 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r" |
1812 |
for L :: "'a::metric_space" |
|
1813 |
by (simp add: lim_sequentially) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1814 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1815 |
|
60758 | 1816 |
subsubsection \<open>Limits of Functions\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1817 |
|
63545 | 1818 |
lemma LIM_def: "f \<midarrow>a\<rightarrow> L \<longleftrightarrow> (\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> a \<and> dist x a < s \<longrightarrow> dist (f x) L < r)" |
1819 |
for a :: "'a::metric_space" and L :: "'b::metric_space" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51531
diff
changeset
|
1820 |
unfolding tendsto_iff eventually_at by simp |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1821 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1822 |
lemma metric_LIM_I: |
63545 | 1823 |
"(\<And>r. 0 < r \<Longrightarrow> \<exists>s>0. \<forall>x. x \<noteq> a \<and> dist x a < s \<longrightarrow> dist (f x) L < r) \<Longrightarrow> f \<midarrow>a\<rightarrow> L" |
1824 |
for a :: "'a::metric_space" and L :: "'b::metric_space" |
|
1825 |
by (simp add: LIM_def) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1826 |
|
63545 | 1827 |
lemma metric_LIM_D: "f \<midarrow>a\<rightarrow> L \<Longrightarrow> 0 < r \<Longrightarrow> \<exists>s>0. \<forall>x. x \<noteq> a \<and> dist x a < s \<longrightarrow> dist (f x) L < r" |
1828 |
for a :: "'a::metric_space" and L :: "'b::metric_space" |
|
1829 |
by (simp add: LIM_def) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1830 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1831 |
lemma metric_LIM_imp_LIM: |
63545 | 1832 |
fixes l :: "'a::metric_space" |
1833 |
and m :: "'b::metric_space" |
|
1834 |
assumes f: "f \<midarrow>a\<rightarrow> l" |
|
1835 |
and le: "\<And>x. x \<noteq> a \<Longrightarrow> dist (g x) m \<le> dist (f x) l" |
|
1836 |
shows "g \<midarrow>a\<rightarrow> m" |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1837 |
by (rule metric_tendsto_imp_tendsto [OF f]) (auto simp add: eventually_at_topological le) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1838 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1839 |
lemma metric_LIM_equal2: |
63545 | 1840 |
fixes a :: "'a::metric_space" |
1841 |
assumes "0 < R" |
|
1842 |
and "\<And>x. x \<noteq> a \<Longrightarrow> dist x a < R \<Longrightarrow> f x = g x" |
|
1843 |
shows "g \<midarrow>a\<rightarrow> l \<Longrightarrow> f \<midarrow>a\<rightarrow> l" |
|
1844 |
apply (rule topological_tendstoI) |
|
1845 |
apply (drule (2) topological_tendstoD) |
|
1846 |
apply (simp add: eventually_at) |
|
1847 |
apply safe |
|
1848 |
apply (rule_tac x="min d R" in exI) |
|
1849 |
apply safe |
|
1850 |
apply (simp add: assms(1)) |
|
1851 |
apply (simp add: assms(2)) |
|
1852 |
done |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1853 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1854 |
lemma metric_LIM_compose2: |
63545 | 1855 |
fixes a :: "'a::metric_space" |
1856 |
assumes f: "f \<midarrow>a\<rightarrow> b" |
|
1857 |
and g: "g \<midarrow>b\<rightarrow> c" |
|
1858 |
and inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> f x \<noteq> b" |
|
61976 | 1859 |
shows "(\<lambda>x. g (f x)) \<midarrow>a\<rightarrow> c" |
63545 | 1860 |
using inj by (intro tendsto_compose_eventually[OF g f]) (auto simp: eventually_at) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1861 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1862 |
lemma metric_isCont_LIM_compose2: |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1863 |
fixes f :: "'a :: metric_space \<Rightarrow> _" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1864 |
assumes f [unfolded isCont_def]: "isCont f a" |
63545 | 1865 |
and g: "g \<midarrow>f a\<rightarrow> l" |
1866 |
and inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> f x \<noteq> f a" |
|
61976 | 1867 |
shows "(\<lambda>x. g (f x)) \<midarrow>a\<rightarrow> l" |
63545 | 1868 |
by (rule metric_LIM_compose2 [OF f g inj]) |
1869 |
||
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1870 |
|
60758 | 1871 |
subsection \<open>Complete metric spaces\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1872 |
|
60758 | 1873 |
subsection \<open>Cauchy sequences\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1874 |
|
62101 | 1875 |
lemma (in metric_space) Cauchy_def: "Cauchy X = (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e)" |
1876 |
proof - |
|
63545 | 1877 |
have *: "eventually P (INF M. principal {(X m, X n) | n m. m \<ge> M \<and> n \<ge> M}) \<longleftrightarrow> |
62101 | 1878 |
(\<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. P (X m, X n))" for P |
63545 | 1879 |
apply (subst eventually_INF_base) |
1880 |
subgoal by simp |
|
1881 |
subgoal for a b |
|
62101 | 1882 |
by (intro bexI[of _ "max a b"]) (auto simp: eventually_principal subset_eq) |
63545 | 1883 |
subgoal by (auto simp: eventually_principal, blast) |
1884 |
done |
|
62101 | 1885 |
have "Cauchy X \<longleftrightarrow> (INF M. principal {(X m, X n) | n m. m \<ge> M \<and> n \<ge> M}) \<le> uniformity" |
1886 |
unfolding Cauchy_uniform_iff le_filter_def * .. |
|
1887 |
also have "\<dots> = (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e)" |
|
1888 |
unfolding uniformity_dist le_INF_iff by (auto simp: * le_principal) |
|
1889 |
finally show ?thesis . |
|
1890 |
qed |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1891 |
|
63545 | 1892 |
lemma (in metric_space) Cauchy_altdef: "Cauchy f \<longleftrightarrow> (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (f m) (f n) < e)" |
1893 |
(is "?lhs \<longleftrightarrow> ?rhs") |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1894 |
proof |
63545 | 1895 |
assume ?rhs |
1896 |
show ?lhs |
|
1897 |
unfolding Cauchy_def |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1898 |
proof (intro allI impI) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1899 |
fix e :: real assume e: "e > 0" |
63545 | 1900 |
with \<open>?rhs\<close> obtain M where M: "m \<ge> M \<Longrightarrow> n > m \<Longrightarrow> dist (f m) (f n) < e" for m n |
1901 |
by blast |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1902 |
have "dist (f m) (f n) < e" if "m \<ge> M" "n \<ge> M" for m n |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1903 |
using M[of m n] M[of n m] e that by (cases m n rule: linorder_cases) (auto simp: dist_commute) |
63545 | 1904 |
then show "\<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (f m) (f n) < e" |
1905 |
by blast |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1906 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1907 |
next |
63545 | 1908 |
assume ?lhs |
1909 |
show ?rhs |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1910 |
proof (intro allI impI) |
63545 | 1911 |
fix e :: real |
1912 |
assume e: "e > 0" |
|
61799 | 1913 |
with \<open>Cauchy f\<close> obtain M where "\<And>m n. m \<ge> M \<Longrightarrow> n \<ge> M \<Longrightarrow> dist (f m) (f n) < e" |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61609
diff
changeset
|
1914 |
unfolding Cauchy_def by blast |
63545 | 1915 |
then show "\<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (f m) (f n) < e" |
1916 |
by (intro exI[of _ M]) force |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1917 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1918 |
qed |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1919 |
|
62101 | 1920 |
lemma (in metric_space) metric_CauchyI: |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1921 |
"(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e) \<Longrightarrow> Cauchy X" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1922 |
by (simp add: Cauchy_def) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1923 |
|
63545 | 1924 |
lemma (in metric_space) CauchyI': |
1925 |
"(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n>m. dist (X m) (X n) < e) \<Longrightarrow> Cauchy X" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1926 |
unfolding Cauchy_altdef by blast |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
1927 |
|
62101 | 1928 |
lemma (in metric_space) metric_CauchyD: |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1929 |
"Cauchy X \<Longrightarrow> 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1930 |
by (simp add: Cauchy_def) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1931 |
|
62101 | 1932 |
lemma (in metric_space) metric_Cauchy_iff2: |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1933 |
"Cauchy X = (\<forall>j. (\<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. dist (X m) (X n) < inverse(real (Suc j))))" |
63545 | 1934 |
apply (simp add: Cauchy_def) |
1935 |
apply auto |
|
1936 |
apply (drule reals_Archimedean) |
|
1937 |
apply safe |
|
1938 |
apply (drule_tac x = n in spec) |
|
1939 |
apply auto |
|
1940 |
apply (rule_tac x = M in exI) |
|
1941 |
apply auto |
|
1942 |
apply (drule_tac x = m in spec) |
|
1943 |
apply simp |
|
1944 |
apply (drule_tac x = na in spec) |
|
1945 |
apply auto |
|
1946 |
done |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1947 |
|
63545 | 1948 |
lemma Cauchy_iff2: "Cauchy X \<longleftrightarrow> (\<forall>j. (\<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. \<bar>X m - X n\<bar> < inverse (real (Suc j))))" |
1949 |
by (simp only: metric_Cauchy_iff2 dist_real_def) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1950 |
|
62101 | 1951 |
lemma lim_1_over_n: "((\<lambda>n. 1 / of_nat n) \<longlongrightarrow> (0::'a::real_normed_field)) sequentially" |
1952 |
proof (subst lim_sequentially, intro allI impI exI) |
|
63545 | 1953 |
fix e :: real |
1954 |
assume e: "e > 0" |
|
1955 |
fix n :: nat |
|
1956 |
assume n: "n \<ge> nat \<lceil>inverse e + 1\<rceil>" |
|
62101 | 1957 |
have "inverse e < of_nat (nat \<lceil>inverse e + 1\<rceil>)" by linarith |
1958 |
also note n |
|
63545 | 1959 |
finally show "dist (1 / of_nat n :: 'a) 0 < e" |
1960 |
using e by (simp add: divide_simps mult.commute norm_divide) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1961 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
1962 |
|
62101 | 1963 |
lemma (in metric_space) complete_def: |
1964 |
shows "complete S = (\<forall>f. (\<forall>n. f n \<in> S) \<and> Cauchy f \<longrightarrow> (\<exists>l\<in>S. f \<longlonglongrightarrow> l))" |
|
1965 |
unfolding complete_uniform |
|
1966 |
proof safe |
|
63545 | 1967 |
fix f :: "nat \<Rightarrow> 'a" |
1968 |
assume f: "\<forall>n. f n \<in> S" "Cauchy f" |
|
62101 | 1969 |
and *: "\<forall>F\<le>principal S. F \<noteq> bot \<longrightarrow> cauchy_filter F \<longrightarrow> (\<exists>x\<in>S. F \<le> nhds x)" |
1970 |
then show "\<exists>l\<in>S. f \<longlonglongrightarrow> l" |
|
1971 |
unfolding filterlim_def using f |
|
1972 |
by (intro *[rule_format]) |
|
1973 |
(auto simp: filtermap_sequentually_ne_bot le_principal eventually_filtermap Cauchy_uniform) |
|
1974 |
next |
|
63545 | 1975 |
fix F :: "'a filter" |
1976 |
assume "F \<le> principal S" "F \<noteq> bot" "cauchy_filter F" |
|
62101 | 1977 |
assume seq: "\<forall>f. (\<forall>n. f n \<in> S) \<and> Cauchy f \<longrightarrow> (\<exists>l\<in>S. f \<longlonglongrightarrow> l)" |
1978 |
||
63545 | 1979 |
from \<open>F \<le> principal S\<close> \<open>cauchy_filter F\<close> |
1980 |
have FF_le: "F \<times>\<^sub>F F \<le> uniformity_on S" |
|
62101 | 1981 |
by (simp add: cauchy_filter_def principal_prod_principal[symmetric] prod_filter_mono) |
1982 |
||
1983 |
let ?P = "\<lambda>P e. eventually P F \<and> (\<forall>x. P x \<longrightarrow> x \<in> S) \<and> (\<forall>x y. P x \<longrightarrow> P y \<longrightarrow> dist x y < e)" |
|
63545 | 1984 |
have P: "\<exists>P. ?P P \<epsilon>" if "0 < \<epsilon>" for \<epsilon> :: real |
1985 |
proof - |
|
1986 |
from that have "eventually (\<lambda>(x, y). x \<in> S \<and> y \<in> S \<and> dist x y < \<epsilon>) (uniformity_on S)" |
|
1987 |
by (auto simp: eventually_inf_principal eventually_uniformity_metric) |
|
1988 |
from filter_leD[OF FF_le this] show ?thesis |
|
1989 |
by (auto simp: eventually_prod_same) |
|
1990 |
qed |
|
62101 | 1991 |
|
1992 |
have "\<exists>P. \<forall>n. ?P (P n) (1 / Suc n) \<and> P (Suc n) \<le> P n" |
|
1993 |
proof (rule dependent_nat_choice) |
|
1994 |
show "\<exists>P. ?P P (1 / Suc 0)" |
|
1995 |
using P[of 1] by auto |
|
1996 |
next |
|
1997 |
fix P n assume "?P P (1/Suc n)" |
|
1998 |
moreover obtain Q where "?P Q (1 / Suc (Suc n))" |
|
1999 |
using P[of "1/Suc (Suc n)"] by auto |
|
2000 |
ultimately show "\<exists>Q. ?P Q (1 / Suc (Suc n)) \<and> Q \<le> P" |
|
2001 |
by (intro exI[of _ "\<lambda>x. P x \<and> Q x"]) (auto simp: eventually_conj_iff) |
|
2002 |
qed |
|
63545 | 2003 |
then obtain P where P: "eventually (P n) F" "P n x \<Longrightarrow> x \<in> S" |
2004 |
"P n x \<Longrightarrow> P n y \<Longrightarrow> dist x y < 1 / Suc n" "P (Suc n) \<le> P n" |
|
2005 |
for n x y |
|
62101 | 2006 |
by metis |
2007 |
have "antimono P" |
|
2008 |
using P(4) unfolding decseq_Suc_iff le_fun_def by blast |
|
2009 |
||
63545 | 2010 |
obtain X where X: "P n (X n)" for n |
62101 | 2011 |
using P(1)[THEN eventually_happens'[OF \<open>F \<noteq> bot\<close>]] by metis |
2012 |
have "Cauchy X" |
|
2013 |
unfolding metric_Cauchy_iff2 inverse_eq_divide |
|
2014 |
proof (intro exI allI impI) |
|
63545 | 2015 |
fix j m n :: nat |
2016 |
assume "j \<le> m" "j \<le> n" |
|
62101 | 2017 |
with \<open>antimono P\<close> X have "P j (X m)" "P j (X n)" |
2018 |
by (auto simp: antimono_def) |
|
2019 |
then show "dist (X m) (X n) < 1 / Suc j" |
|
2020 |
by (rule P) |
|
2021 |
qed |
|
2022 |
moreover have "\<forall>n. X n \<in> S" |
|
2023 |
using P(2) X by auto |
|
2024 |
ultimately obtain x where "X \<longlonglongrightarrow> x" "x \<in> S" |
|
2025 |
using seq by blast |
|
2026 |
||
2027 |
show "\<exists>x\<in>S. F \<le> nhds x" |
|
2028 |
proof (rule bexI) |
|
63545 | 2029 |
have "eventually (\<lambda>y. dist y x < e) F" if "0 < e" for e :: real |
2030 |
proof - |
|
2031 |
from that have "(\<lambda>n. 1 / Suc n :: real) \<longlonglongrightarrow> 0 \<and> 0 < e / 2" |
|
62101 | 2032 |
by (subst LIMSEQ_Suc_iff) (auto intro!: lim_1_over_n) |
2033 |
then have "\<forall>\<^sub>F n in sequentially. dist (X n) x < e / 2 \<and> 1 / Suc n < e / 2" |
|
63545 | 2034 |
using \<open>X \<longlonglongrightarrow> x\<close> |
2035 |
unfolding tendsto_iff order_tendsto_iff[where 'a=real] eventually_conj_iff |
|
2036 |
by blast |
|
62101 | 2037 |
then obtain n where "dist x (X n) < e / 2" "1 / Suc n < e / 2" |
2038 |
by (auto simp: eventually_sequentially dist_commute) |
|
63545 | 2039 |
show ?thesis |
62101 | 2040 |
using \<open>eventually (P n) F\<close> |
2041 |
proof eventually_elim |
|
63545 | 2042 |
case (elim y) |
62101 | 2043 |
then have "dist y (X n) < 1 / Suc n" |
2044 |
by (intro X P) |
|
2045 |
also have "\<dots> < e / 2" by fact |
|
2046 |
finally show "dist y x < e" |
|
2047 |
by (rule dist_triangle_half_l) fact |
|
63545 | 2048 |
qed |
2049 |
qed |
|
62101 | 2050 |
then show "F \<le> nhds x" |
2051 |
unfolding nhds_metric le_INF_iff le_principal by auto |
|
2052 |
qed fact |
|
2053 |
qed |
|
2054 |
||
2055 |
lemma (in metric_space) totally_bounded_metric: |
|
2056 |
"totally_bounded S \<longleftrightarrow> (\<forall>e>0. \<exists>k. finite k \<and> S \<subseteq> (\<Union>x\<in>k. {y. dist x y < e}))" |
|
63545 | 2057 |
apply (simp only: totally_bounded_def eventually_uniformity_metric imp_ex) |
62101 | 2058 |
apply (subst all_comm) |
2059 |
apply (intro arg_cong[where f=All] ext) |
|
2060 |
apply safe |
|
2061 |
subgoal for e |
|
2062 |
apply (erule allE[of _ "\<lambda>(x, y). dist x y < e"]) |
|
2063 |
apply auto |
|
2064 |
done |
|
2065 |
subgoal for e P k |
|
2066 |
apply (intro exI[of _ k]) |
|
2067 |
apply (force simp: subset_eq) |
|
2068 |
done |
|
2069 |
done |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2070 |
|
63545 | 2071 |
|
60758 | 2072 |
subsubsection \<open>Cauchy Sequences are Convergent\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2073 |
|
62101 | 2074 |
(* TODO: update to uniform_space *) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2075 |
class complete_space = metric_space + |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2076 |
assumes Cauchy_convergent: "Cauchy X \<Longrightarrow> convergent X" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2077 |
|
63545 | 2078 |
lemma Cauchy_convergent_iff: "Cauchy X \<longleftrightarrow> convergent X" |
2079 |
for X :: "nat \<Rightarrow> 'a::complete_space" |
|
2080 |
by (blast intro: Cauchy_convergent convergent_Cauchy) |
|
2081 |
||
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2082 |
|
60758 | 2083 |
subsection \<open>The set of real numbers is a complete metric space\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2084 |
|
60758 | 2085 |
text \<open> |
63545 | 2086 |
Proof that Cauchy sequences converge based on the one from |
63680 | 2087 |
\<^url>\<open>http://pirate.shu.edu/~wachsmut/ira/numseq/proofs/cauconv.html\<close> |
60758 | 2088 |
\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2089 |
|
60758 | 2090 |
text \<open> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2091 |
If sequence @{term "X"} is Cauchy, then its limit is the lub of |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2092 |
@{term "{r::real. \<exists>N. \<forall>n\<ge>N. r < X n}"} |
60758 | 2093 |
\<close> |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2094 |
lemma increasing_LIMSEQ: |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2095 |
fixes f :: "nat \<Rightarrow> real" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2096 |
assumes inc: "\<And>n. f n \<le> f (Suc n)" |
63545 | 2097 |
and bdd: "\<And>n. f n \<le> l" |
2098 |
and en: "\<And>e. 0 < e \<Longrightarrow> \<exists>n. l \<le> f n + e" |
|
61969 | 2099 |
shows "f \<longlonglongrightarrow> l" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2100 |
proof (rule increasing_tendsto) |
63545 | 2101 |
fix x |
2102 |
assume "x < l" |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2103 |
with dense[of 0 "l - x"] obtain e where "0 < e" "e < l - x" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2104 |
by auto |
60758 | 2105 |
from en[OF \<open>0 < e\<close>] obtain n where "l - e \<le> f n" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2106 |
by (auto simp: field_simps) |
63545 | 2107 |
with \<open>e < l - x\<close> \<open>0 < e\<close> have "x < f n" |
2108 |
by simp |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2109 |
with incseq_SucI[of f, OF inc] show "eventually (\<lambda>n. x < f n) sequentially" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2110 |
by (auto simp: eventually_sequentially incseq_def intro: less_le_trans) |
63545 | 2111 |
qed (use bdd in auto) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2112 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2113 |
lemma real_Cauchy_convergent: |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2114 |
fixes X :: "nat \<Rightarrow> real" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2115 |
assumes X: "Cauchy X" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2116 |
shows "convergent X" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2117 |
proof - |
63040 | 2118 |
define S :: "real set" where "S = {x. \<exists>N. \<forall>n\<ge>N. x < X n}" |
63545 | 2119 |
then have mem_S: "\<And>N x. \<forall>n\<ge>N. x < X n \<Longrightarrow> x \<in> S" |
2120 |
by auto |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2121 |
|
63545 | 2122 |
have bound_isUb: "y \<le> x" if N: "\<forall>n\<ge>N. X n < x" and "y \<in> S" for N and x y :: real |
2123 |
proof - |
|
2124 |
from that have "\<exists>M. \<forall>n\<ge>M. y < X n" |
|
2125 |
by (simp add: S_def) |
|
2126 |
then obtain M where "\<forall>n\<ge>M. y < X n" .. |
|
2127 |
then have "y < X (max M N)" by simp |
|
2128 |
also have "\<dots> < x" using N by simp |
|
2129 |
finally show ?thesis by (rule order_less_imp_le) |
|
2130 |
qed |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2131 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2132 |
obtain N where "\<forall>m\<ge>N. \<forall>n\<ge>N. dist (X m) (X n) < 1" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2133 |
using X[THEN metric_CauchyD, OF zero_less_one] by auto |
63545 | 2134 |
then have N: "\<forall>n\<ge>N. dist (X n) (X N) < 1" by simp |
54263
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents:
54230
diff
changeset
|
2135 |
have [simp]: "S \<noteq> {}" |
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents:
54230
diff
changeset
|
2136 |
proof (intro exI ex_in_conv[THEN iffD1]) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2137 |
from N have "\<forall>n\<ge>N. X N - 1 < X n" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2138 |
by (simp add: abs_diff_less_iff dist_real_def) |
63545 | 2139 |
then show "X N - 1 \<in> S" by (rule mem_S) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2140 |
qed |
54263
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents:
54230
diff
changeset
|
2141 |
have [simp]: "bdd_above S" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2142 |
proof |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2143 |
from N have "\<forall>n\<ge>N. X n < X N + 1" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2144 |
by (simp add: abs_diff_less_iff dist_real_def) |
63545 | 2145 |
then show "\<And>s. s \<in> S \<Longrightarrow> s \<le> X N + 1" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2146 |
by (rule bound_isUb) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2147 |
qed |
61969 | 2148 |
have "X \<longlonglongrightarrow> Sup S" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2149 |
proof (rule metric_LIMSEQ_I) |
63545 | 2150 |
fix r :: real |
2151 |
assume "0 < r" |
|
2152 |
then have r: "0 < r/2" by simp |
|
2153 |
obtain N where "\<forall>n\<ge>N. \<forall>m\<ge>N. dist (X n) (X m) < r/2" |
|
2154 |
using metric_CauchyD [OF X r] by auto |
|
2155 |
then have "\<forall>n\<ge>N. dist (X n) (X N) < r/2" by simp |
|
2156 |
then have N: "\<forall>n\<ge>N. X N - r/2 < X n \<and> X n < X N + r/2" |
|
2157 |
by (simp only: dist_real_def abs_diff_less_iff) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2158 |
|
63545 | 2159 |
from N have "\<forall>n\<ge>N. X N - r/2 < X n" by blast |
2160 |
then have "X N - r/2 \<in> S" by (rule mem_S) |
|
2161 |
then have 1: "X N - r/2 \<le> Sup S" by (simp add: cSup_upper) |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2162 |
|
63545 | 2163 |
from N have "\<forall>n\<ge>N. X n < X N + r/2" by blast |
2164 |
from bound_isUb[OF this] |
|
2165 |
have 2: "Sup S \<le> X N + r/2" |
|
2166 |
by (intro cSup_least) simp_all |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2167 |
|
63545 | 2168 |
show "\<exists>N. \<forall>n\<ge>N. dist (X n) (Sup S) < r" |
2169 |
proof (intro exI allI impI) |
|
2170 |
fix n |
|
2171 |
assume n: "N \<le> n" |
|
2172 |
from N n have "X n < X N + r/2" and "X N - r/2 < X n" |
|
2173 |
by simp_all |
|
2174 |
then show "dist (X n) (Sup S) < r" using 1 2 |
|
2175 |
by (simp add: abs_diff_less_iff dist_real_def) |
|
2176 |
qed |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2177 |
qed |
63545 | 2178 |
then show ?thesis by (auto simp: convergent_def) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2179 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2180 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2181 |
instance real :: complete_space |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2182 |
by intro_classes (rule real_Cauchy_convergent) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2183 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2184 |
class banach = real_normed_vector + complete_space |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2185 |
|
61169 | 2186 |
instance real :: banach .. |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2187 |
|
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2188 |
lemma tendsto_at_topI_sequentially: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
2189 |
fixes f :: "real \<Rightarrow> 'b::first_countable_topology" |
61969 | 2190 |
assumes *: "\<And>X. filterlim X at_top sequentially \<Longrightarrow> (\<lambda>n. f (X n)) \<longlonglongrightarrow> y" |
61973 | 2191 |
shows "(f \<longlongrightarrow> y) at_top" |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2192 |
proof - |
63545 | 2193 |
obtain A where A: "decseq A" "open (A n)" "y \<in> A n" "nhds y = (INF n. principal (A n))" for n |
2194 |
by (rule nhds_countable[of y]) (rule that) |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
2195 |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2196 |
have "\<forall>m. \<exists>k. \<forall>x\<ge>k. f x \<in> A m" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2197 |
proof (rule ccontr) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2198 |
assume "\<not> (\<forall>m. \<exists>k. \<forall>x\<ge>k. f x \<in> A m)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2199 |
then obtain m where "\<And>k. \<exists>x\<ge>k. f x \<notin> A m" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2200 |
by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2201 |
then have "\<exists>X. \<forall>n. (f (X n) \<notin> A m) \<and> max n (X n) + 1 \<le> X (Suc n)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2202 |
by (intro dependent_nat_choice) (auto simp del: max.bounded_iff) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2203 |
then obtain X where X: "\<And>n. f (X n) \<notin> A m" "\<And>n. max n (X n) + 1 \<le> X (Suc n)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2204 |
by auto |
63545 | 2205 |
have "1 \<le> n \<Longrightarrow> real n \<le> X n" for n |
2206 |
using X[of "n - 1"] by auto |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2207 |
then have "filterlim X at_top sequentially" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2208 |
by (force intro!: filterlim_at_top_mono[OF filterlim_real_sequentially] |
63545 | 2209 |
simp: eventually_sequentially) |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2210 |
from topological_tendstoD[OF *[OF this] A(2, 3), of m] X(1) show False |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2211 |
by auto |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
2212 |
qed |
63545 | 2213 |
then obtain k where "k m \<le> x \<Longrightarrow> f x \<in> A m" for m x |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2214 |
by metis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57418
diff
changeset
|
2215 |
then show ?thesis |
63545 | 2216 |
unfolding at_top_def A by (intro filterlim_base[where i=k]) auto |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
2217 |
qed |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
2218 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
56889
diff
changeset
|
2219 |
lemma tendsto_at_topI_sequentially_real: |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2220 |
fixes f :: "real \<Rightarrow> real" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2221 |
assumes mono: "mono f" |
63545 | 2222 |
and limseq: "(\<lambda>n. f (real n)) \<longlonglongrightarrow> y" |
61973 | 2223 |
shows "(f \<longlongrightarrow> y) at_top" |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2224 |
proof (rule tendstoI) |
63545 | 2225 |
fix e :: real |
2226 |
assume "0 < e" |
|
2227 |
with limseq obtain N :: nat where N: "N \<le> n \<Longrightarrow> \<bar>f (real n) - y\<bar> < e" for n |
|
60017
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents:
59867
diff
changeset
|
2228 |
by (auto simp: lim_sequentially dist_real_def) |
63545 | 2229 |
have le: "f x \<le> y" for x :: real |
2230 |
proof - |
|
53381 | 2231 |
obtain n where "x \<le> real_of_nat n" |
62623
dbc62f86a1a9
rationalisation of theorem names esp about "real Archimedian" etc.
paulson <lp15@cam.ac.uk>
parents:
62533
diff
changeset
|
2232 |
using real_arch_simple[of x] .. |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2233 |
note monoD[OF mono this] |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2234 |
also have "f (real_of_nat n) \<le> y" |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61609
diff
changeset
|
2235 |
by (rule LIMSEQ_le_const[OF limseq]) (auto intro!: exI[of _ n] monoD[OF mono]) |
63545 | 2236 |
finally show ?thesis . |
2237 |
qed |
|
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2238 |
have "eventually (\<lambda>x. real N \<le> x) at_top" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2239 |
by (rule eventually_ge_at_top) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2240 |
then show "eventually (\<lambda>x. dist (f x) y < e) at_top" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2241 |
proof eventually_elim |
63545 | 2242 |
case (elim x) |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2243 |
with N[of N] le have "y - f (real N) < e" by auto |
63545 | 2244 |
moreover note monoD[OF mono elim] |
51531
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2245 |
ultimately show "dist (f x) y < e" |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2246 |
using le[of x] by (auto simp: dist_real_def field_simps) |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2247 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2248 |
qed |
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
hoelzl
parents:
51524
diff
changeset
|
2249 |
|
20504
6342e872e71d
formalization of vector spaces and algebras over the real numbers
huffman
parents:
diff
changeset
|
2250 |
end |