| author | wenzelm | 
| Sat, 30 May 2015 21:28:01 +0200 | |
| changeset 60314 | 6e465f0d46d3 | 
| parent 60307 | 75e1aa7a450e | 
| child 60758 | d8d85a8172b5 | 
| 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: 
27515diff
changeset | 2 | Author: Brian Huffman | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
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 | |
| 58889 | 6 | section {* Vector Spaces and Algebras over the Reals *}
 | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 7 | |
| 51524 | 8 | theory Real_Vector_Spaces | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 9 | imports Real Topological_Spaces | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 10 | begin | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 11 | |
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 12 | subsection {* Locale for additive functions *}
 | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 13 | |
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 14 | locale additive = | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 15 | fixes f :: "'a::ab_group_add \<Rightarrow> 'b::ab_group_add" | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 16 | assumes add: "f (x + y) = f x + f y" | 
| 27443 | 17 | begin | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 18 | |
| 27443 | 19 | lemma zero: "f 0 = 0" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 20 | proof - | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 21 | have "f 0 = f (0 + 0)" by simp | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 22 | also have "\<dots> = f 0 + f 0" by (rule add) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 23 | finally show "f 0 = 0" by simp | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 24 | qed | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 25 | |
| 27443 | 26 | lemma minus: "f (- x) = - f x" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 27 | proof - | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 28 | have "f (- x) + f x = f (- x + x)" by (rule add [symmetric]) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 29 | also have "\<dots> = - f x + f x" by (simp add: zero) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 30 | finally show "f (- x) = - f x" by (rule add_right_imp_eq) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 31 | qed | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 32 | |
| 27443 | 33 | lemma diff: "f (x - y) = f x - f y" | 
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
53600diff
changeset | 34 | using add [of x "- y"] by (simp add: minus) | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 35 | |
| 27443 | 36 | lemma setsum: "f (setsum g A) = (\<Sum>x\<in>A. f (g x))" | 
| 22942 | 37 | apply (cases "finite A") | 
| 38 | apply (induct set: finite) | |
| 39 | apply (simp add: zero) | |
| 40 | apply (simp add: add) | |
| 41 | apply (simp add: zero) | |
| 42 | done | |
| 43 | ||
| 27443 | 44 | end | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 45 | |
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 46 | subsection {* Vector spaces *}
 | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 47 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 48 | locale vector_space = | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 49 | fixes scale :: "'a::field \<Rightarrow> 'b::ab_group_add \<Rightarrow> 'b" | 
| 30070 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 50 | assumes scale_right_distrib [algebra_simps]: | 
| 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 51 | "scale a (x + y) = scale a x + scale a y" | 
| 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 52 | and scale_left_distrib [algebra_simps]: | 
| 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 53 | "scale (a + b) x = scale a x + scale b x" | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 54 | and scale_scale [simp]: "scale a (scale b x) = scale (a * b) x" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 55 | and scale_one [simp]: "scale 1 x = x" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 56 | begin | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 57 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 58 | lemma scale_left_commute: | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 59 | "scale a (scale b x) = scale b (scale a x)" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57448diff
changeset | 60 | by (simp add: mult.commute) | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 61 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 62 | lemma scale_zero_left [simp]: "scale 0 x = 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 63 | and scale_minus_left [simp]: "scale (- a) x = - (scale a x)" | 
| 30070 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 64 | and scale_left_diff_distrib [algebra_simps]: | 
| 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 65 | "scale (a - b) x = scale a x - scale b x" | 
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 66 | and scale_setsum_left: "scale (setsum f A) x = (\<Sum>a\<in>A. scale (f a) x)" | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 67 | proof - | 
| 29229 | 68 | interpret s: additive "\<lambda>a. scale a x" | 
| 28823 | 69 | proof qed (rule scale_left_distrib) | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 70 | show "scale 0 x = 0" by (rule s.zero) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 71 | show "scale (- a) x = - (scale a x)" by (rule s.minus) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 72 | show "scale (a - b) x = scale a x - scale b x" by (rule s.diff) | 
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 73 | show "scale (setsum f A) x = (\<Sum>a\<in>A. scale (f a) x)" by (rule s.setsum) | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 74 | qed | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 75 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 76 | lemma scale_zero_right [simp]: "scale a 0 = 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 77 | and scale_minus_right [simp]: "scale a (- x) = - (scale a x)" | 
| 30070 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 78 | and scale_right_diff_distrib [algebra_simps]: | 
| 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 79 | "scale a (x - y) = scale a x - scale a y" | 
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 80 | and scale_setsum_right: "scale a (setsum f A) = (\<Sum>x\<in>A. scale a (f x))" | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 81 | proof - | 
| 29229 | 82 | interpret s: additive "\<lambda>x. scale a x" | 
| 28823 | 83 | proof qed (rule scale_right_distrib) | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 84 | show "scale a 0 = 0" by (rule s.zero) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 85 | show "scale a (- x) = - (scale a x)" by (rule s.minus) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 86 | show "scale a (x - y) = scale a x - scale a y" by (rule s.diff) | 
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 87 | show "scale a (setsum f A) = (\<Sum>x\<in>A. scale a (f x))" by (rule s.setsum) | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 88 | qed | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 89 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 90 | lemma scale_eq_0_iff [simp]: | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 91 | "scale a x = 0 \<longleftrightarrow> a = 0 \<or> x = 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 92 | proof cases | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 93 | assume "a = 0" thus ?thesis by simp | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 94 | next | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 95 | assume anz [simp]: "a \<noteq> 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 96 |   { assume "scale a x = 0"
 | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 97 | hence "scale (inverse a) (scale a x) = 0" by simp | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 98 | hence "x = 0" by simp } | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 99 | thus ?thesis by force | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 100 | qed | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 101 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 102 | lemma scale_left_imp_eq: | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 103 | "\<lbrakk>a \<noteq> 0; scale a x = scale a y\<rbrakk> \<Longrightarrow> x = y" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 104 | proof - | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 105 | assume nonzero: "a \<noteq> 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 106 | assume "scale a x = scale a y" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 107 | hence "scale a (x - y) = 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 108 | by (simp add: scale_right_diff_distrib) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 109 | hence "x - y = 0" by (simp add: nonzero) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 110 | thus "x = y" by (simp only: right_minus_eq) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 111 | qed | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 112 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 113 | lemma scale_right_imp_eq: | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 114 | "\<lbrakk>x \<noteq> 0; scale a x = scale b x\<rbrakk> \<Longrightarrow> a = b" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 115 | proof - | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 116 | assume nonzero: "x \<noteq> 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 117 | assume "scale a x = scale b x" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 118 | hence "scale (a - b) x = 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 119 | by (simp add: scale_left_diff_distrib) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 120 | hence "a - b = 0" by (simp add: nonzero) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 121 | thus "a = b" by (simp only: right_minus_eq) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 122 | qed | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 123 | |
| 31586 
d4707b99e631
declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
 huffman parents: 
31567diff
changeset | 124 | lemma scale_cancel_left [simp]: | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 125 | "scale a x = scale a y \<longleftrightarrow> x = y \<or> a = 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 126 | by (auto intro: scale_left_imp_eq) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 127 | |
| 31586 
d4707b99e631
declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
 huffman parents: 
31567diff
changeset | 128 | lemma scale_cancel_right [simp]: | 
| 28029 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 129 | "scale a x = scale b x \<longleftrightarrow> a = b \<or> x = 0" | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 130 | by (auto intro: scale_right_imp_eq) | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 131 | |
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 132 | end | 
| 
4c55cdec4ce7
simplify definition of vector_space locale (use axclasses instead of inheriting from field and ab_group_add classes)
 huffman parents: 
28009diff
changeset | 133 | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 134 | subsection {* Real vector spaces *}
 | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 135 | |
| 29608 | 136 | class scaleR = | 
| 25062 | 137 | fixes scaleR :: "real \<Rightarrow> 'a \<Rightarrow> 'a" (infixr "*\<^sub>R" 75) | 
| 24748 | 138 | begin | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 139 | |
| 20763 | 140 | abbreviation | 
| 25062 | 141 | divideR :: "'a \<Rightarrow> real \<Rightarrow> 'a" (infixl "'/\<^sub>R" 70) | 
| 24748 | 142 | where | 
| 25062 | 143 | "x /\<^sub>R r == scaleR (inverse r) x" | 
| 24748 | 144 | |
| 145 | end | |
| 146 | ||
| 24588 | 147 | class real_vector = scaleR + ab_group_add + | 
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 148 | 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: 
44127diff
changeset | 149 | 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: 
30069diff
changeset | 150 | and scaleR_scaleR: "scaleR a (scaleR b x) = scaleR (a * b) x" | 
| 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 151 | and scaleR_one: "scaleR 1 x = x" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 152 | |
| 30729 
461ee3e49ad3
interpretation/interpret: prefixes are mandatory by default;
 wenzelm parents: 
30273diff
changeset | 153 | interpretation real_vector: | 
| 29229 | 154 | vector_space "scaleR :: real \<Rightarrow> 'a \<Rightarrow> 'a::real_vector" | 
| 28009 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 155 | apply unfold_locales | 
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 156 | apply (rule scaleR_add_right) | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 157 | apply (rule scaleR_add_left) | 
| 28009 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 158 | apply (rule scaleR_scaleR) | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 159 | apply (rule scaleR_one) | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 160 | done | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 161 | |
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 162 | text {* Recover original theorem names *}
 | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 163 | |
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 164 | lemmas scaleR_left_commute = real_vector.scale_left_commute | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 165 | lemmas scaleR_zero_left = real_vector.scale_zero_left | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 166 | 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: 
44127diff
changeset | 167 | lemmas scaleR_diff_left = real_vector.scale_left_diff_distrib | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 168 | lemmas scaleR_setsum_left = real_vector.scale_setsum_left | 
| 28009 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 169 | lemmas scaleR_zero_right = real_vector.scale_zero_right | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 170 | 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: 
44127diff
changeset | 171 | lemmas scaleR_diff_right = real_vector.scale_right_diff_distrib | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 172 | lemmas scaleR_setsum_right = real_vector.scale_setsum_right | 
| 28009 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 173 | 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: 
27553diff
changeset | 174 | 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: 
27553diff
changeset | 175 | 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: 
27553diff
changeset | 176 | lemmas scaleR_cancel_left = real_vector.scale_cancel_left | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 177 | lemmas scaleR_cancel_right = real_vector.scale_cancel_right | 
| 
e93b121074fb
move real_vector class proofs into vector_space and group_hom locales
 huffman parents: 
27553diff
changeset | 178 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 179 | text {* Legacy names *}
 | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 180 | |
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 181 | lemmas scaleR_left_distrib = scaleR_add_left | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 182 | lemmas scaleR_right_distrib = scaleR_add_right | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 183 | lemmas scaleR_left_diff_distrib = scaleR_diff_left | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 184 | lemmas scaleR_right_diff_distrib = scaleR_diff_right | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 185 | |
| 31285 
0a3f9ee4117c
generalize dist function to class real_normed_vector
 huffman parents: 
31017diff
changeset | 186 | lemma scaleR_minus1_left [simp]: | 
| 
0a3f9ee4117c
generalize dist function to class real_normed_vector
 huffman parents: 
31017diff
changeset | 187 | fixes x :: "'a::real_vector" | 
| 
0a3f9ee4117c
generalize dist function to class real_normed_vector
 huffman parents: 
31017diff
changeset | 188 | shows "scaleR (-1) x = - x" | 
| 
0a3f9ee4117c
generalize dist function to class real_normed_vector
 huffman parents: 
31017diff
changeset | 189 | using scaleR_minus_left [of 1 x] by simp | 
| 
0a3f9ee4117c
generalize dist function to class real_normed_vector
 huffman parents: 
31017diff
changeset | 190 | |
| 24588 | 191 | class real_algebra = real_vector + ring + | 
| 25062 | 192 | assumes mult_scaleR_left [simp]: "scaleR a x * y = scaleR a (x * y)" | 
| 193 | and mult_scaleR_right [simp]: "x * scaleR a y = scaleR a (x * y)" | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 194 | |
| 24588 | 195 | class real_algebra_1 = real_algebra + ring_1 | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 196 | |
| 24588 | 197 | class real_div_algebra = real_algebra_1 + division_ring | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 198 | |
| 24588 | 199 | class real_field = real_div_algebra + field | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 200 | |
| 30069 | 201 | instantiation real :: real_field | 
| 202 | begin | |
| 203 | ||
| 204 | definition | |
| 205 | real_scaleR_def [simp]: "scaleR a x = a * x" | |
| 206 | ||
| 30070 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 207 | instance proof | 
| 
76cee7c62782
declare scaleR distrib rules [algebra_simps]; cleaned up
 huffman parents: 
30069diff
changeset | 208 | qed (simp_all add: algebra_simps) | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 209 | |
| 30069 | 210 | end | 
| 211 | ||
| 30729 
461ee3e49ad3
interpretation/interpret: prefixes are mandatory by default;
 wenzelm parents: 
30273diff
changeset | 212 | interpretation scaleR_left: additive "(\<lambda>a. scaleR a x::'a::real_vector)" | 
| 28823 | 213 | proof qed (rule scaleR_left_distrib) | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 214 | |
| 30729 
461ee3e49ad3
interpretation/interpret: prefixes are mandatory by default;
 wenzelm parents: 
30273diff
changeset | 215 | interpretation scaleR_right: additive "(\<lambda>x. scaleR a x::'a::real_vector)" | 
| 28823 | 216 | proof qed (rule scaleR_right_distrib) | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 217 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 218 | lemma nonzero_inverse_scaleR_distrib: | 
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 219 | fixes x :: "'a::real_div_algebra" shows | 
| 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 220 | "\<lbrakk>a \<noteq> 0; x \<noteq> 0\<rbrakk> \<Longrightarrow> inverse (scaleR a x) = scaleR (inverse a) (inverse x)" | 
| 20763 | 221 | by (rule inverse_unique, simp) | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 222 | |
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 223 | lemma inverse_scaleR_distrib: | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 224 |   fixes x :: "'a::{real_div_algebra, division_ring}"
 | 
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 225 | shows "inverse (scaleR a x) = scaleR (inverse a) (inverse x)" | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 226 | apply (case_tac "a = 0", simp) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 227 | apply (case_tac "x = 0", simp) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 228 | apply (erule (1) nonzero_inverse_scaleR_distrib) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 229 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 230 | |
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 231 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 232 | subsection {* Embedding of the Reals into any @{text real_algebra_1}:
 | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 233 | @{term of_real} *}
 | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 234 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 235 | definition | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21210diff
changeset | 236 | of_real :: "real \<Rightarrow> 'a::real_algebra_1" where | 
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 237 | "of_real r = scaleR r 1" | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 238 | |
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 239 | lemma scaleR_conv_of_real: "scaleR r x = of_real r * x" | 
| 20763 | 240 | by (simp add: of_real_def) | 
| 241 | ||
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 242 | lemma of_real_0 [simp]: "of_real 0 = 0" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 243 | by (simp add: of_real_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 244 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 245 | lemma of_real_1 [simp]: "of_real 1 = 1" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 246 | by (simp add: of_real_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 247 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 248 | lemma of_real_add [simp]: "of_real (x + y) = of_real x + of_real y" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 249 | by (simp add: of_real_def scaleR_left_distrib) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 250 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 251 | lemma of_real_minus [simp]: "of_real (- x) = - of_real x" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 252 | by (simp add: of_real_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 253 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 254 | lemma of_real_diff [simp]: "of_real (x - y) = of_real x - of_real y" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 255 | by (simp add: of_real_def scaleR_left_diff_distrib) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 256 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 257 | lemma of_real_mult [simp]: "of_real (x * y) = of_real x * of_real y" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57448diff
changeset | 258 | by (simp add: of_real_def mult.commute) | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 259 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 260 | lemma of_real_setsum[simp]: "of_real (setsum f s) = (\<Sum>x\<in>s. of_real (f x))" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 261 | 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: 
56479diff
changeset | 262 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 263 | lemma of_real_setprod[simp]: "of_real (setprod f s) = (\<Prod>x\<in>s. of_real (f x))" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 264 | 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: 
56479diff
changeset | 265 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 266 | lemma nonzero_of_real_inverse: | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 267 | "x \<noteq> 0 \<Longrightarrow> of_real (inverse x) = | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 268 | inverse (of_real x :: 'a::real_div_algebra)" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 269 | by (simp add: of_real_def nonzero_inverse_scaleR_distrib) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 270 | |
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 271 | lemma of_real_inverse [simp]: | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 272 | "of_real (inverse x) = | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 273 |    inverse (of_real x :: 'a::{real_div_algebra, division_ring})"
 | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 274 | by (simp add: of_real_def inverse_scaleR_distrib) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 275 | |
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 276 | lemma nonzero_of_real_divide: | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 277 | "y \<noteq> 0 \<Longrightarrow> of_real (x / y) = | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 278 | (of_real x / of_real y :: 'a::real_field)" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 279 | by (simp add: divide_inverse nonzero_of_real_inverse) | 
| 20722 | 280 | |
| 281 | lemma of_real_divide [simp]: | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 282 | "of_real (x / y) = | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 283 |    (of_real x / of_real y :: 'a::{real_field, field})"
 | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 284 | by (simp add: divide_inverse) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 285 | |
| 20722 | 286 | lemma of_real_power [simp]: | 
| 31017 | 287 |   "of_real (x ^ n) = (of_real x :: 'a::{real_algebra_1}) ^ n"
 | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30242diff
changeset | 288 | by (induct n) simp_all | 
| 20722 | 289 | |
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 290 | lemma of_real_eq_iff [simp]: "(of_real x = of_real y) = (x = y)" | 
| 35216 | 291 | by (simp add: of_real_def) | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 292 | |
| 38621 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 haftmann parents: 
37887diff
changeset | 293 | lemma inj_of_real: | 
| 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 haftmann parents: 
37887diff
changeset | 294 | "inj of_real" | 
| 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 haftmann parents: 
37887diff
changeset | 295 | by (auto intro: injI) | 
| 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 haftmann parents: 
37887diff
changeset | 296 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 297 | lemmas of_real_eq_0_iff [simp] = of_real_eq_iff [of _ 0, simplified] | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 298 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 299 | lemma of_real_eq_id [simp]: "of_real = (id :: real \<Rightarrow> real)" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 300 | proof | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 301 | fix r | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 302 | show "of_real r = id r" | 
| 22973 
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
 huffman parents: 
22972diff
changeset | 303 | by (simp add: of_real_def) | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 304 | qed | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 305 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 306 | text{*Collapse nested embeddings*}
 | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 307 | lemma of_real_of_nat_eq [simp]: "of_real (of_nat n) = of_nat n" | 
| 20772 | 308 | by (induct n) auto | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 309 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 310 | lemma of_real_of_int_eq [simp]: "of_real (of_int z) = of_int z" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 311 | by (cases z rule: int_diff_cases, simp) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 312 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 313 | lemma of_real_real_of_nat_eq [simp]: "of_real (real n) = of_nat n" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 314 | by (simp add: real_of_nat_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 315 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 316 | lemma of_real_real_of_int_eq [simp]: "of_real (real z) = of_int z" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 317 | by (simp add: real_of_int_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 318 | |
| 60155 
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
 paulson <lp15@cam.ac.uk> parents: 
60026diff
changeset | 319 | lemma of_real_numeral [simp]: "of_real (numeral w) = numeral w" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 320 | using of_real_of_int_eq [of "numeral w"] by simp | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 321 | |
| 60155 
91477b3a2d6b
Tidying. Improved simplification for numerals, esp in exponents.
 paulson <lp15@cam.ac.uk> parents: 
60026diff
changeset | 322 | lemma of_real_neg_numeral [simp]: "of_real (- numeral w) = - numeral w" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54263diff
changeset | 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: 
20551diff
changeset | 324 | |
| 22912 | 325 | text{*Every real algebra has characteristic zero*}
 | 
| 38621 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 haftmann parents: 
37887diff
changeset | 326 | |
| 22912 | 327 | instance real_algebra_1 < ring_char_0 | 
| 328 | proof | |
| 38621 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 haftmann parents: 
37887diff
changeset | 329 | from inj_of_real inj_of_nat have "inj (of_real \<circ> of_nat)" by (rule inj_comp) | 
| 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 haftmann parents: 
37887diff
changeset | 330 | then show "inj (of_nat :: nat \<Rightarrow> 'a)" by (simp add: comp_def) | 
| 22912 | 331 | qed | 
| 332 | ||
| 27553 | 333 | instance real_field < field_char_0 .. | 
| 334 | ||
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 335 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 336 | subsection {* The Set of Real Numbers *}
 | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 337 | |
| 37767 | 338 | definition Reals :: "'a::real_algebra_1 set" where | 
| 339 | "Reals = range of_real" | |
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 340 | |
| 21210 | 341 | notation (xsymbols) | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 342 |   Reals  ("\<real>")
 | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 343 | |
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 344 | lemma Reals_of_real [simp]: "of_real r \<in> Reals" | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 345 | by (simp add: Reals_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 346 | |
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 347 | lemma Reals_of_int [simp]: "of_int z \<in> Reals" | 
| 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 348 | by (subst of_real_of_int_eq [symmetric], rule Reals_of_real) | 
| 20718 | 349 | |
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 350 | lemma Reals_of_nat [simp]: "of_nat n \<in> Reals" | 
| 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 351 | by (subst of_real_of_nat_eq [symmetric], rule Reals_of_real) | 
| 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 352 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 353 | lemma Reals_numeral [simp]: "numeral w \<in> Reals" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 354 | by (subst of_real_numeral [symmetric], rule Reals_of_real) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 355 | |
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 356 | lemma Reals_0 [simp]: "0 \<in> Reals" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 357 | apply (unfold Reals_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 358 | apply (rule range_eqI) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 359 | apply (rule of_real_0 [symmetric]) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 360 | done | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 361 | |
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 362 | lemma Reals_1 [simp]: "1 \<in> Reals" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 363 | apply (unfold Reals_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 364 | apply (rule range_eqI) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 365 | apply (rule of_real_1 [symmetric]) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 366 | done | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 367 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 368 | lemma Reals_add [simp]: "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a + b \<in> Reals" | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 369 | apply (auto simp add: Reals_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 370 | apply (rule range_eqI) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 371 | apply (rule of_real_add [symmetric]) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 372 | done | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 373 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 374 | lemma Reals_minus [simp]: "a \<in> Reals \<Longrightarrow> - a \<in> Reals" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 375 | apply (auto simp add: Reals_def) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 376 | apply (rule range_eqI) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 377 | apply (rule of_real_minus [symmetric]) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 378 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 379 | |
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 380 | lemma Reals_diff [simp]: "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a - b \<in> Reals" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 381 | apply (auto simp add: Reals_def) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 382 | apply (rule range_eqI) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 383 | apply (rule of_real_diff [symmetric]) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 384 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 385 | |
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 386 | lemma Reals_mult [simp]: "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a * b \<in> Reals" | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 387 | apply (auto simp add: Reals_def) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 388 | apply (rule range_eqI) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 389 | apply (rule of_real_mult [symmetric]) | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 390 | done | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 391 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 392 | lemma nonzero_Reals_inverse: | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 393 | fixes a :: "'a::real_div_algebra" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 394 | shows "\<lbrakk>a \<in> Reals; a \<noteq> 0\<rbrakk> \<Longrightarrow> inverse a \<in> Reals" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 395 | apply (auto simp add: Reals_def) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 396 | apply (rule range_eqI) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 397 | apply (erule nonzero_of_real_inverse [symmetric]) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 398 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 399 | |
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 400 | lemma Reals_inverse: | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 401 |   fixes a :: "'a::{real_div_algebra, division_ring}"
 | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 402 | shows "a \<in> Reals \<Longrightarrow> inverse a \<in> Reals" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 403 | apply (auto simp add: Reals_def) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 404 | apply (rule range_eqI) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 405 | apply (rule of_real_inverse [symmetric]) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 406 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 407 | |
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 408 | lemma Reals_inverse_iff [simp]: | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 409 |   fixes x:: "'a :: {real_div_algebra, division_ring}"
 | 
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 410 | shows "inverse x \<in> \<real> \<longleftrightarrow> x \<in> \<real>" | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 411 | by (metis Reals_inverse inverse_inverse_eq) | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 412 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 413 | lemma nonzero_Reals_divide: | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 414 | fixes a b :: "'a::real_field" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 415 | shows "\<lbrakk>a \<in> Reals; b \<in> Reals; b \<noteq> 0\<rbrakk> \<Longrightarrow> a / b \<in> Reals" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 416 | apply (auto simp add: Reals_def) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 417 | apply (rule range_eqI) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 418 | apply (erule nonzero_of_real_divide [symmetric]) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 419 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 420 | |
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 421 | lemma Reals_divide [simp]: | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 422 |   fixes a b :: "'a::{real_field, field}"
 | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 423 | shows "\<lbrakk>a \<in> Reals; b \<in> Reals\<rbrakk> \<Longrightarrow> a / b \<in> Reals" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 424 | apply (auto simp add: Reals_def) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 425 | apply (rule range_eqI) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 426 | apply (rule of_real_divide [symmetric]) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 427 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 428 | |
| 20722 | 429 | lemma Reals_power [simp]: | 
| 31017 | 430 |   fixes a :: "'a::{real_algebra_1}"
 | 
| 20722 | 431 | shows "a \<in> Reals \<Longrightarrow> a ^ n \<in> Reals" | 
| 432 | apply (auto simp add: Reals_def) | |
| 433 | apply (rule range_eqI) | |
| 434 | apply (rule of_real_power [symmetric]) | |
| 435 | done | |
| 436 | ||
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 437 | lemma Reals_cases [cases set: Reals]: | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 438 | assumes "q \<in> \<real>" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 439 | obtains (of_real) r where "q = of_real r" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 440 | unfolding Reals_def | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 441 | proof - | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 442 | from `q \<in> \<real>` have "q \<in> range of_real" unfolding Reals_def . | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 443 | then obtain r where "q = of_real r" .. | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 444 | then show thesis .. | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 445 | qed | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 446 | |
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 447 | lemma setsum_in_Reals [intro,simp]: | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 448 | assumes "\<And>i. i \<in> s \<Longrightarrow> f i \<in> \<real>" shows "setsum f s \<in> \<real>" | 
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 449 | proof (cases "finite s") | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 450 | case True then show ?thesis using assms | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 451 | by (induct s rule: finite_induct) auto | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 452 | next | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 453 | case False then show ?thesis using assms | 
| 57418 | 454 | by (metis Reals_0 setsum.infinite) | 
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 455 | qed | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 456 | |
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 457 | lemma setprod_in_Reals [intro,simp]: | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 458 | assumes "\<And>i. i \<in> s \<Longrightarrow> f i \<in> \<real>" shows "setprod f s \<in> \<real>" | 
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 459 | proof (cases "finite s") | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 460 | case True then show ?thesis using assms | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 461 | by (induct s rule: finite_induct) auto | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 462 | next | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 463 | case False then show ?thesis using assms | 
| 57418 | 464 | by (metis Reals_1 setprod.infinite) | 
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 465 | qed | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 466 | |
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 467 | lemma Reals_induct [case_names of_real, induct set: Reals]: | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 468 | "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: 
20551diff
changeset | 469 | by (rule Reals_cases) auto | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 470 | |
| 54778 | 471 | subsection {* Ordered real vector spaces *}
 | 
| 472 | ||
| 473 | class ordered_real_vector = real_vector + ordered_ab_group_add + | |
| 474 | assumes scaleR_left_mono: "x \<le> y \<Longrightarrow> 0 \<le> a \<Longrightarrow> a *\<^sub>R x \<le> a *\<^sub>R y" | |
| 475 | assumes scaleR_right_mono: "a \<le> b \<Longrightarrow> 0 \<le> x \<Longrightarrow> a *\<^sub>R x \<le> b *\<^sub>R x" | |
| 476 | begin | |
| 477 | ||
| 478 | lemma scaleR_mono: | |
| 479 | "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" | |
| 480 | apply (erule scaleR_right_mono [THEN order_trans], assumption) | |
| 481 | apply (erule scaleR_left_mono, assumption) | |
| 482 | done | |
| 483 | ||
| 484 | lemma scaleR_mono': | |
| 485 | "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" | |
| 486 | by (rule scaleR_mono) (auto intro: order.trans) | |
| 487 | ||
| 54785 | 488 | lemma pos_le_divideRI: | 
| 489 | assumes "0 < c" | |
| 490 | assumes "c *\<^sub>R a \<le> b" | |
| 491 | shows "a \<le> b /\<^sub>R c" | |
| 492 | proof - | |
| 493 | from scaleR_left_mono[OF assms(2)] assms(1) | |
| 494 | have "c *\<^sub>R a /\<^sub>R c \<le> b /\<^sub>R c" | |
| 495 | by simp | |
| 496 | with assms show ?thesis | |
| 497 | by (simp add: scaleR_one scaleR_scaleR inverse_eq_divide) | |
| 498 | qed | |
| 499 | ||
| 500 | lemma pos_le_divideR_eq: | |
| 501 | assumes "0 < c" | |
| 502 | shows "a \<le> b /\<^sub>R c \<longleftrightarrow> c *\<^sub>R a \<le> b" | |
| 503 | proof rule | |
| 504 | assume "a \<le> b /\<^sub>R c" | |
| 505 | from scaleR_left_mono[OF this] assms | |
| 506 | have "c *\<^sub>R a \<le> c *\<^sub>R (b /\<^sub>R c)" | |
| 507 | by simp | |
| 508 | with assms show "c *\<^sub>R a \<le> b" | |
| 509 | by (simp add: scaleR_one scaleR_scaleR inverse_eq_divide) | |
| 510 | qed (rule pos_le_divideRI[OF assms]) | |
| 511 | ||
| 512 | lemma scaleR_image_atLeastAtMost: | |
| 513 |   "c > 0 \<Longrightarrow> scaleR c ` {x..y} = {c *\<^sub>R x..c *\<^sub>R y}"
 | |
| 514 | apply (auto intro!: scaleR_left_mono) | |
| 515 | apply (rule_tac x = "inverse c *\<^sub>R xa" in image_eqI) | |
| 516 | apply (simp_all add: pos_le_divideR_eq[symmetric] scaleR_scaleR scaleR_one) | |
| 517 | done | |
| 518 | ||
| 54778 | 519 | end | 
| 520 | ||
| 60303 | 521 | lemma neg_le_divideR_eq: | 
| 522 | fixes a :: "'a :: ordered_real_vector" | |
| 523 | assumes "c < 0" | |
| 524 | shows "a \<le> b /\<^sub>R c \<longleftrightarrow> b \<le> c *\<^sub>R a" | |
| 525 | using pos_le_divideR_eq [of "-c" a "-b"] assms | |
| 526 | by simp | |
| 527 | ||
| 54778 | 528 | lemma scaleR_nonneg_nonneg: "0 \<le> a \<Longrightarrow> 0 \<le> (x::'a::ordered_real_vector) \<Longrightarrow> 0 \<le> a *\<^sub>R x" | 
| 529 | using scaleR_left_mono [of 0 x a] | |
| 530 | by simp | |
| 531 | ||
| 532 | lemma scaleR_nonneg_nonpos: "0 \<le> a \<Longrightarrow> (x::'a::ordered_real_vector) \<le> 0 \<Longrightarrow> a *\<^sub>R x \<le> 0" | |
| 533 | using scaleR_left_mono [of x 0 a] by simp | |
| 534 | ||
| 535 | lemma scaleR_nonpos_nonneg: "a \<le> 0 \<Longrightarrow> 0 \<le> (x::'a::ordered_real_vector) \<Longrightarrow> a *\<^sub>R x \<le> 0" | |
| 536 | using scaleR_right_mono [of a 0 x] by simp | |
| 537 | ||
| 538 | lemma split_scaleR_neg_le: "(0 \<le> a & x \<le> 0) | (a \<le> 0 & 0 \<le> x) \<Longrightarrow> | |
| 539 | a *\<^sub>R (x::'a::ordered_real_vector) \<le> 0" | |
| 540 | by (auto simp add: scaleR_nonneg_nonpos scaleR_nonpos_nonneg) | |
| 541 | ||
| 542 | lemma le_add_iff1: | |
| 543 | fixes c d e::"'a::ordered_real_vector" | |
| 544 | shows "a *\<^sub>R e + c \<le> b *\<^sub>R e + d \<longleftrightarrow> (a - b) *\<^sub>R e + c \<le> d" | |
| 545 | by (simp add: algebra_simps) | |
| 546 | ||
| 547 | lemma le_add_iff2: | |
| 548 | fixes c d e::"'a::ordered_real_vector" | |
| 549 | shows "a *\<^sub>R e + c \<le> b *\<^sub>R e + d \<longleftrightarrow> c \<le> (b - a) *\<^sub>R e + d" | |
| 550 | by (simp add: algebra_simps) | |
| 551 | ||
| 552 | lemma scaleR_left_mono_neg: | |
| 553 | fixes a b::"'a::ordered_real_vector" | |
| 554 | shows "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b" | |
| 555 | apply (drule scaleR_left_mono [of _ _ "- c"]) | |
| 556 | apply simp_all | |
| 557 | done | |
| 558 | ||
| 559 | lemma scaleR_right_mono_neg: | |
| 560 | fixes c::"'a::ordered_real_vector" | |
| 561 | shows "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> a *\<^sub>R c \<le> b *\<^sub>R c" | |
| 562 | apply (drule scaleR_right_mono [of _ _ "- c"]) | |
| 563 | apply simp_all | |
| 564 | done | |
| 565 | ||
| 566 | lemma scaleR_nonpos_nonpos: "a \<le> 0 \<Longrightarrow> (b::'a::ordered_real_vector) \<le> 0 \<Longrightarrow> 0 \<le> a *\<^sub>R b" | |
| 567 | using scaleR_right_mono_neg [of a 0 b] by simp | |
| 568 | ||
| 569 | lemma split_scaleR_pos_le: | |
| 570 | fixes b::"'a::ordered_real_vector" | |
| 571 | shows "(0 \<le> a \<and> 0 \<le> b) \<or> (a \<le> 0 \<and> b \<le> 0) \<Longrightarrow> 0 \<le> a *\<^sub>R b" | |
| 572 | by (auto simp add: scaleR_nonneg_nonneg scaleR_nonpos_nonpos) | |
| 573 | ||
| 574 | lemma zero_le_scaleR_iff: | |
| 575 | fixes b::"'a::ordered_real_vector" | |
| 576 | shows "0 \<le> a *\<^sub>R b \<longleftrightarrow> 0 < a \<and> 0 \<le> b \<or> a < 0 \<and> b \<le> 0 \<or> a = 0" (is "?lhs = ?rhs") | |
| 577 | proof cases | |
| 578 | assume "a \<noteq> 0" | |
| 579 | show ?thesis | |
| 580 | proof | |
| 581 | assume lhs: ?lhs | |
| 582 |     {
 | |
| 583 | assume "0 < a" | |
| 584 | with lhs have "inverse a *\<^sub>R 0 \<le> inverse a *\<^sub>R (a *\<^sub>R b)" | |
| 585 | by (intro scaleR_mono) auto | |
| 586 | hence ?rhs using `0 < a` | |
| 587 | by simp | |
| 588 |     } moreover {
 | |
| 589 | assume "0 > a" | |
| 590 | with lhs have "- inverse a *\<^sub>R 0 \<le> - inverse a *\<^sub>R (a *\<^sub>R b)" | |
| 591 | by (intro scaleR_mono) auto | |
| 592 | hence ?rhs using `0 > a` | |
| 593 | by simp | |
| 594 | } ultimately show ?rhs using `a \<noteq> 0` by arith | |
| 595 | qed (auto simp: not_le `a \<noteq> 0` intro!: split_scaleR_pos_le) | |
| 596 | qed simp | |
| 597 | ||
| 598 | lemma scaleR_le_0_iff: | |
| 599 | fixes b::"'a::ordered_real_vector" | |
| 600 | shows "a *\<^sub>R b \<le> 0 \<longleftrightarrow> 0 < a \<and> b \<le> 0 \<or> a < 0 \<and> 0 \<le> b \<or> a = 0" | |
| 601 | by (insert zero_le_scaleR_iff [of "-a" b]) force | |
| 602 | ||
| 603 | lemma scaleR_le_cancel_left: | |
| 604 | fixes b::"'a::ordered_real_vector" | |
| 605 | shows "c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)" | |
| 606 | by (auto simp add: neq_iff scaleR_left_mono scaleR_left_mono_neg | |
| 607 | dest: scaleR_left_mono[where a="inverse c"] scaleR_left_mono_neg[where c="inverse c"]) | |
| 608 | ||
| 609 | lemma scaleR_le_cancel_left_pos: | |
| 610 | fixes b::"'a::ordered_real_vector" | |
| 611 | shows "0 < c \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> a \<le> b" | |
| 612 | by (auto simp: scaleR_le_cancel_left) | |
| 613 | ||
| 614 | lemma scaleR_le_cancel_left_neg: | |
| 615 | fixes b::"'a::ordered_real_vector" | |
| 616 | shows "c < 0 \<Longrightarrow> c *\<^sub>R a \<le> c *\<^sub>R b \<longleftrightarrow> b \<le> a" | |
| 617 | by (auto simp: scaleR_le_cancel_left) | |
| 618 | ||
| 619 | lemma scaleR_left_le_one_le: | |
| 620 | fixes x::"'a::ordered_real_vector" and a::real | |
| 621 | shows "0 \<le> x \<Longrightarrow> a \<le> 1 \<Longrightarrow> a *\<^sub>R x \<le> x" | |
| 622 | using scaleR_right_mono[of a 1 x] by simp | |
| 623 | ||
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 624 | |
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 625 | subsection {* Real normed vector spaces *}
 | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 626 | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 627 | class dist = | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 628 | fixes dist :: "'a \<Rightarrow> 'a \<Rightarrow> real" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 629 | |
| 29608 | 630 | class norm = | 
| 22636 | 631 | fixes norm :: "'a \<Rightarrow> real" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 632 | |
| 24520 | 633 | class sgn_div_norm = scaleR + norm + sgn + | 
| 25062 | 634 | assumes sgn_div_norm: "sgn x = x /\<^sub>R norm x" | 
| 24506 | 635 | |
| 31289 | 636 | class dist_norm = dist + norm + minus + | 
| 637 | assumes dist_norm: "dist x y = norm (x - y)" | |
| 638 | ||
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 639 | class open_dist = "open" + dist + | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 640 | assumes open_dist: "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 641 | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31490diff
changeset | 642 | class real_normed_vector = real_vector + sgn_div_norm + dist_norm + open_dist + | 
| 51002 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 643 | assumes norm_eq_zero [simp]: "norm x = 0 \<longleftrightarrow> x = 0" | 
| 25062 | 644 | and norm_triangle_ineq: "norm (x + y) \<le> norm x + norm y" | 
| 31586 
d4707b99e631
declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
 huffman parents: 
31567diff
changeset | 645 | and norm_scaleR [simp]: "norm (scaleR a x) = \<bar>a\<bar> * norm x" | 
| 51002 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 646 | begin | 
| 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 647 | |
| 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 648 | lemma norm_ge_zero [simp]: "0 \<le> norm x" | 
| 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 649 | proof - | 
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 650 | have "0 = norm (x + -1 *\<^sub>R x)" | 
| 51002 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 651 | 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: 
50999diff
changeset | 652 | 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: 
50999diff
changeset | 653 | finally show ?thesis by simp | 
| 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 654 | qed | 
| 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 655 | |
| 
496013a6eb38
remove unnecessary assumption from real_normed_vector
 hoelzl parents: 
50999diff
changeset | 656 | end | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 657 | |
| 24588 | 658 | class real_normed_algebra = real_algebra + real_normed_vector + | 
| 25062 | 659 | 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 | 660 | |
| 24588 | 661 | class real_normed_algebra_1 = real_algebra_1 + real_normed_algebra + | 
| 25062 | 662 | assumes norm_one [simp]: "norm 1 = 1" | 
| 22852 | 663 | |
| 24588 | 664 | class real_normed_div_algebra = real_div_algebra + real_normed_vector + | 
| 25062 | 665 | 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 | 666 | |
| 24588 | 667 | class real_normed_field = real_field + real_normed_div_algebra | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 668 | |
| 22852 | 669 | instance real_normed_div_algebra < real_normed_algebra_1 | 
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 670 | proof | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 671 | fix x y :: 'a | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 672 | show "norm (x * y) \<le> norm x * norm y" | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 673 | by (simp add: norm_mult) | 
| 22852 | 674 | next | 
| 675 | have "norm (1 * 1::'a) = norm (1::'a) * norm (1::'a)" | |
| 676 | by (rule norm_mult) | |
| 677 | thus "norm (1::'a) = 1" by simp | |
| 20554 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 678 | qed | 
| 
c433e78d4203
define new constant of_real for class real_algebra_1;
 huffman parents: 
20551diff
changeset | 679 | |
| 22852 | 680 | lemma norm_zero [simp]: "norm (0::'a::real_normed_vector) = 0" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 681 | by simp | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 682 | |
| 22852 | 683 | lemma zero_less_norm_iff [simp]: | 
| 684 | fixes x :: "'a::real_normed_vector" | |
| 685 | shows "(0 < norm x) = (x \<noteq> 0)" | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 686 | by (simp add: order_less_le) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 687 | |
| 22852 | 688 | lemma norm_not_less_zero [simp]: | 
| 689 | fixes x :: "'a::real_normed_vector" | |
| 690 | shows "\<not> norm x < 0" | |
| 20828 | 691 | by (simp add: linorder_not_less) | 
| 692 | ||
| 22852 | 693 | lemma norm_le_zero_iff [simp]: | 
| 694 | fixes x :: "'a::real_normed_vector" | |
| 695 | shows "(norm x \<le> 0) = (x = 0)" | |
| 20828 | 696 | by (simp add: order_le_less) | 
| 697 | ||
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 698 | lemma norm_minus_cancel [simp]: | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 699 | fixes x :: "'a::real_normed_vector" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 700 | shows "norm (- x) = norm x" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 701 | proof - | 
| 21809 
4b93e949ac33
remove uses of scaleR infix syntax; add lemma Reals_number_of
 huffman parents: 
21404diff
changeset | 702 | have "norm (- x) = norm (scaleR (- 1) x)" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 703 | by (simp only: scaleR_minus_left scaleR_one) | 
| 20533 | 704 | also have "\<dots> = \<bar>- 1\<bar> * norm x" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 705 | by (rule norm_scaleR) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 706 | finally show ?thesis by simp | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 707 | qed | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 708 | |
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 709 | lemma norm_minus_commute: | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 710 | fixes a b :: "'a::real_normed_vector" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 711 | shows "norm (a - b) = norm (b - a)" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 712 | proof - | 
| 22898 | 713 | have "norm (- (b - a)) = norm (b - a)" | 
| 714 | by (rule norm_minus_cancel) | |
| 715 | thus ?thesis by simp | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 716 | qed | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 717 | |
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 718 | lemma norm_triangle_ineq2: | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 719 | fixes a b :: "'a::real_normed_vector" | 
| 20533 | 720 | shows "norm a - norm b \<le> norm (a - b)" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 721 | proof - | 
| 20533 | 722 | 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 | 723 | by (rule norm_triangle_ineq) | 
| 22898 | 724 | thus ?thesis by simp | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 725 | qed | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 726 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 727 | lemma norm_triangle_ineq3: | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 728 | fixes a b :: "'a::real_normed_vector" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 729 | shows "\<bar>norm a - norm b\<bar> \<le> norm (a - b)" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 730 | apply (subst abs_le_iff) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 731 | apply auto | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 732 | apply (rule norm_triangle_ineq2) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 733 | apply (subst norm_minus_commute) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 734 | apply (rule norm_triangle_ineq2) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 735 | done | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 736 | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 737 | lemma norm_triangle_ineq4: | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 738 | fixes a b :: "'a::real_normed_vector" | 
| 20533 | 739 | shows "norm (a - b) \<le> norm a + norm b" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 740 | proof - | 
| 22898 | 741 | 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 | 742 | by (rule norm_triangle_ineq) | 
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
53600diff
changeset | 743 | then show ?thesis by simp | 
| 22898 | 744 | qed | 
| 745 | ||
| 746 | lemma norm_diff_ineq: | |
| 747 | fixes a b :: "'a::real_normed_vector" | |
| 748 | shows "norm a - norm b \<le> norm (a + b)" | |
| 749 | proof - | |
| 750 | have "norm a - norm (- b) \<le> norm (a - - b)" | |
| 751 | by (rule norm_triangle_ineq2) | |
| 752 | thus ?thesis by simp | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 753 | qed | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 754 | |
| 20551 | 755 | lemma norm_diff_triangle_ineq: | 
| 756 | fixes a b c d :: "'a::real_normed_vector" | |
| 757 | shows "norm ((a + b) - (c + d)) \<le> norm (a - c) + norm (b - d)" | |
| 758 | proof - | |
| 759 | have "norm ((a + b) - (c + d)) = norm ((a - c) + (b - d))" | |
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
53600diff
changeset | 760 | by (simp add: algebra_simps) | 
| 20551 | 761 | also have "\<dots> \<le> norm (a - c) + norm (b - d)" | 
| 762 | by (rule norm_triangle_ineq) | |
| 763 | finally show ?thesis . | |
| 764 | qed | |
| 765 | ||
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 766 | lemma norm_triangle_mono: | 
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 767 | fixes a b :: "'a::real_normed_vector" | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 768 | shows "\<lbrakk>norm a \<le> r; norm b \<le> s\<rbrakk> \<Longrightarrow> norm (a + b) \<le> r + s" | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 769 | by (metis add_mono_thms_linordered_semiring(1) norm_triangle_ineq order.trans) | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 770 | |
| 56194 | 771 | lemma norm_setsum: | 
| 772 | fixes f :: "'a \<Rightarrow> 'b::real_normed_vector" | |
| 773 | shows "norm (setsum f A) \<le> (\<Sum>i\<in>A. norm (f i))" | |
| 774 | by (induct A rule: infinite_finite_induct) (auto intro: norm_triangle_mono) | |
| 775 | ||
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 776 | lemma setsum_norm_le: | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 777 | fixes f :: "'a \<Rightarrow> 'b::real_normed_vector" | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 778 | assumes fg: "\<forall>x \<in> S. norm (f x) \<le> g x" | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 779 | shows "norm (setsum f S) \<le> setsum g S" | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 780 | by (rule order_trans [OF norm_setsum setsum_mono]) (simp add: fg) | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 781 | |
| 22857 | 782 | lemma abs_norm_cancel [simp]: | 
| 783 | fixes a :: "'a::real_normed_vector" | |
| 784 | shows "\<bar>norm a\<bar> = norm a" | |
| 785 | by (rule abs_of_nonneg [OF norm_ge_zero]) | |
| 786 | ||
| 22880 | 787 | lemma norm_add_less: | 
| 788 | fixes x y :: "'a::real_normed_vector" | |
| 789 | shows "\<lbrakk>norm x < r; norm y < s\<rbrakk> \<Longrightarrow> norm (x + y) < r + s" | |
| 790 | by (rule order_le_less_trans [OF norm_triangle_ineq add_strict_mono]) | |
| 791 | ||
| 792 | lemma norm_mult_less: | |
| 793 | fixes x y :: "'a::real_normed_algebra" | |
| 794 | shows "\<lbrakk>norm x < r; norm y < s\<rbrakk> \<Longrightarrow> norm (x * y) < r * s" | |
| 795 | apply (rule order_le_less_trans [OF norm_mult_ineq]) | |
| 796 | apply (simp add: mult_strict_mono') | |
| 797 | done | |
| 798 | ||
| 22857 | 799 | lemma norm_of_real [simp]: | 
| 800 | "norm (of_real r :: 'a::real_normed_algebra_1) = \<bar>r\<bar>" | |
| 31586 
d4707b99e631
declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
 huffman parents: 
31567diff
changeset | 801 | unfolding of_real_def by simp | 
| 20560 | 802 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 803 | lemma norm_numeral [simp]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 804 | "norm (numeral w::'a::real_normed_algebra_1) = numeral w" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 805 | by (subst of_real_numeral [symmetric], subst norm_of_real, simp) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 806 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 807 | lemma norm_neg_numeral [simp]: | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54263diff
changeset | 808 | "norm (- numeral w::'a::real_normed_algebra_1) = numeral w" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46868diff
changeset | 809 | 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: 
22857diff
changeset | 810 | |
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 811 | lemma norm_of_int [simp]: | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 812 | "norm (of_int z::'a::real_normed_algebra_1) = \<bar>of_int z\<bar>" | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 813 | by (subst of_real_of_int_eq [symmetric], rule norm_of_real) | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 814 | |
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 815 | lemma norm_of_nat [simp]: | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 816 | "norm (of_nat n::'a::real_normed_algebra_1) = of_nat n" | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 817 | apply (subst of_real_of_nat_eq [symmetric]) | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 818 | apply (subst norm_of_real, simp) | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 819 | done | 
| 
2b4c831ceca7
add lemmas norm_number_of, norm_of_int, norm_of_nat
 huffman parents: 
22857diff
changeset | 820 | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 821 | lemma nonzero_norm_inverse: | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 822 | fixes a :: "'a::real_normed_div_algebra" | 
| 20533 | 823 | shows "a \<noteq> 0 \<Longrightarrow> norm (inverse a) = inverse (norm a)" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 824 | apply (rule inverse_unique [symmetric]) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 825 | apply (simp add: norm_mult [symmetric]) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 826 | done | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 827 | |
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 828 | lemma norm_inverse: | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 829 |   fixes a :: "'a::{real_normed_div_algebra, division_ring}"
 | 
| 20533 | 830 | shows "norm (inverse a) = inverse (norm a)" | 
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 831 | apply (case_tac "a = 0", simp) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 832 | apply (erule nonzero_norm_inverse) | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 833 | done | 
| 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 834 | |
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 835 | lemma nonzero_norm_divide: | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 836 | fixes a b :: "'a::real_normed_field" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 837 | shows "b \<noteq> 0 \<Longrightarrow> norm (a / b) = norm a / norm b" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 838 | by (simp add: divide_inverse norm_mult nonzero_norm_inverse) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 839 | |
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 840 | lemma norm_divide: | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59741diff
changeset | 841 |   fixes a b :: "'a::{real_normed_field, field}"
 | 
| 20584 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 842 | shows "norm (a / b) = norm a / norm b" | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 843 | by (simp add: divide_inverse norm_mult norm_inverse) | 
| 
60b1d52a455d
added classes real_div_algebra and real_field; added lemmas
 huffman parents: 
20560diff
changeset | 844 | |
| 22852 | 845 | lemma norm_power_ineq: | 
| 31017 | 846 |   fixes x :: "'a::{real_normed_algebra_1}"
 | 
| 22852 | 847 | shows "norm (x ^ n) \<le> norm x ^ n" | 
| 848 | proof (induct n) | |
| 849 | case 0 show "norm (x ^ 0) \<le> norm x ^ 0" by simp | |
| 850 | next | |
| 851 | case (Suc n) | |
| 852 | have "norm (x * x ^ n) \<le> norm x * norm (x ^ n)" | |
| 853 | by (rule norm_mult_ineq) | |
| 854 | also from Suc have "\<dots> \<le> norm x * norm x ^ n" | |
| 855 | using norm_ge_zero by (rule mult_left_mono) | |
| 856 | 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: 
30242diff
changeset | 857 | by simp | 
| 22852 | 858 | qed | 
| 859 | ||
| 20684 | 860 | lemma norm_power: | 
| 31017 | 861 |   fixes x :: "'a::{real_normed_div_algebra}"
 | 
| 20684 | 862 | shows "norm (x ^ n) = norm x ^ n" | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30242diff
changeset | 863 | by (induct n) (simp_all add: norm_mult) | 
| 20684 | 864 | |
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59587diff
changeset | 865 | text{*Despite a superficial resemblance, @{text norm_eq_1} is not relevant.*}
 | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59587diff
changeset | 866 | lemma square_norm_one: | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59587diff
changeset | 867 | fixes x :: "'a::real_normed_div_algebra" | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59587diff
changeset | 868 | assumes "x^2 = 1" shows "norm x = 1" | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59587diff
changeset | 869 | 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: 
59587diff
changeset | 870 | |
| 59658 
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 871 | lemma norm_less_p1: | 
| 
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 872 | fixes x :: "'a::real_normed_algebra_1" | 
| 
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 873 | shows "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: 
59613diff
changeset | 874 | proof - | 
| 
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 875 | 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: 
59613diff
changeset | 876 | 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: 
59613diff
changeset | 877 | 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: 
59613diff
changeset | 878 | by simp | 
| 
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 879 | qed | 
| 
0cc388370041
sin, cos generalised from type real to any "'a::{real_normed_field,banach}", including complex
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 880 | |
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 881 | lemma setprod_norm: | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 882 |   fixes f :: "'a \<Rightarrow> 'b::{comm_semiring_1,real_normed_div_algebra}"
 | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 883 | shows "setprod (\<lambda>x. norm(f x)) A = norm (setprod f A)" | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 884 | 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: 
56889diff
changeset | 885 | |
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 886 | lemma norm_setprod_le: | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 887 |   "norm (setprod f A) \<le> (\<Prod>a\<in>A. norm (f a :: '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: 
56889diff
changeset | 888 | proof (induction A rule: infinite_finite_induct) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 889 | case (insert a A) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 890 | then have "norm (setprod f (insert a A)) \<le> norm (f a) * norm (setprod f A)" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 891 | by (simp add: norm_mult_ineq) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 892 | also have "norm (setprod f A) \<le> (\<Prod>a\<in>A. norm (f a))" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 893 | by (rule insert) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 894 | finally show ?case | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 895 | by (simp add: insert mult_left_mono) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 896 | qed simp_all | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 897 | |
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 898 | lemma norm_setprod_diff: | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 899 |   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: 
56889diff
changeset | 900 | 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: 
60017diff
changeset | 901 | 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: 
56889diff
changeset | 902 | proof (induction I rule: infinite_finite_induct) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 903 | case (insert i I) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 904 | note insert.hyps[simp] | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 905 | |
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 906 | 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: 
56889diff
changeset | 907 | 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: 
56889diff
changeset | 908 | (is "_ = norm (?t1 + ?t2)") | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 909 | by (auto simp add: field_simps) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 910 | also have "... \<le> norm ?t1 + norm ?t2" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 911 | by (rule norm_triangle_ineq) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 912 | 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: 
56889diff
changeset | 913 | by (rule norm_mult_ineq) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 914 | also have "\<dots> \<le> (\<Prod>i\<in>I. norm (z i)) * norm(z i - w i)" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 915 | by (rule mult_right_mono) (auto intro: norm_setprod_le) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 916 | also have "(\<Prod>i\<in>I. norm (z i)) \<le> (\<Prod>i\<in>I. 1)" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 917 | by (intro setprod_mono) (auto intro!: insert) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 918 | 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: 
56889diff
changeset | 919 | by (rule norm_mult_ineq) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 920 | 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: 
56889diff
changeset | 921 | by (auto intro: insert) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 922 | 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: 
56889diff
changeset | 923 | using insert by auto | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 924 | finally show ?case | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 925 | by (auto simp add: ac_simps mult_right_mono mult_left_mono) | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 926 | qed simp_all | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 927 | |
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 928 | lemma norm_power_diff: | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 929 |   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: 
56889diff
changeset | 930 | 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: 
56889diff
changeset | 931 | 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: 
56889diff
changeset | 932 | proof - | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 933 | have "norm (z^m - w^m) = norm ((\<Prod> i < m. z) - (\<Prod> i < m. w))" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 934 | by (simp add: setprod_constant) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 935 | also have "\<dots> \<le> (\<Sum>i<m. norm (z - w))" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 936 | by (intro norm_setprod_diff) (auto simp add: assms) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 937 | also have "\<dots> = m * norm (z - w)" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 938 | by (simp add: real_of_nat_def) | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 939 | finally show ?thesis . | 
| 55719 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 940 | qed | 
| 
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
 paulson <lp15@cam.ac.uk> parents: 
54890diff
changeset | 941 | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 942 | subsection {* Metric spaces *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 943 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 944 | class metric_space = open_dist + | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 945 | assumes dist_eq_0_iff [simp]: "dist x y = 0 \<longleftrightarrow> x = y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 946 | assumes dist_triangle2: "dist x y \<le> dist x z + dist y z" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 947 | begin | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 948 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 949 | lemma dist_self [simp]: "dist x x = 0" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 950 | by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 951 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 952 | lemma zero_le_dist [simp]: "0 \<le> dist x y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 953 | using dist_triangle2 [of x x y] by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 954 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 955 | lemma zero_less_dist_iff: "0 < dist x y \<longleftrightarrow> x \<noteq> y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 956 | by (simp add: less_le) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 957 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 958 | lemma dist_not_less_zero [simp]: "\<not> dist x y < 0" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 959 | by (simp add: not_less) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 960 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 961 | lemma dist_le_zero_iff [simp]: "dist x y \<le> 0 \<longleftrightarrow> x = y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 962 | by (simp add: le_less) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 963 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 964 | 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: 
51524diff
changeset | 965 | proof (rule order_antisym) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 966 | show "dist x y \<le> dist y x" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 967 | 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: 
51524diff
changeset | 968 | show "dist y x \<le> dist x y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 969 | 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: 
51524diff
changeset | 970 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 971 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 972 | lemma dist_triangle: "dist x z \<le> dist x y + dist y z" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 973 | using dist_triangle2 [of x z y] by (simp add: dist_commute) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 974 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 975 | lemma dist_triangle3: "dist x y \<le> dist a x + dist a y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 976 | using dist_triangle2 [of x y a] by (simp add: dist_commute) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 977 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 978 | lemma dist_triangle_alt: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 979 | shows "dist y z <= dist x y + dist x z" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 980 | by (rule dist_triangle3) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 981 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 982 | lemma dist_pos_lt: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 983 | shows "x \<noteq> y ==> 0 < dist x y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 984 | by (simp add: zero_less_dist_iff) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 985 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 986 | lemma dist_nz: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 987 | shows "x \<noteq> y \<longleftrightarrow> 0 < dist x y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 988 | by (simp add: zero_less_dist_iff) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 989 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 990 | lemma dist_triangle_le: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 991 | shows "dist x z + dist y z <= e \<Longrightarrow> dist x y <= e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 992 | by (rule order_trans [OF dist_triangle2]) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 993 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 994 | lemma dist_triangle_lt: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 995 | shows "dist x z + dist y z < e ==> dist x y < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 996 | by (rule le_less_trans [OF dist_triangle2]) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 997 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 998 | lemma dist_triangle_half_l: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 999 | shows "dist x1 y < e / 2 \<Longrightarrow> dist x2 y < e / 2 \<Longrightarrow> dist x1 x2 < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1000 | by (rule dist_triangle_lt [where z=y], simp) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1001 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1002 | lemma dist_triangle_half_r: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1003 | shows "dist y x1 < e / 2 \<Longrightarrow> dist y x2 < e / 2 \<Longrightarrow> dist x1 x2 < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1004 | by (rule dist_triangle_half_l, simp_all add: dist_commute) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1005 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1006 | subclass topological_space | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1007 | proof | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1008 | have "\<exists>e::real. 0 < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1009 | by (fast intro: zero_less_one) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1010 | then show "open UNIV" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1011 | unfolding open_dist by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1012 | next | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1013 | fix S T assume "open S" "open T" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1014 | then show "open (S \<inter> T)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1015 | unfolding open_dist | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1016 | apply clarify | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1017 | apply (drule (1) bspec)+ | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1018 | apply (clarify, rename_tac r s) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1019 | apply (rule_tac x="min r s" in exI, simp) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1020 | done | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1021 | next | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1022 | fix K assume "\<forall>S\<in>K. open S" thus "open (\<Union>K)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1023 | unfolding open_dist by fast | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1024 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1025 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1026 | lemma open_ball: "open {y. dist x y < d}"
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1027 | proof (unfold open_dist, intro ballI) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1028 |   fix y assume *: "y \<in> {y. dist x y < d}"
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1029 |   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: 
51524diff
changeset | 1030 | 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: 
51524diff
changeset | 1031 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1032 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1033 | subclass first_countable_topology | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1034 | proof | 
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1035 | fix x | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1036 | 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: 
51524diff
changeset | 1037 |   proof (safe intro!: exI[of _ "\<lambda>n. {y. dist x y < inverse (Suc n)}"])
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1038 | fix S assume "open S" "x \<in> S" | 
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
52381diff
changeset | 1039 |     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: 
51524diff
changeset | 1040 | 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: 
51524diff
changeset | 1041 | moreover | 
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
52381diff
changeset | 1042 | 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: 
51524diff
changeset | 1043 | by (auto dest!: reals_Archimedean) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1044 |     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: 
51524diff
changeset | 1045 | by auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1046 |     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: 
51524diff
changeset | 1047 | by blast | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1048 | qed (auto intro: open_ball) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1049 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1050 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1051 | end | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1052 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1053 | instance metric_space \<subseteq> t2_space | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1054 | proof | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1055 | fix x y :: "'a::metric_space" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1056 | assume xy: "x \<noteq> y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1057 |   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: 
51524diff
changeset | 1058 |   let ?V = "{x'. dist y x' < dist x y / 2}"
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1059 | have th0: "\<And>d x y z. (d x z :: real) \<le> d x y + d y z \<Longrightarrow> d y z = d z y | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1060 | \<Longrightarrow> \<not>(d x y * 2 < d x z \<and> d z y * 2 < d x z)" by arith | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1061 |   have "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: 
51524diff
changeset | 1062 | using dist_pos_lt[OF xy] th0[of dist, OF dist_triangle dist_commute] | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1063 | 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: 
51524diff
changeset | 1064 |   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: 
51524diff
changeset | 1065 | by blast | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1066 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1067 | |
| 31289 | 1068 | text {* Every normed vector space is a metric space. *}
 | 
| 31285 
0a3f9ee4117c
generalize dist function to class real_normed_vector
 huffman parents: 
31017diff
changeset | 1069 | |
| 31289 | 1070 | instance real_normed_vector < metric_space | 
| 1071 | proof | |
| 1072 | fix x y :: 'a show "dist x y = 0 \<longleftrightarrow> x = y" | |
| 1073 | unfolding dist_norm by simp | |
| 1074 | next | |
| 1075 | fix x y z :: 'a show "dist x y \<le> dist x z + dist y z" | |
| 1076 | unfolding dist_norm | |
| 1077 | using norm_triangle_ineq4 [of "x - z" "y - z"] by simp | |
| 1078 | qed | |
| 31285 
0a3f9ee4117c
generalize dist function to class real_normed_vector
 huffman parents: 
31017diff
changeset | 1079 | |
| 31564 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1080 | subsection {* Class instances for real numbers *}
 | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1081 | |
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1082 | instantiation real :: real_normed_field | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1083 | begin | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1084 | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1085 | definition dist_real_def: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1086 | "dist x y = \<bar>x - y\<bar>" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1087 | |
| 52381 
63eec9cea2c7
pragmatic executability for instance real :: open
 haftmann parents: 
51775diff
changeset | 1088 | definition open_real_def [code del]: | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1089 | "open (S :: real set) \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1090 | |
| 31564 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1091 | definition real_norm_def [simp]: | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1092 | "norm r = \<bar>r\<bar>" | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1093 | |
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1094 | instance | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1095 | apply (intro_classes, unfold real_norm_def real_scaleR_def) | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1096 | apply (rule dist_real_def) | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1097 | apply (rule open_real_def) | 
| 36795 
e05e1283c550
new construction of real numbers using Cauchy sequences
 huffman parents: 
36409diff
changeset | 1098 | apply (simp add: sgn_real_def) | 
| 31564 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1099 | apply (rule abs_eq_0) | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1100 | apply (rule abs_triangle_ineq) | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1101 | apply (rule abs_mult) | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1102 | apply (rule abs_mult) | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1103 | done | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1104 | |
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1105 | end | 
| 
d2abf6f6f619
subsection for real instances; new lemmas for open sets of reals
 huffman parents: 
31494diff
changeset | 1106 | |
| 54890 
cb892d835803
fundamental treatment of undefined vs. universally partial replaces code_abort
 haftmann parents: 
54863diff
changeset | 1107 | declare [[code abort: "open :: real set \<Rightarrow> bool"]] | 
| 52381 
63eec9cea2c7
pragmatic executability for instance real :: open
 haftmann parents: 
51775diff
changeset | 1108 | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1109 | instance real :: linorder_topology | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1110 | proof | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1111 | 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: 
51524diff
changeset | 1112 | proof (rule ext, safe) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1113 | fix S :: "real set" assume "open S" | 
| 53381 | 1114 | then obtain f where "\<forall>x\<in>S. 0 < f x \<and> (\<forall>y. dist y x < f x \<longrightarrow> y \<in> S)" | 
| 1115 | unfolding open_real_def bchoice_iff .. | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1116 |     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: 
51524diff
changeset | 1117 | by (fastforce simp: dist_real_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1118 | 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: 
51524diff
changeset | 1119 | apply (subst *) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1120 | apply (intro generate_topology_Union generate_topology.Int) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1121 | apply (auto intro: generate_topology.Basis) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1122 | done | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1123 | next | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1124 | fix S :: "real set" assume "generate_topology (range lessThan \<union> range greaterThan) S" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1125 |     moreover have "\<And>a::real. open {..<a}"
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1126 | unfolding open_real_def dist_real_def | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1127 | proof clarify | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1128 | fix x a :: real assume "x < a" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1129 |       hence "0 < a - x \<and> (\<forall>y. \<bar>y - x\<bar> < a - x \<longrightarrow> y \<in> {..<a})" by auto
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1130 |       thus "\<exists>e>0. \<forall>y. \<bar>y - x\<bar> < e \<longrightarrow> y \<in> {..<a}" ..
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1131 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1132 |     moreover have "\<And>a::real. open {a <..}"
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1133 | unfolding open_real_def dist_real_def | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1134 | proof clarify | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1135 | fix x a :: real assume "a < x" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1136 |       hence "0 < x - a \<and> (\<forall>y. \<bar>y - x\<bar> < x - a \<longrightarrow> y \<in> {a<..})" by auto
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1137 |       thus "\<exists>e>0. \<forall>y. \<bar>y - x\<bar> < e \<longrightarrow> y \<in> {a<..}" ..
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1138 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1139 | ultimately show "open S" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1140 | by induct auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1141 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1142 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1143 | |
| 51775 
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
 hoelzl parents: 
51774diff
changeset | 1144 | instance real :: linear_continuum_topology .. | 
| 51518 
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
 hoelzl parents: 
51481diff
changeset | 1145 | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1146 | 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: 
51524diff
changeset | 1147 | 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: 
51524diff
changeset | 1148 | 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: 
51524diff
changeset | 1149 | 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: 
51524diff
changeset | 1150 | 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: 
51524diff
changeset | 1151 | 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: 
51524diff
changeset | 1152 | |
| 31446 | 1153 | subsection {* Extra type constraints *}
 | 
| 1154 | ||
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31490diff
changeset | 1155 | text {* Only allow @{term "open"} in class @{text topological_space}. *}
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31490diff
changeset | 1156 | |
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31490diff
changeset | 1157 | setup {* Sign.add_const_constraint
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31490diff
changeset | 1158 |   (@{const_name "open"}, SOME @{typ "'a::topological_space set \<Rightarrow> bool"}) *}
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31490diff
changeset | 1159 | |
| 31446 | 1160 | text {* Only allow @{term dist} in class @{text metric_space}. *}
 | 
| 1161 | ||
| 1162 | setup {* Sign.add_const_constraint
 | |
| 1163 |   (@{const_name dist}, SOME @{typ "'a::metric_space \<Rightarrow> 'a \<Rightarrow> real"}) *}
 | |
| 1164 | ||
| 1165 | text {* Only allow @{term norm} in class @{text real_normed_vector}. *}
 | |
| 1166 | ||
| 1167 | setup {* Sign.add_const_constraint
 | |
| 1168 |   (@{const_name norm}, SOME @{typ "'a::real_normed_vector \<Rightarrow> real"}) *}
 | |
| 1169 | ||
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1170 | subsection {* Sign function *}
 | 
| 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1171 | |
| 24506 | 1172 | lemma norm_sgn: | 
| 1173 | "norm (sgn(x::'a::real_normed_vector)) = (if x = 0 then 0 else 1)" | |
| 31586 
d4707b99e631
declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
 huffman parents: 
31567diff
changeset | 1174 | by (simp add: sgn_div_norm) | 
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1175 | |
| 24506 | 1176 | lemma sgn_zero [simp]: "sgn(0::'a::real_normed_vector) = 0" | 
| 1177 | by (simp add: sgn_div_norm) | |
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1178 | |
| 24506 | 1179 | lemma sgn_zero_iff: "(sgn(x::'a::real_normed_vector) = 0) = (x = 0)" | 
| 1180 | by (simp add: sgn_div_norm) | |
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1181 | |
| 24506 | 1182 | lemma sgn_minus: "sgn (- x) = - sgn(x::'a::real_normed_vector)" | 
| 1183 | by (simp add: sgn_div_norm) | |
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1184 | |
| 24506 | 1185 | lemma sgn_scaleR: | 
| 1186 | "sgn (scaleR r x) = scaleR (sgn r) (sgn(x::'a::real_normed_vector))" | |
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 1187 | 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: 
22972diff
changeset | 1188 | |
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1189 | lemma sgn_one [simp]: "sgn (1::'a::real_normed_algebra_1) = 1" | 
| 24506 | 1190 | by (simp add: sgn_div_norm) | 
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1191 | |
| 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1192 | lemma sgn_of_real: | 
| 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1193 | "sgn (of_real r::'a::real_normed_algebra_1) = of_real (sgn r)" | 
| 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1194 | unfolding of_real_def by (simp only: sgn_scaleR sgn_one) | 
| 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1195 | |
| 22973 
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
 huffman parents: 
22972diff
changeset | 1196 | lemma sgn_mult: | 
| 
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
 huffman parents: 
22972diff
changeset | 1197 | fixes x y :: "'a::real_normed_div_algebra" | 
| 
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
 huffman parents: 
22972diff
changeset | 1198 | shows "sgn (x * y) = sgn x * sgn y" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57448diff
changeset | 1199 | 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: 
22972diff
changeset | 1200 | |
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1201 | lemma real_sgn_eq: "sgn (x::real) = x / \<bar>x\<bar>" | 
| 24506 | 1202 | by (simp add: sgn_div_norm divide_inverse) | 
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1203 | |
| 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1204 | lemma real_sgn_pos: "0 < (x::real) \<Longrightarrow> sgn x = 1" | 
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56409diff
changeset | 1205 | unfolding real_sgn_eq by simp | 
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1206 | |
| 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1207 | lemma real_sgn_neg: "(x::real) < 0 \<Longrightarrow> sgn x = -1" | 
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56409diff
changeset | 1208 | unfolding real_sgn_eq by simp | 
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1209 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1210 | lemma zero_le_sgn_iff [simp]: "0 \<le> sgn x \<longleftrightarrow> 0 \<le> (x::real)" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1211 | 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: 
60017diff
changeset | 1212 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1213 | lemma zero_less_sgn_iff [simp]: "0 < sgn x \<longleftrightarrow> 0 < (x::real)" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1214 | by (cases "0::real" x rule: linorder_cases) simp_all | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1215 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1216 | lemma sgn_le_0_iff [simp]: "sgn x \<le> 0 \<longleftrightarrow> (x::real) \<le> 0" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1217 | 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: 
60017diff
changeset | 1218 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1219 | lemma sgn_less_0_iff [simp]: "sgn x < 0 \<longleftrightarrow> (x::real) < 0" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1220 | by (cases "0::real" x rule: linorder_cases) simp_all | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56479diff
changeset | 1221 | |
| 51474 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 hoelzl parents: 
51472diff
changeset | 1222 | 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: 
51472diff
changeset | 1223 | unfolding dist_norm by simp | 
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22942diff
changeset | 1224 | |
| 60307 
75e1aa7a450e
Convex hulls: theorems about interior, etc. And a few simple lemmas.
 paulson <lp15@cam.ac.uk> parents: 
60303diff
changeset | 1225 | 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: 
60303diff
changeset | 1226 | by (simp_all add: dist_norm) | 
| 
75e1aa7a450e
Convex hulls: theorems about interior, etc. And a few simple lemmas.
 paulson <lp15@cam.ac.uk> parents: 
60303diff
changeset | 1227 | |
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1228 | subsection {* Bounded Linear and Bilinear Operators *}
 | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1229 | |
| 53600 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1230 | locale linear = additive f for f :: "'a::real_vector \<Rightarrow> 'b::real_vector" + | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1231 | assumes scaleR: "f (scaleR r x) = scaleR r (f x)" | 
| 53600 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1232 | |
| 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1233 | lemma linearI: | 
| 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1234 | assumes "\<And>x y. f (x + y) = f x + f y" | 
| 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1235 | assumes "\<And>c x. f (c *\<^sub>R x) = c *\<^sub>R f x" | 
| 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1236 | shows "linear f" | 
| 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1237 | by default (rule assms)+ | 
| 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1238 | |
| 
8fda7ad57466
make 'linear' into a sublocale of 'bounded_linear';
 huffman parents: 
53381diff
changeset | 1239 | 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: 
21809diff
changeset | 1240 | assumes bounded: "\<exists>K. \<forall>x. norm (f x) \<le> norm x * K" | 
| 27443 | 1241 | begin | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1242 | |
| 27443 | 1243 | lemma pos_bounded: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1244 | "\<exists>K>0. \<forall>x. norm (f x) \<le> norm x * K" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1245 | proof - | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1246 | obtain K where K: "\<And>x. norm (f x) \<le> norm x * K" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1247 | using bounded by fast | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1248 | show ?thesis | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1249 | proof (intro exI impI conjI allI) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1250 | show "0 < max 1 K" | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54785diff
changeset | 1251 | 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: 
21809diff
changeset | 1252 | next | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1253 | fix x | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1254 | 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: 
21809diff
changeset | 1255 | also have "\<dots> \<le> norm x * max 1 K" | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54785diff
changeset | 1256 | 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: 
21809diff
changeset | 1257 | 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: 
21809diff
changeset | 1258 | qed | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1259 | qed | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1260 | |
| 27443 | 1261 | lemma nonneg_bounded: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1262 | "\<exists>K\<ge>0. \<forall>x. norm (f x) \<le> norm x * K" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1263 | proof - | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1264 | from pos_bounded | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1265 | show ?thesis by (auto intro: order_less_imp_le) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1266 | qed | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1267 | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 1268 | lemma linear: "linear f" .. | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56194diff
changeset | 1269 | |
| 27443 | 1270 | end | 
| 1271 | ||
| 44127 | 1272 | lemma bounded_linear_intro: | 
| 1273 | assumes "\<And>x y. f (x + y) = f x + f y" | |
| 1274 | assumes "\<And>r x. f (scaleR r x) = scaleR r (f x)" | |
| 1275 | assumes "\<And>x. norm (f x) \<le> norm x * K" | |
| 1276 | shows "bounded_linear f" | |
| 1277 | by default (fast intro: assms)+ | |
| 1278 | ||
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1279 | locale bounded_bilinear = | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1280 | fixes prod :: "['a::real_normed_vector, 'b::real_normed_vector] | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1281 | \<Rightarrow> 'c::real_normed_vector" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1282 | (infixl "**" 70) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1283 | assumes add_left: "prod (a + a') b = prod a b + prod a' b" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1284 | assumes add_right: "prod a (b + b') = prod a b + prod a b'" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1285 | assumes scaleR_left: "prod (scaleR r a) b = scaleR r (prod a b)" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1286 | assumes scaleR_right: "prod a (scaleR r b) = scaleR r (prod a b)" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1287 | assumes bounded: "\<exists>K. \<forall>a b. norm (prod a b) \<le> norm a * norm b * K" | 
| 27443 | 1288 | begin | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1289 | |
| 27443 | 1290 | lemma pos_bounded: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1291 | "\<exists>K>0. \<forall>a b. norm (a ** b) \<le> norm a * norm b * K" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1292 | apply (cut_tac bounded, erule exE) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1293 | apply (rule_tac x="max 1 K" in exI, safe) | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54785diff
changeset | 1294 | apply (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: 
21809diff
changeset | 1295 | apply (drule spec, drule spec, erule order_trans) | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54785diff
changeset | 1296 | apply (rule mult_left_mono [OF max.cobounded2]) | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1297 | apply (intro mult_nonneg_nonneg norm_ge_zero) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1298 | done | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1299 | |
| 27443 | 1300 | lemma nonneg_bounded: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1301 | "\<exists>K\<ge>0. \<forall>a b. norm (a ** b) \<le> norm a * norm b * K" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1302 | proof - | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1303 | from pos_bounded | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1304 | show ?thesis by (auto intro: order_less_imp_le) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1305 | qed | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1306 | |
| 27443 | 1307 | lemma additive_right: "additive (\<lambda>b. prod a b)" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1308 | by (rule additive.intro, rule add_right) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1309 | |
| 27443 | 1310 | lemma additive_left: "additive (\<lambda>a. prod a b)" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1311 | by (rule additive.intro, rule add_left) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1312 | |
| 27443 | 1313 | lemma zero_left: "prod 0 b = 0" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1314 | by (rule additive.zero [OF additive_left]) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1315 | |
| 27443 | 1316 | lemma zero_right: "prod a 0 = 0" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1317 | by (rule additive.zero [OF additive_right]) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1318 | |
| 27443 | 1319 | lemma minus_left: "prod (- a) b = - prod a b" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1320 | by (rule additive.minus [OF additive_left]) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1321 | |
| 27443 | 1322 | lemma minus_right: "prod a (- b) = - prod a b" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1323 | by (rule additive.minus [OF additive_right]) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1324 | |
| 27443 | 1325 | lemma diff_left: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1326 | "prod (a - a') b = prod a b - prod a' b" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1327 | by (rule additive.diff [OF additive_left]) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1328 | |
| 27443 | 1329 | lemma diff_right: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1330 | "prod a (b - b') = prod a b - prod a b'" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1331 | by (rule additive.diff [OF additive_right]) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1332 | |
| 27443 | 1333 | lemma bounded_linear_left: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1334 | "bounded_linear (\<lambda>a. a ** b)" | 
| 44127 | 1335 | apply (cut_tac bounded, safe) | 
| 1336 | apply (rule_tac K="norm b * K" in bounded_linear_intro) | |
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1337 | apply (rule add_left) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1338 | apply (rule scaleR_left) | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 1339 | apply (simp add: ac_simps) | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1340 | done | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1341 | |
| 27443 | 1342 | lemma bounded_linear_right: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1343 | "bounded_linear (\<lambda>b. a ** b)" | 
| 44127 | 1344 | apply (cut_tac bounded, safe) | 
| 1345 | apply (rule_tac K="norm a * K" in bounded_linear_intro) | |
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1346 | apply (rule add_right) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1347 | apply (rule scaleR_right) | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 1348 | apply (simp add: ac_simps) | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1349 | done | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1350 | |
| 27443 | 1351 | lemma prod_diff_prod: | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1352 | "(x ** y - a ** b) = (x - a) ** (y - b) + (x - a) ** b + a ** (y - b)" | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1353 | by (simp add: diff_left diff_right) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1354 | |
| 27443 | 1355 | end | 
| 1356 | ||
| 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: 
51641diff
changeset | 1357 | lemma bounded_linear_ident[simp]: "bounded_linear (\<lambda>x. 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: 
51641diff
changeset | 1358 | by default (auto intro!: exI[of _ 1]) | 
| 
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: 
51641diff
changeset | 1359 | |
| 
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: 
51641diff
changeset | 1360 | lemma bounded_linear_zero[simp]: "bounded_linear (\<lambda>x. 0)" | 
| 
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: 
51641diff
changeset | 1361 | by default (auto intro!: exI[of _ 1]) | 
| 
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: 
51641diff
changeset | 1362 | |
| 
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: 
51641diff
changeset | 1363 | 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: 
51641diff
changeset | 1364 | 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: 
51641diff
changeset | 1365 | assumes "bounded_linear g" | 
| 
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: 
51641diff
changeset | 1366 | 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: 
51641diff
changeset | 1367 | 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: 
51641diff
changeset | 1368 | 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: 
51641diff
changeset | 1369 | 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: 
51641diff
changeset | 1370 | 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: 
51641diff
changeset | 1371 | 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: 
51641diff
changeset | 1372 | from f.bounded obtain Kf where Kf: "\<And>x. norm (f x) \<le> norm x * Kf" by blast | 
| 
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: 
51641diff
changeset | 1373 | from g.bounded obtain Kg where Kg: "\<And>x. norm (g x) \<le> norm x * Kg" by blast | 
| 
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: 
51641diff
changeset | 1374 | 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: 
51641diff
changeset | 1375 | 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: 
51641diff
changeset | 1376 | 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: 
51641diff
changeset | 1377 | 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: 
51641diff
changeset | 1378 | 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: 
51641diff
changeset | 1379 | |
| 
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: 
51641diff
changeset | 1380 | 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: 
51641diff
changeset | 1381 | 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: 
51641diff
changeset | 1382 | 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: 
51641diff
changeset | 1383 | 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: 
51641diff
changeset | 1384 | 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: 
51641diff
changeset | 1385 | show ?thesis apply (unfold_locales) | 
| 
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: 
51641diff
changeset | 1386 | apply (simp add: f.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: 
51641diff
changeset | 1387 | apply (simp add: f.scaleR) | 
| 
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: 
51641diff
changeset | 1388 | apply (simp add: f.bounded) | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 1389 | done | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 1390 | 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: 
51641diff
changeset | 1391 | |
| 
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: 
51641diff
changeset | 1392 | 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: 
51641diff
changeset | 1393 | 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: 
51641diff
changeset | 1394 | assumes "bounded_linear g" | 
| 
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: 
51641diff
changeset | 1395 | 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: 
51641diff
changeset | 1396 | 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: 
51641diff
changeset | 1397 | 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: 
51641diff
changeset | 1398 | 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: 
51641diff
changeset | 1399 | show ?thesis proof (unfold_locales) | 
| 
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: 
51641diff
changeset | 1400 | fix x y show "f (g (x + y)) = f (g x) + f (g y)" | 
| 
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: 
51641diff
changeset | 1401 | by (simp only: f.add g.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: 
51641diff
changeset | 1402 | next | 
| 
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: 
51641diff
changeset | 1403 | fix r x show "f (g (scaleR r x)) = scaleR r (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: 
51641diff
changeset | 1404 | by (simp only: f.scaleR g.scaleR) | 
| 
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: 
51641diff
changeset | 1405 | next | 
| 
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: 
51641diff
changeset | 1406 | from f.pos_bounded | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 1407 | obtain Kf where f: "\<And>x. norm (f x) \<le> norm x * Kf" and Kf: "0 < Kf" by fast | 
| 
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: 
51641diff
changeset | 1408 | from g.pos_bounded | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 1409 | obtain Kg where g: "\<And>x. norm (g x) \<le> norm x * Kg" by fast | 
| 
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: 
51641diff
changeset | 1410 | 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: 
51641diff
changeset | 1411 | 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: 
51641diff
changeset | 1412 | 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: 
51641diff
changeset | 1413 | 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: 
51641diff
changeset | 1414 | 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: 
51641diff
changeset | 1415 | 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: 
51641diff
changeset | 1416 | 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: 
51641diff
changeset | 1417 | 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: 
57448diff
changeset | 1418 | 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: 
51641diff
changeset | 1419 | 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: 
51641diff
changeset | 1420 | 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: 
51641diff
changeset | 1421 | 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: 
51641diff
changeset | 1422 | 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: 
51641diff
changeset | 1423 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1424 | lemma bounded_bilinear_mult: | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1425 | "bounded_bilinear (op * :: 'a \<Rightarrow> 'a \<Rightarrow> 'a::real_normed_algebra)" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1426 | apply (rule bounded_bilinear.intro) | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47108diff
changeset | 1427 | apply (rule distrib_right) | 
| 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47108diff
changeset | 1428 | apply (rule distrib_left) | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1429 | apply (rule mult_scaleR_left) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1430 | apply (rule mult_scaleR_right) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1431 | apply (rule_tac x="1" in exI) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1432 | apply (simp add: norm_mult_ineq) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1433 | done | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1434 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1435 | lemma bounded_linear_mult_left: | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1436 | "bounded_linear (\<lambda>x::'a::real_normed_algebra. x * y)" | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1437 | using bounded_bilinear_mult | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1438 | by (rule bounded_bilinear.bounded_linear_left) | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1439 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1440 | lemma bounded_linear_mult_right: | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1441 | "bounded_linear (\<lambda>y::'a::real_normed_algebra. x * y)" | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1442 | using bounded_bilinear_mult | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1443 | by (rule bounded_bilinear.bounded_linear_right) | 
| 23127 | 1444 | |
| 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: 
51641diff
changeset | 1445 | 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: 
51641diff
changeset | 1446 | 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: 
51641diff
changeset | 1447 | |
| 
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: 
51641diff
changeset | 1448 | 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: 
51641diff
changeset | 1449 | 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: 
51641diff
changeset | 1450 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1451 | lemma bounded_linear_divide: | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1452 | "bounded_linear (\<lambda>x::'a::real_normed_field. x / y)" | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1453 | unfolding divide_inverse by (rule bounded_linear_mult_left) | 
| 23120 | 1454 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1455 | lemma bounded_bilinear_scaleR: "bounded_bilinear scaleR" | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1456 | apply (rule bounded_bilinear.intro) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1457 | apply (rule scaleR_left_distrib) | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1458 | apply (rule scaleR_right_distrib) | 
| 22973 
64d300e16370
add lemma sgn_mult; declare real_scaleR_def and scaleR_eq_0_iff as simp rules
 huffman parents: 
22972diff
changeset | 1459 | apply simp | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1460 | apply (rule scaleR_left_commute) | 
| 31586 
d4707b99e631
declare norm_scaleR [simp]; declare scaleR_cancel lemmas [simp]
 huffman parents: 
31567diff
changeset | 1461 | apply (rule_tac x="1" in exI, simp) | 
| 22442 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1462 | done | 
| 
15d9ed9b5051
move bounded (bi)linear operator locales from Lim.thy to RealVector.thy
 huffman parents: 
21809diff
changeset | 1463 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1464 | 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: 
44127diff
changeset | 1465 | using bounded_bilinear_scaleR | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1466 | by (rule bounded_bilinear.bounded_linear_left) | 
| 23127 | 1467 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1468 | 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: 
44127diff
changeset | 1469 | using bounded_bilinear_scaleR | 
| 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1470 | by (rule bounded_bilinear.bounded_linear_right) | 
| 23127 | 1471 | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
44127diff
changeset | 1472 | 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: 
44127diff
changeset | 1473 | unfolding of_real_def by (rule bounded_linear_scaleR_left) | 
| 22625 | 1474 | |
| 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: 
51641diff
changeset | 1475 | lemma real_bounded_linear: | 
| 
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: 
51641diff
changeset | 1476 | fixes f :: "real \<Rightarrow> real" | 
| 
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: 
51641diff
changeset | 1477 | shows "bounded_linear f \<longleftrightarrow> (\<exists>c::real. f = (\<lambda>x. x * c))" | 
| 
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: 
51641diff
changeset | 1478 | 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: 
51641diff
changeset | 1479 |   { fix x assume "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: 
51641diff
changeset | 1480 | 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: 
51641diff
changeset | 1481 | from scaleR[of x 1] have "f x = x * f 1" | 
| 
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: 
51641diff
changeset | 1482 | by simp } | 
| 
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: 
51641diff
changeset | 1483 | 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: 
51641diff
changeset | 1484 | 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: 
51641diff
changeset | 1485 | 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: 
51641diff
changeset | 1486 | |
| 44571 | 1487 | instance real_normed_algebra_1 \<subseteq> perfect_space | 
| 1488 | proof | |
| 1489 | fix x::'a | |
| 1490 |   show "\<not> open {x}"
 | |
| 1491 | unfolding open_dist dist_norm | |
| 1492 | by (clarsimp, rule_tac x="x + of_real (e/2)" in exI, simp) | |
| 1493 | qed | |
| 1494 | ||
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1495 | subsection {* Filters and Limits on Metric Space *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1496 | |
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1497 | lemma (in metric_space) nhds_metric: "nhds x = (INF e:{0 <..}. principal {y. dist y x < e})"
 | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1498 | unfolding nhds_def | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1499 | proof (safe intro!: INF_eq) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1500 | fix S assume "open S" "x \<in> S" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1501 |   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: 
57418diff
changeset | 1502 | by (auto simp: open_dist subset_eq) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1503 |   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: 
57418diff
changeset | 1504 | by auto | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1505 | 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: 
57418diff
changeset | 1506 | |
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1507 | lemma (in metric_space) tendsto_iff: | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1508 | "(f ---> l) F \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist (f x) l < e) F)" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1509 | 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: 
57418diff
changeset | 1510 | |
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1511 | lemma (in metric_space) tendstoI: "(\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F) \<Longrightarrow> (f ---> l) F" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1512 | by (auto simp: tendsto_iff) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1513 | |
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1514 | lemma (in metric_space) tendstoD: "(f ---> l) F \<Longrightarrow> 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1515 | by (auto simp: tendsto_iff) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1516 | |
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1517 | lemma (in metric_space) eventually_nhds_metric: | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1518 | "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: 
57418diff
changeset | 1519 | unfolding nhds_metric | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1520 | by (subst eventually_INF_base) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1521 | (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: 
51524diff
changeset | 1522 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1523 | lemma eventually_at: | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1524 | fixes a :: "'a :: metric_space" | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1525 | shows "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)" | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1526 | unfolding eventually_at_filter eventually_nhds_metric by (auto simp: dist_nz) | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1527 | |
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1528 | lemma eventually_at_le: | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1529 | fixes a :: "'a::metric_space" | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1530 | shows "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)" | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1531 | unfolding eventually_at_filter eventually_nhds_metric | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1532 | apply auto | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1533 | apply (rule_tac x="d / 2" in exI) | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1534 | apply auto | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1535 | done | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1536 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1537 | lemma metric_tendsto_imp_tendsto: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1538 | fixes a :: "'a :: metric_space" and b :: "'b :: metric_space" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1539 | assumes f: "(f ---> a) F" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1540 | assumes le: "eventually (\<lambda>x. dist (g x) b \<le> dist (f x) a) F" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1541 | shows "(g ---> b) F" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1542 | proof (rule tendstoI) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1543 | fix e :: real assume "0 < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1544 | 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: 
51524diff
changeset | 1545 | 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: 
51524diff
changeset | 1546 | using le_less_trans by (rule eventually_elim2) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1547 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1548 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1549 | lemma filterlim_real_sequentially: "LIM x sequentially. real x :> at_top" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1550 | unfolding filterlim_at_top | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1551 | apply (intro allI) | 
| 59587 
8ea7b22525cb
Removed the obsolete functions "natfloor" and "natceiling"
 nipkow parents: 
58889diff
changeset | 1552 | apply (rule_tac c="nat(ceiling (Z + 1))" in eventually_sequentiallyI) | 
| 
8ea7b22525cb
Removed the obsolete functions "natfloor" and "natceiling"
 nipkow parents: 
58889diff
changeset | 1553 | by linarith | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1554 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1555 | subsubsection {* Limits of Sequences *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1556 | |
| 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: 
59867diff
changeset | 1557 | lemma lim_sequentially: "X ----> (L::'a::metric_space) \<longleftrightarrow> (\<forall>r>0. \<exists>no. \<forall>n\<ge>no. dist (X n) L < r)" | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1558 | unfolding tendsto_iff eventually_sequentially .. | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1559 | |
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1560 | 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: 
60017diff
changeset | 1561 | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1562 | lemma LIMSEQ_iff_nz: "X ----> (L::'a::metric_space) = (\<forall>r>0. \<exists>no>0. \<forall>n\<ge>no. dist (X n) L < r)" | 
| 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: 
59867diff
changeset | 1563 | 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: 
51524diff
changeset | 1564 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1565 | lemma metric_LIMSEQ_I: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1566 | "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r) \<Longrightarrow> X ----> (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: 
59867diff
changeset | 1567 | by (simp add: lim_sequentially) | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1568 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1569 | lemma metric_LIMSEQ_D: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1570 | "\<lbrakk>X ----> (L::'a::metric_space); 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r" | 
| 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: 
59867diff
changeset | 1571 | by (simp add: lim_sequentially) | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1572 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1573 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1574 | subsubsection {* Limits of Functions *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1575 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1576 | lemma LIM_def: "f -- (a::'a::metric_space) --> (L::'b::metric_space) = | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1577 | (\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> a & dist x a < s | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1578 | --> dist (f x) L < r)" | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1579 | unfolding tendsto_iff eventually_at by simp | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1580 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1581 | lemma metric_LIM_I: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1582 | "(\<And>r. 0 < r \<Longrightarrow> \<exists>s>0. \<forall>x. x \<noteq> a \<and> dist x a < s \<longrightarrow> dist (f x) L < r) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1583 | \<Longrightarrow> f -- (a::'a::metric_space) --> (L::'b::metric_space)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1584 | by (simp add: LIM_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1585 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1586 | lemma metric_LIM_D: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1587 | "\<lbrakk>f -- (a::'a::metric_space) --> (L::'b::metric_space); 0 < r\<rbrakk> | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1588 | \<Longrightarrow> \<exists>s>0. \<forall>x. x \<noteq> a \<and> dist x a < s \<longrightarrow> dist (f x) L < r" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1589 | by (simp add: LIM_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1590 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1591 | lemma metric_LIM_imp_LIM: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1592 | assumes f: "f -- a --> (l::'a::metric_space)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1593 | assumes le: "\<And>x. x \<noteq> a \<Longrightarrow> dist (g x) m \<le> dist (f x) l" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1594 | shows "g -- a --> (m::'b::metric_space)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1595 | by (rule metric_tendsto_imp_tendsto [OF f]) (auto simp add: eventually_at_topological le) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1596 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1597 | lemma metric_LIM_equal2: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1598 | assumes 1: "0 < R" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1599 | assumes 2: "\<And>x. \<lbrakk>x \<noteq> a; dist x a < R\<rbrakk> \<Longrightarrow> f x = g x" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1600 | shows "g -- a --> l \<Longrightarrow> f -- (a::'a::metric_space) --> l" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1601 | apply (rule topological_tendstoI) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1602 | apply (drule (2) topological_tendstoD) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1603 | apply (simp add: eventually_at, safe) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1604 | apply (rule_tac x="min d R" in exI, safe) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1605 | apply (simp add: 1) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1606 | apply (simp add: 2) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1607 | done | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1608 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1609 | lemma metric_LIM_compose2: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1610 | assumes f: "f -- (a::'a::metric_space) --> b" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1611 | assumes g: "g -- b --> c" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1612 | assumes inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> f x \<noteq> b" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1613 | shows "(\<lambda>x. g (f x)) -- a --> c" | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1614 | using inj | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51531diff
changeset | 1615 | 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: 
51524diff
changeset | 1616 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1617 | lemma metric_isCont_LIM_compose2: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1618 | fixes f :: "'a :: metric_space \<Rightarrow> _" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1619 | assumes f [unfolded isCont_def]: "isCont f a" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1620 | assumes g: "g -- f a --> l" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1621 | assumes inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> f x \<noteq> f a" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1622 | shows "(\<lambda>x. g (f x)) -- a --> l" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1623 | by (rule metric_LIM_compose2 [OF f g inj]) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1624 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1625 | subsection {* Complete metric spaces *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1626 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1627 | subsection {* Cauchy sequences *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1628 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1629 | definition (in metric_space) Cauchy :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" where | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1630 | "Cauchy X = (\<forall>e>0. \<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: 
51524diff
changeset | 1631 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1632 | subsection {* Cauchy Sequences *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1633 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1634 | lemma metric_CauchyI: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1635 | "(\<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: 
51524diff
changeset | 1636 | by (simp add: Cauchy_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1637 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1638 | lemma metric_CauchyD: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1639 | "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: 
51524diff
changeset | 1640 | by (simp add: Cauchy_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1641 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1642 | lemma metric_Cauchy_iff2: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1643 | "Cauchy X = (\<forall>j. (\<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. dist (X m) (X n) < inverse(real (Suc j))))" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1644 | apply (simp add: Cauchy_def, auto) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1645 | apply (drule reals_Archimedean, safe) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1646 | apply (drule_tac x = n in spec, auto) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1647 | apply (rule_tac x = M in exI, auto) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1648 | apply (drule_tac x = m in spec, simp) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1649 | apply (drule_tac x = na in spec, auto) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1650 | done | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1651 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1652 | lemma Cauchy_iff2: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1653 | "Cauchy X = (\<forall>j. (\<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. \<bar>X m - X n\<bar> < inverse(real (Suc j))))" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1654 | unfolding metric_Cauchy_iff2 dist_real_def .. | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1655 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1656 | lemma Cauchy_subseq_Cauchy: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1657 | "\<lbrakk> Cauchy X; subseq f \<rbrakk> \<Longrightarrow> Cauchy (X o f)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1658 | apply (auto simp add: Cauchy_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1659 | apply (drule_tac x=e in spec, clarify) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1660 | apply (rule_tac x=M in exI, clarify) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1661 | apply (blast intro: le_trans [OF _ seq_suble] dest!: spec) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1662 | done | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1663 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1664 | theorem LIMSEQ_imp_Cauchy: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1665 | assumes X: "X ----> a" shows "Cauchy X" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1666 | proof (rule metric_CauchyI) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1667 | fix e::real assume "0 < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1668 | hence "0 < e/2" by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1669 | with X have "\<exists>N. \<forall>n\<ge>N. dist (X n) a < e/2" by (rule metric_LIMSEQ_D) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1670 | then obtain N where N: "\<forall>n\<ge>N. dist (X n) a < e/2" .. | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1671 | show "\<exists>N. \<forall>m\<ge>N. \<forall>n\<ge>N. dist (X m) (X n) < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1672 | proof (intro exI allI impI) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1673 | fix m assume "N \<le> m" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1674 | hence m: "dist (X m) a < e/2" using N by fast | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1675 | fix n assume "N \<le> n" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1676 | hence n: "dist (X n) a < e/2" using N by fast | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1677 | have "dist (X m) (X n) \<le> dist (X m) a + dist (X n) a" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1678 | by (rule dist_triangle2) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1679 | also from m n have "\<dots> < e" by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1680 | finally show "dist (X m) (X n) < e" . | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1681 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1682 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1683 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1684 | lemma convergent_Cauchy: "convergent X \<Longrightarrow> Cauchy X" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1685 | unfolding convergent_def | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1686 | by (erule exE, erule LIMSEQ_imp_Cauchy) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1687 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1688 | subsubsection {* Cauchy Sequences are Convergent *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1689 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1690 | class complete_space = metric_space + | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1691 | assumes Cauchy_convergent: "Cauchy X \<Longrightarrow> convergent X" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1692 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1693 | lemma Cauchy_convergent_iff: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1694 | fixes X :: "nat \<Rightarrow> 'a::complete_space" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1695 | shows "Cauchy X = convergent X" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1696 | by (fast intro: Cauchy_convergent convergent_Cauchy) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1697 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1698 | subsection {* The set of real numbers is a complete metric space *}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1699 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1700 | text {*
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1701 | Proof that Cauchy sequences converge based on the one from | 
| 54703 | 1702 | @{url "http://pirate.shu.edu/~wachsmut/ira/numseq/proofs/cauconv.html"}
 | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1703 | *} | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1704 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1705 | text {*
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1706 |   If sequence @{term "X"} is Cauchy, then its limit is the lub of
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1707 |   @{term "{r::real. \<exists>N. \<forall>n\<ge>N. r < X n}"}
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1708 | *} | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1709 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1710 | lemma increasing_LIMSEQ: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1711 | fixes f :: "nat \<Rightarrow> real" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1712 | assumes inc: "\<And>n. f n \<le> f (Suc n)" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1713 | and bdd: "\<And>n. f n \<le> l" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1714 | and en: "\<And>e. 0 < e \<Longrightarrow> \<exists>n. l \<le> f n + e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1715 | shows "f ----> l" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1716 | proof (rule increasing_tendsto) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1717 | fix x assume "x < l" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1718 | 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: 
51524diff
changeset | 1719 | by auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1720 | from en[OF `0 < e`] obtain n where "l - e \<le> f n" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1721 | by (auto simp: field_simps) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1722 | with `e < l - x` `0 < e` have "x < f n" by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1723 | 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: 
51524diff
changeset | 1724 | by (auto simp: eventually_sequentially incseq_def intro: less_le_trans) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1725 | qed (insert bdd, auto) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1726 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1727 | lemma real_Cauchy_convergent: | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1728 | fixes X :: "nat \<Rightarrow> real" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1729 | assumes X: "Cauchy X" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1730 | shows "convergent X" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1731 | proof - | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1732 |   def S \<equiv> "{x::real. \<exists>N. \<forall>n\<ge>N. x < X n}"
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1733 | then have mem_S: "\<And>N x. \<forall>n\<ge>N. x < X n \<Longrightarrow> x \<in> S" by auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1734 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1735 |   { fix N x assume N: "\<forall>n\<ge>N. X n < x"
 | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1736 | fix y::real assume "y \<in> S" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1737 | hence "\<exists>M. \<forall>n\<ge>M. y < X n" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1738 | by (simp add: S_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1739 | then obtain M where "\<forall>n\<ge>M. y < X n" .. | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1740 | hence "y < X (max M N)" by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1741 | also have "\<dots> < x" using N by simp | 
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1742 | finally have "y \<le> x" | 
| 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1743 | by (rule order_less_imp_le) } | 
| 60026 
41d81b4a0a21
Restored LIMSEQ_def as legacy binding. [The other changes are whitespace only.]
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1744 | note bound_isUb = this | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1745 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1746 | 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: 
51524diff
changeset | 1747 | using X[THEN metric_CauchyD, OF zero_less_one] by auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1748 | hence 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: 
54230diff
changeset | 1749 |   have [simp]: "S \<noteq> {}"
 | 
| 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1750 | 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: 
51524diff
changeset | 1751 | 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: 
51524diff
changeset | 1752 | by (simp add: abs_diff_less_iff dist_real_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1753 | thus "X N - 1 \<in> S" by (rule mem_S) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1754 | qed | 
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1755 | have [simp]: "bdd_above S" | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1756 | proof | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1757 | 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: 
51524diff
changeset | 1758 | by (simp add: abs_diff_less_iff dist_real_def) | 
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1759 | thus "\<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: 
51524diff
changeset | 1760 | by (rule bound_isUb) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1761 | qed | 
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1762 | have "X ----> Sup S" | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1763 | proof (rule metric_LIMSEQ_I) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1764 | fix r::real assume "0 < r" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1765 | hence r: "0 < r/2" by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1766 | obtain N where "\<forall>n\<ge>N. \<forall>m\<ge>N. dist (X n) (X m) < r/2" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1767 | using metric_CauchyD [OF X r] by auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1768 | hence "\<forall>n\<ge>N. dist (X n) (X N) < r/2" by simp | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1769 | hence N: "\<forall>n\<ge>N. X N - r/2 < X n \<and> X n < X N + r/2" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1770 | by (simp only: dist_real_def abs_diff_less_iff) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1771 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1772 | from N have "\<forall>n\<ge>N. X N - r/2 < X n" by fast | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1773 | hence "X N - r/2 \<in> S" by (rule mem_S) | 
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1774 | hence 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: 
51524diff
changeset | 1775 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1776 | from N have "\<forall>n\<ge>N. X n < X N + r/2" by fast | 
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1777 | from bound_isUb[OF this] | 
| 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1778 | have 2: "Sup S \<le> X N + r/2" | 
| 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1779 | by (intro cSup_least) simp_all | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1780 | |
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1781 | show "\<exists>N. \<forall>n\<ge>N. dist (X n) (Sup S) < r" | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1782 | proof (intro exI allI impI) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1783 | fix n assume n: "N \<le> n" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1784 | from N n have "X n < X N + r/2" and "X N - r/2 < X n" by simp+ | 
| 54263 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 hoelzl parents: 
54230diff
changeset | 1785 | thus "dist (X n) (Sup S) < r" using 1 2 | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1786 | by (simp add: abs_diff_less_iff dist_real_def) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1787 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1788 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1789 | then show ?thesis unfolding convergent_def by auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1790 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1791 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1792 | instance real :: complete_space | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1793 | by intro_classes (rule real_Cauchy_convergent) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1794 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1795 | class banach = real_normed_vector + complete_space | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1796 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1797 | instance real :: banach by default | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1798 | |
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1799 | 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: 
56889diff
changeset | 1800 | fixes f :: "real \<Rightarrow> 'b::first_countable_topology" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 1801 | assumes *: "\<And>X. filterlim X at_top sequentially \<Longrightarrow> (\<lambda>n. f (X n)) ----> y" | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 1802 | shows "(f ---> y) at_top" | 
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1803 | proof - | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1804 | from nhds_countable[of y] guess A . note A = this | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 1805 | |
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1806 | 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: 
57418diff
changeset | 1807 | proof (rule ccontr) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1808 | 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: 
57418diff
changeset | 1809 | 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: 
57418diff
changeset | 1810 | by auto | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1811 | 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: 
57418diff
changeset | 1812 | 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: 
57418diff
changeset | 1813 | 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: 
57418diff
changeset | 1814 | by auto | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1815 |     { fix n have "1 \<le> n \<longrightarrow> real n \<le> X n"
 | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1816 | using X[of "n - 1"] by auto } | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1817 | then have "filterlim X at_top sequentially" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1818 | by (force intro!: filterlim_at_top_mono[OF filterlim_real_sequentially] | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1819 | simp: eventually_sequentially) | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1820 | 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: 
57418diff
changeset | 1821 | by auto | 
| 57275 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 1822 | qed | 
| 57448 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1823 | then obtain k where "\<And>m x. k m \<le> x \<Longrightarrow> f x \<in> A m" | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1824 | by metis | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1825 | then show ?thesis | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1826 | unfolding at_top_def A | 
| 
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
 hoelzl parents: 
57418diff
changeset | 1827 | 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: 
56889diff
changeset | 1828 | qed | 
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 1829 | |
| 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 hoelzl parents: 
56889diff
changeset | 1830 | lemma tendsto_at_topI_sequentially_real: | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1831 | fixes f :: "real \<Rightarrow> real" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1832 | assumes mono: "mono f" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1833 | assumes limseq: "(\<lambda>n. f (real n)) ----> y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1834 | shows "(f ---> y) at_top" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1835 | proof (rule tendstoI) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1836 | fix e :: real assume "0 < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1837 | with limseq obtain N :: nat where N: "\<And>n. N \<le> n \<Longrightarrow> \<bar>f (real n) - y\<bar> < e" | 
| 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: 
59867diff
changeset | 1838 | by (auto simp: lim_sequentially dist_real_def) | 
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1839 |   { fix x :: real
 | 
| 53381 | 1840 | obtain n where "x \<le> real_of_nat n" | 
| 1841 | using ex_le_of_nat[of x] .. | |
| 51531 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1842 | note monoD[OF mono this] | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1843 | also have "f (real_of_nat n) \<le> y" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1844 | by (rule LIMSEQ_le_const[OF limseq]) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1845 | (auto intro: exI[of _ n] monoD[OF mono] simp: real_eq_of_nat[symmetric]) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1846 | finally have "f x \<le> y" . } | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1847 | note le = this | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1848 | 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: 
51524diff
changeset | 1849 | by (rule eventually_ge_at_top) | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1850 | 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: 
51524diff
changeset | 1851 | proof eventually_elim | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1852 | fix x assume N': "real N \<le> x" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1853 | with N[of N] le have "y - f (real N) < e" by auto | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1854 | moreover note monoD[OF mono N'] | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1855 | ultimately show "dist (f x) y < e" | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1856 | 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: 
51524diff
changeset | 1857 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1858 | qed | 
| 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 hoelzl parents: 
51524diff
changeset | 1859 | |
| 20504 
6342e872e71d
formalization of vector spaces and algebras over the real numbers
 huffman parents: diff
changeset | 1860 | end | 
| 57276 | 1861 |