| author | wenzelm | 
| Wed, 28 Oct 2009 00:23:39 +0100 | |
| changeset 33267 | 8fb01a2f9406 | 
| parent 31590 | 776d6a4c1327 | 
| child 34110 | 4c113c744b86 | 
| permissions | -rw-r--r-- | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 1 | (* Title: HOL/Library/Product_Vector.thy | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 2 | Author: Brian Huffman | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 3 | *) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 4 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 5 | header {* Cartesian Products as Vector Spaces *}
 | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 6 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 7 | theory Product_Vector | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 8 | imports Inner_Product Product_plus | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 9 | begin | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 10 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 11 | subsection {* Product is a real vector space *}
 | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 12 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 13 | instantiation "*" :: (real_vector, real_vector) real_vector | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 14 | begin | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 15 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 16 | definition scaleR_prod_def: | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 17 | "scaleR r A = (scaleR r (fst A), scaleR r (snd A))" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 18 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 19 | lemma fst_scaleR [simp]: "fst (scaleR r A) = scaleR r (fst A)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 20 | unfolding scaleR_prod_def by simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 21 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 22 | lemma snd_scaleR [simp]: "snd (scaleR r A) = scaleR r (snd A)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 23 | unfolding scaleR_prod_def by simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 24 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 25 | lemma scaleR_Pair [simp]: "scaleR r (a, b) = (scaleR r a, scaleR r b)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 26 | unfolding scaleR_prod_def by simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 27 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 28 | instance proof | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 29 | fix a b :: real and x y :: "'a \<times> 'b" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 30 | show "scaleR a (x + y) = scaleR a x + scaleR a y" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 31 | by (simp add: expand_prod_eq scaleR_right_distrib) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 32 | show "scaleR (a + b) x = scaleR a x + scaleR b x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 33 | by (simp add: expand_prod_eq scaleR_left_distrib) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 34 | show "scaleR a (scaleR b x) = scaleR (a * b) x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 35 | by (simp add: expand_prod_eq) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 36 | show "scaleR 1 x = x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 37 | by (simp add: expand_prod_eq) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 38 | qed | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 39 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 40 | end | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 41 | |
| 31415 | 42 | subsection {* Product is a topological space *}
 | 
| 43 | ||
| 44 | instantiation | |
| 45 | "*" :: (topological_space, topological_space) topological_space | |
| 46 | begin | |
| 47 | ||
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 48 | definition open_prod_def: | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 49 |   "open (S :: ('a \<times> 'b) set) \<longleftrightarrow>
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 50 | (\<forall>x\<in>S. \<exists>A B. open A \<and> open B \<and> x \<in> A \<times> B \<and> A \<times> B \<subseteq> S)" | 
| 31415 | 51 | |
| 52 | instance proof | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 53 |   show "open (UNIV :: ('a \<times> 'b) set)"
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 54 | unfolding open_prod_def by auto | 
| 31415 | 55 | next | 
| 56 |   fix S T :: "('a \<times> 'b) set"
 | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 57 | assume "open S" "open T" thus "open (S \<inter> T)" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 58 | unfolding open_prod_def | 
| 31415 | 59 | apply clarify | 
| 60 | apply (drule (1) bspec)+ | |
| 61 | apply (clarify, rename_tac Sa Ta Sb Tb) | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 62 | apply (rule_tac x="Sa \<inter> Ta" in exI) | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 63 | apply (rule_tac x="Sb \<inter> Tb" in exI) | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 64 | apply (simp add: open_Int) | 
| 31415 | 65 | apply fast | 
| 66 | done | |
| 67 | next | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 68 |   fix K :: "('a \<times> 'b) set set"
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 69 | assume "\<forall>S\<in>K. open S" thus "open (\<Union>K)" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 70 | unfolding open_prod_def by fast | 
| 31415 | 71 | qed | 
| 72 | ||
| 73 | end | |
| 74 | ||
| 31562 | 75 | lemma open_Times: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<times> T)" | 
| 76 | unfolding open_prod_def by auto | |
| 77 | ||
| 78 | lemma fst_vimage_eq_Times: "fst -` S = S \<times> UNIV" | |
| 79 | by auto | |
| 80 | ||
| 81 | lemma snd_vimage_eq_Times: "snd -` S = UNIV \<times> S" | |
| 82 | by auto | |
| 83 | ||
| 84 | lemma open_vimage_fst: "open S \<Longrightarrow> open (fst -` S)" | |
| 85 | by (simp add: fst_vimage_eq_Times open_Times) | |
| 86 | ||
| 87 | lemma open_vimage_snd: "open S \<Longrightarrow> open (snd -` S)" | |
| 88 | by (simp add: snd_vimage_eq_Times open_Times) | |
| 89 | ||
| 31568 | 90 | lemma closed_vimage_fst: "closed S \<Longrightarrow> closed (fst -` S)" | 
| 91 | unfolding closed_open vimage_Compl [symmetric] | |
| 92 | by (rule open_vimage_fst) | |
| 93 | ||
| 94 | lemma closed_vimage_snd: "closed S \<Longrightarrow> closed (snd -` S)" | |
| 95 | unfolding closed_open vimage_Compl [symmetric] | |
| 96 | by (rule open_vimage_snd) | |
| 97 | ||
| 98 | lemma closed_Times: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<times> T)" | |
| 99 | proof - | |
| 100 | have "S \<times> T = (fst -` S) \<inter> (snd -` T)" by auto | |
| 101 | thus "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<times> T)" | |
| 102 | by (simp add: closed_vimage_fst closed_vimage_snd closed_Int) | |
| 103 | qed | |
| 104 | ||
| 105 | ||
| 31339 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 106 | subsection {* Product is a metric space *}
 | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 107 | |
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 108 | instantiation | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 109 | "*" :: (metric_space, metric_space) metric_space | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 110 | begin | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 111 | |
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 112 | definition dist_prod_def: | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 113 | "dist (x::'a \<times> 'b) y = sqrt ((dist (fst x) (fst y))\<twosuperior> + (dist (snd x) (snd y))\<twosuperior>)" | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 114 | |
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 115 | lemma dist_Pair_Pair: "dist (a, b) (c, d) = sqrt ((dist a c)\<twosuperior> + (dist b d)\<twosuperior>)" | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 116 | unfolding dist_prod_def by simp | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 117 | |
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 118 | instance proof | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 119 | fix x y :: "'a \<times> 'b" | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 120 | show "dist x y = 0 \<longleftrightarrow> x = y" | 
| 31563 | 121 | unfolding dist_prod_def expand_prod_eq by simp | 
| 31339 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 122 | next | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 123 | fix x y z :: "'a \<times> 'b" | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 124 | show "dist x y \<le> dist x z + dist y z" | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 125 | unfolding dist_prod_def | 
| 31563 | 126 | by (intro order_trans [OF _ real_sqrt_sum_squares_triangle_ineq] | 
| 127 | real_sqrt_le_mono add_mono power_mono dist_triangle2 zero_le_dist) | |
| 31415 | 128 | next | 
| 129 | (* FIXME: long proof! *) | |
| 130 | (* Maybe it would be easier to define topological spaces *) | |
| 131 | (* in terms of neighborhoods instead of open sets? *) | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 132 |   fix S :: "('a \<times> 'b) set"
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 133 | show "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" | 
| 31563 | 134 | proof | 
| 135 | assume "open S" thus "\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S" | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 136 | unfolding open_prod_def open_dist | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 137 | apply safe | 
| 31415 | 138 | apply (drule (1) bspec) | 
| 139 | apply clarify | |
| 140 | apply (drule (1) bspec)+ | |
| 141 | apply (clarify, rename_tac r s) | |
| 142 | apply (rule_tac x="min r s" in exI, simp) | |
| 143 | apply (clarify, rename_tac c d) | |
| 144 | apply (erule subsetD) | |
| 145 | apply (simp add: dist_Pair_Pair) | |
| 146 | apply (rule conjI) | |
| 147 | apply (drule spec, erule mp) | |
| 148 | apply (erule le_less_trans [OF real_sqrt_sum_squares_ge1]) | |
| 149 | apply (drule spec, erule mp) | |
| 150 | apply (erule le_less_trans [OF real_sqrt_sum_squares_ge2]) | |
| 31563 | 151 | done | 
| 152 | next | |
| 153 | assume "\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S" thus "open S" | |
| 154 | unfolding open_prod_def open_dist | |
| 155 | apply safe | |
| 31415 | 156 | apply (drule (1) bspec) | 
| 157 | apply clarify | |
| 158 | apply (subgoal_tac "\<exists>r>0. \<exists>s>0. e = sqrt (r\<twosuperior> + s\<twosuperior>)") | |
| 159 | apply clarify | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 160 |     apply (rule_tac x="{y. dist y a < r}" in exI)
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 161 |     apply (rule_tac x="{y. dist y b < s}" in exI)
 | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 162 | apply (rule conjI) | 
| 31415 | 163 | apply clarify | 
| 164 | apply (rule_tac x="r - dist x a" in exI, rule conjI, simp) | |
| 165 | apply clarify | |
| 31563 | 166 | apply (simp add: less_diff_eq) | 
| 167 | apply (erule le_less_trans [OF dist_triangle]) | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 168 | apply (rule conjI) | 
| 31415 | 169 | apply clarify | 
| 170 | apply (rule_tac x="s - dist x b" in exI, rule conjI, simp) | |
| 171 | apply clarify | |
| 31563 | 172 | apply (simp add: less_diff_eq) | 
| 173 | apply (erule le_less_trans [OF dist_triangle]) | |
| 31415 | 174 | apply (rule conjI) | 
| 175 | apply simp | |
| 176 | apply (clarify, rename_tac c d) | |
| 177 | apply (drule spec, erule mp) | |
| 178 | apply (simp add: dist_Pair_Pair add_strict_mono power_strict_mono) | |
| 179 | apply (rule_tac x="e / sqrt 2" in exI, simp add: divide_pos_pos) | |
| 180 | apply (rule_tac x="e / sqrt 2" in exI, simp add: divide_pos_pos) | |
| 181 | apply (simp add: power_divide) | |
| 182 | done | |
| 31563 | 183 | qed | 
| 31339 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 184 | qed | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 185 | |
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 186 | end | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 187 | |
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 188 | subsection {* Continuity of operations *}
 | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 189 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 190 | lemma dist_fst_le: "dist (fst x) (fst y) \<le> dist x y" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 191 | unfolding dist_prod_def by simp | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 192 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 193 | lemma dist_snd_le: "dist (snd x) (snd y) \<le> dist x y" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 194 | unfolding dist_prod_def by simp | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 195 | |
| 31565 | 196 | lemma tendsto_fst [tendsto_intros]: | 
| 31491 | 197 | assumes "(f ---> a) net" | 
| 198 | shows "((\<lambda>x. fst (f x)) ---> fst a) net" | |
| 199 | proof (rule topological_tendstoI) | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 200 | fix S assume "open S" "fst a \<in> S" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 201 | then have "open (fst -` S)" "a \<in> fst -` S" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 202 | unfolding open_prod_def | 
| 31491 | 203 | apply simp_all | 
| 204 | apply clarify | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 205 | apply (rule exI, erule conjI) | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 206 | apply (rule exI, rule conjI [OF open_UNIV]) | 
| 31491 | 207 | apply auto | 
| 208 | done | |
| 209 | with assms have "eventually (\<lambda>x. f x \<in> fst -` S) net" | |
| 210 | by (rule topological_tendstoD) | |
| 211 | then show "eventually (\<lambda>x. fst (f x) \<in> S) net" | |
| 212 | by simp | |
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 213 | qed | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 214 | |
| 31565 | 215 | lemma tendsto_snd [tendsto_intros]: | 
| 31491 | 216 | assumes "(f ---> a) net" | 
| 217 | shows "((\<lambda>x. snd (f x)) ---> snd a) net" | |
| 218 | proof (rule topological_tendstoI) | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 219 | fix S assume "open S" "snd a \<in> S" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 220 | then have "open (snd -` S)" "a \<in> snd -` S" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 221 | unfolding open_prod_def | 
| 31491 | 222 | apply simp_all | 
| 223 | apply clarify | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 224 | apply (rule exI, rule conjI [OF open_UNIV]) | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 225 | apply (rule exI, erule conjI) | 
| 31491 | 226 | apply auto | 
| 227 | done | |
| 228 | with assms have "eventually (\<lambda>x. f x \<in> snd -` S) net" | |
| 229 | by (rule topological_tendstoD) | |
| 230 | then show "eventually (\<lambda>x. snd (f x) \<in> S) net" | |
| 231 | by simp | |
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 232 | qed | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 233 | |
| 31565 | 234 | lemma tendsto_Pair [tendsto_intros]: | 
| 31491 | 235 | assumes "(f ---> a) net" and "(g ---> b) net" | 
| 236 | shows "((\<lambda>x. (f x, g x)) ---> (a, b)) net" | |
| 237 | proof (rule topological_tendstoI) | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 238 | fix S assume "open S" "(a, b) \<in> S" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 239 | then obtain A B where "open A" "open B" "a \<in> A" "b \<in> B" "A \<times> B \<subseteq> S" | 
| 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 240 | unfolding open_prod_def by auto | 
| 31491 | 241 | have "eventually (\<lambda>x. f x \<in> A) net" | 
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 242 | using `(f ---> a) net` `open A` `a \<in> A` | 
| 31491 | 243 | by (rule topological_tendstoD) | 
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 244 | moreover | 
| 31491 | 245 | have "eventually (\<lambda>x. g x \<in> B) net" | 
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31491diff
changeset | 246 | using `(g ---> b) net` `open B` `b \<in> B` | 
| 31491 | 247 | by (rule topological_tendstoD) | 
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 248 | ultimately | 
| 31491 | 249 | show "eventually (\<lambda>x. (f x, g x) \<in> S) net" | 
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 250 | by (rule eventually_elim2) | 
| 31491 | 251 | (simp add: subsetD [OF `A \<times> B \<subseteq> S`]) | 
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 252 | qed | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 253 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 254 | lemma LIMSEQ_fst: "(X ----> a) \<Longrightarrow> (\<lambda>n. fst (X n)) ----> fst a" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 255 | unfolding LIMSEQ_conv_tendsto by (rule tendsto_fst) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 256 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 257 | lemma LIMSEQ_snd: "(X ----> a) \<Longrightarrow> (\<lambda>n. snd (X n)) ----> snd a" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 258 | unfolding LIMSEQ_conv_tendsto by (rule tendsto_snd) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 259 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 260 | lemma LIMSEQ_Pair: | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 261 | assumes "X ----> a" and "Y ----> b" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 262 | shows "(\<lambda>n. (X n, Y n)) ----> (a, b)" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 263 | using assms unfolding LIMSEQ_conv_tendsto | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 264 | by (rule tendsto_Pair) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 265 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 266 | lemma LIM_fst: "f -- x --> a \<Longrightarrow> (\<lambda>x. fst (f x)) -- x --> fst a" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 267 | unfolding LIM_conv_tendsto by (rule tendsto_fst) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 268 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 269 | lemma LIM_snd: "f -- x --> a \<Longrightarrow> (\<lambda>x. snd (f x)) -- x --> snd a" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 270 | unfolding LIM_conv_tendsto by (rule tendsto_snd) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 271 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 272 | lemma LIM_Pair: | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 273 | assumes "f -- x --> a" and "g -- x --> b" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 274 | shows "(\<lambda>x. (f x, g x)) -- x --> (a, b)" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 275 | using assms unfolding LIM_conv_tendsto | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 276 | by (rule tendsto_Pair) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 277 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 278 | lemma Cauchy_fst: "Cauchy X \<Longrightarrow> Cauchy (\<lambda>n. fst (X n))" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 279 | unfolding Cauchy_def by (fast elim: le_less_trans [OF dist_fst_le]) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 280 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 281 | lemma Cauchy_snd: "Cauchy X \<Longrightarrow> Cauchy (\<lambda>n. snd (X n))" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 282 | unfolding Cauchy_def by (fast elim: le_less_trans [OF dist_snd_le]) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 283 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 284 | lemma Cauchy_Pair: | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 285 | assumes "Cauchy X" and "Cauchy Y" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 286 | shows "Cauchy (\<lambda>n. (X n, Y n))" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 287 | proof (rule metric_CauchyI) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 288 | fix r :: real assume "0 < r" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 289 | then have "0 < r / sqrt 2" (is "0 < ?s") | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 290 | by (simp add: divide_pos_pos) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 291 | obtain M where M: "\<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < ?s" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 292 | using metric_CauchyD [OF `Cauchy X` `0 < ?s`] .. | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 293 | obtain N where N: "\<forall>m\<ge>N. \<forall>n\<ge>N. dist (Y m) (Y n) < ?s" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 294 | using metric_CauchyD [OF `Cauchy Y` `0 < ?s`] .. | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 295 | have "\<forall>m\<ge>max M N. \<forall>n\<ge>max M N. dist (X m, Y m) (X n, Y n) < r" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 296 | using M N by (simp add: real_sqrt_sum_squares_less dist_Pair_Pair) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 297 | then show "\<exists>n0. \<forall>m\<ge>n0. \<forall>n\<ge>n0. dist (X m, Y m) (X n, Y n) < r" .. | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 298 | qed | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 299 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 300 | lemma isCont_Pair [simp]: | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 301 | "\<lbrakk>isCont f x; isCont g x\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. (f x, g x)) x" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 302 | unfolding isCont_def by (rule LIM_Pair) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 303 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 304 | subsection {* Product is a complete metric space *}
 | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 305 | |
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 306 | instance "*" :: (complete_space, complete_space) complete_space | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 307 | proof | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 308 | fix X :: "nat \<Rightarrow> 'a \<times> 'b" assume "Cauchy X" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 309 | have 1: "(\<lambda>n. fst (X n)) ----> lim (\<lambda>n. fst (X n))" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 310 | using Cauchy_fst [OF `Cauchy X`] | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 311 | by (simp add: Cauchy_convergent_iff convergent_LIMSEQ_iff) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 312 | have 2: "(\<lambda>n. snd (X n)) ----> lim (\<lambda>n. snd (X n))" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 313 | using Cauchy_snd [OF `Cauchy X`] | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 314 | by (simp add: Cauchy_convergent_iff convergent_LIMSEQ_iff) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 315 | have "X ----> (lim (\<lambda>n. fst (X n)), lim (\<lambda>n. snd (X n)))" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 316 | using LIMSEQ_Pair [OF 1 2] by simp | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 317 | then show "convergent X" | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 318 | by (rule convergentI) | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 319 | qed | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 320 | |
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 321 | subsection {* Product is a normed vector space *}
 | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 322 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 323 | instantiation | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 324 | "*" :: (real_normed_vector, real_normed_vector) real_normed_vector | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 325 | begin | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 326 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 327 | definition norm_prod_def: | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 328 | "norm x = sqrt ((norm (fst x))\<twosuperior> + (norm (snd x))\<twosuperior>)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 329 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 330 | definition sgn_prod_def: | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 331 | "sgn (x::'a \<times> 'b) = scaleR (inverse (norm x)) x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 332 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 333 | lemma norm_Pair: "norm (a, b) = sqrt ((norm a)\<twosuperior> + (norm b)\<twosuperior>)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 334 | unfolding norm_prod_def by simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 335 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 336 | instance proof | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 337 | fix r :: real and x y :: "'a \<times> 'b" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 338 | show "0 \<le> norm x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 339 | unfolding norm_prod_def by simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 340 | show "norm x = 0 \<longleftrightarrow> x = 0" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 341 | unfolding norm_prod_def | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 342 | by (simp add: expand_prod_eq) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 343 | show "norm (x + y) \<le> norm x + norm y" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 344 | unfolding norm_prod_def | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 345 | apply (rule order_trans [OF _ real_sqrt_sum_squares_triangle_ineq]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 346 | apply (simp add: add_mono power_mono norm_triangle_ineq) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 347 | done | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 348 | show "norm (scaleR r x) = \<bar>r\<bar> * norm x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 349 | unfolding norm_prod_def | 
| 31587 | 350 | apply (simp add: power_mult_distrib) | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 351 | apply (simp add: right_distrib [symmetric]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 352 | apply (simp add: real_sqrt_mult_distrib) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 353 | done | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 354 | show "sgn x = scaleR (inverse (norm x)) x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 355 | by (rule sgn_prod_def) | 
| 31290 | 356 | show "dist x y = norm (x - y)" | 
| 31339 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 357 | unfolding dist_prod_def norm_prod_def | 
| 
b4660351e8e7
instance * :: (metric_space, metric_space) metric_space; generalize lemmas to class metric_space
 huffman parents: 
31290diff
changeset | 358 | by (simp add: dist_norm) | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 359 | qed | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 360 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 361 | end | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 362 | |
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 363 | instance "*" :: (banach, banach) banach .. | 
| 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 364 | |
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 365 | subsection {* Product is an inner product space *}
 | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 366 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 367 | instantiation "*" :: (real_inner, real_inner) real_inner | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 368 | begin | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 369 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 370 | definition inner_prod_def: | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 371 | "inner x y = inner (fst x) (fst y) + inner (snd x) (snd y)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 372 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 373 | lemma inner_Pair [simp]: "inner (a, b) (c, d) = inner a c + inner b d" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 374 | unfolding inner_prod_def by simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 375 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 376 | instance proof | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 377 | fix r :: real | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 378 | fix x y z :: "'a::real_inner * 'b::real_inner" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 379 | show "inner x y = inner y x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 380 | unfolding inner_prod_def | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 381 | by (simp add: inner_commute) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 382 | show "inner (x + y) z = inner x z + inner y z" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 383 | unfolding inner_prod_def | 
| 31590 
776d6a4c1327
declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
 huffman parents: 
31587diff
changeset | 384 | by (simp add: inner_add_left) | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 385 | show "inner (scaleR r x) y = r * inner x y" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 386 | unfolding inner_prod_def | 
| 31590 
776d6a4c1327
declare inner_add, inner_diff [algebra_simps]; declare inner_scaleR [simp]
 huffman parents: 
31587diff
changeset | 387 | by (simp add: right_distrib) | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 388 | show "0 \<le> inner x x" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 389 | unfolding inner_prod_def | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 390 | by (intro add_nonneg_nonneg inner_ge_zero) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 391 | show "inner x x = 0 \<longleftrightarrow> x = 0" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 392 | unfolding inner_prod_def expand_prod_eq | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 393 | by (simp add: add_nonneg_eq_0_iff) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 394 | show "norm x = sqrt (inner x x)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 395 | unfolding norm_prod_def inner_prod_def | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 396 | by (simp add: power2_norm_eq_inner) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 397 | qed | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 398 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 399 | end | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 400 | |
| 31405 
1f72869f1a2e
instance * :: complete_space; generalize continuity lemmas for fst, snd, Pair
 huffman parents: 
31388diff
changeset | 401 | subsection {* Pair operations are linear *}
 | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 402 | |
| 30729 
461ee3e49ad3
interpretation/interpret: prefixes are mandatory by default;
 wenzelm parents: 
30019diff
changeset | 403 | interpretation fst: bounded_linear fst | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 404 | apply (unfold_locales) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 405 | apply (rule fst_add) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 406 | apply (rule fst_scaleR) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 407 | apply (rule_tac x="1" in exI, simp add: norm_Pair) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 408 | done | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 409 | |
| 30729 
461ee3e49ad3
interpretation/interpret: prefixes are mandatory by default;
 wenzelm parents: 
30019diff
changeset | 410 | interpretation snd: bounded_linear snd | 
| 30019 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 411 | apply (unfold_locales) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 412 | apply (rule snd_add) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 413 | apply (rule snd_scaleR) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 414 | apply (rule_tac x="1" in exI, simp add: norm_Pair) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 415 | done | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 416 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 417 | text {* TODO: move to NthRoot *}
 | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 418 | lemma sqrt_add_le_add_sqrt: | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 419 | assumes x: "0 \<le> x" and y: "0 \<le> y" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 420 | shows "sqrt (x + y) \<le> sqrt x + sqrt y" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 421 | apply (rule power2_le_imp_le) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 422 | apply (simp add: real_sum_squared_expand add_nonneg_nonneg x y) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 423 | apply (simp add: mult_nonneg_nonneg x y) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 424 | apply (simp add: add_nonneg_nonneg x y) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 425 | done | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 426 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 427 | lemma bounded_linear_Pair: | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 428 | assumes f: "bounded_linear f" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 429 | assumes g: "bounded_linear g" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 430 | shows "bounded_linear (\<lambda>x. (f x, g x))" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 431 | proof | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 432 | interpret f: bounded_linear f by fact | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 433 | interpret g: bounded_linear g by fact | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 434 | fix x y and r :: real | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 435 | show "(f (x + y), g (x + y)) = (f x, g x) + (f y, g y)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 436 | by (simp add: f.add g.add) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 437 | show "(f (r *\<^sub>R x), g (r *\<^sub>R x)) = r *\<^sub>R (f x, g x)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 438 | by (simp add: f.scaleR g.scaleR) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 439 | obtain Kf where "0 < Kf" and norm_f: "\<And>x. norm (f x) \<le> norm x * Kf" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 440 | using f.pos_bounded by fast | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 441 | obtain Kg where "0 < Kg" and norm_g: "\<And>x. norm (g x) \<le> norm x * Kg" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 442 | using g.pos_bounded by fast | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 443 | have "\<forall>x. norm (f x, g x) \<le> norm x * (Kf + Kg)" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 444 | apply (rule allI) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 445 | apply (simp add: norm_Pair) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 446 | apply (rule order_trans [OF sqrt_add_le_add_sqrt], simp, simp) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 447 | apply (simp add: right_distrib) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 448 | apply (rule add_mono [OF norm_f norm_g]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 449 | done | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 450 | then show "\<exists>K. \<forall>x. norm (f x, g x) \<le> norm x * K" .. | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 451 | qed | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 452 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 453 | subsection {* Frechet derivatives involving pairs *}
 | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 454 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 455 | lemma FDERIV_Pair: | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 456 | assumes f: "FDERIV f x :> f'" and g: "FDERIV g x :> g'" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 457 | shows "FDERIV (\<lambda>x. (f x, g x)) x :> (\<lambda>h. (f' h, g' h))" | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 458 | apply (rule FDERIV_I) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 459 | apply (rule bounded_linear_Pair) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 460 | apply (rule FDERIV_bounded_linear [OF f]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 461 | apply (rule FDERIV_bounded_linear [OF g]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 462 | apply (simp add: norm_Pair) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 463 | apply (rule real_LIM_sandwich_zero) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 464 | apply (rule LIM_add_zero) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 465 | apply (rule FDERIV_D [OF f]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 466 | apply (rule FDERIV_D [OF g]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 467 | apply (rename_tac h) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 468 | apply (simp add: divide_nonneg_pos) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 469 | apply (rename_tac h) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 470 | apply (subst add_divide_distrib [symmetric]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 471 | apply (rule divide_right_mono [OF _ norm_ge_zero]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 472 | apply (rule order_trans [OF sqrt_add_le_add_sqrt]) | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 473 | apply simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 474 | apply simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 475 | apply simp | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 476 | done | 
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 477 | |
| 
a2f19e0a28b2
add theory of products as real vector spaces to Library
 huffman parents: diff
changeset | 478 | end |