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